cregit-Linux how code gets into the kernel

Release 4.14 net/ipv4/ip_input.c

Directory: net/ipv4
/*
 * 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.
 *
 * Authors:     Ross Biro
 *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
 *              Donald Becker, <becker@super.org>
 *              Alan Cox, <alan@lxorguk.ukuu.org.uk>
 *              Richard Underwood
 *              Stefan Becker, <stefanb@yello.ping.de>
 *              Jorge Cwik, <jorge@laser.satlink.net>
 *              Arnt Gulbrandsen, <agulbra@nvg.unit.no>
 *
 *
 * 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
 *
 *
 *
 * 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.
 *              Output fragmentation wants updating along with the buffer management to use a single
 *              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.
 */


#define pr_fmt(fmt) "IPv4: " fmt

#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/slab.h>

#include <linux/net.h>
#include <linux/socket.h>
#include <linux/sockios.h>
#include <linux/in.h>
#include <linux/inet.h>
#include <linux/inetdevice.h>
#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 <net/inet_ecn.h>
#include <linux/netfilter_ipv4.h>
#include <net/xfrm.h>
#include <linux/mroute.h>
#include <linux/netlink.h>
#include <net/dst_metadata.h>

/*
 *      Process Router Attention IP option (RFC 2113)
 */

bool ip_call_ra_chain(struct sk_buff *skb) { struct ip_ra_chain *ra; u8 protocol = ip_hdr(skb)->protocol; struct sock *last = NULL; struct net_device *dev = skb->dev; struct net *net = dev_net(dev); for (ra = rcu_dereference(ip_ra_chain); ra; ra = rcu_dereference(ra->next)) { struct sock *sk = ra->sk; /* If socket is bound to an interface, only report * the packet if it came from that interface. */ if (sk && inet_sk(sk)->inet_num == protocol && (!sk->sk_bound_dev_if || sk->sk_bound_dev_if == dev->ifindex) && net_eq(sock_net(sk), net)) { if (ip_is_fragment(ip_hdr(skb))) { if (ip_defrag(net, skb, IP_DEFRAG_CALL_RA_CHAIN)) return true; } 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); return true; } return false; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)14170.15%317.65%
Eric W. Biedermann136.47%211.76%
Denis V. Lunev115.47%15.88%
Arnaldo Carvalho de Melo94.48%211.76%
David S. Miller73.48%211.76%
Eric Dumazet73.48%211.76%
Octavian Purdila41.99%15.88%
Hideaki Yoshifuji / 吉藤英明31.49%15.88%
Paul Gortmaker21.00%15.88%
Herbert Xu21.00%15.88%
Patrick McHardy21.00%15.88%
Total201100.00%17100.00%


static int ip_local_deliver_finish(struct net *net, struct sock *sk, struct sk_buff *skb) { __skb_pull(skb, skb_network_header_len(skb)); rcu_read_lock(); { int protocol = ip_hdr(skb)->protocol; const struct net_protocol *ipprot; int raw; resubmit: raw = raw_local_deliver(skb, protocol); ipprot = rcu_dereference(inet_protos[protocol]); if (ipprot) { int ret; if (!ipprot->no_policy) { if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) { kfree_skb(skb); goto out; } nf_reset(skb); } ret = ipprot->handler(skb); if (ret < 0) { protocol = -ret; goto resubmit; } __IP_INC_STATS(net, IPSTATS_MIB_INDELIVERS); } else { if (!raw) { if (xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) { __IP_INC_STATS(net, IPSTATS_MIB_INUNKNOWNPROTOS); icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PROT_UNREACH, 0); } kfree_skb(skb); } else { __IP_INC_STATS(net, IPSTATS_MIB_INDELIVERS); consume_skb(skb); } } } out: rcu_read_unlock(); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)5926.58%722.58%
Alexey Kuznetsov3415.32%13.23%
David S. Miller2812.61%39.68%
Pavel Emelyanov167.21%26.45%
Stephen Hemminger114.95%13.23%
Patrick McHardy104.50%13.23%
Nivedita Singhvi104.50%26.45%
Linus Torvalds94.05%13.23%
Alexey Dobriyan94.05%26.45%
Neil Horman83.60%13.23%
Arnaldo Carvalho de Melo73.15%39.68%
Hideaki Yoshifuji / 吉藤英明52.25%26.45%
Eric W. Biedermann52.25%13.23%
Eric Dumazet41.80%26.45%
Denis V. Lunev41.80%13.23%
Dipankar Sarma31.35%13.23%
Total222100.00%31100.00%

