vppinfra: add atomic macros for __sync builtins
[vpp.git] / src / vnet / dns / dns.h
1 /*
2  * Copyright (c) 2017 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 #ifndef included_dns_h
17 #define included_dns_h
18
19 #include <vppinfra/time.h>
20 #include <vppinfra/cache.h>
21 #include <vppinfra/error.h>
22
23 #include <vppinfra/hash.h>
24 #include <vnet/dns/dns_packet.h>
25 #include <vnet/ip/ip.h>
26
27 typedef struct
28 {
29   u32 request_type;
30   u32 client_index;
31   u32 client_context;
32   u8 is_ip6;
33   u16 dst_port;
34   u16 id;
35   u16 pad;
36   u8 dst_address[16];
37   u8 *name;
38 } dns_pending_request_t;
39
40 typedef enum
41 {
42   DNS_API_PENDING_NAME_TO_IP = 1,
43   DNS_API_PENDING_IP_TO_NAME,
44   DNS_PEER_PENDING_NAME_TO_IP,
45   DNS_PEER_PENDING_IP_TO_NAME,
46 } dns_pending_request_type_t;
47
48 typedef struct
49 {
50   /** flags */
51   volatile u8 flags;
52
53   /** The name in "normal human being" notation, e.g. www.foobar.com */
54   u8 *name;
55
56   /** For CNAME records, the "next name" to resolve */
57   u8 *cname;
58
59   /** Expiration time */
60   f64 expiration_time;
61
62   /** Cached dns request, for sending retries */
63   u8 *dns_request;
64
65   /** Retry parameters */
66   int retry_count;
67   int server_rotor;
68   int server_af;
69   int server_fails;
70   f64 retry_timer;
71
72   /** Cached dns response */
73   u8 *dns_response;
74
75   /** Clients / peers awaiting responses */
76   dns_pending_request_t *pending_requests;
77 } dns_cache_entry_t;
78
79 #define DNS_CACHE_ENTRY_FLAG_VALID      (1<<0) /**< we have Actual Data */
80 #define DNS_CACHE_ENTRY_FLAG_STATIC     (1<<1) /**< static entry */
81 #define DNS_CACHE_ENTRY_FLAG_CNAME      (1<<2) /**< CNAME (indirect) entry */
82
83 #define DNS_RETRIES_PER_SERVER 3
84
85 #define DNS_RESOLVER_EVENT_RESOLVED     1
86 #define DNS_RESOLVER_EVENT_PENDING      2
87
88
89 typedef struct
90 {
91   /** Pool of cache entries */
92   dns_cache_entry_t *entries;
93
94   /** Pool indices of unresolved entries */
95   u32 *unresolved_entries;
96
97   /** Find cached record by name */
98   uword *cache_entry_by_name;
99   uword *cache_lock;
100
101   /** enable / disable flag */
102   int is_enabled;
103
104   /** upstream name servers, e.g. 8.8.8.8 */
105   ip4_address_t *ip4_name_servers;
106   ip6_address_t *ip6_name_servers;
107
108   /** config parameters */
109   u32 name_cache_size;
110   u32 max_ttl_in_seconds;
111   u32 random_seed;
112
113   /* convenience */
114   vlib_main_t *vlib_main;
115   vnet_main_t *vnet_main;
116 } dns_main_t;
117
118 extern dns_main_t dns_main;
119
120 extern vlib_node_registration_t dns46_reply_node;
121 extern vlib_node_registration_t dns4_request_node;
122 extern vlib_node_registration_t dns6_request_node;
123 extern vlib_node_registration_t dns_resolver_node;
124
125 #define foreach_dns46_request_error                                     \
126 _(NONE, "No error")                                                     \
127 _(UNIMPLEMENTED, "Unimplemented")                                       \
128 _(PROCESSED, "DNS request pkts processed")                              \
129 _(IP_OPTIONS, "DNS pkts with ip options (dropped)")                     \
130 _(BAD_REQUEST, "DNS pkts with serious discrepanices (dropped)")         \
131 _(TOO_MANY_REQUESTS, "DNS pkts asking too many questions")              \
132 _(RESOLUTION_REQUIRED, "DNS pkts pending upstream name resolution")
133
134 typedef enum
135 {
136 #define _(sym,str) DNS46_REQUEST_ERROR_##sym,
137   foreach_dns46_request_error
138 #undef _
139     DNS46_REQUEST_N_ERROR,
140 } dns46_request_error_t;
141
142 #define foreach_dns46_reply_error                       \
143 _(DISABLED, "DNS pkts punted (feature disabled)")       \
144 _(PROCESSED, "DNS reply pkts processed")                \
145 _(NO_ELT, "No DNS pool element")                        \
146 _(FORMAT_ERROR, "DNS format errors")                    \
147 _(TEST_DROP, "DNS reply pkt dropped for test purposes")
148
149 typedef enum
150 {
151 #define _(sym,str) DNS46_REPLY_ERROR_##sym,
152   foreach_dns46_reply_error
153 #undef _
154     DNS46_REPLY_N_ERROR,
155 } dns46_reply_error_t;
156
157 void vnet_send_dns_request (dns_main_t * dm, dns_cache_entry_t * ep);
158 int
159 vnet_dns_cname_indirection_nolock (dns_main_t * dm, u32 ep_index, u8 * reply);
160
161 int vnet_dns_delete_entry_by_index_nolock (dns_main_t * dm, u32 index);
162
163 int
164 vnet_dns_resolve_name (dns_main_t * dm, u8 * name, dns_pending_request_t * t,
165                        dns_cache_entry_t ** retp);
166
167 void
168 vnet_dns_send_dns6_request (dns_main_t * dm,
169                             dns_cache_entry_t * ep, ip6_address_t * server);
170 void
171 vnet_dns_send_dns4_request (dns_main_t * dm,
172                             dns_cache_entry_t * ep, ip4_address_t * server);
173
174 void vnet_send_dns4_reply (dns_main_t * dm, dns_pending_request_t * t,
175                            dns_cache_entry_t * ep, vlib_buffer_t * b0);
176
177 void vnet_send_dns6_reply (dns_main_t * dm, dns_pending_request_t * t,
178                            dns_cache_entry_t * ep, vlib_buffer_t * b0);
179
180 u8 *vnet_dns_labels_to_name (u8 * label, u8 * full_text,
181                              u8 ** parse_from_here);
182
183 format_function_t format_dns_reply;
184
185 static inline void
186 dns_cache_lock (dns_main_t * dm)
187 {
188   if (dm->cache_lock)
189     {
190       while (clib_atomic_test_and_set (dm->cache_lock))
191         ;
192     }
193 }
194
195 static inline void
196 dns_cache_unlock (dns_main_t * dm)
197 {
198   if (dm->cache_lock)
199     {
200       CLIB_MEMORY_BARRIER ();
201       *dm->cache_lock = 0;
202     }
203 }
204
205 #endif /* included_dns_h */
206
207 /*
208  * fd.io coding-style-patch-verification: ON
209  *
210  * Local Variables:
211  * eval: (c-set-style "gnu")
212  * End:
213  */