eth.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  1. /*
  2. * INET An implementation of the TCP/IP protocol suite for the LINUX
  3. * operating system. INET is implemented using the BSD Socket
  4. * interface as the means of communication with the user level.
  5. *
  6. * Ethernet-type device handling.
  7. *
  8. * Version: @(#)eth.c 1.0.7 05/25/93
  9. *
  10. * Authors: Ross Biro
  11. * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12. * Mark Evans, <evansmp@uhura.aston.ac.uk>
  13. * Florian La Roche, <rzsfl@rz.uni-sb.de>
  14. * Alan Cox, <gw4pts@gw4pts.ampr.org>
  15. *
  16. * Fixes:
  17. * Mr Linux : Arp problems
  18. * Alan Cox : Generic queue tidyup (very tiny here)
  19. * Alan Cox : eth_header ntohs should be htons
  20. * Alan Cox : eth_rebuild_header missing an htons and
  21. * minor other things.
  22. * Tegge : Arp bug fixes.
  23. * Florian : Removed many unnecessary functions, code cleanup
  24. * and changes for new arp and skbuff.
  25. * Alan Cox : Redid header building to reflect new format.
  26. * Alan Cox : ARP only when compiled with CONFIG_INET
  27. * Greg Page : 802.2 and SNAP stuff.
  28. * Alan Cox : MAC layer pointers/new format.
  29. * Paul Gortmaker : eth_copy_and_sum shouldn't csum padding.
  30. * Alan Cox : Protect against forwarding explosions with
  31. * older network drivers and IFF_ALLMULTI.
  32. * Christer Weinigel : Better rebuild header message.
  33. * Andrew Morton : 26Feb01: kill ether_setup() - use netdev_boot_setup().
  34. *
  35. * This program is free software; you can redistribute it and/or
  36. * modify it under the terms of the GNU General Public License
  37. * as published by the Free Software Foundation; either version
  38. * 2 of the License, or (at your option) any later version.
  39. */
  40. #include <linux/module.h>
  41. #include <linux/types.h>
  42. #include <linux/kernel.h>
  43. #include <linux/string.h>
  44. #include <linux/mm.h>
  45. #include <linux/socket.h>
  46. #include <linux/in.h>
  47. #include <linux/inet.h>
  48. #include <linux/ip.h>
  49. #include <linux/netdevice.h>
  50. #include <linux/etherdevice.h>
  51. #include <linux/skbuff.h>
  52. #include <linux/errno.h>
  53. #include <linux/init.h>
  54. #include <linux/if_ether.h>
  55. #include <linux/of_net.h>
  56. #include <linux/pci.h>
  57. #include <net/dst.h>
  58. #include <net/arp.h>
  59. #include <net/sock.h>
  60. #include <net/ipv6.h>
  61. #include <net/ip.h>
  62. #include <net/dsa.h>
  63. #include <net/flow_dissector.h>
  64. #include <linux/uaccess.h>
  65. __setup("ether=", netdev_boot_setup);
  66. /**
  67. * eth_header - create the Ethernet header
  68. * @skb: buffer to alter
  69. * @dev: source device
  70. * @type: Ethernet type field
  71. * @daddr: destination address (NULL leave destination address)
  72. * @saddr: source address (NULL use device source address)
  73. * @len: packet length (<= skb->len)
  74. *
  75. *
  76. * Set the protocol type. For a packet of type ETH_P_802_3/2 we put the length
  77. * in here instead.
  78. */
  79. int eth_header(struct sk_buff *skb, struct net_device *dev,
  80. unsigned short type,
  81. const void *daddr, const void *saddr, unsigned int len)
  82. {
  83. struct ethhdr *eth = (struct ethhdr *)skb_push(skb, ETH_HLEN);
  84. if (type != ETH_P_802_3 && type != ETH_P_802_2)
  85. eth->h_proto = htons(type);
  86. else
  87. eth->h_proto = htons(len);
  88. /*
  89. * Set the source hardware address.
  90. */
  91. if (!saddr)
  92. saddr = dev->dev_addr;
  93. memcpy(eth->h_source, saddr, ETH_ALEN);
  94. if (daddr) {
  95. memcpy(eth->h_dest, daddr, ETH_ALEN);
  96. return ETH_HLEN;
  97. }
  98. /*
  99. * Anyway, the loopback-device should never use this function...
  100. */
  101. if (dev->flags & (IFF_LOOPBACK | IFF_NOARP)) {
  102. eth_zero_addr(eth->h_dest);
  103. return ETH_HLEN;
  104. }
  105. return -ETH_HLEN;
  106. }
  107. EXPORT_SYMBOL(eth_header);
  108. /**
  109. * eth_get_headlen - determine the length of header for an ethernet frame
  110. * @data: pointer to start of frame
  111. * @len: total length of frame
  112. *
  113. * Make a best effort attempt to pull the length for all of the headers for
  114. * a given frame in a linear buffer.
  115. */
  116. u32 eth_get_headlen(void *data, unsigned int len)
  117. {
  118. const struct ethhdr *eth = (const struct ethhdr *)data;
  119. struct flow_keys keys;
  120. /* this should never happen, but better safe than sorry */
  121. if (unlikely(len < sizeof(*eth)))
  122. return len;
  123. /* parse any remaining L2/L3 headers, check for L4 */
  124. if (!skb_flow_dissect_flow_keys_buf(&keys, data, eth->h_proto,
  125. sizeof(*eth), len, 0))
  126. return max_t(u32, keys.control.thoff, sizeof(*eth));
  127. /* parse for any L4 headers */
  128. return min_t(u32, __skb_get_poff(NULL, data, &keys, len), len);
  129. }
  130. EXPORT_SYMBOL(eth_get_headlen);
  131. /**
  132. * eth_type_trans - determine the packet's protocol ID.
  133. * @skb: received socket data
  134. * @dev: receiving network device
  135. *
  136. * The rule here is that we
  137. * assume 802.3 if the type field is short enough to be a length.
  138. * This is normal practice and works for any 'now in use' protocol.
  139. */
  140. __be16 eth_type_trans(struct sk_buff *skb, struct net_device *dev)
  141. {
  142. unsigned short _service_access_point;
  143. const unsigned short *sap;
  144. const struct ethhdr *eth;
  145. skb->dev = dev;
  146. skb_reset_mac_header(skb);
  147. eth = (struct ethhdr *)skb->data;
  148. skb_pull_inline(skb, ETH_HLEN);
  149. if (unlikely(is_multicast_ether_addr_64bits(eth->h_dest))) {
  150. if (ether_addr_equal_64bits(eth->h_dest, dev->broadcast))
  151. skb->pkt_type = PACKET_BROADCAST;
  152. else
  153. skb->pkt_type = PACKET_MULTICAST;
  154. }
  155. else if (unlikely(!ether_addr_equal_64bits(eth->h_dest,
  156. dev->dev_addr)))
  157. skb->pkt_type = PACKET_OTHERHOST;
  158. /*
  159. * Some variants of DSA tagging don't have an ethertype field
  160. * at all, so we check here whether one of those tagging
  161. * variants has been configured on the receiving interface,
  162. * and if so, set skb->protocol without looking at the packet.
  163. */
  164. if (unlikely(netdev_uses_dsa(dev)))
  165. return htons(ETH_P_XDSA);
  166. if (likely(eth_proto_is_802_3(eth->h_proto)))
  167. return eth->h_proto;
  168. /*
  169. * This is a magic hack to spot IPX packets. Older Novell breaks
  170. * the protocol design and runs IPX over 802.3 without an 802.2 LLC
  171. * layer. We look for FFFF which isn't a used 802.2 SSAP/DSAP. This
  172. * won't work for fault tolerant netware but does for the rest.
  173. */
  174. sap = skb_header_pointer(skb, 0, sizeof(*sap), &_service_access_point);
  175. if (sap && *sap == 0xFFFF)
  176. return htons(ETH_P_802_3);
  177. /*
  178. * Real 802.2 LLC
  179. */
  180. return htons(ETH_P_802_2);
  181. }
  182. EXPORT_SYMBOL(eth_type_trans);
  183. /**
  184. * eth_header_parse - extract hardware address from packet
  185. * @skb: packet to extract header from
  186. * @haddr: destination buffer
  187. */
  188. int eth_header_parse(const struct sk_buff *skb, unsigned char *haddr)
  189. {
  190. const struct ethhdr *eth = eth_hdr(skb);
  191. memcpy(haddr, eth->h_source, ETH_ALEN);
  192. return ETH_ALEN;
  193. }
  194. EXPORT_SYMBOL(eth_header_parse);
  195. /**
  196. * eth_header_cache - fill cache entry from neighbour
  197. * @neigh: source neighbour
  198. * @hh: destination cache entry
  199. * @type: Ethernet type field
  200. *
  201. * Create an Ethernet header template from the neighbour.
  202. */
  203. int eth_header_cache(const struct neighbour *neigh, struct hh_cache *hh, __be16 type)
  204. {
  205. struct ethhdr *eth;
  206. const struct net_device *dev = neigh->dev;
  207. eth = (struct ethhdr *)
  208. (((u8 *) hh->hh_data) + (HH_DATA_OFF(sizeof(*eth))));
  209. if (type == htons(ETH_P_802_3))
  210. return -1;
  211. eth->h_proto = type;
  212. memcpy(eth->h_source, dev->dev_addr, ETH_ALEN);
  213. memcpy(eth->h_dest, neigh->ha, ETH_ALEN);
  214. hh->hh_len = ETH_HLEN;
  215. return 0;
  216. }
  217. EXPORT_SYMBOL(eth_header_cache);
  218. /**
  219. * eth_header_cache_update - update cache entry
  220. * @hh: destination cache entry
  221. * @dev: network device
  222. * @haddr: new hardware address
  223. *
  224. * Called by Address Resolution module to notify changes in address.
  225. */
  226. void eth_header_cache_update(struct hh_cache *hh,
  227. const struct net_device *dev,
  228. const unsigned char *haddr)
  229. {
  230. memcpy(((u8 *) hh->hh_data) + HH_DATA_OFF(sizeof(struct ethhdr)),
  231. haddr, ETH_ALEN);
  232. }
  233. EXPORT_SYMBOL(eth_header_cache_update);
  234. /**
  235. * eth_prepare_mac_addr_change - prepare for mac change
  236. * @dev: network device
  237. * @p: socket address
  238. */
  239. int eth_prepare_mac_addr_change(struct net_device *dev, void *p)
  240. {
  241. struct sockaddr *addr = p;
  242. if (!(dev->priv_flags & IFF_LIVE_ADDR_CHANGE) && netif_running(dev))
  243. return -EBUSY;
  244. if (!is_valid_ether_addr(addr->sa_data))
  245. return -EADDRNOTAVAIL;
  246. return 0;
  247. }
  248. EXPORT_SYMBOL(eth_prepare_mac_addr_change);
  249. /**
  250. * eth_commit_mac_addr_change - commit mac change
  251. * @dev: network device
  252. * @p: socket address
  253. */
  254. void eth_commit_mac_addr_change(struct net_device *dev, void *p)
  255. {
  256. struct sockaddr *addr = p;
  257. memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
  258. }
  259. EXPORT_SYMBOL(eth_commit_mac_addr_change);
  260. /**
  261. * eth_mac_addr - set new Ethernet hardware address
  262. * @dev: network device
  263. * @p: socket address
  264. *
  265. * Change hardware address of device.
  266. *
  267. * This doesn't change hardware matching, so needs to be overridden
  268. * for most real devices.
  269. */
  270. int eth_mac_addr(struct net_device *dev, void *p)
  271. {
  272. int ret;
  273. ret = eth_prepare_mac_addr_change(dev, p);
  274. if (ret < 0)
  275. return ret;
  276. eth_commit_mac_addr_change(dev, p);
  277. return 0;
  278. }
  279. EXPORT_SYMBOL(eth_mac_addr);
  280. /**
  281. * eth_change_mtu - set new MTU size
  282. * @dev: network device
  283. * @new_mtu: new Maximum Transfer Unit
  284. *
  285. * Allow changing MTU size. Needs to be overridden for devices
  286. * supporting jumbo frames.
  287. */
  288. int eth_change_mtu(struct net_device *dev, int new_mtu)
  289. {
  290. if (new_mtu < 68 || new_mtu > ETH_DATA_LEN)
  291. return -EINVAL;
  292. dev->mtu = new_mtu;
  293. return 0;
  294. }
  295. EXPORT_SYMBOL(eth_change_mtu);
  296. int eth_validate_addr(struct net_device *dev)
  297. {
  298. if (!is_valid_ether_addr(dev->dev_addr))
  299. return -EADDRNOTAVAIL;
  300. return 0;
  301. }
  302. EXPORT_SYMBOL(eth_validate_addr);
  303. const struct header_ops eth_header_ops ____cacheline_aligned = {
  304. .create = eth_header,
  305. .parse = eth_header_parse,
  306. .cache = eth_header_cache,
  307. .cache_update = eth_header_cache_update,
  308. };
  309. /**
  310. * ether_setup - setup Ethernet network device
  311. * @dev: network device
  312. *
  313. * Fill in the fields of the device structure with Ethernet-generic values.
  314. */
  315. void ether_setup(struct net_device *dev)
  316. {
  317. dev->header_ops = &eth_header_ops;
  318. dev->type = ARPHRD_ETHER;
  319. dev->hard_header_len = ETH_HLEN;
  320. dev->mtu = ETH_DATA_LEN;
  321. dev->addr_len = ETH_ALEN;
  322. dev->tx_queue_len = 1000; /* Ethernet wants good queues */
  323. dev->flags = IFF_BROADCAST|IFF_MULTICAST;
  324. dev->priv_flags |= IFF_TX_SKB_SHARING;
  325. eth_broadcast_addr(dev->broadcast);
  326. }
  327. EXPORT_SYMBOL(ether_setup);
  328. /**
  329. * alloc_etherdev_mqs - Allocates and sets up an Ethernet device
  330. * @sizeof_priv: Size of additional driver-private structure to be allocated
  331. * for this Ethernet device
  332. * @txqs: The number of TX queues this device has.
  333. * @rxqs: The number of RX queues this device has.
  334. *
  335. * Fill in the fields of the device structure with Ethernet-generic
  336. * values. Basically does everything except registering the device.
  337. *
  338. * Constructs a new net device, complete with a private data area of
  339. * size (sizeof_priv). A 32-byte (not bit) alignment is enforced for
  340. * this private data area.
  341. */
  342. struct net_device *alloc_etherdev_mqs(int sizeof_priv, unsigned int txqs,
  343. unsigned int rxqs)
  344. {
  345. return alloc_netdev_mqs(sizeof_priv, "eth%d", NET_NAME_UNKNOWN,
  346. ether_setup, txqs, rxqs);
  347. }
  348. EXPORT_SYMBOL(alloc_etherdev_mqs);
  349. ssize_t sysfs_format_mac(char *buf, const unsigned char *addr, int len)
  350. {
  351. return scnprintf(buf, PAGE_SIZE, "%*phC\n", len, addr);
  352. }
  353. EXPORT_SYMBOL(sysfs_format_mac);
  354. struct sk_buff **eth_gro_receive(struct sk_buff **head,
  355. struct sk_buff *skb)
  356. {
  357. struct sk_buff *p, **pp = NULL;
  358. struct ethhdr *eh, *eh2;
  359. unsigned int hlen, off_eth;
  360. const struct packet_offload *ptype;
  361. __be16 type;
  362. int flush = 1;
  363. off_eth = skb_gro_offset(skb);
  364. hlen = off_eth + sizeof(*eh);
  365. eh = skb_gro_header_fast(skb, off_eth);
  366. if (skb_gro_header_hard(skb, hlen)) {
  367. eh = skb_gro_header_slow(skb, hlen, off_eth);
  368. if (unlikely(!eh))
  369. goto out;
  370. }
  371. flush = 0;
  372. for (p = *head; p; p = p->next) {
  373. if (!NAPI_GRO_CB(p)->same_flow)
  374. continue;
  375. eh2 = (struct ethhdr *)(p->data + off_eth);
  376. if (compare_ether_header(eh, eh2)) {
  377. NAPI_GRO_CB(p)->same_flow = 0;
  378. continue;
  379. }
  380. }
  381. type = eh->h_proto;
  382. rcu_read_lock();
  383. ptype = gro_find_receive_by_type(type);
  384. if (ptype == NULL) {
  385. flush = 1;
  386. goto out_unlock;
  387. }
  388. skb_gro_pull(skb, sizeof(*eh));
  389. skb_gro_postpull_rcsum(skb, eh, sizeof(*eh));
  390. pp = ptype->callbacks.gro_receive(head, skb);
  391. out_unlock:
  392. rcu_read_unlock();
  393. out:
  394. NAPI_GRO_CB(skb)->flush |= flush;
  395. return pp;
  396. }
  397. EXPORT_SYMBOL(eth_gro_receive);
  398. int eth_gro_complete(struct sk_buff *skb, int nhoff)
  399. {
  400. struct ethhdr *eh = (struct ethhdr *)(skb->data + nhoff);
  401. __be16 type = eh->h_proto;
  402. struct packet_offload *ptype;
  403. int err = -ENOSYS;
  404. if (skb->encapsulation)
  405. skb_set_inner_mac_header(skb, nhoff);
  406. rcu_read_lock();
  407. ptype = gro_find_complete_by_type(type);
  408. if (ptype != NULL)
  409. err = ptype->callbacks.gro_complete(skb, nhoff +
  410. sizeof(struct ethhdr));
  411. rcu_read_unlock();
  412. return err;
  413. }
  414. EXPORT_SYMBOL(eth_gro_complete);
  415. static struct packet_offload eth_packet_offload __read_mostly = {
  416. .type = cpu_to_be16(ETH_P_TEB),
  417. .priority = 10,
  418. .callbacks = {
  419. .gro_receive = eth_gro_receive,
  420. .gro_complete = eth_gro_complete,
  421. },
  422. };
  423. static int __init eth_offload_init(void)
  424. {
  425. dev_add_offload(&eth_packet_offload);
  426. return 0;
  427. }
  428. fs_initcall(eth_offload_init);
  429. unsigned char * __weak arch_get_platform_mac_address(void)
  430. {
  431. return NULL;
  432. }
  433. int eth_platform_get_mac_address(struct device *dev, u8 *mac_addr)
  434. {
  435. const unsigned char *addr;
  436. struct device_node *dp;
  437. if (dev_is_pci(dev))
  438. dp = pci_device_to_OF_node(to_pci_dev(dev));
  439. else
  440. dp = dev->of_node;
  441. addr = NULL;
  442. if (dp)
  443. addr = of_get_mac_address(dp);
  444. if (!addr)
  445. addr = arch_get_platform_mac_address();
  446. if (!addr)
  447. return -ENODEV;
  448. ether_addr_copy(mac_addr, addr);
  449. return 0;
  450. }
  451. EXPORT_SYMBOL(eth_platform_get_mac_address);