]> andersk Git - openssh.git/blob - openbsd-compat/getrrsetbyname.c
[configure.ac openbsd-compat/getrrsetbyname.c] wrap _getshort and
[openssh.git] / openbsd-compat / getrrsetbyname.c
1 /* $OpenBSD: getrrsetbyname.c,v 1.7 2003/03/07 07:34:14 itojun Exp $ */
2
3 /*
4  * Copyright (c) 2001 Jakob Schlyter. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 /*
30  * Portions Copyright (c) 1999-2001 Internet Software Consortium.
31  *
32  * Permission to use, copy, modify, and distribute this software for any
33  * purpose with or without fee is hereby granted, provided that the above
34  * copyright notice and this permission notice appear in all copies.
35  *
36  * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
37  * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
38  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
39  * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
40  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
41  * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
42  * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
43  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
44  */
45
46 #include "includes.h"
47
48 #if defined(DNS) && !defined(HAVE_GETRRSETBYNAME)
49
50 #include "getrrsetbyname.h"
51
52 /* #include "thread_private.h" */
53
54 #define ANSWER_BUFFER_SIZE 1024*64
55
56 struct dns_query {
57         char                    *name;
58         u_int16_t               type;
59         u_int16_t               class;
60         struct dns_query        *next;
61 };
62
63 struct dns_rr {
64         char                    *name;
65         u_int16_t               type;
66         u_int16_t               class;
67         u_int16_t               ttl;
68         u_int16_t               size;
69         void                    *rdata;
70         struct dns_rr           *next;
71 };
72
73 struct dns_response {
74         HEADER                  header;
75         struct dns_query        *query;
76         struct dns_rr           *answer;
77         struct dns_rr           *authority;
78         struct dns_rr           *additional;
79 };
80
81 static struct dns_response *parse_dns_response(const u_char *, int);
82 static struct dns_query *parse_dns_qsection(const u_char *, int,
83     const u_char **, int);
84 static struct dns_rr *parse_dns_rrsection(const u_char *, int, const u_char **,
85     int);
86
87 static void free_dns_query(struct dns_query *);
88 static void free_dns_rr(struct dns_rr *);
89 static void free_dns_response(struct dns_response *);
90
91 static int count_dns_rr(struct dns_rr *, u_int16_t, u_int16_t);
92
93 /*
94  * Inline versions of get/put short/long.  Pointer is advanced.
95  *
96  * These macros demonstrate the property of C whereby it can be
97  * portable or it can be elegant but rarely both.
98  */
99
100 #ifndef INT32SZ
101 # define INT32SZ        4
102 #endif
103 #ifndef INT16SZ
104 # define INT16SZ        2
105 #endif
106
107 #ifndef GETSHORT
108 #define GETSHORT(s, cp) { \
109         register u_char *t_cp = (u_char *)(cp); \
110         (s) = ((u_int16_t)t_cp[0] << 8) \
111             | ((u_int16_t)t_cp[1]) \
112             ; \
113         (cp) += INT16SZ; \
114 }
115 #endif
116
117 #ifndef GETLONG
118 #define GETLONG(l, cp) { \
119         register u_char *t_cp = (u_char *)(cp); \
120         (l) = ((u_int32_t)t_cp[0] << 24) \
121             | ((u_int32_t)t_cp[1] << 16) \
122             | ((u_int32_t)t_cp[2] << 8) \
123             | ((u_int32_t)t_cp[3]) \
124             ; \
125         (cp) += INT32SZ; \
126 }
127 #endif
128
129 /*
130  * Routines to insert/extract short/long's.
131  */
132
133 #ifndef HAVE__GETSHORT
134 static u_int16_t
135 _getshort(msgp)
136         register const u_char *msgp;
137 {
138         register u_int16_t u;
139
140         GETSHORT(u, msgp);
141         return (u);
142 }
143 #endif
144
145 #ifndef HAVE__GETLONG
146 static u_int32_t
147 _getlong(msgp)
148         register const u_char *msgp;
149 {
150         register u_int32_t u;
151
152         GETLONG(u, msgp);
153         return (u);
154 }
155 #endif
156
157 int
158 getrrsetbyname(const char *hostname, unsigned int rdclass,
159     unsigned int rdtype, unsigned int flags,
160     struct rrsetinfo **res)
161 {
162         struct __res_state *_resp = &_res;
163         int result;
164         struct rrsetinfo *rrset = NULL;
165         struct dns_response *response;
166         struct dns_rr *rr;
167         struct rdatainfo *rdata;
168         int length;
169         unsigned int index_ans, index_sig;
170         u_char answer[ANSWER_BUFFER_SIZE];
171
172         /* check for invalid class and type */
173         if (rdclass > 0xffff || rdtype > 0xffff) {
174                 result = ERRSET_INVAL;
175                 goto fail;
176         }
177
178         /* don't allow queries of class or type ANY */
179         if (rdclass == 0xff || rdtype == 0xff) {
180                 result = ERRSET_INVAL;
181                 goto fail;
182         }
183
184         /* don't allow flags yet, unimplemented */
185         if (flags) {
186                 result = ERRSET_INVAL;
187                 goto fail;
188         }
189
190         /* initialize resolver */
191         if ((_resp->options & RES_INIT) == 0 && res_init() == -1) {
192                 result = ERRSET_FAIL;
193                 goto fail;
194         }
195
196 #ifdef DEBUG
197         _resp->options |= RES_DEBUG;
198 #endif /* DEBUG */
199
200 #ifdef RES_USE_DNSSEC
201         /* turn on DNSSEC if EDNS0 is configured */
202         if (_resp->options & RES_USE_EDNS0)
203                 _resp->options |= RES_USE_DNSSEC;
204 #endif /* RES_USE_DNSEC */
205
206         /* make query */
207         length = res_query(hostname, (signed int) rdclass, (signed int) rdtype,
208             answer, sizeof(answer));
209         if (length < 0) {
210                 switch(h_errno) {
211                 case HOST_NOT_FOUND:
212                         result = ERRSET_NONAME;
213                         goto fail;
214                 case NO_DATA:
215                         result = ERRSET_NODATA;
216                         goto fail;
217                 default:
218                         result = ERRSET_FAIL;
219                         goto fail;
220                 }
221         }
222
223         /* parse result */
224         response = parse_dns_response(answer, length);
225         if (response == NULL) {
226                 result = ERRSET_FAIL;
227                 goto fail;
228         }
229
230         if (response->header.qdcount != 1) {
231                 result = ERRSET_FAIL;
232                 goto fail;
233         }
234
235         /* initialize rrset */
236         rrset = calloc(1, sizeof(struct rrsetinfo));
237         if (rrset == NULL) {
238                 result = ERRSET_NOMEMORY;
239                 goto fail;
240         }
241         rrset->rri_rdclass = response->query->class;
242         rrset->rri_rdtype = response->query->type;
243         rrset->rri_ttl = response->answer->ttl;
244         rrset->rri_nrdatas = response->header.ancount;
245
246         /* check for authenticated data */
247         if (response->header.ad == 1)
248                 rrset->rri_flags |= RRSET_VALIDATED;
249
250         /* copy name from answer section */
251         length = strlen(response->answer->name);
252         rrset->rri_name = malloc(length + 1);
253         if (rrset->rri_name == NULL) {
254                 result = ERRSET_NOMEMORY;
255                 goto fail;
256         }
257         strlcpy(rrset->rri_name, response->answer->name, length + 1);
258
259         /* count answers */
260         rrset->rri_nrdatas = count_dns_rr(response->answer, rrset->rri_rdclass,
261             rrset->rri_rdtype);
262         rrset->rri_nsigs = count_dns_rr(response->answer, rrset->rri_rdclass,
263             T_SIG);
264
265         /* allocate memory for answers */
266         rrset->rri_rdatas = calloc(rrset->rri_nrdatas,
267             sizeof(struct rdatainfo));
268         if (rrset->rri_rdatas == NULL) {
269                 result = ERRSET_NOMEMORY;
270                 goto fail;
271         }
272
273         /* allocate memory for signatures */
274         rrset->rri_sigs = calloc(rrset->rri_nsigs, sizeof(struct rdatainfo));
275         if (rrset->rri_sigs == NULL) {
276                 result = ERRSET_NOMEMORY;
277                 goto fail;
278         }
279
280         /* copy answers & signatures */
281         for (rr = response->answer, index_ans = 0, index_sig = 0;
282             rr; rr = rr->next) {
283
284                 rdata = NULL;
285
286                 if (rr->class == rrset->rri_rdclass &&
287                     rr->type  == rrset->rri_rdtype)
288                         rdata = &rrset->rri_rdatas[index_ans++];
289
290                 if (rr->class == rrset->rri_rdclass &&
291                     rr->type  == T_SIG)
292                         rdata = &rrset->rri_sigs[index_sig++];
293
294                 if (rdata) {
295                         rdata->rdi_length = rr->size;
296                         rdata->rdi_data   = malloc(rr->size);
297
298                         if (rdata->rdi_data == NULL) {
299                                 result = ERRSET_NOMEMORY;
300                                 goto fail;
301                         }
302                         memcpy(rdata->rdi_data, rr->rdata, rr->size);
303                 }
304         }
305
306         *res = rrset;
307         return (ERRSET_SUCCESS);
308
309 fail:
310         if (rrset != NULL)
311                 freerrset(rrset);
312         return (result);
313 }
314
315 void
316 freerrset(struct rrsetinfo *rrset)
317 {
318         u_int16_t i;
319
320         if (rrset == NULL)
321                 return;
322
323         if (rrset->rri_rdatas) {
324                 for (i = 0; i < rrset->rri_nrdatas; i++) {
325                         if (rrset->rri_rdatas[i].rdi_data == NULL)
326                                 break;
327                         free(rrset->rri_rdatas[i].rdi_data);
328                 }
329                 free(rrset->rri_rdatas);
330         }
331
332         if (rrset->rri_sigs) {
333                 for (i = 0; i < rrset->rri_nsigs; i++) {
334                         if (rrset->rri_sigs[i].rdi_data == NULL)
335                                 break;
336                         free(rrset->rri_sigs[i].rdi_data);
337                 }
338                 free(rrset->rri_sigs);
339         }
340
341         if (rrset->rri_name)
342                 free(rrset->rri_name);
343         free(rrset);
344 }
345
346 /*
347  * DNS response parsing routines
348  */
349 static struct dns_response *
350 parse_dns_response(const u_char *answer, int size)
351 {
352         struct dns_response *resp;
353         const u_char *cp;
354
355         /* allocate memory for the response */
356         resp = calloc(1, sizeof(*resp));
357         if (resp == NULL)
358                 return (NULL);
359
360         /* initialize current pointer */
361         cp = answer;
362
363         /* copy header */
364         memcpy(&resp->header, cp, HFIXEDSZ);
365         cp += HFIXEDSZ;
366
367         /* fix header byte order */
368         resp->header.qdcount = ntohs(resp->header.qdcount);
369         resp->header.ancount = ntohs(resp->header.ancount);
370         resp->header.nscount = ntohs(resp->header.nscount);
371         resp->header.arcount = ntohs(resp->header.arcount);
372
373         /* there must be at least one query */
374         if (resp->header.qdcount < 1) {
375                 free_dns_response(resp);
376                 return (NULL);
377         }
378
379         /* parse query section */
380         resp->query = parse_dns_qsection(answer, size, &cp,
381             resp->header.qdcount);
382         if (resp->header.qdcount && resp->query == NULL) {
383                 free_dns_response(resp);
384                 return (NULL);
385         }
386
387         /* parse answer section */
388         resp->answer = parse_dns_rrsection(answer, size, &cp,
389             resp->header.ancount);
390         if (resp->header.ancount && resp->answer == NULL) {
391                 free_dns_response(resp);
392                 return (NULL);
393         }
394
395         /* parse authority section */
396         resp->authority = parse_dns_rrsection(answer, size, &cp,
397             resp->header.nscount);
398         if (resp->header.nscount && resp->authority == NULL) {
399                 free_dns_response(resp);
400                 return (NULL);
401         }
402
403         /* parse additional section */
404         resp->additional = parse_dns_rrsection(answer, size, &cp,
405             resp->header.arcount);
406         if (resp->header.arcount && resp->additional == NULL) {
407                 free_dns_response(resp);
408                 return (NULL);
409         }
410
411         return (resp);
412 }
413
414 static struct dns_query *
415 parse_dns_qsection(const u_char *answer, int size, const u_char **cp, int count)
416 {
417         struct dns_query *head, *curr, *prev;
418         int i, length;
419         char name[MAXDNAME];
420
421         for (i = 1, head = NULL, prev = NULL; i <= count; i++, prev = curr) {
422
423                 /* allocate and initialize struct */
424                 curr = calloc(1, sizeof(struct dns_query));
425                 if (curr == NULL) {
426                         free_dns_query(head);
427                         return (NULL);
428                 }
429                 if (head == NULL)
430                         head = curr;
431                 if (prev != NULL)
432                         prev->next = curr;
433
434                 /* name */
435                 length = dn_expand(answer, answer + size, *cp, name,
436                     sizeof(name));
437                 if (length < 0) {
438                         free_dns_query(head);
439                         return (NULL);
440                 }
441                 curr->name = strdup(name);
442                 if (curr->name == NULL) {
443                         free_dns_query(head);
444                         return (NULL);
445                 }
446                 *cp += length;
447
448                 /* type */
449                 curr->type = _getshort(*cp);
450                 *cp += INT16SZ;
451
452                 /* class */
453                 curr->class = _getshort(*cp);
454                 *cp += INT16SZ;
455         }
456
457         return (head);
458 }
459
460 static struct dns_rr *
461 parse_dns_rrsection(const u_char *answer, int size, const u_char **cp, int count)
462 {
463         struct dns_rr *head, *curr, *prev;
464         int i, length;
465         char name[MAXDNAME];
466
467         for (i = 1, head = NULL, prev = NULL; i <= count; i++, prev = curr) {
468
469                 /* allocate and initialize struct */
470                 curr = calloc(1, sizeof(struct dns_rr));
471                 if (curr == NULL) {
472                         free_dns_rr(head);
473                         return (NULL);
474                 }
475                 if (head == NULL)
476                         head = curr;
477                 if (prev != NULL)
478                         prev->next = curr;
479
480                 /* name */
481                 length = dn_expand(answer, answer + size, *cp, name,
482                     sizeof(name));
483                 if (length < 0) {
484                         free_dns_rr(head);
485                         return (NULL);
486                 }
487                 curr->name = strdup(name);
488                 if (curr->name == NULL) {
489                         free_dns_rr(head);
490                         return (NULL);
491                 }
492                 *cp += length;
493
494                 /* type */
495                 curr->type = _getshort(*cp);
496                 *cp += INT16SZ;
497
498                 /* class */
499                 curr->class = _getshort(*cp);
500                 *cp += INT16SZ;
501
502                 /* ttl */
503                 curr->ttl = _getlong(*cp);
504                 *cp += INT32SZ;
505
506                 /* rdata size */
507                 curr->size = _getshort(*cp);
508                 *cp += INT16SZ;
509
510                 /* rdata itself */
511                 curr->rdata = malloc(curr->size);
512                 if (curr->rdata == NULL) {
513                         free_dns_rr(head);
514                         return (NULL);
515                 }
516                 memcpy(curr->rdata, *cp, curr->size);
517                 *cp += curr->size;
518         }
519
520         return (head);
521 }
522
523 static void
524 free_dns_query(struct dns_query *p)
525 {
526         if (p == NULL)
527                 return;
528
529         if (p->name)
530                 free(p->name);
531         free_dns_query(p->next);
532         free(p);
533 }
534
535 static void
536 free_dns_rr(struct dns_rr *p)
537 {
538         if (p == NULL)
539                 return;
540
541         if (p->name)
542                 free(p->name);
543         if (p->rdata)
544                 free(p->rdata);
545         free_dns_rr(p->next);
546         free(p);
547 }
548
549 static void
550 free_dns_response(struct dns_response *p)
551 {
552         if (p == NULL)
553                 return;
554
555         free_dns_query(p->query);
556         free_dns_rr(p->answer);
557         free_dns_rr(p->authority);
558         free_dns_rr(p->additional);
559         free(p);
560 }
561
562 static int
563 count_dns_rr(struct dns_rr *p, u_int16_t class, u_int16_t type)
564 {
565         int n = 0;
566
567         while(p) {
568                 if (p->class == class && p->type == type)
569                         n++;
570                 p = p->next;
571         }
572
573         return (n);
574 }
575
576 #endif /* defined(DNS) && !defined(HAVE_GETRRSETBYNAME) */
This page took 0.094657 seconds and 5 git commands to generate.