search for: protonum

Displaying 3 results from an estimated 3 matches for "protonum".

Did you mean: protonm
2011 Apr 07
8
[Bug 714] New: Kernel panics in same_src()
...497 0xf49 is in nf_nat_setup_info (net/ipv4/netfilter/nf_nat_core.c:135). 130 const struct nf_conntrack_tuple *tuple) 131 { 132 const struct nf_conntrack_tuple *t; 133 134 t = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple; 135 return (t->dst.protonum == tuple->dst.protonum && 136 t->src.u3.ip == tuple->src.u3.ip && 137 t->src.u.all == tuple->src.u.all); 138 } 139 Steps to Reproduce: I don't really know. It happends in unpredictable periods of time (sometimes few da...
2013 Sep 09
0
[Bug 714] Kernel panics in same_src()
....904159] Code: 00 00 00 4d 8d 7d 0e 4d 8d 75 0c 48 89 c3 eb 14 48 8b 03 48 85 c0 0f 84 84 00 00 00 44 0f b6 45 26 48 89 c3 48 8b 53 20 48 8b 03 <44> 38 42 3e 0f 18 08 75 dc 8b 42 18 3b 45 00 75 d4 0f b7 42 28 >From the vmcore,we found that: 1 OOPS occured at the statement 't->dst.protonum == tuple->dst.protonum' in inline function same_src. 2 The first parameter of same_src "ct" is NULL,The value of 'ct' came from 'ct = nat->ct'. 3 Read the content of the 'nat', all member's value are zero. The 'nat' has been freed ? stat...
2002 Feb 27
0
[ANNOUNCE] Security Advisory about IRC DCC connection tracking
...e; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -112,9 +112,9 @@ =20 struct ip_ct_irc *info =3D &ct->help.ct_irc_info; =20 - - memset(&mask, 0, sizeof(struct ip_conntrack_tuple)); - - mask.dst.u.tcp.port =3D 0xFFFF; - - mask.dst.protonum =3D 0xFFFF; + mask =3D ((struct ip_conntrack_tuple) + { { 0, { 0 } }, + { 0xFFFFFFFF, { 0xFFFF }, 0xFFFF }}); =20 DEBUGP("entered\n"); /* Can't track connections formed before we registered */ CREDITS =3D=3D=3D=3D=3D=3D=3D Jozsef Kadlecsik has discovered this bug initially, H...