summaryrefslogtreecommitdiffstats
path: root/src/vnet/dhcp/proxy.h
blob: e12c0d001b54d4aaf2e45644c53ae4125c46179c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
 * proxy.h: dhcp proxy 
 *
 * Copyright (c) 2013 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef included_dhcp_proxy_h
#define included_dhcp_proxy_h

#include <vnet/vnet.h>
#include <vnet/dhcp/packet.h>
#include <vnet/ethernet/ethernet.h>
#include <vnet/ip/ip.h>
#include <vnet/ip/ip4.h>
#include <vnet/ip/ip4_packet.h>
#include <vnet/pg/pg.h>
#include <vnet/ip/format.h>
#include <vnet/ip/udp.h>
#include <vnet/dhcp/client.h>

typedef enum {
#define dhcp_proxy_error(n,s) DHCP_PROXY_ERROR_##n,
#include <vnet/dhcp/proxy_error.def>
#undef dhcp_proxy_error
  DHCP_PROXY_N_ERROR,
} dhcp_proxy_error_t;

typedef struct {
  u32 oui;
  u32 fib_id;
} vss_id;

typedef union {
  u8 as_u8[8];
  vss_id vpn_id;
} vss_info;

typedef struct {
  ip4_address_t dhcp_server;
  ip4_address_t dhcp_src_address;
  u32 insert_option_82;
  u32 server_fib_index;
  u32 valid;
} dhcp_server_t;

typedef struct {
  /* Pool of DHCP servers */
  dhcp_server_t * dhcp_servers;

  /* Pool of selected DHCP server. Zero is the default server */
  u32 * dhcp_server_index_by_rx_fib_index;

  /* to drop pkts in server-to-client direction */
  u32 error_drop_node_index;

  vss_info *opt82vss;

  /* hash lookup specific vrf_id -> option 82 vss suboption  */
  uword * opt82vss_index_by_vrf_id;

  /* convenience */
  dhcp_client_main_t * dhcp_client_main;
  vlib_main_t * vlib_main;
  vnet_main_t * vnet_main;
} dhcp_proxy_main_t;

dhcp_proxy_main_t dhcp_proxy_main;

int dhcp_proxy_set_server (ip4_address_t *addr, ip4_address_t *src_address,
                           u32 fib_id, int insert_option_82, int is_del);

int dhcp_proxy_set_server_2 (ip4_address_t *addr, ip4_address_t *src_address,
                             u32 rx_fib_id,
                             u32 server_fib_id, 
                             int insert_option_82, int is_del);

int dhcp_proxy_set_option82_vss(u32 vrf_id,
                                u32 oui,
                                u32 fib_id, 
                                int is_del);
#endif /* included_dhcp_proxy_h */
s="nf">ethernet_address_cast (u8 * a) { return (a[0] >> 0) & 1; } always_inline int ethernet_address_is_broadcast (u8 * a) { return clib_mem_unaligned (a, u32) == 0xffffffff && clib_mem_unaligned (a + 4, u16) == 0xffff; } always_inline uword ethernet_address_is_locally_administered (u8 * a) { return (a[0] >> 1) & 1; } always_inline void ethernet_address_set_locally_administered (u8 * a) { a[0] |= 1 << 1; } always_inline int eh_dst_addr_to_rx_ctype (ethernet_header_t * eh) { if (PREDICT_TRUE (ethernet_address_cast (eh->dst_address) == ETHERNET_ADDRESS_UNICAST)) { return VNET_INTERFACE_COUNTER_RX_UNICAST; } else if (ethernet_address_is_broadcast (eh->dst_address)) { return VNET_INTERFACE_COUNTER_RX_BROADCAST; } else { return VNET_INTERFACE_COUNTER_RX_MULTICAST; } } always_inline int eh_dst_addr_to_tx_ctype (ethernet_header_t * eh) { if (PREDICT_TRUE (ethernet_address_cast (eh->dst_address) == ETHERNET_ADDRESS_UNICAST)) { return VNET_INTERFACE_COUNTER_TX_UNICAST; } else if (ethernet_address_is_broadcast (eh->dst_address)) { return VNET_INTERFACE_COUNTER_TX_BROADCAST; } else { return VNET_INTERFACE_COUNTER_TX_MULTICAST; } } /* For VLAN ethernet type. */ typedef struct { /* 3 bit priority, 1 bit CFI and 12 bit vlan id. */ u16 priority_cfi_and_id; #define ETHERNET_N_VLAN (1 << 12) /* Inner ethernet type. */ u16 type; } ethernet_vlan_header_t; always_inline void ethernet_vlan_header_set_priority_net_order (ethernet_vlan_header_t * h, u8 prio) { u8 *bytes = (u8 *) (&h->priority_cfi_and_id); bytes[0] &= 0x1f; bytes[0] |= (prio & 0x7) << 5; } always_inline u8 ethernet_vlan_header_get_priority_net_order (ethernet_vlan_header_t * h) { u8 *bytes = (u8 *) (&h->priority_cfi_and_id); return (bytes[0] >> 5); } /* VLAN with ethertype first and vlan id second */ typedef struct { /* vlan type */ u16 type; /* 3 bit priority, 1 bit CFI and 12 bit vlan id. */ u16 priority_cfi_and_id; } ethernet_vlan_header_tv_t; /* PBB header with B-TAG - backbone VLAN indicator and I-TAG - service encapsulation */ typedef struct { /* Backbone source/destination address. */ u8 b_dst_address[6]; u8 b_src_address[6]; /* B-tag */ u16 b_type; /* 3 bit priority, 1 bit DEI and 12 bit vlan id */ u16 priority_dei_id; /* I-tag */ u16 i_type; /* 3 bit priority, 1 bit DEI, 1 bit UCA, 3 bit RES and 24 bit I_SID (service identifier) */ u32 priority_dei_uca_res_sid; #define ETHERNET_N_PBB (1 << 24) } ethernet_pbb_header_t; /* *INDENT-OFF* */ typedef CLIB_PACKED (struct { /* Backbone source/destination address. */ u8 b_dst_address[6]; u8 b_src_address[6]; /* B-tag */ u16 b_type; /* 3 bit priority, 1 bit DEI and 12 bit vlan id */ u16 priority_dei_id; /* I-tag */ u16 i_type; /* 3 bit priority, 1 bit DEI, 1 bit UCA, 3 bit RES and 24 bit I_SID (service identifier) */ u32 priority_dei_uca_res_sid; }) ethernet_pbb_header_packed_t; /* *INDENT-ON* */ #endif /* included_ethernet_packet_h */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */