FD.io VPP  v19.01.3-6-g70449b9b9
Vector Packet Processing
dhcp4_proxy_node.c
Go to the documentation of this file.
1 /*
2  * proxy_node.c: dhcp proxy node processing
3  *
4  * Copyright (c) 2013 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 #include <vlib/vlib.h>
19 #include <vnet/pg/pg.h>
20 #include <vnet/dhcp/dhcp_proxy.h>
21 #include <vnet/dhcp/client.h>
22 #include <vnet/fib/ip4_fib.h>
23 
24 static char *dhcp_proxy_error_strings[] = {
25 #define dhcp_proxy_error(n,s) s,
27 #undef dhcp_proxy_error
28 };
29 
30 #define foreach_dhcp_proxy_to_server_input_next \
31  _ (DROP, "error-drop") \
32  _ (LOOKUP, "ip4-lookup") \
33  _ (SEND_TO_CLIENT, "dhcp-proxy-to-client")
34 
35 typedef enum
36 {
37 #define _(s,n) DHCP_PROXY_TO_SERVER_INPUT_NEXT_##s,
39 #undef _
42 
43 typedef struct
44 {
45  /* 0 => to server, 1 => to client */
46  int which;
52 
53 #define VPP_DHCP_OPTION82_SUB1_SIZE 6
54 #define VPP_DHCP_OPTION82_SUB5_SIZE 6
55 #define VPP_DHCP_OPTION82_VSS_SIZE 12
56 #define VPP_DHCP_OPTION82_SIZE (VPP_DHCP_OPTION82_SUB1_SIZE + \
57  VPP_DHCP_OPTION82_SUB5_SIZE + \
58  VPP_DHCP_OPTION82_VSS_SIZE +3)
59 
62 
63 static u8 *
64 format_dhcp_proxy_trace (u8 * s, va_list * args)
65 {
66  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
67  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
68  dhcp_proxy_trace_t *t = va_arg (*args, dhcp_proxy_trace_t *);
69 
70  if (t->which == 0)
71  s = format (s, "DHCP proxy: sent to server %U\n",
73  else
74  s = format (s, "DHCP proxy: broadcast to client from %U\n",
76 
77  if (t->error != (u32) ~ 0)
78  s = format (s, " error: %s\n", dhcp_proxy_error_strings[t->error]);
79 
80  s = format (s, " original_sw_if_index: %d, sw_if_index: %d\n",
82 
83  return s;
84 }
85 
86 static u8 *
88 {
89  dhcp_header_t *h = va_arg (*args, dhcp_header_t *);
90  u32 max_header_bytes = va_arg (*args, u32);
91  u32 header_bytes;
92 
93  header_bytes = sizeof (h[0]);
94  if (max_header_bytes != 0 && header_bytes > max_header_bytes)
95  return format (s, "dhcp header truncated");
96 
97  s = format (s, "DHCP Proxy");
98 
99  return s;
100 }
101 
102 static uword
104  vlib_node_runtime_t * node,
105  vlib_frame_t * from_frame)
106 {
107  u32 n_left_from, next_index, *from, *to_next;
109  from = vlib_frame_vector_args (from_frame);
110  n_left_from = from_frame->n_vectors;
111  u32 pkts_to_server = 0, pkts_to_client = 0, pkts_no_server = 0;
112  u32 pkts_no_interface_address = 0;
113  u32 pkts_too_big = 0;
114  ip4_main_t *im = &ip4_main;
115 
116  next_index = node->cached_next_index;
117 
118  while (n_left_from > 0)
119  {
120  u32 n_left_to_next;
121 
122  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
123 
124  while (n_left_from > 0 && n_left_to_next > 0)
125  {
126  u32 bi0;
127  vlib_buffer_t *b0;
128  udp_header_t *u0;
129  dhcp_header_t *h0;
130  ip4_header_t *ip0;
131  u32 next0;
132  u32 old0, new0;
133  ip_csum_t sum0;
134  u32 error0 = (u32) ~ 0;
135  u32 sw_if_index = 0;
136  u32 original_sw_if_index = 0;
137  u32 fib_index;
138  dhcp_proxy_t *proxy;
139  dhcp_server_t *server;
140  u32 rx_sw_if_index;
141  dhcp_option_t *o, *end;
142  u32 len = 0;
143  u8 is_discover = 0;
144  int space_left;
145 
146  bi0 = from[0];
147  from += 1;
148  n_left_from -= 1;
149 
150  b0 = vlib_get_buffer (vm, bi0);
151 
152  h0 = vlib_buffer_get_current (b0);
153 
154  /*
155  * udp_local hands us the DHCP header, need udp hdr,
156  * ip hdr to relay to server
157  */
158  vlib_buffer_advance (b0, -(sizeof (*u0)));
159  u0 = vlib_buffer_get_current (b0);
160 
161  /* This blows. Return traffic has src_port = 67, dst_port = 67 */
162  if (u0->src_port ==
163  clib_net_to_host_u16 (UDP_DST_PORT_dhcp_to_server))
164  {
165  vlib_buffer_advance (b0, sizeof (*u0));
166  next0 = DHCP_PROXY_TO_SERVER_INPUT_NEXT_SEND_TO_CLIENT;
167  error0 = 0;
168  pkts_to_client++;
169  goto do_enqueue;
170  }
171 
172  rx_sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
173  fib_index = im->fib_index_by_sw_if_index[rx_sw_if_index];
174  proxy = dhcp_get_proxy (dpm, fib_index, FIB_PROTOCOL_IP4);
175 
176  if (PREDICT_FALSE (NULL == proxy))
177  {
178  error0 = DHCP_PROXY_ERROR_NO_SERVER;
179  next0 = DHCP_PROXY_TO_SERVER_INPUT_NEXT_DROP;
180  pkts_no_server++;
181  goto do_trace;
182  }
183 
184  if (!vlib_buffer_chain_linearize (vm, b0))
185  {
186  error0 = DHCP_PROXY_ERROR_PKT_TOO_BIG;
187  next0 = DHCP_PROXY_TO_SERVER_INPUT_NEXT_DROP;
188  pkts_too_big++;
189  goto do_trace;
190  }
191  space_left = vlib_buffer_space_left_at_end (vm, b0);
192  /* cant parse chains...
193  * and we need some space for option 82*/
194  if ((b0->flags & VLIB_BUFFER_NEXT_PRESENT) != 0 ||
195  space_left < VPP_DHCP_OPTION82_SIZE)
196  {
197  error0 = DHCP_PROXY_ERROR_PKT_TOO_BIG;
198  next0 = DHCP_PROXY_TO_SERVER_INPUT_NEXT_DROP;
199  pkts_too_big++;
200  goto do_trace;
201  }
202 
203  server = &proxy->dhcp_servers[0];
204  vlib_buffer_advance (b0, -(sizeof (*ip0)));
205  ip0 = vlib_buffer_get_current (b0);
206 
207  /* disable UDP checksum */
208  u0->checksum = 0;
209  sum0 = ip0->checksum;
210  old0 = ip0->dst_address.as_u32;
211  new0 = server->dhcp_server.ip4.as_u32;
212  ip0->dst_address.as_u32 = server->dhcp_server.ip4.as_u32;
213  sum0 = ip_csum_update (sum0, old0, new0,
214  ip4_header_t /* structure */ ,
215  dst_address /* changed member */ );
216  ip0->checksum = ip_csum_fold (sum0);
217 
218  sum0 = ip0->checksum;
219  old0 = ip0->src_address.as_u32;
220  new0 = proxy->dhcp_src_address.ip4.as_u32;
221  ip0->src_address.as_u32 = new0;
222  sum0 = ip_csum_update (sum0, old0, new0,
223  ip4_header_t /* structure */ ,
224  src_address /* changed member */ );
225  ip0->checksum = ip_csum_fold (sum0);
226 
227  /* Send to DHCP server via the configured FIB */
228  vnet_buffer (b0)->sw_if_index[VLIB_TX] = server->server_fib_index;
229 
230  h0->gateway_ip_address = proxy->dhcp_src_address.ip4;
231  pkts_to_server++;
232 
233  o = h0->options;
234  end = (void *) vlib_buffer_get_tail (b0);
235 
236  /* TLVs are not performance-friendly... */
237  while (o->option != DHCP_PACKET_OPTION_END && o < end)
238  {
240  {
241  if (DHCP_PACKET_DISCOVER == o->data[0])
242  {
243  is_discover = 1;
244  }
245  }
246  o = (dhcp_option_t *) (o->data + o->length);
247  }
248 
249  if (o->option == DHCP_PACKET_OPTION_END && o <= end)
250  {
251  vnet_main_t *vnm = vnet_get_main ();
252  u16 old_l0, new_l0;
253  ip4_address_t _ia0, *ia0 = &_ia0;
254  dhcp_vss_t *vss;
255  vnet_sw_interface_t *swif;
256 
257  original_sw_if_index = sw_if_index =
258  vnet_buffer (b0)->sw_if_index[VLIB_RX];
259  swif = vnet_get_sw_interface (vnm, sw_if_index);
261  sw_if_index = swif->unnumbered_sw_if_index;
262 
263  /*
264  * Get the first ip4 address on the [client-side]
265  * RX interface, if not unnumbered. otherwise use
266  * the loopback interface's ip address.
267  */
268  ia0 = ip4_interface_first_address (&ip4_main, sw_if_index, 0);
269 
270  if (ia0 == 0)
271  {
272  error0 = DHCP_PROXY_ERROR_NO_INTERFACE_ADDRESS;
273  next0 = DHCP_PROXY_TO_SERVER_INPUT_NEXT_DROP;
274  pkts_no_interface_address++;
275  goto do_trace;
276  }
277 
278  /* Add option 82 */
279  o->option = 82; /* option 82 */
280  o->length = 12; /* 12 octets to follow */
281  o->data[0] = 1; /* suboption 1, circuit ID (=FIB id) */
282  o->data[1] = 4; /* length of suboption */
283  u32 *o_ifid = (u32 *) & o->data[2];
284  *o_ifid = clib_host_to_net_u32 (original_sw_if_index);
285  o->data[6] = 5; /* suboption 5 (client RX intfc address) */
286  o->data[7] = 4; /* length 4 */
287  u32 *o_addr = (u32 *) & o->data[8];
288  *o_addr = ia0->as_u32;
289  o->data[12] = DHCP_PACKET_OPTION_END;
290 
291  vss = dhcp_get_vss_info (dpm, fib_index, FIB_PROTOCOL_IP4);
292  if (vss)
293  {
294  u32 id_len; /* length of VPN ID */
295 
296  if (vss->vss_type == VSS_TYPE_VPN_ID)
297  {
298  id_len = sizeof (vss->vpn_id); /* vpn_id is 7 bytes */
299  memcpy (&o->data[15], vss->vpn_id, id_len);
300  }
301  else if (vss->vss_type == VSS_TYPE_ASCII)
302  {
303  id_len = vec_len (vss->vpn_ascii_id);
304  memcpy (&o->data[15], vss->vpn_ascii_id, id_len);
305  }
306  else /* must be VSS_TYPE_DEFAULT, no VPN ID */
307  id_len = 0;
308 
309  o->data[12] = 151; /* vss suboption */
310  o->data[13] = id_len + 1; /* length: vss_type + id_len */
311  o->data[14] = vss->vss_type; /* vss option type */
312  o->data[15 + id_len] = 152; /* vss control suboption */
313  o->data[16 + id_len] = 0; /* length */
314  o->data[17 + id_len] = DHCP_PACKET_OPTION_END; /* "end-of-options" (0xFF) */
315  /* 5 bytes for suboption headers 151+len, 152+len and 0xFF */
316  o->length += id_len + 5;
317  }
318 
319  len = o->length + 3;
320  b0->current_length += len;
321  /* Fix IP header length and checksum */
322  old_l0 = ip0->length;
323  new_l0 = clib_net_to_host_u16 (old_l0);
324  new_l0 += len;
325  new_l0 = clib_host_to_net_u16 (new_l0);
326  ip0->length = new_l0;
327  sum0 = ip0->checksum;
328  sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t,
329  length /* changed member */ );
330  ip0->checksum = ip_csum_fold (sum0);
331 
332  /* Fix UDP length */
333  new_l0 = clib_net_to_host_u16 (u0->length);
334  new_l0 += len;
335  u0->length = clib_host_to_net_u16 (new_l0);
336  }
337  else
338  {
340  (vm, dhcp_proxy_to_server_node.index,
341  DHCP_PROXY_ERROR_OPTION_82_ERROR, 1);
342  }
343 
344  next0 = DHCP_PROXY_TO_SERVER_INPUT_NEXT_LOOKUP;
345 
346  /*
347  * If we have multiple servers configured and this is the
348  * client's discover message, then send copies to each of
349  * those servers
350  */
351  if (is_discover && vec_len (proxy->dhcp_servers) > 1)
352  {
353  u32 ii;
354 
355  for (ii = 1; ii < vec_len (proxy->dhcp_servers); ii++)
356  {
357  vlib_buffer_t *c0;
358  u32 ci0;
359 
360  c0 = vlib_buffer_copy (vm, b0);
361  vlib_buffer_copy_trace_flag (vm, c0, bi0);
363  ci0 = vlib_get_buffer_index (vm, c0);
364  server = &proxy->dhcp_servers[ii];
365 
366  ip0 = vlib_buffer_get_current (c0);
367 
368  sum0 = ip0->checksum;
369  old0 = ip0->dst_address.as_u32;
370  new0 = server->dhcp_server.ip4.as_u32;
371  ip0->dst_address.as_u32 = server->dhcp_server.ip4.as_u32;
372  sum0 = ip_csum_update (sum0, old0, new0,
373  ip4_header_t /* structure */ ,
374  dst_address /* changed member */ );
375  ip0->checksum = ip_csum_fold (sum0);
376 
377  to_next[0] = ci0;
378  to_next += 1;
379  n_left_to_next -= 1;
380 
381  vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
382  to_next, n_left_to_next,
383  ci0, next0);
384 
385  if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
386  {
387  dhcp_proxy_trace_t *tr;
388 
389  tr = vlib_add_trace (vm, node, c0, sizeof (*tr));
390  tr->which = 0; /* to server */
391  tr->error = error0;
392  tr->original_sw_if_index = original_sw_if_index;
393  tr->sw_if_index = sw_if_index;
394  if (next0 == DHCP_PROXY_TO_SERVER_INPUT_NEXT_LOOKUP)
396  server->dhcp_server.ip4.as_u32;
397  }
398 
399  if (PREDICT_FALSE (0 == n_left_to_next))
400  {
401  vlib_put_next_frame (vm, node, next_index,
402  n_left_to_next);
403  vlib_get_next_frame (vm, node, next_index,
404  to_next, n_left_to_next);
405  }
406  }
407  }
408  do_trace:
409  if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
410  {
411  dhcp_proxy_trace_t *tr = vlib_add_trace (vm, node,
412  b0, sizeof (*tr));
413  tr->which = 0; /* to server */
414  tr->error = error0;
415  tr->original_sw_if_index = original_sw_if_index;
416  tr->sw_if_index = sw_if_index;
417  if (next0 == DHCP_PROXY_TO_SERVER_INPUT_NEXT_LOOKUP)
419  proxy->dhcp_servers[0].dhcp_server.ip4.as_u32;
420  }
421 
422  do_enqueue:
423  to_next[0] = bi0;
424  to_next += 1;
425  n_left_to_next -= 1;
426 
427  vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
428  to_next, n_left_to_next,
429  bi0, next0);
430  }
431 
432  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
433  }
435  DHCP_PROXY_ERROR_RELAY_TO_CLIENT,
436  pkts_to_client);
438  DHCP_PROXY_ERROR_RELAY_TO_SERVER,
439  pkts_to_server);
441  DHCP_PROXY_ERROR_NO_SERVER, pkts_no_server);
443  DHCP_PROXY_ERROR_NO_INTERFACE_ADDRESS,
444  pkts_no_interface_address);
446  DHCP_PROXY_ERROR_PKT_TOO_BIG, pkts_too_big);
447  return from_frame->n_vectors;
448 }
449 
450 /* *INDENT-OFF* */
452  .function = dhcp_proxy_to_server_input,
453  .name = "dhcp-proxy-to-server",
454  /* Takes a vector of packets. */
455  .vector_size = sizeof (u32),
456 
457  .n_errors = DHCP_PROXY_N_ERROR,
458  .error_strings = dhcp_proxy_error_strings,
459 
460  .n_next_nodes = DHCP_PROXY_TO_SERVER_INPUT_N_NEXT,
461  .next_nodes = {
462 #define _(s,n) [DHCP_PROXY_TO_SERVER_INPUT_NEXT_##s] = n,
464 #undef _
465  },
466 
467  .format_buffer = format_dhcp_proxy_header_with_length,
468  .format_trace = format_dhcp_proxy_trace,
469 #if 0
470  .unformat_buffer = unformat_dhcp_proxy_header,
471 #endif
472 };
473 /* *INDENT-ON* */
474 
475 static uword
477  vlib_node_runtime_t * node,
478  vlib_frame_t * from_frame)
479 {
480  u32 n_left_from, *from;
483  vnet_main_t *vnm = vnet_get_main ();
484  ip4_main_t *im = &ip4_main;
485 
486  from = vlib_frame_vector_args (from_frame);
487  n_left_from = from_frame->n_vectors;
488 
489  while (n_left_from > 0)
490  {
491  u32 bi0;
492  vlib_buffer_t *b0;
493  udp_header_t *u0;
494  dhcp_header_t *h0;
495  ip4_header_t *ip0 = 0;
496  ip4_address_t *ia0 = 0;
497  u32 old0, new0;
498  ip_csum_t sum0;
500  ethernet_header_t *mac0;
501  vnet_hw_interface_t *hi0;
502  vlib_frame_t *f0;
503  u32 *to_next0;
504  u32 sw_if_index = ~0;
505  vnet_sw_interface_t *si0;
506  u32 error0 = (u32) ~ 0;
507  vnet_sw_interface_t *swif;
508  u32 fib_index;
509  dhcp_proxy_t *proxy;
510  dhcp_server_t *server;
511  u32 original_sw_if_index = (u32) ~ 0;
512  ip4_address_t relay_addr = {
513  .as_u32 = 0,
514  };
515 
516  bi0 = from[0];
517  from += 1;
518  n_left_from -= 1;
519 
520  b0 = vlib_get_buffer (vm, bi0);
521  h0 = vlib_buffer_get_current (b0);
522 
523  /*
524  * udp_local hands us the DHCP header, need udp hdr,
525  * ip hdr to relay to client
526  */
527  vlib_buffer_advance (b0, -(sizeof (*u0)));
528  u0 = vlib_buffer_get_current (b0);
529 
530  vlib_buffer_advance (b0, -(sizeof (*ip0)));
531  ip0 = vlib_buffer_get_current (b0);
532 
533  /* Consumed by dhcp client code? */
534  if (dhcp_client_for_us (bi0, b0, ip0, u0, h0))
535  continue;
536 
537  if (1 /* dpm->insert_option_82 */ )
538  {
539  /* linearize needed to "unclone" and scan options */
540  int rv = vlib_buffer_chain_linearize (vm, b0);
541  if ((b0->flags & VLIB_BUFFER_NEXT_PRESENT) != 0 || !rv)
542  {
543  error0 = DHCP_PROXY_ERROR_PKT_TOO_BIG;
544  goto drop_packet;
545  }
546 
547  dhcp_option_t *o = h0->options, *end =
548  (void *) vlib_buffer_get_tail (b0);
549 
550  /* Parse through TLVs looking for option 82.
551  The circuit-ID is the FIB number we need
552  to track down the client-facing interface */
553 
554  while (o->option != DHCP_PACKET_OPTION_END && o < end)
555  {
556  if (o->option == 82)
557  {
558  u32 vss_exist = 0;
559  u32 vss_ctrl = 0;
560  dhcp_option_t *sub = (dhcp_option_t *) & o->data[0];
561  dhcp_option_t *subend =
562  (dhcp_option_t *) (o->data + o->length);
563  while (sub->option != DHCP_PACKET_OPTION_END
564  && sub < subend)
565  {
566  /* If this is one of ours, it will have
567  total length 12, circuit-id suboption type,
568  and the sw_if_index */
569  if (sub->option == 1 && sub->length == 4)
570  {
571  sw_if_index = ((sub->data[0] << 24) |
572  (sub->data[1] << 16) |
573  (sub->data[2] << 8) |
574  (sub->data[3]));
575  }
576  else if (sub->option == 5 && sub->length == 4)
577  {
578  relay_addr.as_u8[0] = sub->data[0];
579  relay_addr.as_u8[1] = sub->data[1];
580  relay_addr.as_u8[2] = sub->data[2];
581  relay_addr.as_u8[3] = sub->data[3];
582  }
583  else if (sub->option == 151 &&
584  sub->length == 7 && sub->data[0] == 1)
585  vss_exist = 1;
586  else if (sub->option == 152 && sub->length == 0)
587  vss_ctrl = 1;
588  sub = (dhcp_option_t *) (sub->data + sub->length);
589  }
590  if (vss_ctrl && vss_exist)
592  (vm, dhcp_proxy_to_client_node.index,
593  DHCP_PROXY_ERROR_OPTION_82_VSS_NOT_PROCESSED, 1);
594 
595  }
596  o = (dhcp_option_t *) (o->data + o->length);
597  }
598  }
599 
600  if (sw_if_index == (u32) ~ 0)
601  {
602  error0 = DHCP_PROXY_ERROR_NO_OPTION_82;
603 
604  drop_packet:
606  error0, 1);
608  to_next0 = vlib_frame_vector_args (f0);
609  to_next0[0] = bi0;
610  f0->n_vectors = 1;
612  goto do_trace;
613  }
614 
615  if (relay_addr.as_u32 == 0)
616  {
617  error0 = DHCP_PROXY_ERROR_BAD_OPTION_82_ADDR;
618  goto drop_packet;
619  }
620 
621  if (sw_if_index >= vec_len (im->fib_index_by_sw_if_index))
622  {
623  error0 = DHCP_PROXY_ERROR_BAD_OPTION_82_ITF;
624  goto drop_packet;
625  }
626 
627  fib_index = im->fib_index_by_sw_if_index[sw_if_index];
628  proxy = dhcp_get_proxy (dpm, fib_index, FIB_PROTOCOL_IP4);
629 
630  if (PREDICT_FALSE (NULL == proxy))
631  {
632  error0 = DHCP_PROXY_ERROR_NO_SERVER;
633  goto drop_packet;
634  }
635 
636  vec_foreach (server, proxy->dhcp_servers)
637  {
638  if (ip0->src_address.as_u32 == server->dhcp_server.ip4.as_u32)
639  {
640  goto server_found;
641  }
642  }
643 
644  error0 = DHCP_PROXY_ERROR_BAD_SVR_FIB_OR_ADDRESS;
645  goto drop_packet;
646 
647  server_found:
648  vnet_buffer (b0)->sw_if_index[VLIB_TX] = sw_if_index;
649 
650  swif = vnet_get_sw_interface (vnm, sw_if_index);
651  original_sw_if_index = sw_if_index;
653  sw_if_index = swif->unnumbered_sw_if_index;
654 
655  ia0 = ip4_interface_first_address (&ip4_main, sw_if_index, 0);
656  if (ia0 == 0)
657  {
658  error0 = DHCP_PROXY_ERROR_NO_INTERFACE_ADDRESS;
659  goto drop_packet;
660  }
661 
662  if (relay_addr.as_u32 != ia0->as_u32)
663  {
664  error0 = DHCP_PROXY_ERROR_BAD_YIADDR;
665  goto drop_packet;
666  }
667 
668  u0->checksum = 0;
669  u0->dst_port = clib_net_to_host_u16 (UDP_DST_PORT_dhcp_to_client);
670  sum0 = ip0->checksum;
671  old0 = ip0->dst_address.as_u32;
672  new0 = 0xFFFFFFFF;
673  ip0->dst_address.as_u32 = new0;
674  sum0 = ip_csum_update (sum0, old0, new0, ip4_header_t /* structure */ ,
675  dst_address /* offset of changed member */ );
676  ip0->checksum = ip_csum_fold (sum0);
677 
678  sum0 = ip0->checksum;
679  old0 = ip0->src_address.as_u32;
680  new0 = ia0->as_u32;
681  ip0->src_address.as_u32 = new0;
682  sum0 = ip_csum_update (sum0, old0, new0, ip4_header_t /* structure */ ,
683  src_address /* offset of changed member */ );
684  ip0->checksum = ip_csum_fold (sum0);
685 
686  vlib_buffer_advance (b0, -(sizeof (ethernet_header_t)));
687  si0 = vnet_get_sw_interface (vnm, original_sw_if_index);
688  if (si0->type == VNET_SW_INTERFACE_TYPE_SUB)
689  vlib_buffer_advance (b0, -4 /* space for VLAN tag */ );
690 
691  mac0 = vlib_buffer_get_current (b0);
692 
693  hi0 = vnet_get_sup_hw_interface (vnm, original_sw_if_index);
694  ei0 = pool_elt_at_index (em->interfaces, hi0->hw_instance);
695  clib_memcpy (mac0->src_address, ei0->address, sizeof (ei0->address));
696  clib_memset (mac0->dst_address, 0xff, sizeof (mac0->dst_address));
697  mac0->type = (si0->type == VNET_SW_INTERFACE_TYPE_SUB) ?
698  clib_net_to_host_u16 (0x8100) : clib_net_to_host_u16 (0x0800);
699 
700  if (si0->type == VNET_SW_INTERFACE_TYPE_SUB)
701  {
702  u32 *vlan_tag = (u32 *) (mac0 + 1);
703  u32 tmp;
704  tmp = (si0->sub.id << 16) | 0x0800;
705  *vlan_tag = clib_host_to_net_u32 (tmp);
706  }
707 
708  /* $$$ This needs to be rewritten, for sure */
710  to_next0 = vlib_frame_vector_args (f0);
711  to_next0[0] = bi0;
712  f0->n_vectors = 1;
714 
715  do_trace:
716  if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
717  {
718  dhcp_proxy_trace_t *tr = vlib_add_trace (vm, node,
719  b0, sizeof (*tr));
720  tr->which = 1; /* to client */
721  tr->trace_ip4_address.as_u32 = ia0 ? ia0->as_u32 : 0;
722  tr->error = error0;
723  tr->original_sw_if_index = original_sw_if_index;
724  tr->sw_if_index = sw_if_index;
725  }
726  }
727 
728  return from_frame->n_vectors;
729 }
730 
731 /* *INDENT-OFF* */
733  .function = dhcp_proxy_to_client_input,
734  .name = "dhcp-proxy-to-client",
735  /* Takes a vector of packets. */
736  .vector_size = sizeof (u32),
737 
738  .n_errors = DHCP_PROXY_N_ERROR,
739  .error_strings = dhcp_proxy_error_strings,
740  .format_buffer = format_dhcp_proxy_header_with_length,
741  .format_trace = format_dhcp_proxy_trace,
742 #if 0
743  .unformat_buffer = unformat_dhcp_proxy_header,
744 #endif
745 };
746 /* *INDENT-ON* */
747 
748 void
750 {
752  vlib_main_t *vm = dm->vlib_main;
753 
754  if (dm->udp_ports_registered)
755  return;
756 
757  udp_register_dst_port (vm, UDP_DST_PORT_dhcp_to_client,
758  dhcp_proxy_to_client_node.index, 1 /* is_ip4 */ );
759 
760  udp_register_dst_port (vm, UDP_DST_PORT_dhcp_to_server,
761  dhcp_proxy_to_server_node.index, 1 /* is_ip4 */ );
762 
763  dm->udp_ports_registered = 1;
764 }
765 
766 static clib_error_t *
768 {
770  vlib_node_t *error_drop_node;
771 
772  error_drop_node = vlib_get_node_by_name (vm, (u8 *) "error-drop");
773  dm->error_drop_node_index = error_drop_node->index;
774  dm->vlib_main = vm;
775 
776  return 0;
777 }
778 
779 
781 
782 int
783 dhcp4_proxy_set_server (ip46_address_t * addr,
784  ip46_address_t * src_addr,
785  u32 rx_table_id, u32 server_table_id, int is_del)
786 {
787  u32 rx_fib_index = 0;
788  int rc = 0;
789 
790  const fib_prefix_t all_1s = {
791  .fp_len = 32,
792  .fp_addr.ip4.as_u32 = 0xffffffff,
793  .fp_proto = FIB_PROTOCOL_IP4,
794  };
795 
796  if (ip46_address_is_zero (addr))
797  return VNET_API_ERROR_INVALID_DST_ADDRESS;
798 
799  if (ip46_address_is_zero (src_addr))
800  return VNET_API_ERROR_INVALID_SRC_ADDRESS;
801 
803 
805  rx_table_id,
807 
808  if (is_del)
809  {
810  if (dhcp_proxy_server_del (FIB_PROTOCOL_IP4, rx_fib_index,
811  addr, server_table_id))
812  {
813  fib_table_entry_special_remove (rx_fib_index,
814  &all_1s, FIB_SOURCE_DHCP);
816  }
817  }
818  else
819  {
821  addr, src_addr,
822  rx_fib_index, server_table_id))
823  {
824  fib_table_entry_special_add (rx_fib_index,
825  &all_1s,
828  }
829  }
831 
832  return (rc);
833 }
834 
835 static clib_error_t *
837  unformat_input_t * input,
838  vlib_cli_command_t * cmd)
839 {
840  ip46_address_t server_addr, src_addr;
841  u32 server_table_id = 0, rx_table_id = 0;
842  int is_del = 0;
843  int set_src = 0, set_server = 0;
844 
845  clib_memset (&server_addr, 0, sizeof (server_addr));
846  clib_memset (&src_addr, 0, sizeof (src_addr));
847 
849  {
850  if (unformat (input, "server %U",
851  unformat_ip4_address, &server_addr.ip4))
852  set_server = 1;
853  else if (unformat (input, "server-fib-id %d", &server_table_id))
854  ;
855  else if (unformat (input, "rx-fib-id %d", &rx_table_id))
856  ;
857  else if (unformat (input, "src-address %U",
858  unformat_ip4_address, &src_addr.ip4))
859  set_src = 1;
860  else if (unformat (input, "delete") || unformat (input, "del"))
861  is_del = 1;
862  else
863  break;
864  }
865 
866  if (is_del || (set_server && set_src))
867  {
868  int rv;
869 
870  rv = dhcp4_proxy_set_server (&server_addr, &src_addr, rx_table_id,
871  server_table_id, is_del);
872  switch (rv)
873  {
874  case 0:
875  return 0;
876 
877  case VNET_API_ERROR_INVALID_DST_ADDRESS:
878  return clib_error_return (0, "Invalid server address");
879 
880  case VNET_API_ERROR_INVALID_SRC_ADDRESS:
881  return clib_error_return (0, "Invalid src address");
882 
883  case VNET_API_ERROR_NO_SUCH_ENTRY:
884  return clib_error_return
885  (0, "Fib id %d: no per-fib DHCP server configured", rx_table_id);
886 
887  default:
888  return clib_error_return (0, "BUG: rv %d", rv);
889  }
890  }
891  else
892  return clib_error_return (0, "parse error`%U'",
893  format_unformat_error, input);
894 }
895 
896 /* *INDENT-OFF* */
897 VLIB_CLI_COMMAND (dhcp_proxy_set_command, static) = {
898  .path = "set dhcp proxy",
899  .short_help = "set dhcp proxy [del] server <ip-addr> src-address <ip-addr> [server-fib-id <n>] [rx-fib-id <n>]",
900  .function = dhcp4_proxy_set_command_fn,
901 };
902 /* *INDENT-ON* */
903 
904 static u8 *
905 format_dhcp4_proxy_server (u8 * s, va_list * args)
906 {
907  dhcp_proxy_t *proxy = va_arg (*args, dhcp_proxy_t *);
908  ip4_fib_t *rx_fib, *server_fib;
909  dhcp_server_t *server;
910 
911  if (proxy == 0)
912  {
913  s = format (s, "%=14s%=16s%s", "RX FIB", "Src Address",
914  "Servers FIB,Address");
915  return s;
916  }
917 
918  rx_fib = ip4_fib_get (proxy->rx_fib_index);
919 
920  s = format (s, "%=14u%=16U",
921  rx_fib->table_id,
923 
924  vec_foreach (server, proxy->dhcp_servers)
925  {
926  server_fib = ip4_fib_get (server->server_fib_index);
927  s = format (s, "%u,%U ",
928  server_fib->table_id,
930  }
931  return s;
932 }
933 
934 static int
936 {
937  vlib_main_t *vm = ctx;
938 
939  vlib_cli_output (vm, "%U", format_dhcp4_proxy_server, server);
940 
941  return (1);
942 }
943 
944 static clib_error_t *
946  unformat_input_t * input,
947  vlib_cli_command_t * cmd)
948 {
950  NULL /* header line */ );
951 
953 
954  return (NULL);
955 }
956 
957 /* *INDENT-OFF* */
958 VLIB_CLI_COMMAND (dhcp_proxy_show_command, static) = {
959  .path = "show dhcp proxy",
960  .short_help = "Display dhcp proxy server info",
961  .function = dhcp4_proxy_show_command_fn,
962 };
963 /* *INDENT-ON* */
964 
965 static clib_error_t *
967  unformat_input_t * input, vlib_cli_command_t * cmd)
968 {
969  u8 is_del = 0, vss_type = VSS_TYPE_DEFAULT;
970  u32 oui = 0, fib_id = 0, tbl_id = ~0;
971  u8 *vpn_ascii_id = 0;
972 
974  {
975  if (unformat (input, "table %d", &tbl_id))
976  ;
977  else if (unformat (input, "oui %d", &oui))
978  vss_type = VSS_TYPE_VPN_ID;
979  else if (unformat (input, "vpn-id %d", &fib_id))
980  vss_type = VSS_TYPE_VPN_ID;
981  else if (unformat (input, "vpn-ascii-id %s", &vpn_ascii_id))
982  vss_type = VSS_TYPE_ASCII;
983  else if (unformat (input, "delete") || unformat (input, "del"))
984  is_del = 1;
985  else
986  break;
987  }
988 
989  if (tbl_id == ~0)
990  return clib_error_return (0, "no table ID specified.");
991 
992  int rv = dhcp_proxy_set_vss (FIB_PROTOCOL_IP4, tbl_id, vss_type,
993  vpn_ascii_id, oui, fib_id, is_del);
994  switch (rv)
995  {
996  case 0:
997  return 0;
998  case VNET_API_ERROR_NO_SUCH_ENTRY:
999  return clib_error_return (0,
1000  "option 82 vss for table %d not found in in pool.",
1001  tbl_id);
1002  default:
1003  return clib_error_return (0, "BUG: rv %d", rv);
1004 
1005  }
1006 }
1007 
1008 /* *INDENT-OFF* */
1009 VLIB_CLI_COMMAND (dhcp_proxy_vss_command,static) = {
1010  .path = "set dhcp option-82 vss",
1011  .short_help = "set dhcp option-82 vss [del] table <table id> [oui <n> vpn-id <n> | vpn-ascii-id <text>]",
1012  .function = dhcp_option_82_vss_fn,
1013 };
1014 /* *INDENT-ON* */
1015 
1016 static clib_error_t *
1018  unformat_input_t * input, vlib_cli_command_t * cmd)
1019 {
1021 
1022  return (NULL);
1023 }
1024 
1025 /* *INDENT-OFF* */
1026 VLIB_CLI_COMMAND (dhcp_proxy_vss_show_command, static) = {
1027  .path = "show dhcp vss",
1028  .short_help = "show dhcp VSS",
1029  .function = dhcp_vss_show_command_fn,
1030 };
1031 /* *INDENT-ON* */
1032 
1033 static clib_error_t *
1035  unformat_input_t * input,
1036  vlib_cli_command_t * cmd)
1037 {
1038  vnet_main_t *vnm = vnet_get_main ();
1039  u32 sw_if_index0 = 0, sw_if_index;
1040  vnet_sw_interface_t *swif;
1041  ip4_address_t *ia0;
1042 
1043  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1044  {
1045 
1046  if (unformat (input, "%U",
1047  unformat_vnet_sw_interface, vnm, &sw_if_index0))
1048  {
1049  swif = vnet_get_sw_interface (vnm, sw_if_index0);
1051  swif->unnumbered_sw_if_index : sw_if_index0;
1053  if (ia0)
1054  {
1055  vlib_cli_output (vm, "%=20s%=20s", "interface",
1056  "source IP address");
1057 
1058  vlib_cli_output (vm, "%=20U%=20U",
1060  vnm, sw_if_index0, format_ip4_address, ia0);
1061  }
1062  else
1063  vlib_cli_output (vm, "%=34s %=20U",
1064  "No IPv4 address configured on",
1066  }
1067  else
1068  break;
1069  }
1070 
1071  return 0;
1072 }
1073 
1074 /* *INDENT-OFF* */
1075 VLIB_CLI_COMMAND (dhcp_proxy_address_show_command,static) = {
1076  .path = "show dhcp option-82-address interface",
1077  .short_help = "show dhcp option-82-address interface <interface>",
1079 };
1080 /* *INDENT-ON* */
1081 
1082 /*
1083  * fd.io coding-style-patch-verification: ON
1084  *
1085  * Local Variables:
1086  * eval: (c-set-style "gnu")
1087  * End:
1088  */
static vlib_node_registration_t dhcp_proxy_to_client_node
(constructor) VLIB_REGISTER_NODE (dhcp_proxy_to_client_node)
static dhcp_vss_t * dhcp_get_vss_info(dhcp_proxy_main_t *dm, u32 rx_fib_index, fib_protocol_t proto)
Get the VSS data for the FIB index.
Definition: dhcp_proxy.h:249
static u8 * vlib_buffer_get_tail(vlib_buffer_t *b)
Get pointer to the end of buffer&#39;s data.
Definition: buffer.h:295
#define CLIB_UNUSED(x)
Definition: clib.h:82
ip4_address_t src_address
Definition: ip4_packet.h:170
vnet_main_t * vnet_get_main(void)
Definition: misc.c:47
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
void dhcp_vss_walk(fib_protocol_t proto, dhcp_vss_walk_fn_t fn, void *ctx)
Walk/Visit each DHCP proxy VSS.
Definition: dhcp_proxy.c:87
dhcp_server_t * dhcp_servers
The set of DHCP servers to which messages are relayed.
Definition: dhcp_proxy.h:105
static uword dhcp_proxy_to_client_input(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
void dhcp_proxy_walk(fib_protocol_t proto, dhcp_proxy_walk_fn_t fn, void *ctx)
Walk/Visit each DHCP proxy server.
Definition: dhcp_proxy.c:67
static clib_error_t * dhcp4_proxy_show_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define VPP_DHCP_OPTION82_SIZE
#define NULL
Definition: clib.h:58
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
u32 index
Definition: node.h:304
ip4_address_t * ip4_interface_first_address(ip4_main_t *im, u32 sw_if_index, ip_interface_address_t **result_ia)
Definition: ip4_forward.c:313
dhcp_proxy_main_t dhcp_proxy_main
Shard 4/6 instance of DHCP main.
Definition: dhcp_proxy.c:25
u8 src_address[6]
Definition: packet.h:56
int dhcp_vss_show_walk(dhcp_vss_t *vss, u32 rx_table_id, void *ctx)
Show (on CLI) a VSS config during a show walk.
Definition: dhcp_proxy.c:259
static uword dhcp_proxy_to_server_input(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
ip46_address_t dhcp_src_address
The source address to use in relayed messaes.
Definition: dhcp_proxy.h:120
The Virtual Sub-net Selection information for a given RX FIB.
Definition: dhcp_proxy.h:51
int dhcp_client_for_us(u32 bi, vlib_buffer_t *b, ip4_header_t *ip, udp_header_t *udp, dhcp_header_t *dhcp)
Definition: client.c:161
u32 rx_fib_index
The FIB index (not the external Table-ID) in which the client is resides.
Definition: dhcp_proxy.h:126
format_function_t format_ip46_address
Definition: format.h:61
uword ip_csum_t
Definition: ip_packet.h:181
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
u32 * fib_index_by_sw_if_index
Table index indexed by software interface.
Definition: ip4.h:112
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
unformat_function_t unformat_vnet_sw_interface
u8 vss_type
VSS type as defined in RFC 6607: 0 for NVT ASCII VPN Identifier 1 for RFC 2685 VPN-ID of 7 octects - ...
Definition: dhcp_proxy.h:59
vhost_vring_addr_t addr
Definition: vhost_user.h:121
format_function_t format_vnet_sw_if_index_name
unsigned char u8
Definition: types.h:56
static vlib_buffer_t * vlib_buffer_copy(vlib_main_t *vm, vlib_buffer_t *b)
Definition: buffer_funcs.h:685
#define clib_memcpy(d, s, n)
Definition: string.h:180
format_function_t format_ip4_address
Definition: format.h:75
unformat_function_t unformat_ip4_address
Definition: format.h:70
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:163
u32 table_id
Definition: ip4_fib.h:54
void fib_table_entry_special_remove(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source)
Remove a &#39;special&#39; entry from the FIB.
Definition: fib_table.c:407
u32 sw_if_index
Definition: vxlan_gbp.api:37
ip4_address_t dst_address
Definition: ip4_packet.h:170
u8 dst_address[6]
Definition: packet.h:55
static vlib_node_registration_t dhcp_proxy_to_server_node
(constructor) VLIB_REGISTER_NODE (dhcp_proxy_to_server_node)
Aggregrate type for a prefix.
Definition: fib_types.h:203
vlib_frame_t * vlib_get_frame_to_node(vlib_main_t *vm, u32 to_node_index)
Definition: main.c:181
static clib_error_t * dhcp4_proxy_set_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
static dhcp_proxy_t * dhcp_get_proxy(dhcp_proxy_main_t *dm, u32 rx_fib_index, fib_protocol_t proto)
Get the DHCP proxy server data for the FIB index.
Definition: dhcp_proxy.h:269
#define clib_error_return(e, args...)
Definition: error.h:99
#define VSS_TYPE_ASCII
Definition: dhcp_proxy.h:60
int dhcp_proxy_server_add(fib_protocol_t proto, ip46_address_t *addr, ip46_address_t *src_address, u32 rx_fib_index, u32 server_table_id)
Add a new DHCP proxy server configuration.
Definition: dhcp_proxy.c:184
unsigned int u32
Definition: types.h:88
u16 fp_len
The mask length.
Definition: fib_types.h:207
#define VSS_TYPE_DEFAULT
Definition: dhcp_proxy.h:63
static u32 vlib_get_buffer_index(vlib_main_t *vm, void *p)
Translate buffer pointer into buffer index.
Definition: buffer_funcs.h:158
u32 server_fib_index
The FIB index (not the external Table-ID) in which the server is reachable.
Definition: dhcp_proxy.h:89
static u8 * format_dhcp4_proxy_server(u8 *s, va_list *args)
void dhcp_maybe_register_udp_ports(void)
Register the dhcp client and server ports, if not already done.
static u32 vlib_buffer_chain_linearize(vlib_main_t *vm, vlib_buffer_t *b)
Definition: fib_entry.h:280
Collection of global DHCP proxy data.
Definition: dhcp_proxy.h:134
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:511
vnet_sub_interface_t sub
Definition: interface.h:726
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:114
long ctx[MAX_CONNS]
Definition: main.c:144
struct _unformat_input_t unformat_input_t
unsigned short u16
Definition: types.h:57
dhcp_proxy_to_server_input_next_t
void vlib_put_frame_to_node(vlib_main_t *vm, u32 to_node_index, vlib_frame_t *f)
Definition: main.c:190
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:214
#define PREDICT_FALSE(x)
Definition: clib.h:111
vnet_sw_interface_flags_t flags
Definition: interface.h:706
vlib_main_t * vlib_main
Definition: dhcp_proxy.h:154
vl_api_address_union_t src_address
Definition: ip_types.api:44
static char * dhcp_proxy_error_strings[]
int dhcp_proxy_set_vss(fib_protocol_t proto, u32 tbl_id, u8 vss_type, u8 *vpn_ascii_id, u32 oui, u32 vpn_index, u8 is_del)
Configure/set a new VSS info.
Definition: dhcp_proxy.c:309
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
Definition: buffer_node.h:218
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
Definition: node_funcs.h:338
void fib_table_unlock(u32 fib_index, fib_protocol_t proto, fib_source_t source)
Take a reference counting lock on the table.
Definition: fib_table.c:1237
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
Definition: node_funcs.h:1150
u8 len
Definition: ip_types.api:49
static clib_error_t * dhcp4_proxy_init(vlib_main_t *vm)
fib_node_index_t fib_table_entry_special_add(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source, fib_entry_flag_t flags)
Add a &#39;special&#39; entry to the FIB.
Definition: fib_table.c:388
The IPv4 FIB.
Definition: ip4_fib.h:39
dhcp_option_t options[0]
Definition: dhcp4_packet.h:51
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
static void vlib_buffer_copy_trace_flag(vlib_main_t *vm, vlib_buffer_t *b, u32 bi_target)
Definition: trace_funcs.h:147
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
u8 * vpn_ascii_id
Type 0 ASCII VPN Identifier.
Definition: dhcp_proxy.h:71
u16 n_vectors
Definition: node.h:420
vlib_main_t * vm
Definition: buffer.c:301
static clib_error_t * dhcp_option_82_address_show_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
static ip4_fib_t * ip4_fib_get(u32 index)
Get the FIB at the given index.
Definition: ip4_fib.h:113
A representation of a single DHCP Server within a given VRF config.
Definition: dhcp_proxy.h:77
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
Definition: main.c:452
vlib_node_t * vlib_get_node_by_name(vlib_main_t *vm, u8 *name)
Definition: node.c:45
static u32 vlib_buffer_space_left_at_end(vlib_main_t *vm, vlib_buffer_t *b)
void fib_table_lock(u32 fib_index, fib_protocol_t proto, fib_source_t source)
Release a reference counting lock on the table.
Definition: fib_table.c:1266
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:155
int dhcp4_proxy_set_server(ip46_address_t *addr, ip46_address_t *src_addr, u32 rx_table_id, u32 server_table_id, int is_del)
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
Definition: node.h:537
ip46_address_t dhcp_server
The address of the DHCP server to which to relay the client&#39;s messages.
Definition: dhcp_proxy.h:83
static u8 * format_dhcp_proxy_trace(u8 *s, va_list *args)
#define foreach_dhcp_proxy_to_server_input_next
ip4_address_t gateway_ip_address
Definition: dhcp4_packet.h:46
static clib_error_t * dhcp_option_82_vss_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
IPv4 main type.
Definition: ip4.h:96
u32 fib_table_find_or_create_and_lock(fib_protocol_t proto, u32 table_id, fib_source_t src)
Get the index of the FIB for a Table-ID.
Definition: fib_table.c:1123
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
Definition: buffer.h:233
static clib_error_t * dhcp_vss_show_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
ip4_address_t trace_ip4_address
static void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace_funcs.h:57
struct _vlib_node_registration vlib_node_registration_t
A DHCP proxy represenation fpr per-client VRF config.
Definition: dhcp_proxy.h:95
Definition: defs.h:47
int dhcp_proxy_server_del(fib_protocol_t proto, u32 rx_fib_index, ip46_address_t *addr, u32 server_table_id)
Delete a DHCP proxy config.
Definition: dhcp_proxy.c:144
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
u8 vpn_id[7]
Type 1 VPN-ID.
Definition: dhcp_proxy.h:67
DHCP.
Definition: fib_entry.h:94
#define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b)
Definition: buffer.h:495
u64 uword
Definition: types.h:112
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:244
#define ip_csum_update(sum, old, new, type, field)
Definition: ip_packet.h:231
#define VSS_TYPE_VPN_ID
Definition: dhcp_proxy.h:61
static u8 * format_dhcp_proxy_header_with_length(u8 *s, va_list *args)
static ethernet_main_t * vnet_get_ethernet_main(void)
Definition: ethernet.h:578
#define vnet_buffer(b)
Definition: buffer.h:368
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
vnet_sw_interface_type_t type
Definition: interface.h:704
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:903
#define vec_foreach(var, vec)
Vector iterator.
void udp_register_dst_port(vlib_main_t *vm, udp_dst_port_t dst_port, u32 node_index, u8 is_ip4)
Definition: udp_local.c:492
ethernet_interface_t * interfaces
Definition: ethernet.h:305
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:117
#define ip46_address_is_zero(ip46)
Definition: ip6_packet.h:93
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:762
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:62
static int dhcp4_proxy_show_walk(dhcp_proxy_t *server, void *ctx)
static u16 ip_csum_fold(ip_csum_t c)
Definition: ip_packet.h:237
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:972
Definition: defs.h:46
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:170