blob: bf5c5f32c65e46cc3d58208612482c4f42594333 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
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 Juhl02c30a82005-05-05 16:16:16 -070013 * Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * 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 Torvalds1da177e2005-04-16 15:20:36 -070018 */
19#ifndef _LINUX_IF_ARP_H
20#define _LINUX_IF_ARP_H
21
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -030022#include <linux/skbuff.h>
David Howells607ca462012-10-13 10:46:48 +010023#include <uapi/linux/if_arp.h>
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -030024
25static inline struct arphdr *arp_hdr(const struct sk_buff *skb)
26{
27 return (struct arphdr *)skb_network_header(skb);
28}
Pavel Emelyanov988b7052008-03-03 12:20:57 -080029
Alexey Dobriyan6ade97d2017-09-26 23:12:28 +030030static inline unsigned int arp_hdr_len(const struct net_device *dev)
Pavel Emelyanov988b7052008-03-03 12:20:57 -080031{
YOSHIFUJI Hideaki / 吉藤英明6752c8d2013-03-25 08:26:16 +000032 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 Emelyanov988b7052008-03-03 12:20:57 -080042}
Daniel Borkmannc4916802016-11-26 01:28:06 +010043
44static 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 Żenczykowski3b707c32019-01-24 03:07:02 -080053 case ARPHRD_RAWIP:
Daniel Borkmannc4916802016-11-26 01:28:06 +010054 return false;
55 default:
56 return true;
57 }
58}
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#endif /* _LINUX_IF_ARP_H */