/* * Deliver IP Packets to the higher protocol layers. */
int ip_local_deliver(struct sk_buff *skb) { /* * Reassemble IP fragments. */ struct net *net = dev_net(skb->dev); if (ip_is_fragment(ip_hdr(skb))) { if (ip_defrag(net, skb, IP_DEFRAG_LOCAL_DELIVER)) return 0; } return NF_HOOK(NFPROTO_IPV4, NF_INET_LOCAL_IN, net, NULL, skb, skb->dev, NULL, ip_local_deliver_finish); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)3954.93%428.57%
Eric W. Biedermann1622.54%214.29%
Arnaldo Carvalho de Melo34.23%17.14%
Patrick McHardy34.23%214.29%
Linus Torvalds34.23%17.14%
Herbert Xu22.82%17.14%
Paul Gortmaker22.82%17.14%
David S. Miller22.82%17.14%
Jan Engelhardt11.41%17.14%
Total71100.00%14100.00%


static inline bool ip_rcv_options(struct sk_buff *skb) { struct ip_options *opt; const 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))) { __IP_INC_STATS(dev_net(dev), IPSTATS_MIB_INDISCARDS); goto drop; } iph = ip_hdr(skb); opt = &(IPCB(skb)->opt); opt->optlen = iph->ihl*4 - sizeof(struct iphdr); if (ip_options_compile(dev_net(dev), opt, skb)) { __IP_INC_STATS(dev_net(dev), IPSTATS_MIB_INHDRERRORS); goto drop; } if (unlikely(opt->srr)) { struct in_device *in_dev = __in_dev_get_rcu(dev); if (in_dev) { if (!IN_DEV_SOURCE_ROUTE(in_dev)) { if (IN_DEV_LOG_MARTIANS(in_dev)) net_info_ratelimited("source route option %pI4 -> %pI4\n", &iph->saddr, &iph->daddr); goto drop; } } if (ip_options_rcv_srr(skb)) goto drop; } return false; drop: return true; }

Contributors

PersonTokensPropCommitsCommitProp
Thomas Graf14671.57%17.69%
Denis V. Lunev3115.20%323.08%
Pavel Emelyanov104.90%17.69%
Eric Dumazet41.96%323.08%
David S. Miller31.47%17.69%
Harvey Harrison31.47%17.69%
Hideaki Yoshifuji / 吉藤英明31.47%17.69%
Arnaldo Carvalho de Melo31.47%17.69%
Joe Perches10.49%17.69%
Total204100.00%13100.00%


