RIP BOOL. Convert BOOL -> bool. I found a few interesting
[tprouty/samba.git] / source3 / nmbd / asyncdns.c
1 /*
2    Unix SMB/CIFS implementation.
3    a async DNS handler
4    Copyright (C) Andrew Tridgell 1997-1998
5    
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 3 of the License, or
9    (at your option) any later version.
10    
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.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18    */
19
20 #include "includes.h"
21
22 /***************************************************************************
23   Add a DNS result to the name cache.
24 ****************************************************************************/
25
26 static struct name_record *add_dns_result(struct nmb_name *question, struct in_addr addr)
27 {
28         int name_type = question->name_type;
29         unstring qname;
30
31         pull_ascii_nstring(qname, sizeof(qname), question->name);
32   
33         if (!addr.s_addr) {
34                 /* add the fail to WINS cache of names. give it 1 hour in the cache */
35                 DEBUG(3,("add_dns_result: Negative DNS answer for %s\n", qname));
36                 add_name_to_subnet( wins_server_subnet, qname, name_type,
37                                 NB_ACTIVE, 60*60, DNSFAIL_NAME, 1, &addr );
38                 return NULL;
39         }
40
41         /* add it to our WINS cache of names. give it 2 hours in the cache */
42         DEBUG(3,("add_dns_result: DNS gave answer for %s of %s\n", qname, inet_ntoa(addr)));
43
44         add_name_to_subnet( wins_server_subnet, qname, name_type,
45                               NB_ACTIVE, 2*60*60, DNS_NAME, 1, &addr);
46
47         return find_name_on_subnet(wins_server_subnet, question, FIND_ANY_NAME);
48 }
49
50 #ifndef SYNC_DNS
51
52 static int fd_in = -1, fd_out = -1;
53 static pid_t child_pid = -1;
54 static int in_dns;
55
56 /* this is the structure that is passed between the parent and child */
57 struct query_record {
58         struct nmb_name name;
59         struct in_addr result;
60 };
61
62 /* a queue of pending requests waiting to be sent to the DNS child */
63 static struct packet_struct *dns_queue;
64
65 /* the packet currently being processed by the dns child */
66 static struct packet_struct *dns_current;
67
68
69 /***************************************************************************
70   return the fd used to gather async dns replies. This is added to the select
71   loop
72   ****************************************************************************/
73
74 int asyncdns_fd(void)
75 {
76         return fd_in;
77 }
78
79 /***************************************************************************
80   handle DNS queries arriving from the parent
81   ****************************************************************************/
82 static void asyncdns_process(void)
83 {
84         struct query_record r;
85         unstring qname;
86
87         DEBUGLEVEL = -1;
88
89         while (1) {
90                 if (read_data(fd_in, (char *)&r, sizeof(r)) != sizeof(r)) 
91                         break;
92
93                 pull_ascii_nstring( qname, sizeof(qname), r.name.name);
94                 r.result.s_addr = interpret_addr(qname);
95
96                 if (write_data(fd_out, (char *)&r, sizeof(r)) != sizeof(r))
97                         break;
98         }
99
100         _exit(0);
101 }
102
103 /**************************************************************************** **
104   catch a sigterm (in the child process - the parent has a different handler
105   see nmbd.c for details).
106   We need a separate term handler here so we don't release any 
107   names that our parent is going to release, or overwrite a 
108   WINS db that our parent is going to write.
109  **************************************************************************** */
110
111 static void sig_term(int sig)
112 {
113         _exit(0);
114 }
115
116 /***************************************************************************
117  Called by the parent process when it receives a SIGTERM - also kills the
118  child so we don't get child async dns processes lying around, causing trouble.
119   ****************************************************************************/
120
121 void kill_async_dns_child(void)
122 {
123         if (child_pid > 0) {
124                 kill(child_pid, SIGTERM);
125                 child_pid = -1;
126         }
127 }
128
129 /***************************************************************************
130   create a child process to handle DNS lookups
131   ****************************************************************************/
132 void start_async_dns(void)
133 {
134         int fd1[2], fd2[2];
135
136         CatchChild();
137
138         if (pipe(fd1) || pipe(fd2)) {
139                 DEBUG(0,("can't create asyncdns pipes\n"));
140                 return;
141         }
142
143         child_pid = sys_fork();
144
145         if (child_pid) {
146                 fd_in = fd1[0];
147                 fd_out = fd2[1];
148                 close(fd1[1]);
149                 close(fd2[0]);
150                 DEBUG(0,("started asyncdns process %d\n", (int)child_pid));
151                 return;
152         }
153
154         fd_in = fd2[0];
155         fd_out = fd1[1];
156
157         CatchSignal(SIGUSR2, SIG_IGN);
158         CatchSignal(SIGUSR1, SIG_IGN);
159         CatchSignal(SIGHUP, SIG_IGN);
160         CatchSignal(SIGTERM, SIGNAL_CAST sig_term );
161
162         asyncdns_process();
163 }
164
165
166 /***************************************************************************
167 check if a particular name is already being queried
168   ****************************************************************************/
169 static bool query_current(struct query_record *r)
170 {
171         return dns_current &&
172                 nmb_name_equal(&r->name, 
173                            &dns_current->packet.nmb.question.question_name);
174 }
175
176
177 /***************************************************************************
178   write a query to the child process
179   ****************************************************************************/
180 static bool write_child(struct packet_struct *p)
181 {
182         struct query_record r;
183
184         r.name = p->packet.nmb.question.question_name;
185
186         return write_data(fd_out, (char *)&r, sizeof(r)) == sizeof(r);
187 }
188
189 /***************************************************************************
190   check the DNS queue
191   ****************************************************************************/
192 void run_dns_queue(void)
193 {
194         struct query_record r;
195         struct packet_struct *p, *p2;
196         struct name_record *namerec;
197         int size;
198
199         if (fd_in == -1)
200                 return;
201
202         /* Allow SIGTERM to kill us. */
203         BlockSignals(False, SIGTERM);
204
205         if (!process_exists_by_pid(child_pid)) {
206                 close(fd_in);
207                 close(fd_out);
208                 start_async_dns();
209         }
210
211         if ((size=read_data(fd_in, (char *)&r, sizeof(r))) != sizeof(r)) {
212                 if (size) {
213                         DEBUG(0,("Incomplete DNS answer from child!\n"));
214                         fd_in = -1;
215                 }
216                 BlockSignals(True, SIGTERM);
217                 return;
218         }
219
220         BlockSignals(True, SIGTERM);
221
222         namerec = add_dns_result(&r.name, r.result);
223
224         if (dns_current) {
225                 if (query_current(&r)) {
226                         DEBUG(3,("DNS calling send_wins_name_query_response\n"));
227                         in_dns = 1;
228                         if(namerec == NULL)
229                                 send_wins_name_query_response(NAM_ERR, dns_current, NULL);
230                         else
231                                 send_wins_name_query_response(0,dns_current,namerec);
232                         in_dns = 0;
233                 }
234
235                 dns_current->locked = False;
236                 free_packet(dns_current);
237                 dns_current = NULL;
238         }
239
240         /* loop over the whole dns queue looking for entries that
241            match the result we just got */
242         for (p = dns_queue; p;) {
243                 struct nmb_packet *nmb = &p->packet.nmb;
244                 struct nmb_name *question = &nmb->question.question_name;
245
246                 if (nmb_name_equal(question, &r.name)) {
247                         DEBUG(3,("DNS calling send_wins_name_query_response\n"));
248                         in_dns = 1;
249                         if(namerec == NULL)
250                                 send_wins_name_query_response(NAM_ERR, p, NULL);
251                         else
252                                 send_wins_name_query_response(0,p,namerec);
253                         in_dns = 0;
254                         p->locked = False;
255
256                         if (p->prev)
257                                 p->prev->next = p->next;
258                         else
259                                 dns_queue = p->next;
260                         if (p->next)
261                                 p->next->prev = p->prev;
262                         p2 = p->next;
263                         free_packet(p);
264                         p = p2;
265                 } else {
266                         p = p->next;
267                 }
268         }
269
270         if (dns_queue) {
271                 dns_current = dns_queue;
272                 dns_queue = dns_queue->next;
273                 if (dns_queue)
274                         dns_queue->prev = NULL;
275                 dns_current->next = NULL;
276
277                 if (!write_child(dns_current)) {
278                         DEBUG(3,("failed to send DNS query to child!\n"));
279                         return;
280                 }
281         }
282 }
283
284 /***************************************************************************
285 queue a DNS query
286   ****************************************************************************/
287
288 bool queue_dns_query(struct packet_struct *p,struct nmb_name *question)
289 {
290         if (in_dns || fd_in == -1)
291                 return False;
292
293         if (!dns_current) {
294                 if (!write_child(p)) {
295                         DEBUG(3,("failed to send DNS query to child!\n"));
296                         return False;
297                 }
298                 dns_current = p;
299                 p->locked = True;
300         } else {
301                 p->locked = True;
302                 p->next = dns_queue;
303                 p->prev = NULL;
304                 if (p->next)
305                         p->next->prev = p;
306                 dns_queue = p;
307         }
308
309         DEBUG(3,("added DNS query for %s\n", nmb_namestr(question)));
310         return True;
311 }
312
313 #else
314
315
316 /***************************************************************************
317   we use this when we can't do async DNS lookups
318   ****************************************************************************/
319
320 bool queue_dns_query(struct packet_struct *p,struct nmb_name *question)
321 {
322         struct name_record *namerec = NULL;
323         struct in_addr dns_ip;
324         unstring qname;
325
326         pull_ascii_nstring(qname, sizeof(qname), question->name);
327
328         DEBUG(3,("DNS search for %s - ", nmb_namestr(question)));
329
330         /* Unblock TERM signal so we can be killed in DNS lookup. */
331         BlockSignals(False, SIGTERM);
332
333         dns_ip.s_addr = interpret_addr(qname);
334
335         /* Re-block TERM signal. */
336         BlockSignals(True, SIGTERM);
337
338         namerec = add_dns_result(question, dns_ip);
339         if(namerec == NULL) {
340                 send_wins_name_query_response(NAM_ERR, p, NULL);
341         } else {
342                 send_wins_name_query_response(0, p, namerec);
343         }
344         return False;
345 }
346
347 /***************************************************************************
348  With sync dns there is no child to kill on SIGTERM.
349   ****************************************************************************/
350
351 void kill_async_dns_child(void)
352 {
353         return;
354 }
355 #endif