dnscrypto-proxy: Support files updated.
[tomato.git] / release / src / router / samba / source / nmbd / asyncdns.c
blob426578aba1b8f6fdd6094b4b82d65f9a81fe6185
1 /*
2 Unix SMB/Netbios implementation.
3 a async DNS handler
4 Copyright (C) Andrew Tridgell 1997-1998
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "includes.h"
23 extern int DEBUGLEVEL;
25 /***************************************************************************
26 Add a DNS result to the name cache.
27 ****************************************************************************/
29 static struct name_record *add_dns_result(struct nmb_name *question, struct in_addr addr)
31 int name_type = question->name_type;
32 char *qname = question->name;
35 if (!addr.s_addr) {
36 /* add the fail to WINS cache of names. give it 1 hour in the cache */
37 DEBUG(3,("add_dns_result: Negative DNS answer for %s\n", qname));
38 (void)add_name_to_subnet( wins_server_subnet, qname, name_type,
39 NB_ACTIVE, 60*60, DNSFAIL_NAME, 1, &addr );
40 return( NULL );
43 /* add it to our WINS cache of names. give it 2 hours in the cache */
44 DEBUG(3,("add_dns_result: DNS gave answer for %s of %s\n", qname, inet_ntoa(addr)));
46 return( add_name_to_subnet( wins_server_subnet, qname, name_type,
47 NB_ACTIVE, 2*60*60, DNS_NAME, 1, &addr ) );
52 #ifndef SYNC_DNS
54 static int fd_in = -1, fd_out = -1;
55 static pid_t child_pid = -1;
56 static int in_dns;
58 /* this is the structure that is passed between the parent and child */
59 struct query_record {
60 struct nmb_name name;
61 struct in_addr result;
64 /* a queue of pending requests waiting to be sent to the DNS child */
65 static struct packet_struct *dns_queue;
67 /* the packet currently being processed by the dns child */
68 static struct packet_struct *dns_current;
71 /***************************************************************************
72 return the fd used to gather async dns replies. This is added to the select
73 loop
74 ****************************************************************************/
75 int asyncdns_fd(void)
77 return fd_in;
80 /***************************************************************************
81 handle DNS queries arriving from the parent
82 ****************************************************************************/
83 static void asyncdns_process(void)
85 struct query_record r;
86 fstring qname;
88 DEBUGLEVEL = -1;
90 while (1) {
91 if (read_data(fd_in, (char *)&r, sizeof(r)) != sizeof(r))
92 break;
94 fstrcpy(qname, r.name.name);
96 r.result.s_addr = interpret_addr(qname);
98 if (write_data(fd_out, (char *)&r, sizeof(r)) != sizeof(r))
99 break;
102 _exit(0);
105 /**************************************************************************** **
106 catch a sigterm (in the child process - the parent has a different handler
107 see nmbd.c for details).
108 We need a separate term handler here so we don't release any
109 names that our parent is going to release, or overwrite a
110 WINS db that our parent is going to write.
111 **************************************************************************** */
113 static void sig_term(int sig)
115 _exit(0);
118 /***************************************************************************
119 Called by the parent process when it receives a SIGTERM - also kills the
120 child so we don't get child async dns processes lying around, causing trouble.
121 ****************************************************************************/
123 void kill_async_dns_child(void)
125 if(child_pid != 0 && child_pid != -1)
126 kill(child_pid, SIGTERM);
129 /***************************************************************************
130 create a child process to handle DNS lookups
131 ****************************************************************************/
132 void start_async_dns(void)
134 int fd1[2], fd2[2];
136 CatchChild();
138 if (pipe(fd1) || pipe(fd2)) {
139 DEBUG(0,("can't create asyncdns pipes\n"));
140 return;
143 child_pid = fork();
145 if (child_pid) {
146 fd_in = fd1[0];
147 fd_out = fd2[1];
148 close(fd1[1]);
149 close(fd2[0]);
150 DEBUG(1,("started asyncdns process %d\n", (int)child_pid));
151 return;
154 fd_in = fd2[0];
155 fd_out = fd1[1];
157 CatchSignal(SIGUSR2, SIG_IGN);
158 CatchSignal(SIGUSR1, SIG_IGN);
159 CatchSignal(SIGHUP, SIG_IGN);
160 CatchSignal(SIGTERM, SIGNAL_CAST sig_term );
162 asyncdns_process();
166 /***************************************************************************
167 check if a particular name is already being queried
168 ****************************************************************************/
169 static BOOL query_current(struct query_record *r)
171 return dns_current &&
172 nmb_name_equal(&r->name,
173 &dns_current->packet.nmb.question.question_name);
177 /***************************************************************************
178 write a query to the child process
179 ****************************************************************************/
180 static BOOL write_child(struct packet_struct *p)
182 struct query_record r;
184 r.name = p->packet.nmb.question.question_name;
186 return write_data(fd_out, (char *)&r, sizeof(r)) == sizeof(r);
189 /***************************************************************************
190 check the DNS queue
191 ****************************************************************************/
192 void run_dns_queue(void)
194 struct query_record r;
195 struct packet_struct *p, *p2;
196 struct name_record *namerec;
197 int size;
199 if (fd_in == -1)
200 return;
202 /* Allow SIGTERM to kill us. */
203 BlockSignals(False, SIGTERM);
205 if (!process_exists(child_pid)) {
206 close(fd_in);
207 start_async_dns();
210 if ((size=read_data(fd_in, (char *)&r, sizeof(r))) != sizeof(r)) {
211 if (size) {
212 DEBUG(0,("Incomplete DNS answer from child!\n"));
213 fd_in = -1;
215 BlockSignals(True, SIGTERM);
216 return;
219 BlockSignals(True, SIGTERM);
221 namerec = add_dns_result(&r.name, r.result);
223 if (dns_current) {
224 if (query_current(&r)) {
225 DEBUG(3,("DNS calling send_wins_name_query_response\n"));
226 in_dns = 1;
227 if(namerec == NULL)
228 send_wins_name_query_response(NAM_ERR, dns_current, NULL);
229 else
230 send_wins_name_query_response(0,dns_current,namerec);
231 in_dns = 0;
234 dns_current->locked = False;
235 free_packet(dns_current);
236 dns_current = NULL;
239 /* loop over the whole dns queue looking for entries that
240 match the result we just got */
241 for (p = dns_queue; p;) {
242 struct nmb_packet *nmb = &p->packet.nmb;
243 struct nmb_name *question = &nmb->question.question_name;
245 if (nmb_name_equal(question, &r.name)) {
246 DEBUG(3,("DNS calling send_wins_name_query_response\n"));
247 in_dns = 1;
248 if(namerec == NULL)
249 send_wins_name_query_response(NAM_ERR, p, NULL);
250 else
251 send_wins_name_query_response(0,p,namerec);
252 in_dns = 0;
253 p->locked = False;
255 if (p->prev)
256 p->prev->next = p->next;
257 else
258 dns_queue = p->next;
259 if (p->next)
260 p->next->prev = p->prev;
261 p2 = p->next;
262 free_packet(p);
263 p = p2;
264 } else {
265 p = p->next;
269 if (dns_queue) {
270 dns_current = dns_queue;
271 dns_queue = dns_queue->next;
272 if (dns_queue) dns_queue->prev = NULL;
273 dns_current->next = NULL;
275 if (!write_child(dns_current)) {
276 DEBUG(3,("failed to send DNS query to child!\n"));
277 return;
283 /***************************************************************************
284 queue a DNS query
285 ****************************************************************************/
286 BOOL queue_dns_query(struct packet_struct *p,struct nmb_name *question,
287 struct name_record **n)
289 if (in_dns || fd_in == -1)
290 return False;
292 if (!dns_current) {
293 if (!write_child(p)) {
294 DEBUG(3,("failed to send DNS query to child!\n"));
295 return False;
297 dns_current = p;
298 p->locked = True;
299 } else {
300 p->locked = True;
301 p->next = dns_queue;
302 p->prev = NULL;
303 if (p->next)
304 p->next->prev = p;
305 dns_queue = p;
308 DEBUG(3,("added DNS query for %s\n", nmb_namestr(question)));
309 return True;
312 #else
315 /***************************************************************************
316 we use this when we can't do async DNS lookups
317 ****************************************************************************/
318 BOOL queue_dns_query(struct packet_struct *p,struct nmb_name *question,
319 struct name_record **n)
321 char *qname = question->name;
322 struct in_addr dns_ip;
324 DEBUG(3,("DNS search for %s - ", nmb_namestr(question)));
326 /* Unblock TERM signal so we can be killed in DNS lookup. */
327 BlockSignals(False, SIGTERM);
329 dns_ip.s_addr = interpret_addr(qname);
331 /* Re-block TERM signal. */
332 BlockSignals(True, SIGTERM);
334 *n = add_dns_result(question, dns_ip);
335 if(*n == NULL)
336 send_wins_name_query_response(NAM_ERR, p, NULL);
337 else
338 send_wins_name_query_response(0, p, *n);
339 return False;
342 /***************************************************************************
343 With sync dns there is no child to kill on SIGTERM.
344 ****************************************************************************/
345 void kill_async_dns_child(void)
347 return;
349 #endif