static int ip_rcv_finish(struct net *net, struct sock *sk, struct sk_buff *skb) { const struct iphdr *iph = ip_hdr(skb); int (*edemux)(struct sk_buff *skb); struct net_device *dev = skb->dev; struct rtable *rt; int err; /* if ingress device is enslaved to an L3 master device pass the * skb to its handler for processing */ skb = l3mdev_ip_rcv(skb); if (!skb) return NET_RX_SUCCESS; if (net->ipv4.sysctl_ip_early_demux && !skb_dst(skb) && !skb->sk && !ip_is_fragment(iph)) { const struct net_protocol *ipprot; int protocol = iph->protocol; ipprot = rcu_dereference(inet_protos[protocol]); if (ipprot && (edemux = READ_ONCE(ipprot->early_demux))) { err = edemux(skb); if (unlikely(err)) goto drop_error; /* must reload iph, skb->head might have changed */ iph = ip_hdr(skb); } } /* * Initialise the virtual path cache for the packet. It describes * how the packet travels inside Linux networking. */ if (!skb_valid_dst(skb)) { err = ip_route_input_noref(skb, iph->daddr, iph->saddr, iph->tos, dev); if (unlikely(err)) goto drop_error; } #ifdef CONFIG_IP_ROUTE_CLASSID if (unlikely(skb_dst(skb)->tclassid)) { struct ip_rt_acct *st = this_cpu_ptr(ip_rt_acct); u32 idx = skb_dst(skb)->tclassid; st[idx&0xFF].o_packets++; st[idx&0xFF].o_bytes += skb->len; st[(idx>>16)&0xFF].i_packets++; st[(idx>>16)&0xFF].i_bytes += skb->len; } #endif if (iph->ihl > 5 && ip_rcv_options(skb)) goto drop; rt = skb_rtable(skb); if (rt->rt_type == RTN_MULTICAST) { __IP_UPD_PO_STATS(net, IPSTATS_MIB_INMCAST, skb->len); } else if (rt->rt_type == RTN_BROADCAST) { __IP_UPD_PO_STATS(net, IPSTATS_MIB_INBCAST, skb->len); } else if (skb->pkt_type == PACKET_BROADCAST || skb->pkt_type == PACKET_MULTICAST) { struct in_device *in_dev = __in_dev_get_rcu(dev); /* RFC 1122 3.3.6: * * When a host sends a datagram to a link-layer broadcast * address, the IP destination address MUST be a legal IP * broadcast or IP multicast address. * * A host SHOULD silently discard a datagram that is received * via a link-layer broadcast (see Section 2.4) but does not * specify an IP multicast or broadcast destination address. * * This doesn't explicitly say L2 *broadcast*, but broadcast is * in a way a form of multicast and the most common use case for * this is 802.11 protecting against cross-station spoofing (the * so-called "hole-196" attack) so do it for both. */ if (in_dev && IN_DEV_ORCONF(in_dev, DROP_UNICAST_IN_L2_MULTICAST)) goto drop; } return dst_input(skb); drop: kfree_skb(skb); return NET_RX_DROP; drop_error: if (err == -EXDEV) __NET_INC_STATS(net, LINUX_MIB_IPRPFILTER); goto drop; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)15133.78%717.95%
David S. Miller5211.63%410.26%
Paolo Abeni5011.19%12.56%
Johannes Berg449.84%12.56%
Eric Dumazet337.38%717.95%
Mitsuru Chinen296.49%12.56%
David Ahern163.58%12.56%
Thomas Graf132.91%37.69%
Neil Horman122.68%12.56%
Subash Abhinov Kasiviswanathan102.24%12.56%
Mark Tomlinson92.01%12.56%
Eric W. Biedermann71.57%25.13%
Holger Eitzenberger40.89%12.56%
Nikolay Borisov40.89%12.56%
Arnaldo Carvalho de Melo40.89%12.56%
Alexander Duyck30.67%12.56%
Pavel Emelyanov20.45%12.56%
Ian Morris10.22%12.56%
Dietmar Eggemann10.22%12.56%
Hideaki Yoshifuji / 吉藤英明10.22%12.56%
Patrick McHardy10.22%12.56%
Total447100.00%39100.00%

/* * Main IP Receive routine. */
int ip_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev) { const struct iphdr *iph; struct net *net; u32 len; /* 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; net = dev_net(dev); __IP_UPD_PO_STATS(net, IPSTATS_MIB_IN, skb->len); skb = skb_share_check(skb, GFP_ATOMIC); if (!skb) { __IP_INC_STATS(net, IPSTATS_MIB_INDISCARDS); goto out; } if (!pskb_may_pull(skb, sizeof(struct iphdr))) goto inhdr_error; iph = ip_hdr(skb); /* * RFC1122: 3.2.1.2 MUST silently discard any IP frame that fails the checksum. * * 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) goto inhdr_error; BUILD_BUG_ON(IPSTATS_MIB_ECT1PKTS != IPSTATS_MIB_NOECTPKTS + INET_ECN_ECT_1); BUILD_BUG_ON(IPSTATS_MIB_ECT0PKTS != IPSTATS_MIB_NOECTPKTS + INET_ECN_ECT_0); BUILD_BUG_ON(IPSTATS_MIB_CEPKTS != IPSTATS_MIB_NOECTPKTS + INET_ECN_CE); __IP_ADD_STATS(net, IPSTATS_MIB_NOECTPKTS + (iph->tos & INET_ECN_MASK), max_t(unsigned short, 1, skb_shinfo(skb)->gso_segs)); if (!pskb_may_pull(skb, iph->ihl*4)) goto inhdr_error; iph = ip_hdr(skb); if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl))) goto csum_error; len = ntohs(iph->tot_len); if (skb->len < len) { __IP_INC_STATS(net, IPSTATS_MIB_INTRUNCATEDPKTS); goto drop; } else if (len < (iph->ihl*4)) goto inhdr_error; /* 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)) { __IP_INC_STATS(net, IPSTATS_MIB_INDISCARDS); goto drop; } skb->transport_header = skb->network_header + iph->ihl*4; /* Remove any debris in the socket control block */ memset(IPCB(skb), 0, sizeof(struct inet_skb_parm)); IPCB(skb)->iif = skb->skb_iif; /* Must drop socket now because of tproxy. */ skb_orphan(skb); return NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, net, NULL, skb, dev, NULL, ip_rcv_finish); csum_error: __IP_INC_STATS(net, IPSTATS_MIB_CSUMERRORS); inhdr_error: __IP_INC_STATS(net, IPSTATS_MIB_INHDRERRORS); drop: kfree_skb(skb); out: return NET_RX_DROP; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)15238.19%616.67%
Eric Dumazet7919.85%719.44%
Linus Torvalds4110.30%25.56%
Eric W. Biedermann184.52%25.56%
Stephen Hemminger164.02%12.78%
Herbert Xu143.52%25.56%
Mitsuru Chinen133.27%12.78%
David Ahern112.76%12.78%
Thomas Graf112.76%25.56%
Pavel Emelyanov92.26%12.78%
David S. Miller71.76%25.56%
Arnaldo Carvalho de Melo61.51%12.78%
Nivedita Singhvi51.26%12.78%
Neil Horman51.26%12.78%
Ian Morris51.26%12.78%
Hideaki Yoshifuji / 吉藤英明20.50%12.78%
Guillaume Chazarain10.25%12.78%
Jan Engelhardt10.25%12.78%
Patrick McHardy10.25%12.78%
J.H.M. Dassen (Ray)10.25%12.78%
Total398100.00%36100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)61637.47%1513.39%
Thomas Graf17310.52%54.46%
Eric Dumazet1317.97%1614.29%
David S. Miller996.02%108.93%
Eric W. Biedermann593.59%65.36%
Linus Torvalds533.22%21.79%
Paolo Abeni503.04%10.89%
Denis V. Lunev462.80%43.57%
Johannes Berg442.68%10.89%
Mitsuru Chinen422.55%21.79%
Arnaldo Carvalho de Melo382.31%65.36%
Pavel Emelyanov372.25%21.79%
Alexey Kuznetsov372.25%21.79%
Stephen Hemminger271.64%21.79%
David Ahern271.64%21.79%
Neil Horman251.52%21.79%
Herbert Xu181.09%32.68%
Patrick McHardy171.03%43.57%
Nivedita Singhvi150.91%21.79%
Hideaki Yoshifuji / 吉藤英明140.85%54.46%
Subash Abhinov Kasiviswanathan100.61%10.89%
Alexey Dobriyan90.55%21.79%
Mark Tomlinson90.55%10.89%
Joe Perches80.49%21.79%
Ian Morris60.36%10.89%
Paul Gortmaker40.24%10.89%
Octavian Purdila40.24%10.89%
Holger Eitzenberger40.24%10.89%
Nikolay Borisov40.24%10.89%
Harvey Harrison30.18%10.89%
Dipankar Sarma30.18%10.89%
Tejun Heo30.18%10.89%
Alexander Duyck30.18%10.89%
Jan Engelhardt20.12%10.89%
Guillaume Chazarain10.06%10.89%
Dietmar Eggemann10.06%10.89%
Alan Cox10.06%10.89%
J.H.M. Dassen (Ray)10.06%10.89%
Total1644100.00%112100.00%
Directory: net/ipv4
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.