1 /* $NetBSD: ns_samedomain.c,v 1.8 2012/11/22 20:22:31 christos Exp $ */
4 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (c) 1995,1999 by Internet Software Consortium.
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
17 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #include <sys/cdefs.h>
23 static const char rcsid
[] = "Id: ns_samedomain.c,v 1.6 2005/04/27 04:56:40 sra Exp";
25 //__RCSID("$NetBSD: ns_samedomain.c,v 1.8 2012/11/22 20:22:31 christos Exp $");
29 #include "port_before.h"
31 #include <sys/types.h>
32 #include <arpa/nameser.h>
36 #include "port_after.h"
40 * Check whether a name belongs to a domain.
43 *\li a - the domain whose ancestory is being verified
44 *\li b - the potential ancestor we're checking against
47 *\li boolean - is a at or below b?
50 *\li Trailing dots are first removed from name and domain.
51 * Always compare complete subdomains, not only whether the
52 * domain name is the trailing string of the given name.
54 *\li "host.foobar.top" lies in "foobar.top" and in "top" and in ""
55 * but NOT in "bar.top"
59 ns_samedomain(const char *a
, const char *b
) {
67 /* Ignore a trailing label separator (i.e. an unescaped dot) in 'a'. */
68 if (la
!= 0U && a
[la
- 1] == '.') {
70 /* Note this loop doesn't get executed if la==1. */
71 for (i
= la
- 1; i
> 0; i
--)
72 if (a
[i
- 1] == '\\') {
83 /* Ignore a trailing label separator (i.e. an unescaped dot) in 'b'. */
84 if (lb
!= 0U && b
[lb
- 1] == '.') {
86 /* note this loop doesn't get executed if lb==1 */
87 for (i
= lb
- 1; i
> 0; i
--)
88 if (b
[i
- 1] == '\\') {
99 /* lb == 0 means 'b' is the root domain, so 'a' must be in 'b'. */
103 /* 'b' longer than 'a' means 'a' can't be in 'b'. */
107 /* 'a' and 'b' being equal at this point indicates sameness. */
109 return (strncasecmp(a
, b
, lb
) == 0);
111 /* Ok, we know la > lb. */
113 diff
= (int)(la
- lb
);
116 * If 'a' is only 1 character longer than 'b', then it can't be
117 * a subdomain of 'b' (because of the need for the '.' label
124 * If the character before the last 'lb' characters of 'b'
125 * isn't '.', then it can't be a match (this lets us avoid
126 * having "foobar.com" match "bar.com").
128 if (a
[diff
- 1] != '.')
132 * We're not sure about that '.', however. It could be escaped
133 * and thus not a really a label separator.
136 for (i
= diff
- 1; i
> 0; i
--)
137 if (a
[i
- 1] == '\\') {
147 /* Now compare aligned trailing substring. */
149 return (strncasecmp(cp
, b
, lb
) == 0);
153 * is "a" a subdomain of "b"?
156 ns_subdomain(const char *a
, const char *b
) {
157 return (ns_samename(a
, b
) != 1 && ns_samedomain(a
, b
));
163 * make a canonical copy of domain name "src"
176 ns_makecanon(const char *src
, char *dst
, size_t dstsize
) {
177 size_t n
= strlen(src
);
179 if (n
+ sizeof "." > dstsize
) { /*%< Note: sizeof == 2 */
184 while (n
>= 1U && dst
[n
- 1] == '.') /*%< Ends in "." */
185 if (n
>= 2U && dst
[n
- 2] == '\\' && /*%< Ends in "\." */
186 (n
< 3U || dst
[n
- 3] != '\\')) /*%< But not "\\." */
196 * determine whether domain name "a" is the same as domain name "b"
200 *\li 0 if names differ
201 *\li 1 if names are the same
205 ns_samename(const char *a
, const char *b
) {
206 char ta
[NS_MAXDNAME
], tb
[NS_MAXDNAME
];
208 if (ns_makecanon(a
, ta
, sizeof ta
) < 0 ||
209 ns_makecanon(b
, tb
, sizeof tb
) < 0)
211 if (strcasecmp(ta
, tb
) == 0)