blob: e762ffa4018e21d6b158af5ada8e822e749a9b0e [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * ethernet/arp.c: IP v4 ARP node
3 *
4 * Copyright (c) 2010 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#ifndef included_ethernet_arp_packet_h
19#define included_ethernet_arp_packet_h
20
21#define foreach_ethernet_arp_hardware_type \
22 _ (0, reserved) \
23 _ (1, ethernet) \
24 _ (2, experimental_ethernet) \
25 _ (3, ax_25) \
26 _ (4, proteon_pronet_token_ring) \
27 _ (5, chaos) \
28 _ (6, ieee_802) \
29 _ (7, arcnet) \
30 _ (8, hyperchannel) \
31 _ (9, lanstar) \
32 _ (10, autonet) \
33 _ (11, localtalk) \
34 _ (12, localnet) \
35 _ (13, ultra_link) \
36 _ (14, smds) \
37 _ (15, frame_relay) \
38 _ (16, atm) \
39 _ (17, hdlc) \
40 _ (18, fibre_channel) \
41 _ (19, atm19) \
42 _ (20, serial_line) \
43 _ (21, atm21) \
44 _ (22, mil_std_188_220) \
45 _ (23, metricom) \
46 _ (24, ieee_1394) \
47 _ (25, mapos) \
48 _ (26, twinaxial) \
49 _ (27, eui_64) \
50 _ (28, hiparp) \
51 _ (29, iso_7816_3) \
52 _ (30, arpsec) \
53 _ (31, ipsec_tunnel) \
54 _ (32, infiniband) \
55 _ (33, cai) \
56 _ (34, wiegand) \
57 _ (35, pure_ip) \
58 _ (36, hw_exp1) \
59 _ (256, hw_exp2)
60
61#define foreach_ethernet_arp_opcode \
62 _ (reserved) \
63 _ (request) \
64 _ (reply) \
65 _ (reverse_request) \
66 _ (reverse_reply) \
67 _ (drarp_request) \
68 _ (drarp_reply) \
69 _ (drarp_error) \
70 _ (inarp_request) \
71 _ (inarp_reply) \
72 _ (arp_nak) \
73 _ (mars_request) \
74 _ (mars_multi) \
75 _ (mars_mserv) \
76 _ (mars_join) \
77 _ (mars_leave) \
78 _ (mars_nak) \
79 _ (mars_unserv) \
80 _ (mars_sjoin) \
81 _ (mars_sleave) \
82 _ (mars_grouplist_request) \
83 _ (mars_grouplist_reply) \
84 _ (mars_redirect_map) \
85 _ (mapos_unarp) \
86 _ (exp1) \
87 _ (exp2)
88
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070089typedef enum
90{
Ed Warnickecb9cada2015-12-08 15:45:58 -070091#define _(n,f) ETHERNET_ARP_HARDWARE_TYPE_##f = (n),
92 foreach_ethernet_arp_hardware_type
93#undef _
94} ethernet_arp_hardware_type_t;
95
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070096typedef enum
97{
Ed Warnickecb9cada2015-12-08 15:45:58 -070098#define _(f) ETHERNET_ARP_OPCODE_##f,
99 foreach_ethernet_arp_opcode
100#undef _
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700101 ETHERNET_ARP_N_OPCODE,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102} ethernet_arp_opcode_t;
103
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700104typedef enum
105{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 IP4_ARP_NEXT_DROP,
107 IP4_ARP_N_NEXT,
108} ip4_arp_next_t;
109
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700110typedef enum
111{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112 IP4_ARP_ERROR_DROP,
113 IP4_ARP_ERROR_REQUEST_SENT,
114 IP4_ARP_ERROR_NON_ARP_ADJ,
115 IP4_ARP_ERROR_REPLICATE_DROP,
Pierre Pfisterd076f192016-06-22 12:58:30 +0100116 IP4_ARP_ERROR_REPLICATE_FAIL,
117 IP4_ARP_ERROR_NO_SOURCE_ADDRESS,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118} ip4_arp_error_t;
119
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700120/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121typedef CLIB_PACKED (struct {
122 u8 ethernet[6];
123 ip4_address_t ip4;
124}) ethernet_arp_ip4_over_ethernet_address_t;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700125/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700127typedef struct
128{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129 u16 l2_type;
130 u16 l3_type;
131 u8 n_l2_address_bytes;
132 u8 n_l3_address_bytes;
133 u16 opcode;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700134 union
135 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136 ethernet_arp_ip4_over_ethernet_address_t ip4_over_ethernet[2];
137
138 /* Others... */
139 u8 data[0];
140 };
141} ethernet_arp_header_t;
142
Pavel Kotucek3e046ea2016-12-05 08:27:37 +0100143typedef struct
144{
145 u32 sw_if_index;
146 ip4_address_t ip4_address;
147
148 u8 ethernet_address[6];
149
150 u16 flags;
151#define ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC (1 << 0)
152#define ETHERNET_ARP_IP4_ENTRY_FLAG_DYNAMIC (1 << 1)
153
154 u64 cpu_time_last_updated;
155
156 /**
157 * The index of the adj-fib entry created
158 */
159 fib_node_index_t fib_entry_index;
160} ethernet_arp_ip4_entry_t;
161
162ethernet_arp_ip4_entry_t *ip4_neighbor_entries (u32 sw_if_index);
163u8 *format_ethernet_arp_ip4_entry (u8 * s, va_list * va);
164
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165#endif /* included_ethernet_arp_packet_h */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700166
167/*
168 * fd.io coding-style-patch-verification: ON
169 *
170 * Local Variables:
171 * eval: (c-set-style "gnu")
172 * End:
173 */