Skip to content

Commit

Permalink
[INET]: Fix incorrect "inet_sock->is_icsk" assignment.
Browse files Browse the repository at this point in the history
The inet_create() and inet6_create() functions incorrectly set the
inet_sock->is_icsk field.  Both functions assume that the is_icsk field is
large enough to hold at least a INET_PROTOSW_ICSK value when it is actually
only a single bit.  This patch corrects the assignment by doing a boolean
comparison whose result will safely fit into a single bit field.

Signed-off-by: Paul Moore <paul.moore@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Paul Moore authored and David S. Miller committed Jan 9, 2007
1 parent efa0670 commit cbbd7d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion net/ipv4/af_inet.c
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ static int inet_create(struct socket *sock, int protocol)
sk->sk_reuse = 1;

inet = inet_sk(sk);
inet->is_icsk = INET_PROTOSW_ICSK & answer_flags;
inet->is_icsk = (INET_PROTOSW_ICSK & answer_flags) == INET_PROTOSW_ICSK;

if (SOCK_RAW == sock->type) {
inet->num = protocol;
Expand Down
2 changes: 1 addition & 1 deletion net/ipv6/af_inet6.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ static int inet6_create(struct socket *sock, int protocol)
sk->sk_reuse = 1;

inet = inet_sk(sk);
inet->is_icsk = INET_PROTOSW_ICSK & answer_flags;
inet->is_icsk = (INET_PROTOSW_ICSK & answer_flags) == INET_PROTOSW_ICSK;

if (SOCK_RAW == sock->type) {
inet->num = protocol;
Expand Down

0 comments on commit cbbd7d4

Please sign in to comment.