]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/bind9/bin/named/include/named/client.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / bind9 / bin / named / include / named / client.h
1 /*
2  * Copyright (C) 2004-2009, 2012  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 1999-2003  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and/or distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15  * PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 /* $Id: client.h,v 1.91.278.2 2012/01/31 23:46:39 tbox Exp $ */
19
20 #ifndef NAMED_CLIENT_H
21 #define NAMED_CLIENT_H 1
22
23 /*****
24  ***** Module Info
25  *****/
26
27 /*! \file
28  * \brief
29  * This module defines two objects, ns_client_t and ns_clientmgr_t.
30  *
31  * An ns_client_t object handles incoming DNS requests from clients
32  * on a given network interface.
33  *
34  * Each ns_client_t object can handle only one TCP connection or UDP
35  * request at a time.  Therefore, several ns_client_t objects are
36  * typically created to serve each network interface, e.g., one
37  * for handling TCP requests and a few (one per CPU) for handling
38  * UDP requests.
39  *
40  * Incoming requests are classified as queries, zone transfer
41  * requests, update requests, notify requests, etc, and handed off
42  * to the appropriate request handler.  When the request has been
43  * fully handled (which can be much later), the ns_client_t must be
44  * notified of this by calling one of the following functions
45  * exactly once in the context of its task:
46  * \code
47  *   ns_client_send()   (sending a non-error response)
48  *   ns_client_sendraw() (sending a raw response)
49  *   ns_client_error()  (sending an error response)
50  *   ns_client_next()   (sending no response)
51  *\endcode
52  * This will release any resources used by the request and
53  * and allow the ns_client_t to listen for the next request.
54  *
55  * A ns_clientmgr_t manages a number of ns_client_t objects.
56  * New ns_client_t objects are created by calling
57  * ns_clientmgr_createclients(). They are destroyed by
58  * destroying their manager.
59  */
60
61 /***
62  *** Imports
63  ***/
64
65 #include <isc/buffer.h>
66 #include <isc/magic.h>
67 #include <isc/stdtime.h>
68 #include <isc/quota.h>
69
70 #include <dns/fixedname.h>
71 #include <dns/name.h>
72 #include <dns/rdataclass.h>
73 #include <dns/rdatatype.h>
74 #include <dns/tcpmsg.h>
75 #include <dns/types.h>
76
77 #include <named/types.h>
78 #include <named/query.h>
79
80 /***
81  *** Types
82  ***/
83
84 typedef ISC_LIST(ns_client_t) client_list_t;
85
86 /*% nameserver client structure */
87 struct ns_client {
88         unsigned int            magic;
89         isc_mem_t *             mctx;
90         ns_clientmgr_t *        manager;
91         int                     state;
92         int                     newstate;
93         int                     naccepts;
94         int                     nreads;
95         int                     nsends;
96         int                     nrecvs;
97         int                     nupdates;
98         int                     nctls;
99         int                     references;
100         isc_boolean_t           needshutdown;   /*
101                                                  * Used by clienttest to get
102                                                  * the client to go from
103                                                  * inactive to free state
104                                                  * by shutting down the
105                                                  * client's task.
106                                                  */
107         unsigned int            attributes;
108         isc_task_t *            task;
109         dns_view_t *            view;
110         dns_dispatch_t *        dispatch;
111         isc_socket_t *          udpsocket;
112         isc_socket_t *          tcplistener;
113         isc_socket_t *          tcpsocket;
114         unsigned char *         tcpbuf;
115         dns_tcpmsg_t            tcpmsg;
116         isc_boolean_t           tcpmsg_valid;
117         isc_timer_t *           timer;
118         isc_boolean_t           timerset;
119         dns_message_t *         message;
120         isc_socketevent_t *     sendevent;
121         isc_socketevent_t *     recvevent;
122         unsigned char *         recvbuf;
123         dns_rdataset_t *        opt;
124         isc_uint16_t            udpsize;
125         isc_uint16_t            extflags;
126         isc_int16_t             ednsversion;    /* -1 noedns */
127         void                    (*next)(ns_client_t *);
128         void                    (*shutdown)(void *arg, isc_result_t result);
129         void                    *shutdown_arg;
130         ns_query_t              query;
131         isc_stdtime_t           requesttime;
132         isc_stdtime_t           now;
133         dns_name_t              signername;   /*%< [T]SIG key name */
134         dns_name_t *            signer;       /*%< NULL if not valid sig */
135         isc_boolean_t           mortal;       /*%< Die after handling request */
136         isc_quota_t             *tcpquota;
137         isc_quota_t             *recursionquota;
138         ns_interface_t          *interface;
139         isc_sockaddr_t          peeraddr;
140         isc_boolean_t           peeraddr_valid;
141         isc_netaddr_t           destaddr;
142         struct in6_pktinfo      pktinfo;
143         isc_event_t             ctlevent;
144 #ifdef ALLOW_FILTER_AAAA_ON_V4
145         dns_v4_aaaa_t           filter_aaaa;
146 #endif
147         /*%
148          * Information about recent FORMERR response(s), for
149          * FORMERR loop avoidance.  This is separate for each
150          * client object rather than global only to avoid
151          * the need for locking.
152          */
153         struct {
154                 isc_sockaddr_t          addr;
155                 isc_stdtime_t           time;
156                 dns_messageid_t         id;
157         } formerrcache;
158         ISC_LINK(ns_client_t)   link;
159         /*%
160          * The list 'link' is part of, or NULL if not on any list.
161          */
162         client_list_t           *list;
163 };
164
165 #define NS_CLIENT_MAGIC                 ISC_MAGIC('N','S','C','c')
166 #define NS_CLIENT_VALID(c)              ISC_MAGIC_VALID(c, NS_CLIENT_MAGIC)
167
168 #define NS_CLIENTATTR_TCP               0x01
169 #define NS_CLIENTATTR_RA                0x02 /*%< Client gets recursive service */
170 #define NS_CLIENTATTR_PKTINFO           0x04 /*%< pktinfo is valid */
171 #define NS_CLIENTATTR_MULTICAST         0x08 /*%< recv'd from multicast */
172 #define NS_CLIENTATTR_WANTDNSSEC        0x10 /*%< include dnssec records */
173 #define NS_CLIENTATTR_WANTNSID          0x20 /*%< include nameserver ID */
174 #ifdef ALLOW_FILTER_AAAA_ON_V4
175 #define NS_CLIENTATTR_FILTER_AAAA       0x40 /*%< suppress AAAAs */
176 #define NS_CLIENTATTR_FILTER_AAAA_RC    0x80 /*%< recursing for A against AAAA */
177 #endif
178
179 extern unsigned int ns_client_requests;
180
181 /***
182  *** Functions
183  ***/
184
185 /*%
186  * Note!  These ns_client_ routines MUST be called ONLY from the client's
187  * task in order to ensure synchronization.
188  */
189
190 void
191 ns_client_send(ns_client_t *client);
192 /*%
193  * Finish processing the current client request and
194  * send client->message as a response.
195  * \brief
196  * Note!  These ns_client_ routines MUST be called ONLY from the client's
197  * task in order to ensure synchronization.
198  */
199
200 void
201 ns_client_sendraw(ns_client_t *client, dns_message_t *msg);
202 /*%
203  * Finish processing the current client request and
204  * send msg as a response using client->message->id for the id.
205  */
206
207 void
208 ns_client_error(ns_client_t *client, isc_result_t result);
209 /*%
210  * Finish processing the current client request and return
211  * an error response to the client.  The error response
212  * will have an RCODE determined by 'result'.
213  */
214
215 void
216 ns_client_next(ns_client_t *client, isc_result_t result);
217 /*%
218  * Finish processing the current client request,
219  * return no response to the client.
220  */
221
222 isc_boolean_t
223 ns_client_shuttingdown(ns_client_t *client);
224 /*%
225  * Return ISC_TRUE iff the client is currently shutting down.
226  */
227
228 void
229 ns_client_attach(ns_client_t *source, ns_client_t **target);
230 /*%
231  * Attach '*targetp' to 'source'.
232  */
233
234 void
235 ns_client_detach(ns_client_t **clientp);
236 /*%
237  * Detach '*clientp' from its client.
238  */
239
240 isc_result_t
241 ns_client_replace(ns_client_t *client);
242 /*%
243  * Try to replace the current client with a new one, so that the
244  * current one can go off and do some lengthy work without
245  * leaving the dispatch/socket without service.
246  */
247
248 void
249 ns_client_settimeout(ns_client_t *client, unsigned int seconds);
250 /*%
251  * Set a timer in the client to go off in the specified amount of time.
252  */
253
254 isc_result_t
255 ns_clientmgr_create(isc_mem_t *mctx, isc_taskmgr_t *taskmgr,
256                     isc_timermgr_t *timermgr, ns_clientmgr_t **managerp);
257 /*%
258  * Create a client manager.
259  */
260
261 void
262 ns_clientmgr_destroy(ns_clientmgr_t **managerp);
263 /*%
264  * Destroy a client manager and all ns_client_t objects
265  * managed by it.
266  */
267
268 isc_result_t
269 ns_clientmgr_createclients(ns_clientmgr_t *manager, unsigned int n,
270                            ns_interface_t *ifp, isc_boolean_t tcp);
271 /*%
272  * Create up to 'n' clients listening on interface 'ifp'.
273  * If 'tcp' is ISC_TRUE, the clients will listen for TCP connections,
274  * otherwise for UDP requests.
275  */
276
277 isc_sockaddr_t *
278 ns_client_getsockaddr(ns_client_t *client);
279 /*%
280  * Get the socket address of the client whose request is
281  * currently being processed.
282  */
283
284 isc_result_t
285 ns_client_checkaclsilent(ns_client_t *client, isc_netaddr_t *netaddr,
286                          dns_acl_t *acl, isc_boolean_t default_allow);
287
288 /*%
289  * Convenience function for client request ACL checking.
290  *
291  * Check the current client request against 'acl'.  If 'acl'
292  * is NULL, allow the request iff 'default_allow' is ISC_TRUE.
293  * If netaddr is NULL, check the ACL against client->peeraddr;
294  * otherwise check it against netaddr.
295  *
296  * Notes:
297  *\li   This is appropriate for checking allow-update,
298  *      allow-query, allow-transfer, etc.  It is not appropriate
299  *      for checking the blackhole list because we treat positive
300  *      matches as "allow" and negative matches as "deny"; in
301  *      the case of the blackhole list this would be backwards.
302  *
303  * Requires:
304  *\li   'client' points to a valid client.
305  *\li   'netaddr' points to a valid address, or is NULL.
306  *\li   'acl' points to a valid ACL, or is NULL.
307  *
308  * Returns:
309  *\li   ISC_R_SUCCESS   if the request should be allowed
310  * \li  DNS_R_REFUSED   if the request should be denied
311  *\li   No other return values are possible.
312  */
313
314 isc_result_t
315 ns_client_checkacl(ns_client_t  *client,
316                    isc_sockaddr_t *sockaddr,
317                    const char *opname, dns_acl_t *acl,
318                    isc_boolean_t default_allow,
319                    int log_level);
320 /*%
321  * Like ns_client_checkaclsilent, except the outcome of the check is
322  * logged at log level 'log_level' if denied, and at debug 3 if approved.
323  * Log messages will refer to the request as an 'opname' request.
324  *
325  * Requires:
326  *\li   'client' points to a valid client.
327  *\li   'sockaddr' points to a valid address, or is NULL.
328  *\li   'acl' points to a valid ACL, or is NULL.
329  *\li   'opname' points to a null-terminated string.
330  */
331
332 void
333 ns_client_log(ns_client_t *client, isc_logcategory_t *category,
334               isc_logmodule_t *module, int level,
335               const char *fmt, ...) ISC_FORMAT_PRINTF(5, 6);
336
337 void
338 ns_client_logv(ns_client_t *client, isc_logcategory_t *category,
339                isc_logmodule_t *module, int level, const char *fmt, va_list ap) ISC_FORMAT_PRINTF(5, 0);
340
341 void
342 ns_client_aclmsg(const char *msg, dns_name_t *name, dns_rdatatype_t type,
343                  dns_rdataclass_t rdclass, char *buf, size_t len);
344
345 #define NS_CLIENT_ACLMSGSIZE(x) \
346         (DNS_NAME_FORMATSIZE + DNS_RDATATYPE_FORMATSIZE + \
347          DNS_RDATACLASS_FORMATSIZE + sizeof(x) + sizeof("'/'"))
348
349 void
350 ns_client_recursing(ns_client_t *client);
351 /*%
352  * Add client to end of th recursing list.
353  */
354
355 void
356 ns_client_killoldestquery(ns_client_t *client);
357 /*%
358  * Kill the oldest recursive query (recursing list head).
359  */
360
361 void
362 ns_client_dumprecursing(FILE *f, ns_clientmgr_t *manager);
363 /*%
364  * Dump the outstanding recursive queries to 'f'.
365  */
366
367 void
368 ns_client_qnamereplace(ns_client_t *client, dns_name_t *name);
369 /*%
370  * Replace the qname.
371  */
372
373 isc_boolean_t
374 ns_client_isself(dns_view_t *myview, dns_tsigkey_t *mykey,
375                  isc_sockaddr_t *srcaddr, isc_sockaddr_t *destaddr,
376                  dns_rdataclass_t rdclass, void *arg);
377 /*%
378  * Isself callback.
379  */
380
381 #endif /* NAMED_CLIENT_H */