Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
3653158c
Commit
3653158c
authored
Dec 14, 2015
by
Sasha Levin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "net: Fix skb_set_peeked use-after-free bug"
This reverts commit
d9a11334
.
parent
a9ff3cb5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
38 deletions
+3
-38
net/core/datagram.c
net/core/datagram.c
+3
-38
No files found.
net/core/datagram.c
View file @
3653158c
...
@@ -130,35 +130,6 @@ static int wait_for_more_packets(struct sock *sk, int *err, long *timeo_p,
...
@@ -130,35 +130,6 @@ static int wait_for_more_packets(struct sock *sk, int *err, long *timeo_p,
goto
out
;
goto
out
;
}
}
static
int
skb_set_peeked
(
struct
sk_buff
*
skb
)
{
struct
sk_buff
*
nskb
;
if
(
skb
->
peeked
)
return
0
;
/* We have to unshare an skb before modifying it. */
if
(
!
skb_shared
(
skb
))
goto
done
;
nskb
=
skb_clone
(
skb
,
GFP_ATOMIC
);
if
(
!
nskb
)
return
-
ENOMEM
;
skb
->
prev
->
next
=
nskb
;
skb
->
next
->
prev
=
nskb
;
nskb
->
prev
=
skb
->
prev
;
nskb
->
next
=
skb
->
next
;
consume_skb
(
skb
);
skb
=
nskb
;
done:
skb
->
peeked
=
1
;
return
0
;
}
/**
/**
* __skb_recv_datagram - Receive a datagram skbuff
* __skb_recv_datagram - Receive a datagram skbuff
* @sk: socket
* @sk: socket
...
@@ -193,9 +164,7 @@ static int skb_set_peeked(struct sk_buff *skb)
...
@@ -193,9 +164,7 @@ static int skb_set_peeked(struct sk_buff *skb)
struct
sk_buff
*
__skb_recv_datagram
(
struct
sock
*
sk
,
unsigned
int
flags
,
struct
sk_buff
*
__skb_recv_datagram
(
struct
sock
*
sk
,
unsigned
int
flags
,
int
*
peeked
,
int
*
off
,
int
*
err
)
int
*
peeked
,
int
*
off
,
int
*
err
)
{
{
struct
sk_buff_head
*
queue
=
&
sk
->
sk_receive_queue
;
struct
sk_buff
*
skb
,
*
last
;
struct
sk_buff
*
skb
,
*
last
;
unsigned
long
cpu_flags
;
long
timeo
;
long
timeo
;
/*
/*
* Caller is allowed not to check sk->sk_err before skb_recv_datagram()
* Caller is allowed not to check sk->sk_err before skb_recv_datagram()
...
@@ -214,6 +183,8 @@ struct sk_buff *__skb_recv_datagram(struct sock *sk, unsigned int flags,
...
@@ -214,6 +183,8 @@ struct sk_buff *__skb_recv_datagram(struct sock *sk, unsigned int flags,
* Look at current nfs client by the way...
* Look at current nfs client by the way...
* However, this function was correct in any case. 8)
* However, this function was correct in any case. 8)
*/
*/
unsigned
long
cpu_flags
;
struct
sk_buff_head
*
queue
=
&
sk
->
sk_receive_queue
;
int
_off
=
*
off
;
int
_off
=
*
off
;
last
=
(
struct
sk_buff
*
)
queue
;
last
=
(
struct
sk_buff
*
)
queue
;
...
@@ -227,11 +198,7 @@ struct sk_buff *__skb_recv_datagram(struct sock *sk, unsigned int flags,
...
@@ -227,11 +198,7 @@ struct sk_buff *__skb_recv_datagram(struct sock *sk, unsigned int flags,
_off
-=
skb
->
len
;
_off
-=
skb
->
len
;
continue
;
continue
;
}
}
skb
->
peeked
=
1
;
error
=
skb_set_peeked
(
skb
);
if
(
error
)
goto
unlock_err
;
atomic_inc
(
&
skb
->
users
);
atomic_inc
(
&
skb
->
users
);
}
else
}
else
__skb_unlink
(
skb
,
queue
);
__skb_unlink
(
skb
,
queue
);
...
@@ -255,8 +222,6 @@ struct sk_buff *__skb_recv_datagram(struct sock *sk, unsigned int flags,
...
@@ -255,8 +222,6 @@ struct sk_buff *__skb_recv_datagram(struct sock *sk, unsigned int flags,
return
NULL
;
return
NULL
;
unlock_err:
spin_unlock_irqrestore
(
&
queue
->
lock
,
cpu_flags
);
no_packet:
no_packet:
*
err
=
error
;
*
err
=
error
;
return
NULL
;
return
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment