s3-libgpo/gpo_filesync.c: return on read error
[Samba/gebeck_regimport.git] / lib / addns / dnsutils.c
blob43305a98730aa1451ba54ec5a754bd8b7ac39d94
1 /*
2 Linux DNS client library implementation
4 Copyright (C) 2006 Krishna Ganugapati <krishnag@centeris.com>
5 Copyright (C) 2006 Gerald Carter <jerry@samba.org>
7 ** NOTE! The following LGPL license applies to the libaddns
8 ** library. This does NOT imply that all of Samba is released
9 ** under the LGPL
11 This library is free software; you can redistribute it and/or
12 modify it under the terms of the GNU Lesser General Public
13 License as published by the Free Software Foundation; either
14 version 2.1 of the License, or (at your option) any later version.
16 This library is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 Lesser General Public License for more details.
21 You should have received a copy of the GNU Lesser General Public
22 License along with this library; if not, see <http://www.gnu.org/licenses/>.
25 #include "dns.h"
26 #include <ctype.h>
28 static DNS_ERROR LabelList( TALLOC_CTX *mem_ctx,
29 const char *name,
30 struct dns_domain_label **presult )
32 struct dns_domain_label *result;
33 const char *dot;
35 for (dot = name; *dot != '\0'; dot += 1) {
36 char c = *dot;
38 if (c == '.')
39 break;
41 if (c == '-') continue;
42 if ((c >= 'a') && (c <= 'z')) continue;
43 if ((c >= 'A') && (c <= 'Z')) continue;
44 if ((c >= '0') && (c <= '9')) continue;
46 return ERROR_DNS_INVALID_NAME;
49 if ((dot - name) > 63) {
51 * DNS labels can only be 63 chars long
53 return ERROR_DNS_INVALID_NAME;
56 if (!(result = talloc_zero(mem_ctx, struct dns_domain_label))) {
57 return ERROR_DNS_NO_MEMORY;
60 if (*dot == '\0') {
62 * No dot around, so this is the last component
65 if (!(result->label = talloc_strdup(result, name))) {
66 TALLOC_FREE(result);
67 return ERROR_DNS_NO_MEMORY;
69 result->len = strlen(result->label);
70 *presult = result;
71 return ERROR_DNS_SUCCESS;
74 if (dot[1] == '.') {
76 * Two dots in a row, reject
79 TALLOC_FREE(result);
80 return ERROR_DNS_INVALID_NAME;
83 if (dot[1] != '\0') {
85 * Something follows, get the rest
88 DNS_ERROR err = LabelList(result, dot+1, &result->next);
90 if (!ERR_DNS_IS_OK(err)) {
91 TALLOC_FREE(result);
92 return err;
96 result->len = (dot - name);
98 if (!(result->label = talloc_strndup(result, name, result->len))) {
99 TALLOC_FREE(result);
100 return ERROR_DNS_NO_MEMORY;
103 *presult = result;
104 return ERROR_DNS_SUCCESS;
107 DNS_ERROR dns_domain_name_from_string( TALLOC_CTX *mem_ctx,
108 const char *pszDomainName,
109 struct dns_domain_name **presult )
111 struct dns_domain_name *result;
112 DNS_ERROR err;
114 if (!(result = talloc(mem_ctx, struct dns_domain_name))) {
115 return ERROR_DNS_NO_MEMORY;
118 err = LabelList( result, pszDomainName, &result->pLabelList );
119 if (!ERR_DNS_IS_OK(err)) {
120 TALLOC_FREE(result);
121 return err;
124 *presult = result;
125 return ERROR_DNS_SUCCESS;
128 /*********************************************************************
129 *********************************************************************/
131 char *dns_generate_keyname( TALLOC_CTX *mem_ctx )
133 char *result = NULL;
134 #if defined(WITH_DNS_UPDATES)
136 uuid_t uuid;
139 * uuid_unparse gives 36 bytes plus '\0'
141 if (!(result = talloc_array(mem_ctx, char, 37))) {
142 return NULL;
145 uuid_generate( uuid );
146 uuid_unparse( uuid, result );
148 #endif
150 return result;