Re: [PATCH 2/4] DCCP: Add check for sequence number in ICMPv6 message

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> --- a/net/dccp/ipv6.c
> +++ b/net/dccp/ipv6.c
> @@ -115,6 +116,14 @@ static void dccp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
> 	if (sk->sk_state == DCCP_CLOSED)
> 		goto out;
>
> +	dp = dccp_sk(sk);
> +	seq = dccp_hdr_seq(dh);
> +	if ((1 << sk->sk_state) & ~(DCCPF_REQUESTING | DCCPF_LISTEN) &&
> +	    !between48(seq, dp->dccps_awl, dp->dccps_awh)) {
> +		NET_INC_STATS_BH(LINUX_MIB_OUTOFWINDOWICMPS);
> +		goto out;
Here it should say
+		NET_INC_STATS_BH(net, LINUX_MIB_OUTOFWINDOWICMPS);
 		goto out;
 	}
Please compile-test your patches.

Have looked at the others, will do some more testing and submit this set tomorrow.
 
--
To unsubscribe from this list: send the line "unsubscribe dccp" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Kernel]     [IETF DCCP]     [Linux Networking]     [Git]     [Security]     [Linux Assembly]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux