2 Unix SMB/CIFS implementation.
4 manipulate nbt name structures
6 Copyright (C) Andrew Tridgell 2005
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 see rfc1002 for the detailed format of compressed names
27 #include "librpc/gen_ndr/ndr_nbt.h"
28 #include "librpc/gen_ndr/ndr_misc.h"
29 #include "system/locale.h"
30 #include "lib/util/util_net.h"
31 #include "libcli/nbt/libnbt.h"
34 decompress a 'compressed' name component
36 static bool decompress_name(char *name
, enum nbt_name_type
*type
)
39 for (i
=0;name
[2*i
];i
++) {
40 uint8_t c1
= name
[2*i
];
41 uint8_t c2
= name
[1+(2*i
)];
42 if (c1
< 'A' || c1
> 'P' ||
43 c2
< 'A' || c2
> 'P') {
46 name
[i
] = ((c1
-'A')<<4) | (c2
-'A');
50 *type
= (enum nbt_name_type
)(name
[15]);
54 *type
= NBT_NAME_CLIENT
;
57 /* trim trailing spaces */
58 for (;i
>0 && name
[i
-1]==' ';i
--) {
67 compress a name component
69 static uint8_t *compress_name(TALLOC_CTX
*mem_ctx
,
70 const uint8_t *name
, enum nbt_name_type type
)
76 if (strlen((const char *)name
) > 15) {
80 cname
= talloc_array(mem_ctx
, uint8_t, 33);
81 if (cname
== NULL
) return NULL
;
83 for (i
=0;name
[i
];i
++) {
84 cname
[2*i
] = 'A' + (name
[i
]>>4);
85 cname
[1+2*i
] = 'A' + (name
[i
]&0xF);
87 if (strcmp((const char *)name
, "*") == 0) {
93 cname
[2*i
] = 'A' + (pad_char
>>4);
94 cname
[1+2*i
] = 'A' + (pad_char
&0xF);
98 cname
[2*i
] = 'A' + (pad_char
>>4);
99 cname
[1+2*i
] = 'A' + (pad_char
&0xF);
107 pull a nbt name from the wire
109 _PUBLIC_
enum ndr_err_code
ndr_pull_nbt_name(struct ndr_pull
*ndr
, int ndr_flags
, struct nbt_name
*r
)
116 if (!(ndr_flags
& NDR_SCALARS
)) {
117 return NDR_ERR_SUCCESS
;
120 NDR_CHECK(ndr_pull_nbt_string(ndr
, ndr_flags
, &s
));
122 scope
= (uint8_t *)strchr(s
, '.');
125 r
->scope
= talloc_strdup(ndr
->current_mem_ctx
, (const char *)&scope
[1]);
126 NDR_ERR_HAVE_NO_MEMORY(r
->scope
);
131 cname
= discard_const_p(char, s
);
133 /* the first component is limited to 16 bytes in the DOS charset,
134 which is 32 in the 'compressed' form */
135 if (strlen(cname
) > 32) {
136 return ndr_pull_error(ndr
, NDR_ERR_STRING
,
137 "NBT NAME cname > 32");
140 /* decompress the first component */
141 ok
= decompress_name(cname
, &r
->type
);
143 return ndr_pull_error(ndr
, NDR_ERR_STRING
,
144 "NBT NAME failed to decompress");
147 r
->name
= talloc_strdup(ndr
->current_mem_ctx
, cname
);
148 NDR_ERR_HAVE_NO_MEMORY(r
->name
);
152 return NDR_ERR_SUCCESS
;
156 push a nbt name to the wire
158 _PUBLIC_
enum ndr_err_code
ndr_push_nbt_name(struct ndr_push
*ndr
, int ndr_flags
, const struct nbt_name
*r
)
160 uint8_t *cname
, *fullname
;
161 enum ndr_err_code ndr_err
;
163 if (!(ndr_flags
& NDR_SCALARS
)) {
164 return NDR_ERR_SUCCESS
;
167 if (strlen(r
->name
) > 15) {
168 return ndr_push_error(ndr
, NDR_ERR_STRING
,
169 "nbt_name longer as 15 chars: %s",
173 cname
= compress_name(ndr
, (const uint8_t *)r
->name
, r
->type
);
174 NDR_ERR_HAVE_NO_MEMORY(cname
);
177 fullname
= (uint8_t *)talloc_asprintf(ndr
, "%s.%s", cname
, r
->scope
);
178 NDR_ERR_HAVE_NO_MEMORY(fullname
);
184 ndr_err
= ndr_push_nbt_string(ndr
, ndr_flags
, (const char *)fullname
);
191 copy a nbt name structure
193 _PUBLIC_ NTSTATUS
nbt_name_dup(TALLOC_CTX
*mem_ctx
, struct nbt_name
*name
, struct nbt_name
*newname
)
196 newname
->name
= talloc_strdup(mem_ctx
, newname
->name
);
197 NT_STATUS_HAVE_NO_MEMORY(newname
->name
);
198 newname
->scope
= talloc_strdup(mem_ctx
, newname
->scope
);
200 NT_STATUS_HAVE_NO_MEMORY(newname
->scope
);
206 push a nbt name into a blob
208 _PUBLIC_ NTSTATUS
nbt_name_to_blob(TALLOC_CTX
*mem_ctx
, DATA_BLOB
*blob
, struct nbt_name
*name
)
210 enum ndr_err_code ndr_err
;
212 ndr_err
= ndr_push_struct_blob(blob
, mem_ctx
, name
, (ndr_push_flags_fn_t
)ndr_push_nbt_name
);
213 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
214 return ndr_map_error2ntstatus(ndr_err
);
221 pull a nbt name from a blob
223 _PUBLIC_ NTSTATUS
nbt_name_from_blob(TALLOC_CTX
*mem_ctx
, const DATA_BLOB
*blob
, struct nbt_name
*name
)
225 enum ndr_err_code ndr_err
;
227 ndr_err
= ndr_pull_struct_blob(blob
, mem_ctx
, name
,
228 (ndr_pull_flags_fn_t
)ndr_pull_nbt_name
);
229 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
230 return ndr_map_error2ntstatus(ndr_err
);
238 choose a name to use when calling a server in a NBT session request.
239 we use heuristics to see if the name we have been given is a IP
240 address, or a too-long name. If it is then use *SMBSERVER, or a
243 _PUBLIC_
void nbt_choose_called_name(TALLOC_CTX
*mem_ctx
,
244 struct nbt_name
*n
, const char *name
, int type
)
249 if ((name
== NULL
) || is_ipaddress(name
)) {
250 n
->name
= "*SMBSERVER";
253 if (strlen(name
) > 15) {
254 const char *p
= strchr(name
, '.');
257 n
->name
= "*SMBSERVER";
260 s
= talloc_strndup(mem_ctx
, name
, PTR_DIFF(p
, name
));
261 n
->name
= talloc_strdup_upper(mem_ctx
, s
);
265 n
->name
= talloc_strdup_upper(mem_ctx
, name
);
270 escape a string into a form containing only a small set of characters,
271 the rest is hex encoded. This is similar to URL encoding
273 static const char *nbt_hex_encode(TALLOC_CTX
*mem_ctx
, const char *s
)
277 const char *valid_chars
= "_-.$@ ";
278 #define NBT_CHAR_ALLOW(c) (isalnum((unsigned char)c) || strchr(valid_chars, c))
280 for (len
=i
=0;s
[i
];i
++,len
++) {
281 if (!NBT_CHAR_ALLOW(s
[i
])) {
286 ret
= talloc_array(mem_ctx
, char, len
+1);
287 if (ret
== NULL
) return NULL
;
289 for (len
=i
=0;s
[i
];i
++) {
290 if (NBT_CHAR_ALLOW(s
[i
])) {
293 snprintf(&ret
[len
], 4, "%%%02x", (unsigned char)s
[i
]);
304 form a string for a NBT name
306 _PUBLIC_
char *nbt_name_string(TALLOC_CTX
*mem_ctx
, const struct nbt_name
*name
)
308 TALLOC_CTX
*tmp_ctx
= talloc_new(mem_ctx
);
311 ret
= talloc_asprintf(mem_ctx
, "%s<%02x>-%s",
312 nbt_hex_encode(tmp_ctx
, name
->name
),
314 nbt_hex_encode(tmp_ctx
, name
->scope
));
316 ret
= talloc_asprintf(mem_ctx
, "%s<%02x>",
317 nbt_hex_encode(tmp_ctx
, name
->name
),
320 talloc_free(tmp_ctx
);
325 pull a nbt name, WINS Replication uses another on wire format for nbt name
327 _PUBLIC_
enum ndr_err_code
ndr_pull_wrepl_nbt_name(struct ndr_pull
*ndr
, int ndr_flags
, struct nbt_name
**_r
)
331 uint32_t namebuf_len
;
333 if (!(ndr_flags
& NDR_SCALARS
)) {
334 return NDR_ERR_SUCCESS
;
337 NDR_CHECK(ndr_pull_align(ndr
, 4));
338 NDR_CHECK(ndr_pull_uint32(ndr
, NDR_SCALARS
, &namebuf_len
));
339 if (namebuf_len
< 1 || namebuf_len
> 255) {
340 return ndr_pull_error(ndr
, NDR_ERR_ALLOC
, "value out of range");
342 NDR_PULL_ALLOC_N(ndr
, namebuf
, namebuf_len
);
343 NDR_CHECK(ndr_pull_array_uint8(ndr
, NDR_SCALARS
, namebuf
, namebuf_len
));
345 if ((namebuf_len
% 4) == 0) {
347 * [MS-WINSRA] — v20091104 was wrong
348 * regarding section "2.2.10.1 Name Record"
350 * If the name buffer is already 4 byte aligned
351 * Windows (at least 2003 SP1 and 2008) add 4 extra
352 * bytes. This can happen when the name has a scope.
355 NDR_CHECK(ndr_pull_uint32(ndr
, NDR_SCALARS
, &pad
));
358 NDR_PULL_ALLOC(ndr
, r
);
360 /* oh wow, what a nasty bug in windows ... */
361 if (namebuf
[0] == 0x1b && namebuf_len
>= 16) {
362 namebuf
[0] = namebuf
[15];
366 if (namebuf_len
< 17) {
369 r
->name
= talloc_strndup(r
, (char *)namebuf
, namebuf_len
);
370 if (!r
->name
) return ndr_pull_error(ndr
, NDR_ERR_ALLOC
, "out of memory");
374 talloc_free(namebuf
);
376 return NDR_ERR_SUCCESS
;
379 r
->type
= namebuf
[15];
382 trim_string((char *)namebuf
, NULL
, " ");
383 r
->name
= talloc_strdup(r
, (char *)namebuf
);
384 if (!r
->name
) return ndr_pull_error(ndr
, NDR_ERR_ALLOC
, "out of memory");
386 if (namebuf_len
> 17) {
387 r
->scope
= talloc_strndup(r
, (char *)(namebuf
+16), namebuf_len
-17);
388 if (!r
->scope
) return ndr_pull_error(ndr
, NDR_ERR_ALLOC
, "out of memory");
393 talloc_free(namebuf
);
395 return NDR_ERR_SUCCESS
;
399 push a nbt name, WINS Replication uses another on wire format for nbt name
401 _PUBLIC_
enum ndr_err_code
ndr_push_wrepl_nbt_name(struct ndr_push
*ndr
, int ndr_flags
, const struct nbt_name
*r
)
404 uint32_t namebuf_len
;
406 uint32_t scope_len
= 0;
409 return ndr_push_error(ndr
, NDR_ERR_INVALID_POINTER
,
410 "wrepl_nbt_name NULL pointer");
413 if (!(ndr_flags
& NDR_SCALARS
)) {
414 return NDR_ERR_SUCCESS
;
417 _name_len
= strlen(r
->name
);
418 if (_name_len
> 15) {
419 return ndr_push_error(ndr
, NDR_ERR_STRING
,
420 "wrepl_nbt_name longer as 15 chars: %s",
425 scope_len
= strlen(r
->scope
);
427 if (scope_len
> 238) {
428 return ndr_push_error(ndr
, NDR_ERR_STRING
,
429 "wrepl_nbt_name scope longer as 238 chars: %s",
433 namebuf
= (uint8_t *)talloc_asprintf(ndr
, "%-15s%c%s",
435 (r
->scope
?r
->scope
:""));
436 if (!namebuf
) return ndr_push_error(ndr
, NDR_ERR_ALLOC
, "out of memory");
438 namebuf_len
= strlen((char *)namebuf
) + 1;
441 * we need to set the type here, and use a place-holder in the talloc_asprintf()
442 * as the type can be 0x00, and then the namebuf_len = strlen(namebuf); would give wrong results
444 namebuf
[15] = r
->type
;
446 /* oh wow, what a nasty bug in windows ... */
447 if (r
->type
== 0x1b) {
448 namebuf
[15] = namebuf
[0];
452 NDR_CHECK(ndr_push_align(ndr
, 4));
453 NDR_CHECK(ndr_push_uint32(ndr
, NDR_SCALARS
, namebuf_len
));
454 NDR_CHECK(ndr_push_array_uint8(ndr
, NDR_SCALARS
, namebuf
, namebuf_len
));
456 if ((namebuf_len
% 4) == 0) {
458 * [MS-WINSRA] — v20091104 was wrong
459 * regarding section "2.2.10.1 Name Record"
461 * If the name buffer is already 4 byte aligned
462 * Windows (at least 2003 SP1 and 2008) add 4 extra
463 * bytes. This can happen when the name has a scope.
465 NDR_CHECK(ndr_push_zero(ndr
, 4));
468 talloc_free(namebuf
);
469 return NDR_ERR_SUCCESS
;
472 _PUBLIC_
void ndr_print_wrepl_nbt_name(struct ndr_print
*ndr
, const char *name
, const struct nbt_name
*r
)
474 char *s
= nbt_name_string(ndr
, r
);
475 ndr_print_string(ndr
, name
, s
);
479 _PUBLIC_
enum ndr_err_code
ndr_push_nbt_res_rec(struct ndr_push
*ndr
, int ndr_flags
, const struct nbt_res_rec
*r
)
482 uint32_t _flags_save_STRUCT
= ndr
->flags
;
483 ndr_set_flags(&ndr
->flags
, LIBNDR_PRINT_ARRAY_HEX
);
484 if (ndr_flags
& NDR_SCALARS
) {
485 NDR_CHECK(ndr_push_align(ndr
, 4));
486 NDR_CHECK(ndr_push_nbt_name(ndr
, NDR_SCALARS
, &r
->name
));
487 NDR_CHECK(ndr_push_nbt_qtype(ndr
, NDR_SCALARS
, r
->rr_type
));
488 NDR_CHECK(ndr_push_nbt_qclass(ndr
, NDR_SCALARS
, r
->rr_class
));
489 NDR_CHECK(ndr_push_uint32(ndr
, NDR_SCALARS
, r
->ttl
));
490 NDR_CHECK(ndr_push_set_switch_value(ndr
, &r
->rdata
, ((((r
->rr_type
) == NBT_QTYPE_NETBIOS
) && ((r
->rdata
).data
.length
== 2))?0:r
->rr_type
)));
491 NDR_CHECK(ndr_push_nbt_rdata(ndr
, NDR_SCALARS
, &r
->rdata
));
493 if (ndr_flags
& NDR_BUFFERS
) {
495 ndr
->flags
= _flags_save_STRUCT
;
497 return NDR_ERR_SUCCESS
;