Blame view
net/ipv4/ip_input.c
13 KB
1da177e4c Linux-2.6.12-rc2 |
1 2 3 4 5 6 7 |
/* * INET An implementation of the TCP/IP protocol suite for the LINUX * operating system. INET is implemented using the BSD Socket * interface as the means of communication with the user level. * * The Internet Protocol (IP) module. * |
02c30a84e [PATCH] update Ro... |
8 |
* Authors: Ross Biro |
1da177e4c Linux-2.6.12-rc2 |
9 10 |
* Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> * Donald Becker, <becker@super.org> |
113aa838e net: Rationalise ... |
11 |
* Alan Cox, <alan@lxorguk.ukuu.org.uk> |
1da177e4c Linux-2.6.12-rc2 |
12 13 14 15 |
* Richard Underwood * Stefan Becker, <stefanb@yello.ping.de> * Jorge Cwik, <jorge@laser.satlink.net> * Arnt Gulbrandsen, <agulbra@nvg.unit.no> |
e905a9eda [NET] IPV4: Fix w... |
16 |
* |
1da177e4c Linux-2.6.12-rc2 |
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
* * Fixes: * Alan Cox : Commented a couple of minor bits of surplus code * Alan Cox : Undefining IP_FORWARD doesn't include the code * (just stops a compiler warning). * Alan Cox : Frames with >=MAX_ROUTE record routes, strict routes or loose routes * are junked rather than corrupting things. * Alan Cox : Frames to bad broadcast subnets are dumped * We used to process them non broadcast and * boy could that cause havoc. * Alan Cox : ip_forward sets the free flag on the * new frame it queues. Still crap because * it copies the frame but at least it * doesn't eat memory too. * Alan Cox : Generic queue code and memory fixes. * Fred Van Kempen : IP fragment support (borrowed from NET2E) * Gerhard Koerting: Forward fragmented frames correctly. * Gerhard Koerting: Fixes to my fix of the above 8-). * Gerhard Koerting: IP interface addressing fix. * Linus Torvalds : More robustness checks * Alan Cox : Even more checks: Still not as robust as it ought to be * Alan Cox : Save IP header pointer for later * Alan Cox : ip option setting * Alan Cox : Use ip_tos/ip_ttl settings * Alan Cox : Fragmentation bogosity removed * (Thanks to Mark.Bush@prg.ox.ac.uk) * Dmitry Gorodchanin : Send of a raw packet crash fix. * Alan Cox : Silly ip bug when an overlength * fragment turns up. Now frees the * queue. * Linus Torvalds/ : Memory leakage on fragmentation * Alan Cox : handling. * Gerhard Koerting: Forwarding uses IP priority hints * Teemu Rantanen : Fragment problems. * Alan Cox : General cleanup, comments and reformat * Alan Cox : SNMP statistics * Alan Cox : BSD address rule semantics. Also see * UDP as there is a nasty checksum issue * if you do things the wrong way. * Alan Cox : Always defrag, moved IP_FORWARD to the config.in file * Alan Cox : IP options adjust sk->priority. * Pedro Roque : Fix mtu/length error in ip_forward. * Alan Cox : Avoid ip_chk_addr when possible. * Richard Underwood : IP multicasting. * Alan Cox : Cleaned up multicast handlers. * Alan Cox : RAW sockets demultiplex in the BSD style. * Gunther Mayer : Fix the SNMP reporting typo * Alan Cox : Always in group 224.0.0.1 * Pauline Middelink : Fast ip_checksum update when forwarding * Masquerading support. * Alan Cox : Multicast loopback error for 224.0.0.1 * Alan Cox : IP_MULTICAST_LOOP option. * Alan Cox : Use notifiers. * Bjorn Ekwall : Removed ip_csum (from slhc.c too) * Bjorn Ekwall : Moved ip_fast_csum to ip.h (inline!) * Stefan Becker : Send out ICMP HOST REDIRECT * Arnt Gulbrandsen : ip_build_xmit * Alan Cox : Per socket routing cache * Alan Cox : Fixed routing cache, added header cache. * Alan Cox : Loopback didn't work right in original ip_build_xmit - fixed it. * Alan Cox : Only send ICMP_REDIRECT if src/dest are the same net. * Alan Cox : Incoming IP option handling. * Alan Cox : Set saddr on raw output frames as per BSD. * Alan Cox : Stopped broadcast source route explosions. * Alan Cox : Can disable source routing * Takeshi Sone : Masquerading didn't work. * Dave Bonn,Alan Cox : Faster IP forwarding whenever possible. * Alan Cox : Memory leaks, tramples, misc debugging. * Alan Cox : Fixed multicast (by popular demand 8)) * Alan Cox : Fixed forwarding (by even more popular demand 8)) * Alan Cox : Fixed SNMP statistics [I think] * Gerhard Koerting : IP fragmentation forwarding fix * Alan Cox : Device lock against page fault. * Alan Cox : IP_HDRINCL facility. * Werner Almesberger : Zero fragment bug * Alan Cox : RAW IP frame length bug * Alan Cox : Outgoing firewall on build_xmit * A.N.Kuznetsov : IP_OPTIONS support throughout the kernel * Alan Cox : Multicast routing hooks * Jos Vos : Do accounting *before* call_in_firewall * Willy Konynenberg : Transparent proxying support * |
e905a9eda [NET] IPV4: Fix w... |
99 |
* |
1da177e4c Linux-2.6.12-rc2 |
100 101 102 103 104 |
* * To Fix: * IP fragmentation wants rewriting cleanly. The RFC815 algorithm is much more efficient * and could be made very efficient with the addition of some virtual memory hacks to permit * the allocation of a buffer that can then be 'grown' by twiddling page tables. |
e905a9eda [NET] IPV4: Fix w... |
105 |
* Output fragmentation wants updating along with the buffer management to use a single |
1da177e4c Linux-2.6.12-rc2 |
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
* interleaved copy algorithm so that fragmenting has a one copy overhead. Actual packet * output should probably do its own fragmentation at the UDP/RAW layer. TCP shouldn't cause * fragmentation anyway. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. */ #include <asm/system.h> #include <linux/module.h> #include <linux/types.h> #include <linux/kernel.h> #include <linux/string.h> #include <linux/errno.h> |
5a0e3ad6a include cleanup: ... |
122 |
#include <linux/slab.h> |
1da177e4c Linux-2.6.12-rc2 |
123 124 125 126 127 128 |
#include <linux/net.h> #include <linux/socket.h> #include <linux/sockios.h> #include <linux/in.h> #include <linux/inet.h> |
14c850212 [INET_SOCK]: Move... |
129 |
#include <linux/inetdevice.h> |
1da177e4c Linux-2.6.12-rc2 |
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
#include <linux/netdevice.h> #include <linux/etherdevice.h> #include <net/snmp.h> #include <net/ip.h> #include <net/protocol.h> #include <net/route.h> #include <linux/skbuff.h> #include <net/sock.h> #include <net/arp.h> #include <net/icmp.h> #include <net/raw.h> #include <net/checksum.h> #include <linux/netfilter_ipv4.h> #include <net/xfrm.h> #include <linux/mroute.h> #include <linux/netlink.h> /* |
66018506e ip: Router Alert ... |
149 |
* Process Router Attention IP option (RFC 2113) |
e905a9eda [NET] IPV4: Fix w... |
150 |
*/ |
1da177e4c Linux-2.6.12-rc2 |
151 152 153 |
int ip_call_ra_chain(struct sk_buff *skb) { struct ip_ra_chain *ra; |
eddc9ec53 [SK_BUFF]: Introd... |
154 |
u8 protocol = ip_hdr(skb)->protocol; |
1da177e4c Linux-2.6.12-rc2 |
155 |
struct sock *last = NULL; |
cb84663e4 [NETNS]: Process ... |
156 |
struct net_device *dev = skb->dev; |
1da177e4c Linux-2.6.12-rc2 |
157 |
|
66018506e ip: Router Alert ... |
158 |
for (ra = rcu_dereference(ip_ra_chain); ra; ra = rcu_dereference(ra->next)) { |
1da177e4c Linux-2.6.12-rc2 |
159 160 161 162 163 |
struct sock *sk = ra->sk; /* If socket is bound to an interface, only report * the packet if it came from that interface. */ |
c720c7e83 inet: rename some... |
164 |
if (sk && inet_sk(sk)->inet_num == protocol && |
1da177e4c Linux-2.6.12-rc2 |
165 |
(!sk->sk_bound_dev_if || |
cb84663e4 [NETNS]: Process ... |
166 |
sk->sk_bound_dev_if == dev->ifindex) && |
09ad9bc75 net: use net_eq t... |
167 |
net_eq(sock_net(sk), dev_net(dev))) { |
eddc9ec53 [SK_BUFF]: Introd... |
168 |
if (ip_hdr(skb)->frag_off & htons(IP_MF | IP_OFFSET)) { |
66018506e ip: Router Alert ... |
169 |
if (ip_defrag(skb, IP_DEFRAG_CALL_RA_CHAIN)) |
1da177e4c Linux-2.6.12-rc2 |
170 |
return 1; |
1da177e4c Linux-2.6.12-rc2 |
171 172 173 174 175 176 177 178 179 180 181 182 |
} if (last) { struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC); if (skb2) raw_rcv(last, skb2); } last = sk; } } if (last) { raw_rcv(last, skb); |
1da177e4c Linux-2.6.12-rc2 |
183 184 |
return 1; } |
1da177e4c Linux-2.6.12-rc2 |
185 186 |
return 0; } |
861d04860 [IPV4]: Uninline ... |
187 |
static int ip_local_deliver_finish(struct sk_buff *skb) |
1da177e4c Linux-2.6.12-rc2 |
188 |
{ |
c346dca10 [NET] NETNS: Omit... |
189 |
struct net *net = dev_net(skb->dev); |
f145049a0 [NETNS]: Drop pac... |
190 |
|
c9bdd4b52 [IP]: Introduce i... |
191 |
__skb_pull(skb, ip_hdrlen(skb)); |
1da177e4c Linux-2.6.12-rc2 |
192 |
|
e905a9eda [NET] IPV4: Fix w... |
193 |
/* Point into the IP datagram, just past the header. */ |
badff6d01 [SK_BUFF]: Introd... |
194 |
skb_reset_transport_header(skb); |
1da177e4c Linux-2.6.12-rc2 |
195 196 197 |
rcu_read_lock(); { |
eddc9ec53 [SK_BUFF]: Introd... |
198 |
int protocol = ip_hdr(skb)->protocol; |
7bc54c903 [IPv4] RAW: Compa... |
199 |
int hash, raw; |
32613090a net: constify str... |
200 |
const struct net_protocol *ipprot; |
1da177e4c Linux-2.6.12-rc2 |
201 202 |
resubmit: |
7bc54c903 [IPv4] RAW: Compa... |
203 |
raw = raw_local_deliver(skb, protocol); |
1da177e4c Linux-2.6.12-rc2 |
204 |
|
7bc54c903 [IPv4] RAW: Compa... |
205 |
hash = protocol & (MAX_INET_PROTOS - 1); |
f145049a0 [NETNS]: Drop pac... |
206 |
ipprot = rcu_dereference(inet_protos[hash]); |
9c0188acf net: shy netns_ok... |
207 |
if (ipprot != NULL) { |
1da177e4c Linux-2.6.12-rc2 |
208 |
int ret; |
9c0188acf net: shy netns_ok... |
209 210 211 212 213 214 215 216 |
if (!net_eq(net, &init_net) && !ipprot->netns_ok) { if (net_ratelimit()) printk("%s: proto %d isn't netns-ready ", __func__, protocol); kfree_skb(skb); goto out; } |
b59c27010 [NETFILTER]: Keep... |
217 218 219 220 221 222 |
if (!ipprot->no_policy) { if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) { kfree_skb(skb); goto out; } nf_reset(skb); |
1da177e4c Linux-2.6.12-rc2 |
223 224 225 226 227 228 |
} ret = ipprot->handler(skb); if (ret < 0) { protocol = -ret; goto resubmit; } |
7c73a6faf mib: add net to I... |
229 |
IP_INC_STATS_BH(net, IPSTATS_MIB_INDELIVERS); |
1da177e4c Linux-2.6.12-rc2 |
230 |
} else { |
7bc54c903 [IPv4] RAW: Compa... |
231 |
if (!raw) { |
1da177e4c Linux-2.6.12-rc2 |
232 |
if (xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) { |
7c73a6faf mib: add net to I... |
233 |
IP_INC_STATS_BH(net, IPSTATS_MIB_INUNKNOWNPROTOS); |
1da177e4c Linux-2.6.12-rc2 |
234 235 236 237 |
icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PROT_UNREACH, 0); } } else |
7c73a6faf mib: add net to I... |
238 |
IP_INC_STATS_BH(net, IPSTATS_MIB_INDELIVERS); |
1da177e4c Linux-2.6.12-rc2 |
239 240 241 242 243 244 245 246 247 248 249 |
kfree_skb(skb); } } out: rcu_read_unlock(); return 0; } /* * Deliver IP Packets to the higher protocol layers. |
e905a9eda [NET] IPV4: Fix w... |
250 |
*/ |
1da177e4c Linux-2.6.12-rc2 |
251 252 253 254 255 |
int ip_local_deliver(struct sk_buff *skb) { /* * Reassemble IP fragments. */ |
eddc9ec53 [SK_BUFF]: Introd... |
256 |
if (ip_hdr(skb)->frag_off & htons(IP_MF | IP_OFFSET)) { |
776c729e8 [IPV4]: Change ip... |
257 |
if (ip_defrag(skb, IP_DEFRAG_LOCAL_DELIVER)) |
1da177e4c Linux-2.6.12-rc2 |
258 259 |
return 0; } |
9bbc768aa netfilter: ipv4: ... |
260 |
return NF_HOOK(NFPROTO_IPV4, NF_INET_LOCAL_IN, skb, skb->dev, NULL, |
1da177e4c Linux-2.6.12-rc2 |
261 262 |
ip_local_deliver_finish); } |
d245407e7 [IPV4]: Move ip o... |
263 264 265 266 267 268 269 270 271 272 273 274 275 276 |
static inline int ip_rcv_options(struct sk_buff *skb) { struct ip_options *opt; struct iphdr *iph; struct net_device *dev = skb->dev; /* It looks as overkill, because not all IP options require packet mangling. But it is the easiest for now, especially taking into account that combination of IP options and running sniffer is extremely rare condition. --ANK (980813) */ if (skb_cow(skb, skb_headroom(skb))) { |
7c73a6faf mib: add net to I... |
277 |
IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS); |
d245407e7 [IPV4]: Move ip o... |
278 279 |
goto drop; } |
eddc9ec53 [SK_BUFF]: Introd... |
280 |
iph = ip_hdr(skb); |
22aba383c [IPV4]: Always pa... |
281 282 |
opt = &(IPCB(skb)->opt); opt->optlen = iph->ihl*4 - sizeof(struct iphdr); |
d245407e7 [IPV4]: Move ip o... |
283 |
|
c346dca10 [NET] NETNS: Omit... |
284 |
if (ip_options_compile(dev_net(dev), opt, skb)) { |
7c73a6faf mib: add net to I... |
285 |
IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INHDRERRORS); |
d245407e7 [IPV4]: Move ip o... |
286 287 |
goto drop; } |
d245407e7 [IPV4]: Move ip o... |
288 |
if (unlikely(opt->srr)) { |
6e8b11b43 net: avoid two at... |
289 |
struct in_device *in_dev = __in_dev_get_rcu(dev); |
d245407e7 [IPV4]: Move ip o... |
290 291 292 293 |
if (in_dev) { if (!IN_DEV_SOURCE_ROUTE(in_dev)) { if (IN_DEV_LOG_MARTIANS(in_dev) && net_ratelimit()) |
673d57e72 net: replace NIPQ... |
294 295 296 |
printk(KERN_INFO "source route option %pI4 -> %pI4 ", &iph->saddr, &iph->daddr); |
d245407e7 [IPV4]: Move ip o... |
297 298 |
goto drop; } |
d245407e7 [IPV4]: Move ip o... |
299 300 301 302 303 304 305 306 307 308 |
} if (ip_options_rcv_srr(skb)) goto drop; } return 0; drop: return -1; } |
861d04860 [IPV4]: Uninline ... |
309 |
static int ip_rcv_finish(struct sk_buff *skb) |
1da177e4c Linux-2.6.12-rc2 |
310 |
{ |
eddc9ec53 [SK_BUFF]: Introd... |
311 |
const struct iphdr *iph = ip_hdr(skb); |
5506b54b3 [IPV4] SNMP: Supp... |
312 |
struct rtable *rt; |
1da177e4c Linux-2.6.12-rc2 |
313 314 315 316 |
/* * Initialise the virtual path cache for the packet. It describes * how the packet travels inside Linux networking. |
e905a9eda [NET] IPV4: Fix w... |
317 |
*/ |
adf30907d net: skb->dst acc... |
318 |
if (skb_dst(skb) == NULL) { |
4a94445c9 net: Use ip_route... |
319 320 |
int err = ip_route_input_noref(skb, iph->daddr, iph->saddr, iph->tos, skb->dev); |
3e192beaf [IPV4]: Avoid com... |
321 |
if (unlikely(err)) { |
2c2910a40 [IPV4]: Snmpv2 Mi... |
322 |
if (err == -EHOSTUNREACH) |
7c73a6faf mib: add net to I... |
323 324 |
IP_INC_STATS_BH(dev_net(skb->dev), IPSTATS_MIB_INADDRERRORS); |
e91a47ebb [IPV4] SNMP: Supp... |
325 |
else if (err == -ENETUNREACH) |
7c73a6faf mib: add net to I... |
326 327 |
IP_INC_STATS_BH(dev_net(skb->dev), IPSTATS_MIB_INNOROUTES); |
b5f7e7554 ipv4: add LINUX_M... |
328 329 330 |
else if (err == -EXDEV) NET_INC_STATS_BH(dev_net(skb->dev), LINUX_MIB_IPRPFILTER); |
e905a9eda [NET] IPV4: Fix w... |
331 |
goto drop; |
2c2910a40 [IPV4]: Snmpv2 Mi... |
332 |
} |
1da177e4c Linux-2.6.12-rc2 |
333 |
} |
c7066f70d netfilter: fix Kc... |
334 |
#ifdef CONFIG_IP_ROUTE_CLASSID |
adf30907d net: skb->dst acc... |
335 |
if (unlikely(skb_dst(skb)->tclassid)) { |
7a9b2d595 net: use this_cpu... |
336 |
struct ip_rt_acct *st = this_cpu_ptr(ip_rt_acct); |
adf30907d net: skb->dst acc... |
337 |
u32 idx = skb_dst(skb)->tclassid; |
1da177e4c Linux-2.6.12-rc2 |
338 |
st[idx&0xFF].o_packets++; |
fd3f8c4cb net: clean up net... |
339 |
st[idx&0xFF].o_bytes += skb->len; |
1da177e4c Linux-2.6.12-rc2 |
340 |
st[(idx>>16)&0xFF].i_packets++; |
fd3f8c4cb net: clean up net... |
341 |
st[(idx>>16)&0xFF].i_bytes += skb->len; |
1da177e4c Linux-2.6.12-rc2 |
342 343 |
} #endif |
d245407e7 [IPV4]: Move ip o... |
344 345 |
if (iph->ihl > 5 && ip_rcv_options(skb)) goto drop; |
1da177e4c Linux-2.6.12-rc2 |
346 |
|
511c3f92a net: skb->rtable ... |
347 |
rt = skb_rtable(skb); |
edf391ff1 snmp: add missing... |
348 |
if (rt->rt_type == RTN_MULTICAST) { |
d8d1f30b9 net-next: remove ... |
349 |
IP_UPD_PO_STATS_BH(dev_net(rt->dst.dev), IPSTATS_MIB_INMCAST, |
edf391ff1 snmp: add missing... |
350 351 |
skb->len); } else if (rt->rt_type == RTN_BROADCAST) |
d8d1f30b9 net-next: remove ... |
352 |
IP_UPD_PO_STATS_BH(dev_net(rt->dst.dev), IPSTATS_MIB_INBCAST, |
edf391ff1 snmp: add missing... |
353 |
skb->len); |
5506b54b3 [IPV4] SNMP: Supp... |
354 |
|
1da177e4c Linux-2.6.12-rc2 |
355 |
return dst_input(skb); |
1da177e4c Linux-2.6.12-rc2 |
356 |
drop: |
e905a9eda [NET] IPV4: Fix w... |
357 358 |
kfree_skb(skb); return NET_RX_DROP; |
1da177e4c Linux-2.6.12-rc2 |
359 360 361 362 |
} /* * Main IP Receive routine. |
e905a9eda [NET] IPV4: Fix w... |
363 |
*/ |
f2ccd8fa0 [NET]: Kill skb->... |
364 |
int ip_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev) |
1da177e4c Linux-2.6.12-rc2 |
365 366 |
{ struct iphdr *iph; |
586152424 [IPV4]: Consisten... |
367 |
u32 len; |
1da177e4c Linux-2.6.12-rc2 |
368 369 370 371 372 373 |
/* When the interface is in promisc. mode, drop all the crap * that it receives, do not try to analyse it. */ if (skb->pkt_type == PACKET_OTHERHOST) goto drop; |
edf391ff1 snmp: add missing... |
374 375 |
IP_UPD_PO_STATS_BH(dev_net(dev), IPSTATS_MIB_IN, skb->len); |
1da177e4c Linux-2.6.12-rc2 |
376 377 |
if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL) { |
7c73a6faf mib: add net to I... |
378 |
IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS); |
1da177e4c Linux-2.6.12-rc2 |
379 380 381 382 383 |
goto out; } if (!pskb_may_pull(skb, sizeof(struct iphdr))) goto inhdr_error; |
eddc9ec53 [SK_BUFF]: Introd... |
384 |
iph = ip_hdr(skb); |
1da177e4c Linux-2.6.12-rc2 |
385 386 |
/* |
c67fa0279 net/ipv4: correct... |
387 |
* RFC1122: 3.2.1.2 MUST silently discard any IP frame that fails the checksum. |
1da177e4c Linux-2.6.12-rc2 |
388 389 390 391 392 393 394 395 396 397 |
* * Is the datagram acceptable? * * 1. Length at least the size of an ip header * 2. Version of 4 * 3. Checksums correctly. [Speed optimisation for later, skip loopback checksums] * 4. Doesn't have a bogus length */ if (iph->ihl < 5 || iph->version != 4) |
586152424 [IPV4]: Consisten... |
398 |
goto inhdr_error; |
1da177e4c Linux-2.6.12-rc2 |
399 400 401 |
if (!pskb_may_pull(skb, iph->ihl*4)) goto inhdr_error; |
eddc9ec53 [SK_BUFF]: Introd... |
402 |
iph = ip_hdr(skb); |
1da177e4c Linux-2.6.12-rc2 |
403 |
|
e9c604227 [IPV4]: Avoid com... |
404 |
if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl))) |
586152424 [IPV4]: Consisten... |
405 |
goto inhdr_error; |
1da177e4c Linux-2.6.12-rc2 |
406 |
|
586152424 [IPV4]: Consisten... |
407 |
len = ntohs(iph->tot_len); |
704aed53b [IPV4] SNMP: Supp... |
408 |
if (skb->len < len) { |
7c73a6faf mib: add net to I... |
409 |
IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INTRUNCATEDPKTS); |
704aed53b [IPV4] SNMP: Supp... |
410 411 |
goto drop; } else if (len < (iph->ihl*4)) |
586152424 [IPV4]: Consisten... |
412 |
goto inhdr_error; |
1da177e4c Linux-2.6.12-rc2 |
413 |
|
586152424 [IPV4]: Consisten... |
414 415 416 417 418 |
/* Our transport medium may have padded the buffer out. Now we know it * is IP we can trim to the true length of the frame. * Note this now means skb->len holds ntohs(iph->tot_len). */ if (pskb_trim_rcsum(skb, len)) { |
7c73a6faf mib: add net to I... |
419 |
IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS); |
586152424 [IPV4]: Consisten... |
420 |
goto drop; |
1da177e4c Linux-2.6.12-rc2 |
421 |
} |
53602f92d [IPV4]: Clear skb... |
422 |
/* Remove any debris in the socket control block */ |
d569f1d72 [IPV4]: Clear the... |
423 |
memset(IPCB(skb), 0, sizeof(struct inet_skb_parm)); |
53602f92d [IPV4]: Clear skb... |
424 |
|
71f9dacd2 inet: Call skb_or... |
425 426 |
/* Must drop socket now because of tproxy. */ skb_orphan(skb); |
9bbc768aa netfilter: ipv4: ... |
427 |
return NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, skb, dev, NULL, |
1da177e4c Linux-2.6.12-rc2 |
428 429 430 |
ip_rcv_finish); inhdr_error: |
7c73a6faf mib: add net to I... |
431 |
IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INHDRERRORS); |
1da177e4c Linux-2.6.12-rc2 |
432 |
drop: |
e905a9eda [NET] IPV4: Fix w... |
433 |
kfree_skb(skb); |
1da177e4c Linux-2.6.12-rc2 |
434 |
out: |
e905a9eda [NET] IPV4: Fix w... |
435 |
return NET_RX_DROP; |
1da177e4c Linux-2.6.12-rc2 |
436 |
} |