xref: /openbmc/linux/drivers/net/loopback.c (revision 2874c5fd284268364ece81a7bd936f3c8168e567)
1*2874c5fdSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
21da177e4SLinus Torvalds /*
31da177e4SLinus Torvalds  * INET		An implementation of the TCP/IP protocol suite for the LINUX
41da177e4SLinus Torvalds  *		operating system.  INET is implemented using the  BSD Socket
51da177e4SLinus Torvalds  *		interface as the means of communication with the user level.
61da177e4SLinus Torvalds  *
71da177e4SLinus Torvalds  *		Pseudo-driver for the loopback interface.
81da177e4SLinus Torvalds  *
91da177e4SLinus Torvalds  * Version:	@(#)loopback.c	1.0.4b	08/16/93
101da177e4SLinus Torvalds  *
1102c30a84SJesper Juhl  * Authors:	Ross Biro
121da177e4SLinus Torvalds  *		Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
131da177e4SLinus Torvalds  *		Donald Becker, <becker@scyld.com>
141da177e4SLinus Torvalds  *
151da177e4SLinus Torvalds  *		Alan Cox	:	Fixed oddments for NET3.014
161da177e4SLinus Torvalds  *		Alan Cox	:	Rejig for NET3.029 snap #3
171da177e4SLinus Torvalds  *		Alan Cox	:	Fixed NET3.029 bugs and sped up
181da177e4SLinus Torvalds  *		Larry McVoy	:	Tiny tweak to double performance
191da177e4SLinus Torvalds  *		Alan Cox	:	Backed out LMV's tweak - the linux mm
201da177e4SLinus Torvalds  *					can't take it...
211da177e4SLinus Torvalds  *              Michael Griffith:       Don't bother computing the checksums
221da177e4SLinus Torvalds  *                                      on packets received on the loopback
231da177e4SLinus Torvalds  *                                      interface.
241da177e4SLinus Torvalds  *		Alexey Kuznetsov:	Potential hang under some extreme
251da177e4SLinus Torvalds  *					cases removed.
261da177e4SLinus Torvalds  */
271da177e4SLinus Torvalds #include <linux/kernel.h>
281da177e4SLinus Torvalds #include <linux/jiffies.h>
291da177e4SLinus Torvalds #include <linux/module.h>
301da177e4SLinus Torvalds #include <linux/interrupt.h>
311da177e4SLinus Torvalds #include <linux/fs.h>
321da177e4SLinus Torvalds #include <linux/types.h>
331da177e4SLinus Torvalds #include <linux/string.h>
341da177e4SLinus Torvalds #include <linux/socket.h>
351da177e4SLinus Torvalds #include <linux/errno.h>
361da177e4SLinus Torvalds #include <linux/fcntl.h>
371da177e4SLinus Torvalds #include <linux/in.h>
381da177e4SLinus Torvalds 
397c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
40b3407c8eSEzequiel Lara Gomez #include <linux/io.h>
411da177e4SLinus Torvalds 
421da177e4SLinus Torvalds #include <linux/inet.h>
431da177e4SLinus Torvalds #include <linux/netdevice.h>
441da177e4SLinus Torvalds #include <linux/etherdevice.h>
451da177e4SLinus Torvalds #include <linux/skbuff.h>
461da177e4SLinus Torvalds #include <linux/ethtool.h>
471da177e4SLinus Torvalds #include <net/sock.h>
481da177e4SLinus Torvalds #include <net/checksum.h>
491da177e4SLinus Torvalds #include <linux/if_ether.h>	/* For the statistics structure. */
501da177e4SLinus Torvalds #include <linux/if_arp.h>	/* For ARPHRD_ETHER */
511da177e4SLinus Torvalds #include <linux/ip.h>
521da177e4SLinus Torvalds #include <linux/tcp.h>
531da177e4SLinus Torvalds #include <linux/percpu.h>
546df014cfSEzequiel Lara Gomez #include <linux/net_tstamp.h>
552774c7abSEric W. Biederman #include <net/net_namespace.h>
565eaa0bd8SEric Dumazet #include <linux/u64_stats_sync.h>
571da177e4SLinus Torvalds 
58b3407c8eSEzequiel Lara Gomez /* The higher levels take care of making this non-reentrant (it's
591da177e4SLinus Torvalds  * called with bh's disabled).
601da177e4SLinus Torvalds  */
6161357325SStephen Hemminger static netdev_tx_t loopback_xmit(struct sk_buff *skb,
6261357325SStephen Hemminger 				 struct net_device *dev)
631da177e4SLinus Torvalds {
6447d74275STejun Heo 	struct pcpu_lstats *lb_stats;
657eebb0b2SEric Dumazet 	int len;
661da177e4SLinus Torvalds 
676df014cfSEzequiel Lara Gomez 	skb_tx_timestamp(skb);
684c16128bSEric Dumazet 
694c16128bSEric Dumazet 	/* do not fool net_timestamp_check() with various clock bases */
704c16128bSEric Dumazet 	skb->tstamp = 0;
714c16128bSEric Dumazet 
721da177e4SLinus Torvalds 	skb_orphan(skb);
731da177e4SLinus Torvalds 
74794ed393SEric Dumazet 	/* Before queueing this packet to netif_rx(),
75794ed393SEric Dumazet 	 * make sure dst is refcounted.
76794ed393SEric Dumazet 	 */
77794ed393SEric Dumazet 	skb_dst_force(skb);
78794ed393SEric Dumazet 
791da177e4SLinus Torvalds 	skb->protocol = eth_type_trans(skb, dev);
801da177e4SLinus Torvalds 
819e0db4b1SEric W. Biederman 	/* it's OK to use per_cpu_ptr() because BHs are off */
82a7855c78SEric Dumazet 	lb_stats = this_cpu_ptr(dev->lstats);
831da177e4SLinus Torvalds 
847eebb0b2SEric Dumazet 	len = skb->len;
857eebb0b2SEric Dumazet 	if (likely(netif_rx(skb) == NET_RX_SUCCESS)) {
865eaa0bd8SEric Dumazet 		u64_stats_update_begin(&lb_stats->syncp);
877eebb0b2SEric Dumazet 		lb_stats->bytes += len;
887eebb0b2SEric Dumazet 		lb_stats->packets++;
895eaa0bd8SEric Dumazet 		u64_stats_update_end(&lb_stats->syncp);
90caf586e5SEric Dumazet 	}
911da177e4SLinus Torvalds 
926ed10654SPatrick McHardy 	return NETDEV_TX_OK;
931da177e4SLinus Torvalds }
941da177e4SLinus Torvalds 
95bc1f4470Sstephen hemminger static void loopback_get_stats64(struct net_device *dev,
9628172739SEric Dumazet 				 struct rtnl_link_stats64 *stats)
971da177e4SLinus Torvalds {
986b10de38SEric Dumazet 	u64 bytes = 0;
996b10de38SEric Dumazet 	u64 packets = 0;
1001da177e4SLinus Torvalds 	int i;
1011da177e4SLinus Torvalds 
1020fed4846SKAMEZAWA Hiroyuki 	for_each_possible_cpu(i) {
1035175c378SEric Dumazet 		const struct pcpu_lstats *lb_stats;
1045eaa0bd8SEric Dumazet 		u64 tbytes, tpackets;
1055eaa0bd8SEric Dumazet 		unsigned int start;
1061da177e4SLinus Torvalds 
107a7855c78SEric Dumazet 		lb_stats = per_cpu_ptr(dev->lstats, i);
1085eaa0bd8SEric Dumazet 		do {
10957a7744eSEric W. Biederman 			start = u64_stats_fetch_begin_irq(&lb_stats->syncp);
1105eaa0bd8SEric Dumazet 			tbytes = lb_stats->bytes;
1115eaa0bd8SEric Dumazet 			tpackets = lb_stats->packets;
11257a7744eSEric W. Biederman 		} while (u64_stats_fetch_retry_irq(&lb_stats->syncp, start));
1135eaa0bd8SEric Dumazet 		bytes   += tbytes;
1145eaa0bd8SEric Dumazet 		packets += tpackets;
1151da177e4SLinus Torvalds 	}
1165175c378SEric Dumazet 	stats->rx_packets = packets;
1175175c378SEric Dumazet 	stats->tx_packets = packets;
1185175c378SEric Dumazet 	stats->rx_bytes   = bytes;
1195175c378SEric Dumazet 	stats->tx_bytes   = bytes;
1201da177e4SLinus Torvalds }
1211da177e4SLinus Torvalds 
1227fa6b066SStephen Hemminger static u32 always_on(struct net_device *dev)
1231da177e4SLinus Torvalds {
1241da177e4SLinus Torvalds 	return 1;
1251da177e4SLinus Torvalds }
1261da177e4SLinus Torvalds 
1277282d491SJeff Garzik static const struct ethtool_ops loopback_ethtool_ops = {
1287fa6b066SStephen Hemminger 	.get_link		= always_on,
129af730342SJulian Wiedmann 	.get_ts_info		= ethtool_op_get_ts_info,
1301da177e4SLinus Torvalds };
1311da177e4SLinus Torvalds 
1325f6d88b9SEric W. Biederman static int loopback_dev_init(struct net_device *dev)
1335f6d88b9SEric W. Biederman {
1341c213bd2SWANG Cong 	dev->lstats = netdev_alloc_pcpu_stats(struct pcpu_lstats);
135a7855c78SEric Dumazet 	if (!dev->lstats)
1365f6d88b9SEric W. Biederman 		return -ENOMEM;
1375f6d88b9SEric W. Biederman 	return 0;
1385f6d88b9SEric W. Biederman }
1395f6d88b9SEric W. Biederman 
1405f6d88b9SEric W. Biederman static void loopback_dev_free(struct net_device *dev)
1415f6d88b9SEric W. Biederman {
142e05e9070SEric W. Biederman 	dev_net(dev)->loopback_dev = NULL;
143a7855c78SEric Dumazet 	free_percpu(dev->lstats);
1445f6d88b9SEric W. Biederman }
1455f6d88b9SEric W. Biederman 
146c02373bfSStephen Hemminger static const struct net_device_ops loopback_ops = {
147c02373bfSStephen Hemminger 	.ndo_init        = loopback_dev_init,
14800829823SStephen Hemminger 	.ndo_start_xmit  = loopback_xmit,
1496b10de38SEric Dumazet 	.ndo_get_stats64 = loopback_get_stats64,
15025f929fbSWANG Cong 	.ndo_set_mac_address = eth_mac_addr,
151c02373bfSStephen Hemminger };
152c02373bfSStephen Hemminger 
153b3407c8eSEzequiel Lara Gomez /* The loopback device is special. There is only one instance
1549e0db4b1SEric W. Biederman  * per network namespace.
1557fa6b066SStephen Hemminger  */
156854d8363SDaniel Lezcano static void loopback_setup(struct net_device *dev)
157854d8363SDaniel Lezcano {
1580cf833aeSEric Dumazet 	dev->mtu		= 64 * 1024;
159854d8363SDaniel Lezcano 	dev->hard_header_len	= ETH_HLEN;	/* 14	*/
160217e6fa2SWillem de Bruijn 	dev->min_header_len	= ETH_HLEN;	/* 14	*/
161854d8363SDaniel Lezcano 	dev->addr_len		= ETH_ALEN;	/* 6	*/
162854d8363SDaniel Lezcano 	dev->type		= ARPHRD_LOOPBACK;	/* 0x0001*/
163854d8363SDaniel Lezcano 	dev->flags		= IFF_LOOPBACK;
164e65db2b7SPhil Sutter 	dev->priv_flags		|= IFF_LIVE_ADDR_CHANGE | IFF_NO_QUEUE;
16502875878SEric Dumazet 	netif_keep_dst(dev);
166f6c382fcSMarcelo Ricardo Leitner 	dev->hw_features	= NETIF_F_GSO_SOFTWARE;
167854d8363SDaniel Lezcano 	dev->features		= NETIF_F_SG | NETIF_F_FRAGLIST
168f6c382fcSMarcelo Ricardo Leitner 		| NETIF_F_GSO_SOFTWARE
16934324dc2SMichał Mirosław 		| NETIF_F_HW_CSUM
170cf0bdefdSMichał Mirosław 		| NETIF_F_RXCSUM
17153692b1dSTom Herbert 		| NETIF_F_SCTP_CRC
172854d8363SDaniel Lezcano 		| NETIF_F_HIGHDMA
173ce286d32SEric W. Biederman 		| NETIF_F_LLTX
1740553c891SKrishna Kumar 		| NETIF_F_NETNS_LOCAL
175eed2a12fSMahesh Bandewar 		| NETIF_F_VLAN_CHALLENGED
176eed2a12fSMahesh Bandewar 		| NETIF_F_LOOPBACK;
177854d8363SDaniel Lezcano 	dev->ethtool_ops	= &loopback_ethtool_ops;
1783b04dddeSStephen Hemminger 	dev->header_ops		= &eth_header_ops;
179c02373bfSStephen Hemminger 	dev->netdev_ops		= &loopback_ops;
180cf124db5SDavid S. Miller 	dev->needs_free_netdev	= true;
181cf124db5SDavid S. Miller 	dev->priv_destructor	= loopback_dev_free;
182854d8363SDaniel Lezcano }
183de3cb747SDaniel Lezcano 
18422783649SRalf Baechle /* Setup and register the loopback device. */
1854665079cSPavel Emelyanov static __net_init int loopback_net_init(struct net *net)
1861da177e4SLinus Torvalds {
187854d8363SDaniel Lezcano 	struct net_device *dev;
188854d8363SDaniel Lezcano 	int err;
189aeed9e82SHerbert Xu 
190854d8363SDaniel Lezcano 	err = -ENOMEM;
191c835a677STom Gundersen 	dev = alloc_netdev(0, "lo", NET_NAME_UNKNOWN, loopback_setup);
192854d8363SDaniel Lezcano 	if (!dev)
193854d8363SDaniel Lezcano 		goto out;
194854d8363SDaniel Lezcano 
195c346dca1SYOSHIFUJI Hideaki 	dev_net_set(dev, net);
196854d8363SDaniel Lezcano 	err = register_netdev(dev);
197854d8363SDaniel Lezcano 	if (err)
198854d8363SDaniel Lezcano 		goto out_free_netdev;
199854d8363SDaniel Lezcano 
2001fb9489bSPavel Emelyanov 	BUG_ON(dev->ifindex != LOOPBACK_IFINDEX);
2012774c7abSEric W. Biederman 	net->loopback_dev = dev;
2029d6dda32SPavel Emelyanov 	return 0;
203854d8363SDaniel Lezcano 
204854d8363SDaniel Lezcano out_free_netdev:
205854d8363SDaniel Lezcano 	free_netdev(dev);
2069d6dda32SPavel Emelyanov out:
20709ad9bc7SOctavian Purdila 	if (net_eq(net, &init_net))
2089d6dda32SPavel Emelyanov 		panic("loopback: Failed to register netdevice: %d\n", err);
2099d6dda32SPavel Emelyanov 	return err;
210854d8363SDaniel Lezcano }
21160903f2cSAdrian Bunk 
212505d4f73SEric W. Biederman /* Registered in net/core/dev.c */
213505d4f73SEric W. Biederman struct pernet_operations __net_initdata loopback_net_ops = {
2142774c7abSEric W. Biederman 	.init = loopback_net_init,
2152774c7abSEric W. Biederman };
216