1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 | Character set conversion Extensions
|
---|
4 | Copyright (C) Igor Vergeichik <iverg@mail.ru> 2001
|
---|
5 | Copyright (C) Andrew Tridgell 2001
|
---|
6 | Copyright (C) Simo Sorce 2001
|
---|
7 | Copyright (C) Martin Pool 2003
|
---|
8 |
|
---|
9 | This program is free software; you can redistribute it and/or modify
|
---|
10 | it under the terms of the GNU General Public License as published by
|
---|
11 | the Free Software Foundation; either version 3 of the License, or
|
---|
12 | (at your option) any later version.
|
---|
13 |
|
---|
14 | This program is distributed in the hope that it will be useful,
|
---|
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
17 | GNU General Public License for more details.
|
---|
18 |
|
---|
19 | You should have received a copy of the GNU General Public License
|
---|
20 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
21 |
|
---|
22 | */
|
---|
23 | #include "includes.h"
|
---|
24 |
|
---|
25 | /* We can parameterize this if someone complains.... JRA. */
|
---|
26 |
|
---|
27 | char lp_failed_convert_char(void)
|
---|
28 | {
|
---|
29 | return '_';
|
---|
30 | }
|
---|
31 |
|
---|
32 | /**
|
---|
33 | * @file
|
---|
34 | *
|
---|
35 | * @brief Character-set conversion routines built on our iconv.
|
---|
36 | *
|
---|
37 | * @note Samba's internal character set (at least in the 3.0 series)
|
---|
38 | * is always the same as the one for the Unix filesystem. It is
|
---|
39 | * <b>not</b> necessarily UTF-8 and may be different on machines that
|
---|
40 | * need i18n filenames to be compatible with Unix software. It does
|
---|
41 | * have to be a superset of ASCII. All multibyte sequences must start
|
---|
42 | * with a byte with the high bit set.
|
---|
43 | *
|
---|
44 | * @sa lib/iconv.c
|
---|
45 | */
|
---|
46 |
|
---|
47 |
|
---|
48 | static bool conv_silent; /* Should we do a debug if the conversion fails ? */
|
---|
49 | static bool initialized;
|
---|
50 |
|
---|
51 | void lazy_initialize_conv(void)
|
---|
52 | {
|
---|
53 | if (!initialized) {
|
---|
54 | load_case_tables_library();
|
---|
55 | init_iconv();
|
---|
56 | initialized = true;
|
---|
57 | }
|
---|
58 | }
|
---|
59 |
|
---|
60 | /**
|
---|
61 | * Destroy global objects allocated by init_iconv()
|
---|
62 | **/
|
---|
63 | void gfree_charcnv(void)
|
---|
64 | {
|
---|
65 | TALLOC_FREE(global_iconv_convenience);
|
---|
66 | initialized = false;
|
---|
67 | }
|
---|
68 |
|
---|
69 | /**
|
---|
70 | * Initialize iconv conversion descriptors.
|
---|
71 | *
|
---|
72 | * This is called the first time it is needed, and also called again
|
---|
73 | * every time the configuration is reloaded, because the charset or
|
---|
74 | * codepage might have changed.
|
---|
75 | **/
|
---|
76 | void init_iconv(void)
|
---|
77 | {
|
---|
78 | global_iconv_convenience = smb_iconv_convenience_reinit(NULL, lp_dos_charset(),
|
---|
79 | lp_unix_charset(), lp_display_charset(),
|
---|
80 | true, global_iconv_convenience);
|
---|
81 | }
|
---|
82 |
|
---|
83 | /**
|
---|
84 | * Convert string from one encoding to another, making error checking etc
|
---|
85 | * Slow path version - uses (slow) iconv.
|
---|
86 | *
|
---|
87 | * @param src pointer to source string (multibyte or singlebyte)
|
---|
88 | * @param srclen length of the source string in bytes
|
---|
89 | * @param dest pointer to destination string (multibyte or singlebyte)
|
---|
90 | * @param destlen maximal length allowed for string
|
---|
91 | * @param allow_bad_conv determines if a "best effort" conversion is acceptable (never returns errors)
|
---|
92 | * @returns the number of bytes occupied in the destination
|
---|
93 | *
|
---|
94 | * Ensure the srclen contains the terminating zero.
|
---|
95 | *
|
---|
96 | **/
|
---|
97 |
|
---|
98 | static size_t convert_string_internal(charset_t from, charset_t to,
|
---|
99 | void const *src, size_t srclen,
|
---|
100 | void *dest, size_t destlen, bool allow_bad_conv)
|
---|
101 | {
|
---|
102 | size_t i_len, o_len;
|
---|
103 | size_t retval;
|
---|
104 | const char* inbuf = (const char*)src;
|
---|
105 | char* outbuf = (char*)dest;
|
---|
106 | smb_iconv_t descriptor;
|
---|
107 | struct smb_iconv_convenience *ic;
|
---|
108 |
|
---|
109 | lazy_initialize_conv();
|
---|
110 | ic = get_iconv_convenience();
|
---|
111 | descriptor = get_conv_handle(ic, from, to);
|
---|
112 |
|
---|
113 | if (srclen == (size_t)-1) {
|
---|
114 | if (from == CH_UTF16LE || from == CH_UTF16BE) {
|
---|
115 | srclen = (strlen_w((const smb_ucs2_t *)src)+1) * 2;
|
---|
116 | } else {
|
---|
117 | srclen = strlen((const char *)src)+1;
|
---|
118 | }
|
---|
119 | }
|
---|
120 |
|
---|
121 |
|
---|
122 | if (descriptor == (smb_iconv_t)-1 || descriptor == (smb_iconv_t)0) {
|
---|
123 | if (!conv_silent)
|
---|
124 | DEBUG(0,("convert_string_internal: Conversion not supported.\n"));
|
---|
125 | return (size_t)-1;
|
---|
126 | }
|
---|
127 |
|
---|
128 | i_len=srclen;
|
---|
129 | o_len=destlen;
|
---|
130 |
|
---|
131 | again:
|
---|
132 |
|
---|
133 | retval = smb_iconv(descriptor, &inbuf, &i_len, &outbuf, &o_len);
|
---|
134 | if(retval==(size_t)-1) {
|
---|
135 | const char *reason="unknown error";
|
---|
136 | switch(errno) {
|
---|
137 | case EINVAL:
|
---|
138 | reason="Incomplete multibyte sequence";
|
---|
139 | if (!conv_silent)
|
---|
140 | DEBUG(3,("convert_string_internal: Conversion error: %s(%s)\n",reason,inbuf));
|
---|
141 | if (allow_bad_conv)
|
---|
142 | goto use_as_is;
|
---|
143 | return (size_t)-1;
|
---|
144 | case E2BIG:
|
---|
145 | reason="No more room";
|
---|
146 | if (!conv_silent) {
|
---|
147 | if (from == CH_UNIX) {
|
---|
148 | DEBUG(3,("E2BIG: convert_string(%s,%s): srclen=%u destlen=%u - '%s'\n",
|
---|
149 | charset_name(ic, from), charset_name(ic, to),
|
---|
150 | (unsigned int)srclen, (unsigned int)destlen, (const char *)src));
|
---|
151 | } else {
|
---|
152 | DEBUG(3,("E2BIG: convert_string(%s,%s): srclen=%u destlen=%u\n",
|
---|
153 | charset_name(ic, from), charset_name(ic, to),
|
---|
154 | (unsigned int)srclen, (unsigned int)destlen));
|
---|
155 | }
|
---|
156 | }
|
---|
157 | break;
|
---|
158 | case EILSEQ:
|
---|
159 | reason="Illegal multibyte sequence";
|
---|
160 | if (!conv_silent)
|
---|
161 | DEBUG(3,("convert_string_internal: Conversion error: %s(%s)\n",reason,inbuf));
|
---|
162 | if (allow_bad_conv)
|
---|
163 | goto use_as_is;
|
---|
164 |
|
---|
165 | return (size_t)-1;
|
---|
166 | default:
|
---|
167 | if (!conv_silent)
|
---|
168 | DEBUG(0,("convert_string_internal: Conversion error: %s(%s)\n",reason,inbuf));
|
---|
169 | return (size_t)-1;
|
---|
170 | }
|
---|
171 | /* smb_panic(reason); */
|
---|
172 | }
|
---|
173 | return destlen-o_len;
|
---|
174 |
|
---|
175 | use_as_is:
|
---|
176 |
|
---|
177 | /*
|
---|
178 | * Conversion not supported. This is actually an error, but there are so
|
---|
179 | * many misconfigured iconv systems and smb.conf's out there we can't just
|
---|
180 | * fail. Do a very bad conversion instead.... JRA.
|
---|
181 | */
|
---|
182 |
|
---|
183 | {
|
---|
184 | if (o_len == 0 || i_len == 0)
|
---|
185 | return destlen - o_len;
|
---|
186 |
|
---|
187 | if (((from == CH_UTF16LE)||(from == CH_UTF16BE)) &&
|
---|
188 | ((to != CH_UTF16LE)||(to != CH_UTF16BE))) {
|
---|
189 | /* Can't convert from utf16 any endian to multibyte.
|
---|
190 | Replace with the default fail char.
|
---|
191 | */
|
---|
192 | if (i_len < 2)
|
---|
193 | return destlen - o_len;
|
---|
194 | if (i_len >= 2) {
|
---|
195 | *outbuf = lp_failed_convert_char();
|
---|
196 |
|
---|
197 | outbuf++;
|
---|
198 | o_len--;
|
---|
199 |
|
---|
200 | inbuf += 2;
|
---|
201 | i_len -= 2;
|
---|
202 | }
|
---|
203 |
|
---|
204 | if (o_len == 0 || i_len == 0)
|
---|
205 | return destlen - o_len;
|
---|
206 |
|
---|
207 | /* Keep trying with the next char... */
|
---|
208 | goto again;
|
---|
209 |
|
---|
210 | } else if (from != CH_UTF16LE && from != CH_UTF16BE && to == CH_UTF16LE) {
|
---|
211 | /* Can't convert to UTF16LE - just widen by adding the
|
---|
212 | default fail char then zero.
|
---|
213 | */
|
---|
214 | if (o_len < 2)
|
---|
215 | return destlen - o_len;
|
---|
216 |
|
---|
217 | outbuf[0] = lp_failed_convert_char();
|
---|
218 | outbuf[1] = '\0';
|
---|
219 |
|
---|
220 | inbuf++;
|
---|
221 | i_len--;
|
---|
222 |
|
---|
223 | outbuf += 2;
|
---|
224 | o_len -= 2;
|
---|
225 |
|
---|
226 | if (o_len == 0 || i_len == 0)
|
---|
227 | return destlen - o_len;
|
---|
228 |
|
---|
229 | /* Keep trying with the next char... */
|
---|
230 | goto again;
|
---|
231 |
|
---|
232 | } else if (from != CH_UTF16LE && from != CH_UTF16BE &&
|
---|
233 | to != CH_UTF16LE && to != CH_UTF16BE) {
|
---|
234 | /* Failed multibyte to multibyte. Just copy the default fail char and
|
---|
235 | try again. */
|
---|
236 | outbuf[0] = lp_failed_convert_char();
|
---|
237 |
|
---|
238 | inbuf++;
|
---|
239 | i_len--;
|
---|
240 |
|
---|
241 | outbuf++;
|
---|
242 | o_len--;
|
---|
243 |
|
---|
244 | if (o_len == 0 || i_len == 0)
|
---|
245 | return destlen - o_len;
|
---|
246 |
|
---|
247 | /* Keep trying with the next char... */
|
---|
248 | goto again;
|
---|
249 |
|
---|
250 | } else {
|
---|
251 | /* Keep compiler happy.... */
|
---|
252 | return destlen - o_len;
|
---|
253 | }
|
---|
254 | }
|
---|
255 | }
|
---|
256 |
|
---|
257 | /**
|
---|
258 | * Convert string from one encoding to another, making error checking etc
|
---|
259 | * Fast path version - handles ASCII first.
|
---|
260 | *
|
---|
261 | * @param src pointer to source string (multibyte or singlebyte)
|
---|
262 | * @param srclen length of the source string in bytes, or -1 for nul terminated.
|
---|
263 | * @param dest pointer to destination string (multibyte or singlebyte)
|
---|
264 | * @param destlen maximal length allowed for string - *NEVER* -1.
|
---|
265 | * @param allow_bad_conv determines if a "best effort" conversion is acceptable (never returns errors)
|
---|
266 | * @returns the number of bytes occupied in the destination
|
---|
267 | *
|
---|
268 | * Ensure the srclen contains the terminating zero.
|
---|
269 | *
|
---|
270 | * This function has been hand-tuned to provide a fast path.
|
---|
271 | * Don't change unless you really know what you are doing. JRA.
|
---|
272 | **/
|
---|
273 |
|
---|
274 | size_t convert_string(charset_t from, charset_t to,
|
---|
275 | void const *src, size_t srclen,
|
---|
276 | void *dest, size_t destlen, bool allow_bad_conv)
|
---|
277 | {
|
---|
278 | /*
|
---|
279 | * NB. We deliberately don't do a strlen here if srclen == -1.
|
---|
280 | * This is very expensive over millions of calls and is taken
|
---|
281 | * care of in the slow path in convert_string_internal. JRA.
|
---|
282 | */
|
---|
283 |
|
---|
284 | #ifdef DEVELOPER
|
---|
285 | SMB_ASSERT(destlen != (size_t)-1);
|
---|
286 | #endif
|
---|
287 |
|
---|
288 | if (srclen == 0)
|
---|
289 | return 0;
|
---|
290 |
|
---|
291 | if (from != CH_UTF16LE && from != CH_UTF16BE && to != CH_UTF16LE && to != CH_UTF16BE) {
|
---|
292 | const unsigned char *p = (const unsigned char *)src;
|
---|
293 | unsigned char *q = (unsigned char *)dest;
|
---|
294 | size_t slen = srclen;
|
---|
295 | size_t dlen = destlen;
|
---|
296 | unsigned char lastp = '\0';
|
---|
297 | size_t retval = 0;
|
---|
298 |
|
---|
299 | /* If all characters are ascii, fast path here. */
|
---|
300 | while (slen && dlen) {
|
---|
301 | if ((lastp = *p) <= 0x7f) {
|
---|
302 | *q++ = *p++;
|
---|
303 | if (slen != (size_t)-1) {
|
---|
304 | slen--;
|
---|
305 | }
|
---|
306 | dlen--;
|
---|
307 | retval++;
|
---|
308 | if (!lastp)
|
---|
309 | break;
|
---|
310 | } else {
|
---|
311 | #ifdef BROKEN_UNICODE_COMPOSE_CHARACTERS
|
---|
312 | goto general_case;
|
---|
313 | #else
|
---|
314 | size_t ret = convert_string_internal(from, to, p, slen, q, dlen, allow_bad_conv);
|
---|
315 | if (ret == (size_t)-1) {
|
---|
316 | return ret;
|
---|
317 | }
|
---|
318 | return retval + ret;
|
---|
319 | #endif
|
---|
320 | }
|
---|
321 | }
|
---|
322 | if (!dlen) {
|
---|
323 | /* Even if we fast path we should note if we ran out of room. */
|
---|
324 | if (((slen != (size_t)-1) && slen) ||
|
---|
325 | ((slen == (size_t)-1) && lastp)) {
|
---|
326 | errno = E2BIG;
|
---|
327 | }
|
---|
328 | }
|
---|
329 | return retval;
|
---|
330 | } else if (from == CH_UTF16LE && to != CH_UTF16LE) {
|
---|
331 | const unsigned char *p = (const unsigned char *)src;
|
---|
332 | unsigned char *q = (unsigned char *)dest;
|
---|
333 | size_t retval = 0;
|
---|
334 | size_t slen = srclen;
|
---|
335 | size_t dlen = destlen;
|
---|
336 | unsigned char lastp = '\0';
|
---|
337 |
|
---|
338 | /* If all characters are ascii, fast path here. */
|
---|
339 | while (((slen == (size_t)-1) || (slen >= 2)) && dlen) {
|
---|
340 | if (((lastp = *p) <= 0x7f) && (p[1] == 0)) {
|
---|
341 | *q++ = *p;
|
---|
342 | if (slen != (size_t)-1) {
|
---|
343 | slen -= 2;
|
---|
344 | }
|
---|
345 | p += 2;
|
---|
346 | dlen--;
|
---|
347 | retval++;
|
---|
348 | if (!lastp)
|
---|
349 | break;
|
---|
350 | } else {
|
---|
351 | #ifdef BROKEN_UNICODE_COMPOSE_CHARACTERS
|
---|
352 | goto general_case;
|
---|
353 | #else
|
---|
354 | size_t ret = convert_string_internal(from, to, p, slen, q, dlen, allow_bad_conv);
|
---|
355 | if (ret == (size_t)-1) {
|
---|
356 | return ret;
|
---|
357 | }
|
---|
358 | return retval + ret;
|
---|
359 | #endif
|
---|
360 | }
|
---|
361 | }
|
---|
362 | if (!dlen) {
|
---|
363 | /* Even if we fast path we should note if we ran out of room. */
|
---|
364 | if (((slen != (size_t)-1) && slen) ||
|
---|
365 | ((slen == (size_t)-1) && lastp)) {
|
---|
366 | errno = E2BIG;
|
---|
367 | }
|
---|
368 | }
|
---|
369 | return retval;
|
---|
370 | } else if (from != CH_UTF16LE && from != CH_UTF16BE && to == CH_UTF16LE) {
|
---|
371 | const unsigned char *p = (const unsigned char *)src;
|
---|
372 | unsigned char *q = (unsigned char *)dest;
|
---|
373 | size_t retval = 0;
|
---|
374 | size_t slen = srclen;
|
---|
375 | size_t dlen = destlen;
|
---|
376 | unsigned char lastp = '\0';
|
---|
377 |
|
---|
378 | /* If all characters are ascii, fast path here. */
|
---|
379 | while (slen && (dlen >= 2)) {
|
---|
380 | if ((lastp = *p) <= 0x7F) {
|
---|
381 | *q++ = *p++;
|
---|
382 | *q++ = '\0';
|
---|
383 | if (slen != (size_t)-1) {
|
---|
384 | slen--;
|
---|
385 | }
|
---|
386 | dlen -= 2;
|
---|
387 | retval += 2;
|
---|
388 | if (!lastp)
|
---|
389 | break;
|
---|
390 | } else {
|
---|
391 | #ifdef BROKEN_UNICODE_COMPOSE_CHARACTERS
|
---|
392 | goto general_case;
|
---|
393 | #else
|
---|
394 | size_t ret = convert_string_internal(from, to, p, slen, q, dlen, allow_bad_conv);
|
---|
395 | if (ret == (size_t)-1) {
|
---|
396 | return ret;
|
---|
397 | }
|
---|
398 | return retval + ret;
|
---|
399 | #endif
|
---|
400 | }
|
---|
401 | }
|
---|
402 | if (!dlen) {
|
---|
403 | /* Even if we fast path we should note if we ran out of room. */
|
---|
404 | if (((slen != (size_t)-1) && slen) ||
|
---|
405 | ((slen == (size_t)-1) && lastp)) {
|
---|
406 | errno = E2BIG;
|
---|
407 | }
|
---|
408 | }
|
---|
409 | return retval;
|
---|
410 | }
|
---|
411 |
|
---|
412 | #ifdef BROKEN_UNICODE_COMPOSE_CHARACTERS
|
---|
413 | general_case:
|
---|
414 | #endif
|
---|
415 | return convert_string_internal(from, to, src, srclen, dest, destlen, allow_bad_conv);
|
---|
416 | }
|
---|
417 |
|
---|
418 | /**
|
---|
419 | * Convert between character sets, allocating a new buffer using talloc for the result.
|
---|
420 | *
|
---|
421 | * @param srclen length of source buffer.
|
---|
422 | * @param dest always set at least to NULL
|
---|
423 | * @parm converted_size set to the number of bytes occupied by the string in
|
---|
424 | * the destination on success.
|
---|
425 | * @note -1 is not accepted for srclen.
|
---|
426 | *
|
---|
427 | * @return true if new buffer was correctly allocated, and string was
|
---|
428 | * converted.
|
---|
429 | *
|
---|
430 | * Ensure the srclen contains the terminating zero.
|
---|
431 | *
|
---|
432 | * I hate the goto's in this function. It's embarressing.....
|
---|
433 | * There has to be a cleaner way to do this. JRA.
|
---|
434 | */
|
---|
435 | bool convert_string_talloc(TALLOC_CTX *ctx, charset_t from, charset_t to,
|
---|
436 | void const *src, size_t srclen, void *dst,
|
---|
437 | size_t *converted_size, bool allow_bad_conv)
|
---|
438 |
|
---|
439 | {
|
---|
440 | size_t i_len, o_len, destlen = (srclen * 3) / 2;
|
---|
441 | size_t retval;
|
---|
442 | const char *inbuf = (const char *)src;
|
---|
443 | char *outbuf = NULL, *ob = NULL;
|
---|
444 | smb_iconv_t descriptor;
|
---|
445 | void **dest = (void **)dst;
|
---|
446 | struct smb_iconv_convenience *ic;
|
---|
447 |
|
---|
448 | *dest = NULL;
|
---|
449 |
|
---|
450 | if (!converted_size) {
|
---|
451 | errno = EINVAL;
|
---|
452 | return false;
|
---|
453 | }
|
---|
454 |
|
---|
455 | if (src == NULL || srclen == (size_t)-1) {
|
---|
456 | errno = EINVAL;
|
---|
457 | return false;
|
---|
458 | }
|
---|
459 |
|
---|
460 | if (srclen == 0) {
|
---|
461 | /* We really should treat this as an error, but
|
---|
462 | there are too many callers that need this to
|
---|
463 | return a NULL terminated string in the correct
|
---|
464 | character set. */
|
---|
465 | if (to == CH_UTF16LE|| to == CH_UTF16BE || to == CH_UTF16MUNGED) {
|
---|
466 | destlen = 2;
|
---|
467 | } else {
|
---|
468 | destlen = 1;
|
---|
469 | }
|
---|
470 | ob = talloc_zero_array(ctx, char, destlen);
|
---|
471 | if (ob == NULL) {
|
---|
472 | errno = ENOMEM;
|
---|
473 | return false;
|
---|
474 | }
|
---|
475 | *converted_size = destlen;
|
---|
476 | *dest = ob;
|
---|
477 | return true;
|
---|
478 | }
|
---|
479 |
|
---|
480 | lazy_initialize_conv();
|
---|
481 | ic = get_iconv_convenience();
|
---|
482 | descriptor = get_conv_handle(ic, from, to);
|
---|
483 |
|
---|
484 | if (descriptor == (smb_iconv_t)-1 || descriptor == (smb_iconv_t)0) {
|
---|
485 | if (!conv_silent)
|
---|
486 | DEBUG(0,("convert_string_talloc: Conversion not supported.\n"));
|
---|
487 | errno = EOPNOTSUPP;
|
---|
488 | return false;
|
---|
489 | }
|
---|
490 |
|
---|
491 | convert:
|
---|
492 |
|
---|
493 | /* +2 is for ucs2 null termination. */
|
---|
494 | if ((destlen*2)+2 < destlen) {
|
---|
495 | /* wrapped ! abort. */
|
---|
496 | if (!conv_silent)
|
---|
497 | DEBUG(0, ("convert_string_talloc: destlen wrapped !\n"));
|
---|
498 | TALLOC_FREE(outbuf);
|
---|
499 | errno = EOPNOTSUPP;
|
---|
500 | return false;
|
---|
501 | } else {
|
---|
502 | destlen = destlen * 2;
|
---|
503 | }
|
---|
504 |
|
---|
505 | /* +2 is for ucs2 null termination. */
|
---|
506 | ob = (char *)TALLOC_REALLOC(ctx, ob, destlen + 2);
|
---|
507 |
|
---|
508 | if (!ob) {
|
---|
509 | DEBUG(0, ("convert_string_talloc: realloc failed!\n"));
|
---|
510 | errno = ENOMEM;
|
---|
511 | return false;
|
---|
512 | }
|
---|
513 | outbuf = ob;
|
---|
514 | i_len = srclen;
|
---|
515 | o_len = destlen;
|
---|
516 |
|
---|
517 | again:
|
---|
518 |
|
---|
519 | retval = smb_iconv(descriptor,
|
---|
520 | &inbuf, &i_len,
|
---|
521 | &outbuf, &o_len);
|
---|
522 | if(retval == (size_t)-1) {
|
---|
523 | const char *reason="unknown error";
|
---|
524 | switch(errno) {
|
---|
525 | case EINVAL:
|
---|
526 | reason="Incomplete multibyte sequence";
|
---|
527 | if (!conv_silent)
|
---|
528 | DEBUG(3,("convert_string_talloc: Conversion error: %s(%s)\n",reason,inbuf));
|
---|
529 | if (allow_bad_conv)
|
---|
530 | goto use_as_is;
|
---|
531 | break;
|
---|
532 | case E2BIG:
|
---|
533 | goto convert;
|
---|
534 | case EILSEQ:
|
---|
535 | reason="Illegal multibyte sequence";
|
---|
536 | if (!conv_silent)
|
---|
537 | DEBUG(3,("convert_string_talloc: Conversion error: %s(%s)\n",reason,inbuf));
|
---|
538 | if (allow_bad_conv)
|
---|
539 | goto use_as_is;
|
---|
540 | break;
|
---|
541 | }
|
---|
542 | if (!conv_silent)
|
---|
543 | DEBUG(0,("Conversion error: %s(%s)\n",reason,inbuf));
|
---|
544 | /* smb_panic(reason); */
|
---|
545 | TALLOC_FREE(ob);
|
---|
546 | return false;
|
---|
547 | }
|
---|
548 |
|
---|
549 | out:
|
---|
550 |
|
---|
551 | destlen = destlen - o_len;
|
---|
552 | /* Don't shrink unless we're reclaiming a lot of
|
---|
553 | * space. This is in the hot codepath and these
|
---|
554 | * reallocs *cost*. JRA.
|
---|
555 | */
|
---|
556 | if (o_len > 1024) {
|
---|
557 | /* We're shrinking here so we know the +2 is safe from wrap. */
|
---|
558 | ob = (char *)TALLOC_REALLOC(ctx,ob,destlen + 2);
|
---|
559 | }
|
---|
560 |
|
---|
561 | if (destlen && !ob) {
|
---|
562 | DEBUG(0, ("convert_string_talloc: out of memory!\n"));
|
---|
563 | errno = ENOMEM;
|
---|
564 | return false;
|
---|
565 | }
|
---|
566 |
|
---|
567 | *dest = ob;
|
---|
568 |
|
---|
569 | /* Must ucs2 null terminate in the extra space we allocated. */
|
---|
570 | ob[destlen] = '\0';
|
---|
571 | ob[destlen+1] = '\0';
|
---|
572 |
|
---|
573 | /* Ensure we can never return a *converted_size of zero. */
|
---|
574 | if (destlen == 0) {
|
---|
575 | /* This can happen from a bad iconv "use_as_is:" call. */
|
---|
576 | if (to == CH_UTF16LE|| to == CH_UTF16BE || to == CH_UTF16MUNGED) {
|
---|
577 | destlen = 2;
|
---|
578 | } else {
|
---|
579 | destlen = 1;
|
---|
580 | }
|
---|
581 | }
|
---|
582 |
|
---|
583 | *converted_size = destlen;
|
---|
584 | return true;
|
---|
585 |
|
---|
586 | use_as_is:
|
---|
587 |
|
---|
588 | /*
|
---|
589 | * Conversion not supported. This is actually an error, but there are so
|
---|
590 | * many misconfigured iconv systems and smb.conf's out there we can't just
|
---|
591 | * fail. Do a very bad conversion instead.... JRA.
|
---|
592 | */
|
---|
593 |
|
---|
594 | {
|
---|
595 | if (o_len == 0 || i_len == 0)
|
---|
596 | goto out;
|
---|
597 |
|
---|
598 | if (((from == CH_UTF16LE)||(from == CH_UTF16BE)) &&
|
---|
599 | ((to != CH_UTF16LE)||(to != CH_UTF16BE))) {
|
---|
600 | /* Can't convert from utf16 any endian to multibyte.
|
---|
601 | Replace with the default fail char.
|
---|
602 | */
|
---|
603 |
|
---|
604 | if (i_len < 2)
|
---|
605 | goto out;
|
---|
606 |
|
---|
607 | if (i_len >= 2) {
|
---|
608 | *outbuf = lp_failed_convert_char();
|
---|
609 |
|
---|
610 | outbuf++;
|
---|
611 | o_len--;
|
---|
612 |
|
---|
613 | inbuf += 2;
|
---|
614 | i_len -= 2;
|
---|
615 | }
|
---|
616 |
|
---|
617 | if (o_len == 0 || i_len == 0)
|
---|
618 | goto out;
|
---|
619 |
|
---|
620 | /* Keep trying with the next char... */
|
---|
621 | goto again;
|
---|
622 |
|
---|
623 | } else if (from != CH_UTF16LE && from != CH_UTF16BE && to == CH_UTF16LE) {
|
---|
624 | /* Can't convert to UTF16LE - just widen by adding the
|
---|
625 | default fail char then zero.
|
---|
626 | */
|
---|
627 | if (o_len < 2)
|
---|
628 | goto out;
|
---|
629 |
|
---|
630 | outbuf[0] = lp_failed_convert_char();
|
---|
631 | outbuf[1] = '\0';
|
---|
632 |
|
---|
633 | inbuf++;
|
---|
634 | i_len--;
|
---|
635 |
|
---|
636 | outbuf += 2;
|
---|
637 | o_len -= 2;
|
---|
638 |
|
---|
639 | if (o_len == 0 || i_len == 0)
|
---|
640 | goto out;
|
---|
641 |
|
---|
642 | /* Keep trying with the next char... */
|
---|
643 | goto again;
|
---|
644 |
|
---|
645 | } else if (from != CH_UTF16LE && from != CH_UTF16BE &&
|
---|
646 | to != CH_UTF16LE && to != CH_UTF16BE) {
|
---|
647 | /* Failed multibyte to multibyte. Just copy the default fail char and
|
---|
648 | try again. */
|
---|
649 | outbuf[0] = lp_failed_convert_char();
|
---|
650 |
|
---|
651 | inbuf++;
|
---|
652 | i_len--;
|
---|
653 |
|
---|
654 | outbuf++;
|
---|
655 | o_len--;
|
---|
656 |
|
---|
657 | if (o_len == 0 || i_len == 0)
|
---|
658 | goto out;
|
---|
659 |
|
---|
660 | /* Keep trying with the next char... */
|
---|
661 | goto again;
|
---|
662 |
|
---|
663 | } else {
|
---|
664 | /* Keep compiler happy.... */
|
---|
665 | goto out;
|
---|
666 | }
|
---|
667 | }
|
---|
668 | }
|
---|
669 |
|
---|
670 | size_t unix_strupper(const char *src, size_t srclen, char *dest, size_t destlen)
|
---|
671 | {
|
---|
672 | size_t size;
|
---|
673 | smb_ucs2_t *buffer;
|
---|
674 |
|
---|
675 | if (!push_ucs2_talloc(talloc_tos(), &buffer, src, &size)) {
|
---|
676 | return (size_t)-1;
|
---|
677 | }
|
---|
678 |
|
---|
679 | if (!strupper_w(buffer) && (dest == src)) {
|
---|
680 | TALLOC_FREE(buffer);
|
---|
681 | return srclen;
|
---|
682 | }
|
---|
683 |
|
---|
684 | size = convert_string(CH_UTF16LE, CH_UNIX, buffer, size, dest, destlen, True);
|
---|
685 | TALLOC_FREE(buffer);
|
---|
686 | return size;
|
---|
687 | }
|
---|
688 |
|
---|
689 | /**
|
---|
690 | talloc_strdup() a unix string to upper case.
|
---|
691 | **/
|
---|
692 |
|
---|
693 | char *talloc_strdup_upper(TALLOC_CTX *ctx, const char *s)
|
---|
694 | {
|
---|
695 | char *out_buffer = talloc_strdup(ctx,s);
|
---|
696 | const unsigned char *p = (const unsigned char *)s;
|
---|
697 | unsigned char *q = (unsigned char *)out_buffer;
|
---|
698 |
|
---|
699 | if (!q) {
|
---|
700 | return NULL;
|
---|
701 | }
|
---|
702 |
|
---|
703 | /* this is quite a common operation, so we want it to be
|
---|
704 | fast. We optimise for the ascii case, knowing that all our
|
---|
705 | supported multi-byte character sets are ascii-compatible
|
---|
706 | (ie. they match for the first 128 chars) */
|
---|
707 |
|
---|
708 | while (*p) {
|
---|
709 | if (*p & 0x80)
|
---|
710 | break;
|
---|
711 | *q++ = toupper_ascii_fast(*p);
|
---|
712 | p++;
|
---|
713 | }
|
---|
714 |
|
---|
715 | if (*p) {
|
---|
716 | /* MB case. */
|
---|
717 | size_t converted_size, converted_size2;
|
---|
718 | smb_ucs2_t *ubuf = NULL;
|
---|
719 |
|
---|
720 | /* We're not using the ascii buffer above. */
|
---|
721 | TALLOC_FREE(out_buffer);
|
---|
722 |
|
---|
723 | if (!convert_string_talloc(ctx, CH_UNIX, CH_UTF16LE, s,
|
---|
724 | strlen(s)+1, (void *)&ubuf,
|
---|
725 | &converted_size, True))
|
---|
726 | {
|
---|
727 | return NULL;
|
---|
728 | }
|
---|
729 |
|
---|
730 | strupper_w(ubuf);
|
---|
731 |
|
---|
732 | if (!convert_string_talloc(ctx, CH_UTF16LE, CH_UNIX, ubuf,
|
---|
733 | converted_size, (void *)&out_buffer,
|
---|
734 | &converted_size2, True))
|
---|
735 | {
|
---|
736 | TALLOC_FREE(ubuf);
|
---|
737 | return NULL;
|
---|
738 | }
|
---|
739 |
|
---|
740 | /* Don't need the intermediate buffer
|
---|
741 | * anymore.
|
---|
742 | */
|
---|
743 | TALLOC_FREE(ubuf);
|
---|
744 | }
|
---|
745 |
|
---|
746 | return out_buffer;
|
---|
747 | }
|
---|
748 |
|
---|
749 | char *strupper_talloc(TALLOC_CTX *ctx, const char *s) {
|
---|
750 | return talloc_strdup_upper(ctx, s);
|
---|
751 | }
|
---|
752 |
|
---|
753 |
|
---|
754 | size_t unix_strlower(const char *src, size_t srclen, char *dest, size_t destlen)
|
---|
755 | {
|
---|
756 | size_t size;
|
---|
757 | smb_ucs2_t *buffer = NULL;
|
---|
758 |
|
---|
759 | if (!convert_string_talloc(talloc_tos(), CH_UNIX, CH_UTF16LE, src, srclen,
|
---|
760 | (void **)(void *)&buffer, &size,
|
---|
761 | True))
|
---|
762 | {
|
---|
763 | smb_panic("failed to create UCS2 buffer");
|
---|
764 | }
|
---|
765 | if (!strlower_w(buffer) && (dest == src)) {
|
---|
766 | TALLOC_FREE(buffer);
|
---|
767 | return srclen;
|
---|
768 | }
|
---|
769 | size = convert_string(CH_UTF16LE, CH_UNIX, buffer, size, dest, destlen, True);
|
---|
770 | TALLOC_FREE(buffer);
|
---|
771 | return size;
|
---|
772 | }
|
---|
773 |
|
---|
774 |
|
---|
775 | char *talloc_strdup_lower(TALLOC_CTX *ctx, const char *s)
|
---|
776 | {
|
---|
777 | size_t converted_size;
|
---|
778 | smb_ucs2_t *buffer = NULL;
|
---|
779 | char *out_buffer;
|
---|
780 |
|
---|
781 | if (!push_ucs2_talloc(ctx, &buffer, s, &converted_size)) {
|
---|
782 | return NULL;
|
---|
783 | }
|
---|
784 |
|
---|
785 | strlower_w(buffer);
|
---|
786 |
|
---|
787 | if (!pull_ucs2_talloc(ctx, &out_buffer, buffer, &converted_size)) {
|
---|
788 | TALLOC_FREE(buffer);
|
---|
789 | return NULL;
|
---|
790 | }
|
---|
791 |
|
---|
792 | TALLOC_FREE(buffer);
|
---|
793 |
|
---|
794 | return out_buffer;
|
---|
795 | }
|
---|
796 |
|
---|
797 | char *strlower_talloc(TALLOC_CTX *ctx, const char *s) {
|
---|
798 | return talloc_strdup_lower(ctx, s);
|
---|
799 | }
|
---|
800 |
|
---|
801 | size_t ucs2_align(const void *base_ptr, const void *p, int flags)
|
---|
802 | {
|
---|
803 | if (flags & (STR_NOALIGN|STR_ASCII))
|
---|
804 | return 0;
|
---|
805 | return PTR_DIFF(p, base_ptr) & 1;
|
---|
806 | }
|
---|
807 |
|
---|
808 |
|
---|
809 | /**
|
---|
810 | * Copy a string from a char* unix src to a dos codepage string destination.
|
---|
811 | *
|
---|
812 | * @return the number of bytes occupied by the string in the destination.
|
---|
813 | *
|
---|
814 | * @param flags can include
|
---|
815 | * <dl>
|
---|
816 | * <dt>STR_TERMINATE</dt> <dd>means include the null termination</dd>
|
---|
817 | * <dt>STR_UPPER</dt> <dd>means uppercase in the destination</dd>
|
---|
818 | * </dl>
|
---|
819 | *
|
---|
820 | * @param dest_len the maximum length in bytes allowed in the
|
---|
821 | * destination.
|
---|
822 | **/
|
---|
823 | size_t push_ascii(void *dest, const char *src, size_t dest_len, int flags)
|
---|
824 | {
|
---|
825 | size_t src_len = strlen(src);
|
---|
826 | char *tmpbuf = NULL;
|
---|
827 | size_t ret;
|
---|
828 |
|
---|
829 | /* No longer allow a length of -1. */
|
---|
830 | if (dest_len == (size_t)-1) {
|
---|
831 | smb_panic("push_ascii - dest_len == -1");
|
---|
832 | }
|
---|
833 |
|
---|
834 | if (flags & STR_UPPER) {
|
---|
835 | tmpbuf = SMB_STRDUP(src);
|
---|
836 | if (!tmpbuf) {
|
---|
837 | smb_panic("malloc fail");
|
---|
838 | }
|
---|
839 | strupper_m(tmpbuf);
|
---|
840 | src = tmpbuf;
|
---|
841 | }
|
---|
842 |
|
---|
843 | if (flags & (STR_TERMINATE | STR_TERMINATE_ASCII)) {
|
---|
844 | src_len++;
|
---|
845 | }
|
---|
846 |
|
---|
847 | ret = convert_string(CH_UNIX, CH_DOS, src, src_len, dest, dest_len, True);
|
---|
848 | if (ret == (size_t)-1 &&
|
---|
849 | (flags & (STR_TERMINATE | STR_TERMINATE_ASCII))
|
---|
850 | && dest_len > 0) {
|
---|
851 | ((char *)dest)[0] = '\0';
|
---|
852 | }
|
---|
853 | SAFE_FREE(tmpbuf);
|
---|
854 | return ret;
|
---|
855 | }
|
---|
856 |
|
---|
857 | size_t push_ascii_fstring(void *dest, const char *src)
|
---|
858 | {
|
---|
859 | return push_ascii(dest, src, sizeof(fstring), STR_TERMINATE);
|
---|
860 | }
|
---|
861 |
|
---|
862 | /********************************************************************
|
---|
863 | Push an nstring - ensure null terminated. Written by
|
---|
864 | moriyama@miraclelinux.com (MORIYAMA Masayuki).
|
---|
865 | ********************************************************************/
|
---|
866 |
|
---|
867 | size_t push_ascii_nstring(void *dest, const char *src)
|
---|
868 | {
|
---|
869 | size_t i, buffer_len, dest_len;
|
---|
870 | smb_ucs2_t *buffer;
|
---|
871 |
|
---|
872 | conv_silent = True;
|
---|
873 | if (!push_ucs2_talloc(talloc_tos(), &buffer, src, &buffer_len)) {
|
---|
874 | smb_panic("failed to create UCS2 buffer");
|
---|
875 | }
|
---|
876 |
|
---|
877 | /* We're using buffer_len below to count ucs2 characters, not bytes. */
|
---|
878 | buffer_len /= sizeof(smb_ucs2_t);
|
---|
879 |
|
---|
880 | dest_len = 0;
|
---|
881 | for (i = 0; buffer[i] != 0 && (i < buffer_len); i++) {
|
---|
882 | unsigned char mb[10];
|
---|
883 | /* Convert one smb_ucs2_t character at a time. */
|
---|
884 | size_t mb_len = convert_string(CH_UTF16LE, CH_DOS, buffer+i, sizeof(smb_ucs2_t), mb, sizeof(mb), False);
|
---|
885 | if ((mb_len != (size_t)-1) && (dest_len + mb_len <= MAX_NETBIOSNAME_LEN - 1)) {
|
---|
886 | memcpy((char *)dest + dest_len, mb, mb_len);
|
---|
887 | dest_len += mb_len;
|
---|
888 | } else {
|
---|
889 | errno = E2BIG;
|
---|
890 | break;
|
---|
891 | }
|
---|
892 | }
|
---|
893 | ((char *)dest)[dest_len] = '\0';
|
---|
894 |
|
---|
895 | conv_silent = False;
|
---|
896 | TALLOC_FREE(buffer);
|
---|
897 | return dest_len;
|
---|
898 | }
|
---|
899 |
|
---|
900 | /********************************************************************
|
---|
901 | Push and malloc an ascii string. src and dest null terminated.
|
---|
902 | ********************************************************************/
|
---|
903 |
|
---|
904 | bool push_ascii_talloc(TALLOC_CTX *mem_ctx, char **dest, const char *src, size_t *converted_size)
|
---|
905 | {
|
---|
906 | size_t src_len = strlen(src)+1;
|
---|
907 |
|
---|
908 | *dest = NULL;
|
---|
909 | return convert_string_talloc(mem_ctx, CH_UNIX, CH_DOS, src, src_len,
|
---|
910 | (void **)dest, converted_size, True);
|
---|
911 | }
|
---|
912 |
|
---|
913 | /**
|
---|
914 | * Copy a string from a dos codepage source to a unix char* destination.
|
---|
915 | *
|
---|
916 | * The resulting string in "dest" is always null terminated.
|
---|
917 | *
|
---|
918 | * @param flags can have:
|
---|
919 | * <dl>
|
---|
920 | * <dt>STR_TERMINATE</dt>
|
---|
921 | * <dd>STR_TERMINATE means the string in @p src
|
---|
922 | * is null terminated, and src_len is ignored.</dd>
|
---|
923 | * </dl>
|
---|
924 | *
|
---|
925 | * @param src_len is the length of the source area in bytes.
|
---|
926 | * @returns the number of bytes occupied by the string in @p src.
|
---|
927 | **/
|
---|
928 | size_t pull_ascii(char *dest, const void *src, size_t dest_len, size_t src_len, int flags)
|
---|
929 | {
|
---|
930 | size_t ret;
|
---|
931 |
|
---|
932 | if (dest_len == (size_t)-1) {
|
---|
933 | /* No longer allow dest_len of -1. */
|
---|
934 | smb_panic("pull_ascii - invalid dest_len of -1");
|
---|
935 | }
|
---|
936 |
|
---|
937 | if (flags & STR_TERMINATE) {
|
---|
938 | if (src_len == (size_t)-1) {
|
---|
939 | src_len = strlen((const char *)src) + 1;
|
---|
940 | } else {
|
---|
941 | size_t len = strnlen((const char *)src, src_len);
|
---|
942 | if (len < src_len)
|
---|
943 | len++;
|
---|
944 | src_len = len;
|
---|
945 | }
|
---|
946 | }
|
---|
947 |
|
---|
948 | ret = convert_string(CH_DOS, CH_UNIX, src, src_len, dest, dest_len, True);
|
---|
949 | if (ret == (size_t)-1) {
|
---|
950 | ret = 0;
|
---|
951 | dest_len = 0;
|
---|
952 | }
|
---|
953 |
|
---|
954 | if (dest_len && ret) {
|
---|
955 | /* Did we already process the terminating zero ? */
|
---|
956 | if (dest[MIN(ret-1, dest_len-1)] != 0) {
|
---|
957 | dest[MIN(ret, dest_len-1)] = 0;
|
---|
958 | }
|
---|
959 | } else {
|
---|
960 | dest[0] = 0;
|
---|
961 | }
|
---|
962 |
|
---|
963 | return src_len;
|
---|
964 | }
|
---|
965 |
|
---|
966 | /**
|
---|
967 | * Copy a string from a dos codepage source to a unix char* destination.
|
---|
968 | * Talloc version.
|
---|
969 | *
|
---|
970 | * The resulting string in "dest" is always null terminated.
|
---|
971 | *
|
---|
972 | * @param flags can have:
|
---|
973 | * <dl>
|
---|
974 | * <dt>STR_TERMINATE</dt>
|
---|
975 | * <dd>STR_TERMINATE means the string in @p src
|
---|
976 | * is null terminated, and src_len is ignored.</dd>
|
---|
977 | * </dl>
|
---|
978 | *
|
---|
979 | * @param src_len is the length of the source area in bytes.
|
---|
980 | * @returns the number of bytes occupied by the string in @p src.
|
---|
981 | **/
|
---|
982 |
|
---|
983 | static size_t pull_ascii_base_talloc(TALLOC_CTX *ctx,
|
---|
984 | char **ppdest,
|
---|
985 | const void *src,
|
---|
986 | size_t src_len,
|
---|
987 | int flags)
|
---|
988 | {
|
---|
989 | char *dest = NULL;
|
---|
990 | size_t dest_len;
|
---|
991 |
|
---|
992 | *ppdest = NULL;
|
---|
993 |
|
---|
994 | if (!src_len) {
|
---|
995 | return 0;
|
---|
996 | }
|
---|
997 |
|
---|
998 | if (flags & STR_TERMINATE) {
|
---|
999 | if (src_len == (size_t)-1) {
|
---|
1000 | src_len = strlen((const char *)src) + 1;
|
---|
1001 | } else {
|
---|
1002 | size_t len = strnlen((const char *)src, src_len);
|
---|
1003 | if (len < src_len)
|
---|
1004 | len++;
|
---|
1005 | src_len = len;
|
---|
1006 | }
|
---|
1007 | /* Ensure we don't use an insane length from the client. */
|
---|
1008 | if (src_len >= 1024*1024) {
|
---|
1009 | char *msg = talloc_asprintf(ctx,
|
---|
1010 | "Bad src length (%u) in "
|
---|
1011 | "pull_ascii_base_talloc",
|
---|
1012 | (unsigned int)src_len);
|
---|
1013 | smb_panic(msg);
|
---|
1014 | }
|
---|
1015 | } else {
|
---|
1016 | /* Can't have an unlimited length
|
---|
1017 | * non STR_TERMINATE'd.
|
---|
1018 | */
|
---|
1019 | if (src_len == (size_t)-1) {
|
---|
1020 | errno = EINVAL;
|
---|
1021 | return 0;
|
---|
1022 | }
|
---|
1023 | }
|
---|
1024 |
|
---|
1025 | /* src_len != -1 here. */
|
---|
1026 |
|
---|
1027 | if (!convert_string_talloc(ctx, CH_DOS, CH_UNIX, src, src_len, &dest,
|
---|
1028 | &dest_len, True)) {
|
---|
1029 | dest_len = 0;
|
---|
1030 | }
|
---|
1031 |
|
---|
1032 | if (dest_len && dest) {
|
---|
1033 | /* Did we already process the terminating zero ? */
|
---|
1034 | if (dest[dest_len-1] != 0) {
|
---|
1035 | size_t size = talloc_get_size(dest);
|
---|
1036 | /* Have we got space to append the '\0' ? */
|
---|
1037 | if (size <= dest_len) {
|
---|
1038 | /* No, realloc. */
|
---|
1039 | dest = TALLOC_REALLOC_ARRAY(ctx, dest, char,
|
---|
1040 | dest_len+1);
|
---|
1041 | if (!dest) {
|
---|
1042 | /* talloc fail. */
|
---|
1043 | dest_len = (size_t)-1;
|
---|
1044 | return 0;
|
---|
1045 | }
|
---|
1046 | }
|
---|
1047 | /* Yay - space ! */
|
---|
1048 | dest[dest_len] = '\0';
|
---|
1049 | dest_len++;
|
---|
1050 | }
|
---|
1051 | } else if (dest) {
|
---|
1052 | dest[0] = 0;
|
---|
1053 | }
|
---|
1054 |
|
---|
1055 | *ppdest = dest;
|
---|
1056 | return src_len;
|
---|
1057 | }
|
---|
1058 |
|
---|
1059 | size_t pull_ascii_fstring(char *dest, const void *src)
|
---|
1060 | {
|
---|
1061 | return pull_ascii(dest, src, sizeof(fstring), -1, STR_TERMINATE);
|
---|
1062 | }
|
---|
1063 |
|
---|
1064 | /* When pulling an nstring it can expand into a larger size (dos cp -> utf8). Cope with this. */
|
---|
1065 |
|
---|
1066 | size_t pull_ascii_nstring(char *dest, size_t dest_len, const void *src)
|
---|
1067 | {
|
---|
1068 | return pull_ascii(dest, src, dest_len, sizeof(nstring)-1, STR_TERMINATE);
|
---|
1069 | }
|
---|
1070 |
|
---|
1071 | /**
|
---|
1072 | * Copy a string from a char* src to a unicode destination.
|
---|
1073 | *
|
---|
1074 | * @returns the number of bytes occupied by the string in the destination.
|
---|
1075 | *
|
---|
1076 | * @param flags can have:
|
---|
1077 | *
|
---|
1078 | * <dl>
|
---|
1079 | * <dt>STR_TERMINATE <dd>means include the null termination.
|
---|
1080 | * <dt>STR_UPPER <dd>means uppercase in the destination.
|
---|
1081 | * <dt>STR_NOALIGN <dd>means don't do alignment.
|
---|
1082 | * </dl>
|
---|
1083 | *
|
---|
1084 | * @param dest_len is the maximum length allowed in the
|
---|
1085 | * destination.
|
---|
1086 | **/
|
---|
1087 |
|
---|
1088 | size_t push_ucs2(const void *base_ptr, void *dest, const char *src, size_t dest_len, int flags)
|
---|
1089 | {
|
---|
1090 | size_t len=0;
|
---|
1091 | size_t src_len;
|
---|
1092 | size_t ret;
|
---|
1093 |
|
---|
1094 | if (dest_len == (size_t)-1) {
|
---|
1095 | /* No longer allow dest_len of -1. */
|
---|
1096 | smb_panic("push_ucs2 - invalid dest_len of -1");
|
---|
1097 | }
|
---|
1098 |
|
---|
1099 | if (flags & STR_TERMINATE)
|
---|
1100 | src_len = (size_t)-1;
|
---|
1101 | else
|
---|
1102 | src_len = strlen(src);
|
---|
1103 |
|
---|
1104 | if (ucs2_align(base_ptr, dest, flags)) {
|
---|
1105 | *(char *)dest = 0;
|
---|
1106 | dest = (void *)((char *)dest + 1);
|
---|
1107 | if (dest_len)
|
---|
1108 | dest_len--;
|
---|
1109 | len++;
|
---|
1110 | }
|
---|
1111 |
|
---|
1112 | /* ucs2 is always a multiple of 2 bytes */
|
---|
1113 | dest_len &= ~1;
|
---|
1114 |
|
---|
1115 | ret = convert_string(CH_UNIX, CH_UTF16LE, src, src_len, dest, dest_len, True);
|
---|
1116 | if (ret == (size_t)-1) {
|
---|
1117 | if ((flags & STR_TERMINATE) &&
|
---|
1118 | dest &&
|
---|
1119 | dest_len) {
|
---|
1120 | *(char *)dest = 0;
|
---|
1121 | }
|
---|
1122 | return len;
|
---|
1123 | }
|
---|
1124 |
|
---|
1125 | len += ret;
|
---|
1126 |
|
---|
1127 | if (flags & STR_UPPER) {
|
---|
1128 | smb_ucs2_t *dest_ucs2 = (smb_ucs2_t *)dest;
|
---|
1129 | size_t i;
|
---|
1130 |
|
---|
1131 | /* We check for i < (ret / 2) below as the dest string isn't null
|
---|
1132 | terminated if STR_TERMINATE isn't set. */
|
---|
1133 |
|
---|
1134 | for (i = 0; i < (ret / 2) && i < (dest_len / 2) && dest_ucs2[i]; i++) {
|
---|
1135 | smb_ucs2_t v = toupper_w(dest_ucs2[i]);
|
---|
1136 | if (v != dest_ucs2[i]) {
|
---|
1137 | dest_ucs2[i] = v;
|
---|
1138 | }
|
---|
1139 | }
|
---|
1140 | }
|
---|
1141 |
|
---|
1142 | return len;
|
---|
1143 | }
|
---|
1144 |
|
---|
1145 |
|
---|
1146 | /**
|
---|
1147 | * Copy a string from a unix char* src to a UCS2 destination,
|
---|
1148 | * allocating a buffer using talloc().
|
---|
1149 | *
|
---|
1150 | * @param dest always set at least to NULL
|
---|
1151 | * @parm converted_size set to the number of bytes occupied by the string in
|
---|
1152 | * the destination on success.
|
---|
1153 | *
|
---|
1154 | * @return true if new buffer was correctly allocated, and string was
|
---|
1155 | * converted.
|
---|
1156 | **/
|
---|
1157 | bool push_ucs2_talloc(TALLOC_CTX *ctx, smb_ucs2_t **dest, const char *src,
|
---|
1158 | size_t *converted_size)
|
---|
1159 | {
|
---|
1160 | size_t src_len = strlen(src)+1;
|
---|
1161 |
|
---|
1162 | *dest = NULL;
|
---|
1163 | return convert_string_talloc(ctx, CH_UNIX, CH_UTF16LE, src, src_len,
|
---|
1164 | (void **)dest, converted_size, True);
|
---|
1165 | }
|
---|
1166 |
|
---|
1167 |
|
---|
1168 | /**
|
---|
1169 | Copy a string from a char* src to a UTF-8 destination.
|
---|
1170 | Return the number of bytes occupied by the string in the destination
|
---|
1171 | Flags can have:
|
---|
1172 | STR_TERMINATE means include the null termination
|
---|
1173 | STR_UPPER means uppercase in the destination
|
---|
1174 | dest_len is the maximum length allowed in the destination. If dest_len
|
---|
1175 | is -1 then no maxiumum is used.
|
---|
1176 | **/
|
---|
1177 |
|
---|
1178 | static size_t push_utf8(void *dest, const char *src, size_t dest_len, int flags)
|
---|
1179 | {
|
---|
1180 | size_t src_len = 0;
|
---|
1181 | size_t ret;
|
---|
1182 | char *tmpbuf = NULL;
|
---|
1183 |
|
---|
1184 | if (dest_len == (size_t)-1) {
|
---|
1185 | /* No longer allow dest_len of -1. */
|
---|
1186 | smb_panic("push_utf8 - invalid dest_len of -1");
|
---|
1187 | }
|
---|
1188 |
|
---|
1189 | if (flags & STR_UPPER) {
|
---|
1190 | tmpbuf = strupper_talloc(talloc_tos(), src);
|
---|
1191 | if (!tmpbuf) {
|
---|
1192 | return (size_t)-1;
|
---|
1193 | }
|
---|
1194 | src = tmpbuf;
|
---|
1195 | src_len = strlen(src);
|
---|
1196 | }
|
---|
1197 |
|
---|
1198 | src_len = strlen(src);
|
---|
1199 | if (flags & STR_TERMINATE) {
|
---|
1200 | src_len++;
|
---|
1201 | }
|
---|
1202 |
|
---|
1203 | ret = convert_string(CH_UNIX, CH_UTF8, src, src_len, dest, dest_len, True);
|
---|
1204 | TALLOC_FREE(tmpbuf);
|
---|
1205 | return ret;
|
---|
1206 | }
|
---|
1207 |
|
---|
1208 | size_t push_utf8_fstring(void *dest, const char *src)
|
---|
1209 | {
|
---|
1210 | return push_utf8(dest, src, sizeof(fstring), STR_TERMINATE);
|
---|
1211 | }
|
---|
1212 |
|
---|
1213 | /**
|
---|
1214 | * Copy a string from a unix char* src to a UTF-8 destination, allocating a buffer using talloc
|
---|
1215 | *
|
---|
1216 | * @param dest always set at least to NULL
|
---|
1217 | * @parm converted_size set to the number of bytes occupied by the string in
|
---|
1218 | * the destination on success.
|
---|
1219 | *
|
---|
1220 | * @return true if new buffer was correctly allocated, and string was
|
---|
1221 | * converted.
|
---|
1222 | **/
|
---|
1223 |
|
---|
1224 | bool push_utf8_talloc(TALLOC_CTX *ctx, char **dest, const char *src,
|
---|
1225 | size_t *converted_size)
|
---|
1226 | {
|
---|
1227 | size_t src_len = strlen(src)+1;
|
---|
1228 |
|
---|
1229 | *dest = NULL;
|
---|
1230 | return convert_string_talloc(ctx, CH_UNIX, CH_UTF8, src, src_len,
|
---|
1231 | (void**)dest, converted_size, True);
|
---|
1232 | }
|
---|
1233 |
|
---|
1234 | /**
|
---|
1235 | Copy a string from a ucs2 source to a unix char* destination.
|
---|
1236 | Flags can have:
|
---|
1237 | STR_TERMINATE means the string in src is null terminated.
|
---|
1238 | STR_NOALIGN means don't try to align.
|
---|
1239 | if STR_TERMINATE is set then src_len is ignored if it is -1.
|
---|
1240 | src_len is the length of the source area in bytes
|
---|
1241 | Return the number of bytes occupied by the string in src.
|
---|
1242 | The resulting string in "dest" is always null terminated.
|
---|
1243 | **/
|
---|
1244 |
|
---|
1245 | size_t pull_ucs2(const void *base_ptr, char *dest, const void *src, size_t dest_len, size_t src_len, int flags)
|
---|
1246 | {
|
---|
1247 | size_t ret;
|
---|
1248 | size_t ucs2_align_len = 0;
|
---|
1249 |
|
---|
1250 | if (dest_len == (size_t)-1) {
|
---|
1251 | /* No longer allow dest_len of -1. */
|
---|
1252 | smb_panic("pull_ucs2 - invalid dest_len of -1");
|
---|
1253 | }
|
---|
1254 |
|
---|
1255 | if (!src_len) {
|
---|
1256 | if (dest && dest_len > 0) {
|
---|
1257 | dest[0] = '\0';
|
---|
1258 | }
|
---|
1259 | return 0;
|
---|
1260 | }
|
---|
1261 |
|
---|
1262 | if (ucs2_align(base_ptr, src, flags)) {
|
---|
1263 | src = (const void *)((const char *)src + 1);
|
---|
1264 | if (src_len != (size_t)-1)
|
---|
1265 | src_len--;
|
---|
1266 | ucs2_align_len = 1;
|
---|
1267 | }
|
---|
1268 |
|
---|
1269 | if (flags & STR_TERMINATE) {
|
---|
1270 | /* src_len -1 is the default for null terminated strings. */
|
---|
1271 | if (src_len != (size_t)-1) {
|
---|
1272 | size_t len = strnlen_w((const smb_ucs2_t *)src,
|
---|
1273 | src_len/2);
|
---|
1274 | if (len < src_len/2)
|
---|
1275 | len++;
|
---|
1276 | src_len = len*2;
|
---|
1277 | }
|
---|
1278 | }
|
---|
1279 |
|
---|
1280 | /* ucs2 is always a multiple of 2 bytes */
|
---|
1281 | if (src_len != (size_t)-1)
|
---|
1282 | src_len &= ~1;
|
---|
1283 |
|
---|
1284 | ret = convert_string(CH_UTF16LE, CH_UNIX, src, src_len, dest, dest_len, True);
|
---|
1285 | if (ret == (size_t)-1) {
|
---|
1286 | ret = 0;
|
---|
1287 | dest_len = 0;
|
---|
1288 | }
|
---|
1289 |
|
---|
1290 | if (src_len == (size_t)-1)
|
---|
1291 | src_len = ret*2;
|
---|
1292 |
|
---|
1293 | if (dest_len && ret) {
|
---|
1294 | /* Did we already process the terminating zero ? */
|
---|
1295 | if (dest[MIN(ret-1, dest_len-1)] != 0) {
|
---|
1296 | dest[MIN(ret, dest_len-1)] = 0;
|
---|
1297 | }
|
---|
1298 | } else {
|
---|
1299 | dest[0] = 0;
|
---|
1300 | }
|
---|
1301 |
|
---|
1302 | return src_len + ucs2_align_len;
|
---|
1303 | }
|
---|
1304 |
|
---|
1305 | /**
|
---|
1306 | Copy a string from a ucs2 source to a unix char* destination.
|
---|
1307 | Talloc version with a base pointer.
|
---|
1308 | Uses malloc if TALLOC_CTX is NULL (this is a bad interface and
|
---|
1309 | needs fixing. JRA).
|
---|
1310 | Flags can have:
|
---|
1311 | STR_TERMINATE means the string in src is null terminated.
|
---|
1312 | STR_NOALIGN means don't try to align.
|
---|
1313 | if STR_TERMINATE is set then src_len is ignored if it is -1.
|
---|
1314 | src_len is the length of the source area in bytes
|
---|
1315 | Return the number of bytes occupied by the string in src.
|
---|
1316 | The resulting string in "dest" is always null terminated.
|
---|
1317 | **/
|
---|
1318 |
|
---|
1319 | size_t pull_ucs2_base_talloc(TALLOC_CTX *ctx,
|
---|
1320 | const void *base_ptr,
|
---|
1321 | char **ppdest,
|
---|
1322 | const void *src,
|
---|
1323 | size_t src_len,
|
---|
1324 | int flags)
|
---|
1325 | {
|
---|
1326 | char *dest;
|
---|
1327 | size_t dest_len;
|
---|
1328 | size_t ucs2_align_len = 0;
|
---|
1329 |
|
---|
1330 | *ppdest = NULL;
|
---|
1331 |
|
---|
1332 | #ifdef DEVELOPER
|
---|
1333 | /* Ensure we never use the braindead "malloc" varient. */
|
---|
1334 | if (ctx == NULL) {
|
---|
1335 | smb_panic("NULL talloc CTX in pull_ucs2_base_talloc\n");
|
---|
1336 | }
|
---|
1337 | #endif
|
---|
1338 |
|
---|
1339 | if (!src_len) {
|
---|
1340 | return 0;
|
---|
1341 | }
|
---|
1342 |
|
---|
1343 | if (ucs2_align(base_ptr, src, flags)) {
|
---|
1344 | src = (const void *)((const char *)src + 1);
|
---|
1345 | if (src_len != (size_t)-1)
|
---|
1346 | src_len--;
|
---|
1347 | ucs2_align_len = 1;
|
---|
1348 | }
|
---|
1349 |
|
---|
1350 | if (flags & STR_TERMINATE) {
|
---|
1351 | /* src_len -1 is the default for null terminated strings. */
|
---|
1352 | if (src_len != (size_t)-1) {
|
---|
1353 | size_t len = strnlen_w((const smb_ucs2_t *)src,
|
---|
1354 | src_len/2);
|
---|
1355 | if (len < src_len/2)
|
---|
1356 | len++;
|
---|
1357 | src_len = len*2;
|
---|
1358 | } else {
|
---|
1359 | /*
|
---|
1360 | * src_len == -1 - alloc interface won't take this
|
---|
1361 | * so we must calculate.
|
---|
1362 | */
|
---|
1363 | src_len = (strlen_w((const smb_ucs2_t *)src)+1)*sizeof(smb_ucs2_t);
|
---|
1364 | }
|
---|
1365 | /* Ensure we don't use an insane length from the client. */
|
---|
1366 | if (src_len >= 1024*1024) {
|
---|
1367 | smb_panic("Bad src length in pull_ucs2_base_talloc\n");
|
---|
1368 | }
|
---|
1369 | } else {
|
---|
1370 | /* Can't have an unlimited length
|
---|
1371 | * non STR_TERMINATE'd.
|
---|
1372 | */
|
---|
1373 | if (src_len == (size_t)-1) {
|
---|
1374 | errno = EINVAL;
|
---|
1375 | return 0;
|
---|
1376 | }
|
---|
1377 | }
|
---|
1378 |
|
---|
1379 | /* src_len != -1 here. */
|
---|
1380 |
|
---|
1381 | /* ucs2 is always a multiple of 2 bytes */
|
---|
1382 | src_len &= ~1;
|
---|
1383 |
|
---|
1384 | if (!convert_string_talloc(ctx, CH_UTF16LE, CH_UNIX, src, src_len,
|
---|
1385 | (void *)&dest, &dest_len, True)) {
|
---|
1386 | dest_len = 0;
|
---|
1387 | }
|
---|
1388 |
|
---|
1389 | if (dest_len) {
|
---|
1390 | /* Did we already process the terminating zero ? */
|
---|
1391 | if (dest[dest_len-1] != 0) {
|
---|
1392 | size_t size = talloc_get_size(dest);
|
---|
1393 | /* Have we got space to append the '\0' ? */
|
---|
1394 | if (size <= dest_len) {
|
---|
1395 | /* No, realloc. */
|
---|
1396 | dest = TALLOC_REALLOC_ARRAY(ctx, dest, char,
|
---|
1397 | dest_len+1);
|
---|
1398 | if (!dest) {
|
---|
1399 | /* talloc fail. */
|
---|
1400 | dest_len = (size_t)-1;
|
---|
1401 | return 0;
|
---|
1402 | }
|
---|
1403 | }
|
---|
1404 | /* Yay - space ! */
|
---|
1405 | dest[dest_len] = '\0';
|
---|
1406 | dest_len++;
|
---|
1407 | }
|
---|
1408 | } else if (dest) {
|
---|
1409 | dest[0] = 0;
|
---|
1410 | }
|
---|
1411 |
|
---|
1412 | *ppdest = dest;
|
---|
1413 | return src_len + ucs2_align_len;
|
---|
1414 | }
|
---|
1415 |
|
---|
1416 | size_t pull_ucs2_fstring(char *dest, const void *src)
|
---|
1417 | {
|
---|
1418 | return pull_ucs2(NULL, dest, src, sizeof(fstring), -1, STR_TERMINATE);
|
---|
1419 | }
|
---|
1420 |
|
---|
1421 | /**
|
---|
1422 | * Copy a string from a UCS2 src to a unix char * destination, allocating a buffer using talloc
|
---|
1423 | *
|
---|
1424 | * @param dest always set at least to NULL
|
---|
1425 | * @parm converted_size set to the number of bytes occupied by the string in
|
---|
1426 | * the destination on success.
|
---|
1427 | *
|
---|
1428 | * @return true if new buffer was correctly allocated, and string was
|
---|
1429 | * converted.
|
---|
1430 | **/
|
---|
1431 |
|
---|
1432 | bool pull_ucs2_talloc(TALLOC_CTX *ctx, char **dest, const smb_ucs2_t *src,
|
---|
1433 | size_t *converted_size)
|
---|
1434 | {
|
---|
1435 | size_t src_len = (strlen_w(src)+1) * sizeof(smb_ucs2_t);
|
---|
1436 |
|
---|
1437 | *dest = NULL;
|
---|
1438 | return convert_string_talloc(ctx, CH_UTF16LE, CH_UNIX, src, src_len,
|
---|
1439 | (void **)dest, converted_size, True);
|
---|
1440 | }
|
---|
1441 |
|
---|
1442 | /**
|
---|
1443 | * Copy a string from a UTF-8 src to a unix char * destination, allocating a buffer using talloc
|
---|
1444 | *
|
---|
1445 | * @param dest always set at least to NULL
|
---|
1446 | * @parm converted_size set to the number of bytes occupied by the string in
|
---|
1447 | * the destination on success.
|
---|
1448 | *
|
---|
1449 | * @return true if new buffer was correctly allocated, and string was
|
---|
1450 | * converted.
|
---|
1451 | **/
|
---|
1452 |
|
---|
1453 | bool pull_utf8_talloc(TALLOC_CTX *ctx, char **dest, const char *src,
|
---|
1454 | size_t *converted_size)
|
---|
1455 | {
|
---|
1456 | size_t src_len = strlen(src)+1;
|
---|
1457 |
|
---|
1458 | *dest = NULL;
|
---|
1459 | return convert_string_talloc(ctx, CH_UTF8, CH_UNIX, src, src_len,
|
---|
1460 | (void **)dest, converted_size, True);
|
---|
1461 | }
|
---|
1462 |
|
---|
1463 |
|
---|
1464 | /**
|
---|
1465 | * Copy a string from a DOS src to a unix char * destination, allocating a buffer using talloc
|
---|
1466 | *
|
---|
1467 | * @param dest always set at least to NULL
|
---|
1468 | * @parm converted_size set to the number of bytes occupied by the string in
|
---|
1469 | * the destination on success.
|
---|
1470 | *
|
---|
1471 | * @return true if new buffer was correctly allocated, and string was
|
---|
1472 | * converted.
|
---|
1473 | **/
|
---|
1474 |
|
---|
1475 | bool pull_ascii_talloc(TALLOC_CTX *ctx, char **dest, const char *src,
|
---|
1476 | size_t *converted_size)
|
---|
1477 | {
|
---|
1478 | size_t src_len = strlen(src)+1;
|
---|
1479 |
|
---|
1480 | *dest = NULL;
|
---|
1481 | return convert_string_talloc(ctx, CH_DOS, CH_UNIX, src, src_len,
|
---|
1482 | (void **)dest, converted_size, True);
|
---|
1483 | }
|
---|
1484 |
|
---|
1485 | /**
|
---|
1486 | Copy a string from a char* src to a unicode or ascii
|
---|
1487 | dos codepage destination choosing unicode or ascii based on the
|
---|
1488 | flags supplied
|
---|
1489 | Return the number of bytes occupied by the string in the destination.
|
---|
1490 | flags can have:
|
---|
1491 | STR_TERMINATE means include the null termination.
|
---|
1492 | STR_UPPER means uppercase in the destination.
|
---|
1493 | STR_ASCII use ascii even with unicode packet.
|
---|
1494 | STR_NOALIGN means don't do alignment.
|
---|
1495 | dest_len is the maximum length allowed in the destination. If dest_len
|
---|
1496 | is -1 then no maxiumum is used.
|
---|
1497 | **/
|
---|
1498 |
|
---|
1499 | size_t push_string_check_fn(const char *function, unsigned int line,
|
---|
1500 | void *dest, const char *src,
|
---|
1501 | size_t dest_len, int flags)
|
---|
1502 | {
|
---|
1503 | #ifdef DEVELOPER
|
---|
1504 | /* We really need to zero fill here, not clobber
|
---|
1505 | * region, as we want to ensure that valgrind thinks
|
---|
1506 | * all of the outgoing buffer has been written to
|
---|
1507 | * so a send() or write() won't trap an error.
|
---|
1508 | * JRA.
|
---|
1509 | */
|
---|
1510 | #if 0
|
---|
1511 | clobber_region(function, line, dest, dest_len);
|
---|
1512 | #else
|
---|
1513 | memset(dest, '\0', dest_len);
|
---|
1514 | #endif
|
---|
1515 | #endif
|
---|
1516 |
|
---|
1517 | if (!(flags & STR_ASCII) && (flags & STR_UNICODE)) {
|
---|
1518 | return push_ucs2(NULL, dest, src, dest_len, flags);
|
---|
1519 | }
|
---|
1520 | return push_ascii(dest, src, dest_len, flags);
|
---|
1521 | }
|
---|
1522 |
|
---|
1523 |
|
---|
1524 | /**
|
---|
1525 | Copy a string from a char* src to a unicode or ascii
|
---|
1526 | dos codepage destination choosing unicode or ascii based on the
|
---|
1527 | flags in the SMB buffer starting at base_ptr.
|
---|
1528 | Return the number of bytes occupied by the string in the destination.
|
---|
1529 | flags can have:
|
---|
1530 | STR_TERMINATE means include the null termination.
|
---|
1531 | STR_UPPER means uppercase in the destination.
|
---|
1532 | STR_ASCII use ascii even with unicode packet.
|
---|
1533 | STR_NOALIGN means don't do alignment.
|
---|
1534 | dest_len is the maximum length allowed in the destination. If dest_len
|
---|
1535 | is -1 then no maxiumum is used.
|
---|
1536 | **/
|
---|
1537 |
|
---|
1538 | size_t push_string_base(const char *function, unsigned int line,
|
---|
1539 | const char *base, uint16 flags2,
|
---|
1540 | void *dest, const char *src,
|
---|
1541 | size_t dest_len, int flags)
|
---|
1542 | {
|
---|
1543 | #ifdef DEVELOPER
|
---|
1544 | /* We really need to zero fill here, not clobber
|
---|
1545 | * region, as we want to ensure that valgrind thinks
|
---|
1546 | * all of the outgoing buffer has been written to
|
---|
1547 | * so a send() or write() won't trap an error.
|
---|
1548 | * JRA.
|
---|
1549 | */
|
---|
1550 | #if 0
|
---|
1551 | clobber_region(function, line, dest, dest_len);
|
---|
1552 | #else
|
---|
1553 | memset(dest, '\0', dest_len);
|
---|
1554 | #endif
|
---|
1555 | #endif
|
---|
1556 |
|
---|
1557 | if (!(flags & STR_ASCII) && \
|
---|
1558 | ((flags & STR_UNICODE || \
|
---|
1559 | (flags2 & FLAGS2_UNICODE_STRINGS)))) {
|
---|
1560 | return push_ucs2(base, dest, src, dest_len, flags);
|
---|
1561 | }
|
---|
1562 | return push_ascii(dest, src, dest_len, flags);
|
---|
1563 | }
|
---|
1564 |
|
---|
1565 | /**
|
---|
1566 | Copy a string from a char* src to a unicode or ascii
|
---|
1567 | dos codepage destination choosing unicode or ascii based on the
|
---|
1568 | flags supplied
|
---|
1569 | Return the number of bytes occupied by the string in the destination.
|
---|
1570 | flags can have:
|
---|
1571 | STR_TERMINATE means include the null termination.
|
---|
1572 | STR_UPPER means uppercase in the destination.
|
---|
1573 | STR_ASCII use ascii even with unicode packet.
|
---|
1574 | STR_NOALIGN means don't do alignment.
|
---|
1575 | dest_len is the maximum length allowed in the destination. If dest_len
|
---|
1576 | is -1 then no maxiumum is used.
|
---|
1577 | **/
|
---|
1578 |
|
---|
1579 | ssize_t push_string(void *dest, const char *src, size_t dest_len, int flags)
|
---|
1580 | {
|
---|
1581 | size_t ret;
|
---|
1582 | #ifdef DEVELOPER
|
---|
1583 | /* We really need to zero fill here, not clobber
|
---|
1584 | * region, as we want to ensure that valgrind thinks
|
---|
1585 | * all of the outgoing buffer has been written to
|
---|
1586 | * so a send() or write() won't trap an error.
|
---|
1587 | * JRA.
|
---|
1588 | */
|
---|
1589 | memset(dest, '\0', dest_len);
|
---|
1590 | #endif
|
---|
1591 |
|
---|
1592 | if (!(flags & STR_ASCII) && \
|
---|
1593 | (flags & STR_UNICODE)) {
|
---|
1594 | ret = push_ucs2(NULL, dest, src, dest_len, flags);
|
---|
1595 | } else {
|
---|
1596 | ret = push_ascii(dest, src, dest_len, flags);
|
---|
1597 | }
|
---|
1598 | if (ret == (size_t)-1) {
|
---|
1599 | return -1;
|
---|
1600 | }
|
---|
1601 | return ret;
|
---|
1602 | }
|
---|
1603 |
|
---|
1604 | /**
|
---|
1605 | Copy a string from a unicode or ascii source (depending on
|
---|
1606 | the packet flags) to a char* destination.
|
---|
1607 | Flags can have:
|
---|
1608 | STR_TERMINATE means the string in src is null terminated.
|
---|
1609 | STR_UNICODE means to force as unicode.
|
---|
1610 | STR_ASCII use ascii even with unicode packet.
|
---|
1611 | STR_NOALIGN means don't do alignment.
|
---|
1612 | if STR_TERMINATE is set then src_len is ignored is it is -1
|
---|
1613 | src_len is the length of the source area in bytes.
|
---|
1614 | Return the number of bytes occupied by the string in src.
|
---|
1615 | The resulting string in "dest" is always null terminated.
|
---|
1616 | **/
|
---|
1617 |
|
---|
1618 | size_t pull_string_fn(const char *function,
|
---|
1619 | unsigned int line,
|
---|
1620 | const void *base_ptr,
|
---|
1621 | uint16 smb_flags2,
|
---|
1622 | char *dest,
|
---|
1623 | const void *src,
|
---|
1624 | size_t dest_len,
|
---|
1625 | size_t src_len,
|
---|
1626 | int flags)
|
---|
1627 | {
|
---|
1628 | #ifdef DEVELOPER
|
---|
1629 | clobber_region(function, line, dest, dest_len);
|
---|
1630 | #endif
|
---|
1631 |
|
---|
1632 | if ((base_ptr == NULL) && ((flags & (STR_ASCII|STR_UNICODE)) == 0)) {
|
---|
1633 | smb_panic("No base ptr to get flg2 and neither ASCII nor "
|
---|
1634 | "UNICODE defined");
|
---|
1635 | }
|
---|
1636 |
|
---|
1637 | if (!(flags & STR_ASCII) && \
|
---|
1638 | ((flags & STR_UNICODE || \
|
---|
1639 | (smb_flags2 & FLAGS2_UNICODE_STRINGS)))) {
|
---|
1640 | return pull_ucs2(base_ptr, dest, src, dest_len, src_len, flags);
|
---|
1641 | }
|
---|
1642 | return pull_ascii(dest, src, dest_len, src_len, flags);
|
---|
1643 | }
|
---|
1644 |
|
---|
1645 | /**
|
---|
1646 | Copy a string from a unicode or ascii source (depending on
|
---|
1647 | the packet flags) to a char* destination.
|
---|
1648 | Variant that uses talloc.
|
---|
1649 | Flags can have:
|
---|
1650 | STR_TERMINATE means the string in src is null terminated.
|
---|
1651 | STR_UNICODE means to force as unicode.
|
---|
1652 | STR_ASCII use ascii even with unicode packet.
|
---|
1653 | STR_NOALIGN means don't do alignment.
|
---|
1654 | if STR_TERMINATE is set then src_len is ignored is it is -1
|
---|
1655 | src_len is the length of the source area in bytes.
|
---|
1656 | Return the number of bytes occupied by the string in src.
|
---|
1657 | The resulting string in "dest" is always null terminated.
|
---|
1658 | **/
|
---|
1659 |
|
---|
1660 | size_t pull_string_talloc_fn(const char *function,
|
---|
1661 | unsigned int line,
|
---|
1662 | TALLOC_CTX *ctx,
|
---|
1663 | const void *base_ptr,
|
---|
1664 | uint16 smb_flags2,
|
---|
1665 | char **ppdest,
|
---|
1666 | const void *src,
|
---|
1667 | size_t src_len,
|
---|
1668 | int flags)
|
---|
1669 | {
|
---|
1670 | if ((base_ptr == NULL) && ((flags & (STR_ASCII|STR_UNICODE)) == 0)) {
|
---|
1671 | smb_panic("No base ptr to get flg2 and neither ASCII nor "
|
---|
1672 | "UNICODE defined");
|
---|
1673 | }
|
---|
1674 |
|
---|
1675 | if (!(flags & STR_ASCII) && \
|
---|
1676 | ((flags & STR_UNICODE || \
|
---|
1677 | (smb_flags2 & FLAGS2_UNICODE_STRINGS)))) {
|
---|
1678 | return pull_ucs2_base_talloc(ctx,
|
---|
1679 | base_ptr,
|
---|
1680 | ppdest,
|
---|
1681 | src,
|
---|
1682 | src_len,
|
---|
1683 | flags);
|
---|
1684 | }
|
---|
1685 | return pull_ascii_base_talloc(ctx,
|
---|
1686 | ppdest,
|
---|
1687 | src,
|
---|
1688 | src_len,
|
---|
1689 | flags);
|
---|
1690 | }
|
---|
1691 |
|
---|
1692 |
|
---|
1693 | size_t align_string(const void *base_ptr, const char *p, int flags)
|
---|
1694 | {
|
---|
1695 | if (!(flags & STR_ASCII) && \
|
---|
1696 | ((flags & STR_UNICODE || \
|
---|
1697 | (SVAL(base_ptr, smb_flg2) & FLAGS2_UNICODE_STRINGS)))) {
|
---|
1698 | return ucs2_align(base_ptr, p, flags);
|
---|
1699 | }
|
---|
1700 | return 0;
|
---|
1701 | }
|
---|
1702 |
|
---|