Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
Jesper Juhl | 02c30a8 | 2005-05-05 16:16:16 -0700 | [diff] [blame] | 13 | * Ross Biro |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | */ |
| 19 | #ifndef _LINUX_IF_ARP_H |
| 20 | #define _LINUX_IF_ARP_H |
| 21 | |
Arnaldo Carvalho de Melo | d0a92be | 2007-03-12 20:56:31 -0300 | [diff] [blame] | 22 | #include <linux/skbuff.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 23 | #include <uapi/linux/if_arp.h> |
Arnaldo Carvalho de Melo | d0a92be | 2007-03-12 20:56:31 -0300 | [diff] [blame] | 24 | |
| 25 | static inline struct arphdr *arp_hdr(const struct sk_buff *skb) |
| 26 | { |
| 27 | return (struct arphdr *)skb_network_header(skb); |
| 28 | } |
Pavel Emelyanov | 988b705 | 2008-03-03 12:20:57 -0800 | [diff] [blame] | 29 | |
Alexey Dobriyan | 6ade97d | 2017-09-26 23:12:28 +0300 | [diff] [blame] | 30 | static inline unsigned int arp_hdr_len(const struct net_device *dev) |
Pavel Emelyanov | 988b705 | 2008-03-03 12:20:57 -0800 | [diff] [blame] | 31 | { |
YOSHIFUJI Hideaki / 吉藤英明 | 6752c8d | 2013-03-25 08:26:16 +0000 | [diff] [blame] | 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 | } |
Pavel Emelyanov | 988b705 | 2008-03-03 12:20:57 -0800 | [diff] [blame] | 42 | } |
Daniel Borkmann | c491680 | 2016-11-26 01:28:06 +0100 | [diff] [blame] | 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_VOID: |
| 52 | case ARPHRD_NONE: |
Maciej Żenczykowski | 3b707c3 | 2019-01-24 03:07:02 -0800 | [diff] [blame] | 53 | case ARPHRD_RAWIP: |
Daniel Borkmann | c491680 | 2016-11-26 01:28:06 +0100 | [diff] [blame] | 54 | return false; |
| 55 | default: |
| 56 | return true; |
| 57 | } |
| 58 | } |
| 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #endif /* _LINUX_IF_ARP_H */ |