~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/if_arp.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0-or-later */
  2 /*
  3  * INET         An implementation of the TCP/IP protocol suite for the LINUX
  4  *              operating system.  INET is implemented using the  BSD Socket
  5  *              interface as the means of communication with the user level.
  6  *
  7  *              Global definitions for the ARP (RFC 826) protocol.
  8  *
  9  * Version:     @(#)if_arp.h    1.0.1   04/16/93
 10  *
 11  * Authors:     Original taken from Berkeley UNIX 4.3, (c) UCB 1986-1988
 12  *              Portions taken from the KA9Q/NOS (v2.00m PA0GRI) source.
 13  *              Ross Biro
 14  *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
 15  *              Florian La Roche,
 16  *              Jonathan Layes <layes@loran.com>
 17  *              Arnaldo Carvalho de Melo <acme@conectiva.com.br> ARPHRD_HWX25
 18  */
 19 #ifndef _LINUX_IF_ARP_H
 20 #define _LINUX_IF_ARP_H
 21 
 22 #include <linux/skbuff.h>
 23 #include <uapi/linux/if_arp.h>
 24 
 25 static inline struct arphdr *arp_hdr(const struct sk_buff *skb)
 26 {
 27         return (struct arphdr *)skb_network_header(skb);
 28 }
 29 
 30 static inline unsigned int arp_hdr_len(const struct net_device *dev)
 31 {
 32         switch (dev->type) {
 33 #if IS_ENABLED(CONFIG_FIREWIRE_NET)
 34         case ARPHRD_IEEE1394:
 35                 /* ARP header, device address and 2 IP addresses */
 36                 return sizeof(struct arphdr) + dev->addr_len + sizeof(u32) * 2;
 37 #endif
 38         default:
 39                 /* ARP header, plus 2 device addresses, plus 2 IP addresses. */
 40                 return sizeof(struct arphdr) + (dev->addr_len + sizeof(u32)) * 2;
 41         }
 42 }
 43 
 44 static inline bool dev_is_mac_header_xmit(const struct net_device *dev)
 45 {
 46         switch (dev->type) {
 47         case ARPHRD_TUNNEL:
 48         case ARPHRD_TUNNEL6:
 49         case ARPHRD_SIT:
 50         case ARPHRD_IPGRE:
 51         case ARPHRD_IP6GRE:
 52         case ARPHRD_VOID:
 53         case ARPHRD_NONE:
 54         case ARPHRD_RAWIP:
 55         case ARPHRD_PIMREG:
 56         /* PPP adds its l2 header automatically in ppp_start_xmit().
 57          * This makes it look like an l3 device to __bpf_redirect() and tcf_mirred_init().
 58          */
 59         case ARPHRD_PPP:
 60                 return false;
 61         default:
 62                 return true;
 63         }
 64 }
 65 
 66 #endif  /* _LINUX_IF_ARP_H */
 67 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php