blob: 2673558e19e6b75d37375fcde4948f2facc84321 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * ip4/packet.h: ip4 packet format
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
40#ifndef included_ip4_packet_h
41#define included_ip4_packet_h
42
43#include <vnet/ip/ip_packet.h> /* for ip_csum_t */
Ed Warnickecb9cada2015-12-08 15:45:58 -070044#include <vppinfra/byte_order.h> /* for clib_net_to_host_u16 */
Jieqiang Wangc8833b22020-08-07 14:18:04 +000045#include <vppinfra/warnings.h> /* for WARN_OFF/WARN_ON macro */
Ed Warnickecb9cada2015-12-08 15:45:58 -070046
47/* IP4 address which can be accessed either as 4 bytes
48 or as a 32-bit number. */
Dave Barachd7cb1b52016-12-09 09:52:16 -050049typedef union
50{
Ed Warnickecb9cada2015-12-08 15:45:58 -070051 u8 data[4];
52 u32 data_u32;
53 /* Aliases. */
54 u8 as_u8[4];
Neale Rannsa3af3372017-03-28 03:49:52 -070055 u16 as_u16[2];
Ed Warnickecb9cada2015-12-08 15:45:58 -070056 u32 as_u32;
57} ip4_address_t;
58
Dave Barachd7cb1b52016-12-09 09:52:16 -050059typedef struct
60{
Ed Warnickecb9cada2015-12-08 15:45:58 -070061 /* IP address must be first for ip_interface_address_get_address() to work */
62 ip4_address_t ip4_addr;
63 u32 fib_index;
64} ip4_address_fib_t;
65
66always_inline void
Neale Rannsd69f4392018-08-31 06:30:16 -040067ip4_addr_fib_init (ip4_address_fib_t * addr_fib,
68 const ip4_address_t * address, u32 fib_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070069{
Dave Barach178cf492018-11-13 16:34:13 -050070 clib_memcpy_fast (&addr_fib->ip4_addr, address,
71 sizeof (addr_fib->ip4_addr));
Ed Warnickecb9cada2015-12-08 15:45:58 -070072 addr_fib->fib_index = fib_index;
73}
74
75/* (src,dst) pair of addresses as found in packet header. */
Dave Barachd7cb1b52016-12-09 09:52:16 -050076typedef struct
77{
Ed Warnickecb9cada2015-12-08 15:45:58 -070078 ip4_address_t src, dst;
79} ip4_address_pair_t;
80
Damjan Mariona35cc142018-03-16 01:25:27 +010081typedef struct
82{
83 ip4_address_t addr, mask;
84} ip4_address_and_mask_t;
85
Dave Barachd7cb1b52016-12-09 09:52:16 -050086typedef union
87{
88 struct
89 {
Ed Warnickecb9cada2015-12-08 15:45:58 -070090 /* 4 bit packet length (in 32bit units) and version VVVVLLLL.
91 e.g. for packets w/ no options ip_version_and_header_length == 0x45. */
92 u8 ip_version_and_header_length;
93
94 /* Type of service. */
Neale Ranns038e1df2019-07-19 14:01:02 +000095 ip_dscp_t tos;
Ed Warnickecb9cada2015-12-08 15:45:58 -070096
97 /* Total layer 3 packet length including this header. */
98 u16 length;
99
100 /* Fragmentation ID. */
101 u16 fragment_id;
102
103 /* 3 bits of flags and 13 bits of fragment offset (in units
104 of 8 byte quantities). */
105 u16 flags_and_fragment_offset;
106#define IP4_HEADER_FLAG_MORE_FRAGMENTS (1 << 13)
107#define IP4_HEADER_FLAG_DONT_FRAGMENT (1 << 14)
108#define IP4_HEADER_FLAG_CONGESTION (1 << 15)
109
110 /* Time to live decremented by router at each hop. */
111 u8 ttl;
112
113 /* Next level protocol packet. */
114 u8 protocol;
115
116 /* Checksum. */
117 u16 checksum;
118
119 /* Source and destination address. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500120 union
121 {
122 struct
123 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124 ip4_address_t src_address, dst_address;
125 };
126 ip4_address_pair_t address_pair;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500127 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128 };
129
130 /* For checksumming we'll want to access IP header in word sized chunks. */
131 /* For 64 bit machines. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500132 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133 CLIB_PACKED (struct {
134 u64 checksum_data_64[2];
135 u32 checksum_data_64_32[1];
136 });
Dave Barachd7cb1b52016-12-09 09:52:16 -0500137 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138
139 /* For 32 bit machines. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500140 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141 CLIB_PACKED (struct {
142 u32 checksum_data_32[5];
143 });
Dave Barachd7cb1b52016-12-09 09:52:16 -0500144 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145} ip4_header_t;
146
147/* Value of ip_version_and_header_length for packets w/o options. */
148#define IP4_VERSION_AND_HEADER_LENGTH_NO_OPTIONS \
149 ((4 << 4) | (sizeof (ip4_header_t) / sizeof (u32)))
150
Neale Rannsc667ffd2018-06-27 18:59:03 -0700151#define IP4_ROUTER_ALERT_OPTION 20
152
Klement Sekeraf126e742019-10-10 09:46:06 +0000153always_inline u16
Neale Rannsd69f4392018-08-31 06:30:16 -0400154ip4_get_fragment_offset (const ip4_header_t * i)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500155{
156 return clib_net_to_host_u16 (i->flags_and_fragment_offset) & 0x1fff;
157}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158
Klement Sekeraf126e742019-10-10 09:46:06 +0000159always_inline u16
Neale Rannsd69f4392018-08-31 06:30:16 -0400160ip4_get_fragment_more (const ip4_header_t * i)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500161{
162 return clib_net_to_host_u16 (i->flags_and_fragment_offset) &
163 IP4_HEADER_FLAG_MORE_FRAGMENTS;
164}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165
166always_inline int
Neale Rannsd69f4392018-08-31 06:30:16 -0400167ip4_is_fragment (const ip4_header_t * i)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500168{
169 return (i->flags_and_fragment_offset &
170 clib_net_to_host_u16 (0x1fff | IP4_HEADER_FLAG_MORE_FRAGMENTS));
171}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172
173always_inline int
Neale Rannsd69f4392018-08-31 06:30:16 -0400174ip4_is_first_fragment (const ip4_header_t * i)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500175{
176 return (i->flags_and_fragment_offset &
177 clib_net_to_host_u16 (0x1fff | IP4_HEADER_FLAG_MORE_FRAGMENTS)) ==
178 clib_net_to_host_u16 (IP4_HEADER_FLAG_MORE_FRAGMENTS);
179}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180
181/* Fragment offset in bytes. */
182always_inline int
Neale Rannsd69f4392018-08-31 06:30:16 -0400183ip4_get_fragment_offset_bytes (const ip4_header_t * i)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500184{
185 return 8 * ip4_get_fragment_offset (i);
186}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187
188always_inline int
Neale Rannsd69f4392018-08-31 06:30:16 -0400189ip4_header_bytes (const ip4_header_t * i)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500190{
191 return sizeof (u32) * (i->ip_version_and_header_length & 0xf);
192}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193
194always_inline void *
195ip4_next_header (ip4_header_t * i)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500196{
197 return (void *) i + ip4_header_bytes (i);
198}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199
Jieqiang Wangc8833b22020-08-07 14:18:04 +0000200/* Turn off array bounds check due to ip4_header_t
201 option field operations. */
202
203/* *INDENT-OFF* */
204WARN_OFF(array-bounds)
205/* *INDENT-ON* */
206
Damjan Marion9a79a1a2020-08-31 19:54:19 +0200207static_always_inline u16
208ip4_header_checksum_inline (ip4_header_t * i, int with_checksum)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209{
Damjan Marione5f00502020-07-16 00:48:55 +0200210 int option_len = (i->ip_version_and_header_length & 0xf) - 5;
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200211 uword sum = 0;
212#if uword_bits == 64
213 u32 *iphdr = (u32 *) i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700214
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200215 sum += iphdr[0];
216 sum += iphdr[1];
Damjan Marion9a79a1a2020-08-31 19:54:19 +0200217 sum += with_checksum ? iphdr[2] : *(u16 *) (iphdr + 2);
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200218 /* skip checksum */
219 sum += iphdr[3];
220 sum += iphdr[4];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221
Damjan Marione5f00502020-07-16 00:48:55 +0200222 if (PREDICT_FALSE (option_len > 0))
223 switch (option_len)
224 {
225 case 10:
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200226 sum += iphdr[14];
Damjan Marione5f00502020-07-16 00:48:55 +0200227 case 9:
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200228 sum += iphdr[13];
Damjan Marione5f00502020-07-16 00:48:55 +0200229 case 8:
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200230 sum += iphdr[12];
Damjan Marione5f00502020-07-16 00:48:55 +0200231 case 7:
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200232 sum += iphdr[11];
Damjan Marione5f00502020-07-16 00:48:55 +0200233 case 6:
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200234 sum += iphdr[10];
Damjan Marione5f00502020-07-16 00:48:55 +0200235 case 5:
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200236 sum += iphdr[9];
Damjan Marione5f00502020-07-16 00:48:55 +0200237 case 4:
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200238 sum += iphdr[8];
Damjan Marione5f00502020-07-16 00:48:55 +0200239 case 3:
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200240 sum += iphdr[7];
Damjan Marione5f00502020-07-16 00:48:55 +0200241 case 2:
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200242 sum += iphdr[6];
Damjan Marione5f00502020-07-16 00:48:55 +0200243 case 1:
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200244 sum += iphdr[5];
Damjan Marione5f00502020-07-16 00:48:55 +0200245 default:
246 break;
247 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700248
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200249 sum = ((u32) sum) + (sum >> 32);
250#else
251 u16 *iphdr = (u16 *) i;
252
253 sum += iphdr[0];
254 sum += iphdr[1];
255 sum += iphdr[2];
256 sum += iphdr[3];
257 sum += iphdr[4];
Damjan Marion9a79a1a2020-08-31 19:54:19 +0200258 if (with_checksum)
259 sum += iphdr[5];
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200260 sum += iphdr[6];
261 sum += iphdr[7];
262 sum += iphdr[8];
263 sum += iphdr[9];
264
265 if (PREDICT_FALSE (option_len > 0))
266 switch (option_len)
267 {
268 case 10:
269 sum += iphdr[28];
270 sum += iphdr[29];
271 case 9:
272 sum += iphdr[26];
273 sum += iphdr[27];
274 case 8:
275 sum += iphdr[24];
276 sum += iphdr[25];
277 case 7:
278 sum += iphdr[22];
279 sum += iphdr[23];
280 case 6:
281 sum += iphdr[20];
282 sum += iphdr[21];
283 case 5:
284 sum += iphdr[18];
285 sum += iphdr[19];
286 case 4:
287 sum += iphdr[16];
288 sum += iphdr[17];
289 case 3:
290 sum += iphdr[14];
291 sum += iphdr[15];
292 case 2:
293 sum += iphdr[12];
294 sum += iphdr[13];
295 case 1:
296 sum += iphdr[10];
297 sum += iphdr[11];
298 default:
299 break;
300 }
301#endif
302
Damjan Marione5f00502020-07-16 00:48:55 +0200303 sum = ((u16) sum) + (sum >> 16);
304 sum = ((u16) sum) + (sum >> 16);
Damjan Marion9a0f2a52020-07-16 16:22:48 +0200305 return ~((u16) sum);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306}
307
Jieqiang Wangc8833b22020-08-07 14:18:04 +0000308/* *INDENT-OFF* */
309WARN_ON(array-bounds)
310/* *INDENT-ON* */
311
Damjan Marion9a79a1a2020-08-31 19:54:19 +0200312always_inline u16
313ip4_header_checksum (ip4_header_t * i)
314{
315 return ip4_header_checksum_inline (i, /* with_checksum */ 0);
316}
317
Neale Ranns95346962019-11-25 13:04:44 +0000318always_inline void
319ip4_header_set_dscp (ip4_header_t * ip4, ip_dscp_t dscp)
320{
321 ip4->tos &= ~0xfc;
322 /* not masking the dscp value to save th instruction
323 * it shouldn't b necessary since the argument is an enum
324 * whose range is therefore constrained in the CP. in the
325 * DP it will have been taken from another packet, so again
326 * constrained in value */
327 ip4->tos |= dscp << IP_PACKET_TC_FIELD_DSCP_BIT_SHIFT;
328}
329
330always_inline void
331ip4_header_set_ecn (ip4_header_t * ip4, ip_ecn_t ecn)
332{
333 ip4->tos &= ~IP_PACKET_TC_FIELD_ECN_MASK;
334 ip4->tos |= ecn;
335}
336
337always_inline void
338ip4_header_set_ecn_w_chksum (ip4_header_t * ip4, ip_ecn_t ecn)
339{
340 ip_csum_t sum = ip4->checksum;
341 u8 old = ip4->tos;
342 u8 new = (old & ~IP_PACKET_TC_FIELD_ECN_MASK) | ecn;
343
344 sum = ip_csum_update (sum, old, new, ip4_header_t, tos);
345 ip4->checksum = ip_csum_fold (sum);
346 ip4->tos = new;
347}
348
349always_inline ip_dscp_t
350ip4_header_get_dscp (const ip4_header_t * ip4)
351{
352 return (ip4->tos >> IP_PACKET_TC_FIELD_DSCP_BIT_SHIFT);
353}
354
355always_inline ip_ecn_t
356ip4_header_get_ecn (const ip4_header_t * ip4)
357{
358 return (ip4->tos & IP_PACKET_TC_FIELD_ECN_MASK);
359}
360
Neale Rannsa91cb452021-02-04 11:02:52 +0000361always_inline u8
362ip4_header_get_ttl (const ip4_header_t *ip4)
363{
364 return (ip4->ttl);
365}
366
367always_inline void
368ip4_header_set_ttl (ip4_header_t *ip4, u8 ttl)
369{
370 ip4->ttl = ttl;
371}
372
Neale Ranns95346962019-11-25 13:04:44 +0000373always_inline void
374ip4_header_set_df (ip4_header_t * ip4)
375{
376 ip4->flags_and_fragment_offset |=
377 clib_host_to_net_u16 (IP4_HEADER_FLAG_DONT_FRAGMENT);
378}
379
380always_inline void
381ip4_header_clear_df (ip4_header_t * ip4)
382{
383 ip4->flags_and_fragment_offset &=
384 ~clib_host_to_net_u16 (IP4_HEADER_FLAG_DONT_FRAGMENT);
385}
386
387always_inline u8
Neale Rannse5b94dd2019-12-31 05:13:14 +0000388ip4_header_get_df (const ip4_header_t * ip4)
Neale Ranns95346962019-11-25 13:04:44 +0000389{
390 return (! !(ip4->flags_and_fragment_offset &
391 clib_host_to_net_u16 (IP4_HEADER_FLAG_DONT_FRAGMENT)));
392}
393
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394static inline uword
395ip4_header_checksum_is_valid (ip4_header_t * i)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500396{
Damjan Marion9a79a1a2020-08-31 19:54:19 +0200397 return ip4_header_checksum_inline (i, /* with_checksum */ 1) == 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500398}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399
400#define ip4_partial_header_checksum_x1(ip0,sum0) \
401do { \
402 if (BITS (ip_csum_t) > 32) \
403 { \
404 sum0 = ip0->checksum_data_64[0]; \
405 sum0 = ip_csum_with_carry (sum0, ip0->checksum_data_64[1]); \
406 sum0 = ip_csum_with_carry (sum0, ip0->checksum_data_64_32[0]); \
407 } \
408 else \
409 { \
410 sum0 = ip0->checksum_data_32[0]; \
411 sum0 = ip_csum_with_carry (sum0, ip0->checksum_data_32[1]); \
412 sum0 = ip_csum_with_carry (sum0, ip0->checksum_data_32[2]); \
413 sum0 = ip_csum_with_carry (sum0, ip0->checksum_data_32[3]); \
414 sum0 = ip_csum_with_carry (sum0, ip0->checksum_data_32[4]); \
415 } \
416} while (0)
417
418#define ip4_partial_header_checksum_x2(ip0,ip1,sum0,sum1) \
419do { \
420 if (BITS (ip_csum_t) > 32) \
421 { \
422 sum0 = ip0->checksum_data_64[0]; \
423 sum1 = ip1->checksum_data_64[0]; \
424 sum0 = ip_csum_with_carry (sum0, ip0->checksum_data_64[1]); \
425 sum1 = ip_csum_with_carry (sum1, ip1->checksum_data_64[1]); \
426 sum0 = ip_csum_with_carry (sum0, ip0->checksum_data_64_32[0]); \
427 sum1 = ip_csum_with_carry (sum1, ip1->checksum_data_64_32[0]); \
428 } \
429 else \
430 { \
431 sum0 = ip0->checksum_data_32[0]; \
432 sum1 = ip1->checksum_data_32[0]; \
433 sum0 = ip_csum_with_carry (sum0, ip0->checksum_data_32[1]); \
434 sum1 = ip_csum_with_carry (sum1, ip1->checksum_data_32[1]); \
435 sum0 = ip_csum_with_carry (sum0, ip0->checksum_data_32[2]); \
436 sum1 = ip_csum_with_carry (sum1, ip1->checksum_data_32[2]); \
437 sum0 = ip_csum_with_carry (sum0, ip0->checksum_data_32[3]); \
438 sum1 = ip_csum_with_carry (sum1, ip1->checksum_data_32[3]); \
439 sum0 = ip_csum_with_carry (sum0, ip0->checksum_data_32[4]); \
440 sum1 = ip_csum_with_carry (sum1, ip1->checksum_data_32[4]); \
441 } \
442} while (0)
443
444always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400445ip4_address_is_multicast (const ip4_address_t * a)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500446{
447 return (a->data[0] & 0xf0) == 0xe0;
448}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449
Neale Rannsd724e4f2020-04-02 15:02:16 +0000450always_inline uword
451ip4_address_is_global_broadcast (const ip4_address_t * a)
452{
453 return (a->as_u32) == 0xffffffff;
454}
455
Ed Warnickecb9cada2015-12-08 15:45:58 -0700456always_inline void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500457ip4_multicast_address_set_for_group (ip4_address_t * a,
458 ip_multicast_group_t g)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459{
Damjan Marion2c29d752015-12-18 10:26:56 +0100460 ASSERT ((u32) g < (1 << 28));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700461 a->as_u32 = clib_host_to_net_u32 ((0xe << 28) + g);
462}
463
464always_inline void
Neale Rannsd69f4392018-08-31 06:30:16 -0400465ip4_multicast_ethernet_address (u8 * ethernet_address,
466 const ip4_address_t * a)
Eyal Baric5b13602016-11-24 19:42:43 +0200467{
Neale Rannsd69f4392018-08-31 06:30:16 -0400468 const u8 *d = a->as_u8;
Eyal Baric5b13602016-11-24 19:42:43 +0200469
470 ethernet_address[0] = 0x01;
471 ethernet_address[1] = 0x00;
472 ethernet_address[2] = 0x5e;
473 ethernet_address[3] = d[1] & 0x7f;
474 ethernet_address[4] = d[2];
475 ethernet_address[5] = d[3];
476}
477
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478#endif /* included_ip4_packet_h */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500479
480/*
481 * fd.io coding-style-patch-verification: ON
482 *
483 * Local Variables:
484 * eval: (c-set-style "gnu")
485 * End:
486 */