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
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 2 of the License, or
12 (at your option) any later version.
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.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 /* We can parameterize this if someone complains.... JRA. */
28 char lp_failed_convert_char(void)
36 * @brief Character-set conversion routines built on our iconv.
38 * @note Samba's internal character set (at least in the 3.0 series)
39 * is always the same as the one for the Unix filesystem. It is
40 * <b>not</b> necessarily UTF-8 and may be different on machines that
41 * need i18n filenames to be compatible with Unix software. It does
42 * have to be a superset of ASCII. All multibyte sequences must start
43 * with a byte with the high bit set.
49 static smb_iconv_t conv_handles
[NUM_CHARSETS
][NUM_CHARSETS
];
50 static BOOL conv_silent
; /* Should we do a debug if the conversion fails ? */
53 * Return the name of a charset to give to iconv().
55 static const char *charset_name(charset_t ch
)
57 const char *ret
= NULL
;
59 if (ch
== CH_UTF16LE
) ret
= "UTF-16LE";
60 else if (ch
== CH_UTF16BE
) ret
= "UTF-16BE";
61 else if (ch
== CH_UNIX
) ret
= lp_unix_charset();
62 else if (ch
== CH_DOS
) ret
= lp_dos_charset();
63 else if (ch
== CH_DISPLAY
) ret
= lp_display_charset();
64 else if (ch
== CH_UTF8
) ret
= "UTF8";
66 #if defined(HAVE_NL_LANGINFO) && defined(CODESET)
67 if (ret
&& !strcmp(ret
, "LOCALE")) {
68 const char *ln
= NULL
;
71 setlocale(LC_ALL
, "");
73 ln
= nl_langinfo(CODESET
);
75 /* Check whether the charset name is supported
77 smb_iconv_t handle
= smb_iconv_open(ln
,"UCS-2LE");
78 if (handle
== (smb_iconv_t
) -1) {
79 DEBUG(5,("Locale charset '%s' unsupported, using ASCII instead\n", ln
));
82 DEBUG(5,("Substituting charset '%s' for LOCALE\n", ln
));
83 smb_iconv_close(handle
);
90 if (!ret
|| !*ret
) ret
= "ASCII";
94 void lazy_initialize_conv(void)
96 static int initialized
= False
;
106 * Destroy global objects allocated by init_iconv()
108 void gfree_charcnv(void)
112 for (c1
=0;c1
<NUM_CHARSETS
;c1
++) {
113 for (c2
=0;c2
<NUM_CHARSETS
;c2
++) {
114 if ( conv_handles
[c1
][c2
] ) {
115 smb_iconv_close( conv_handles
[c1
][c2
] );
116 conv_handles
[c1
][c2
] = 0;
123 * Initialize iconv conversion descriptors.
125 * This is called the first time it is needed, and also called again
126 * every time the configuration is reloaded, because the charset or
127 * codepage might have changed.
129 void init_iconv(void)
132 BOOL did_reload
= False
;
134 /* so that charset_name() works we need to get the UNIX<->UCS2 going
136 if (!conv_handles
[CH_UNIX
][CH_UTF16LE
])
137 conv_handles
[CH_UNIX
][CH_UTF16LE
] = smb_iconv_open(charset_name(CH_UTF16LE
), "ASCII");
139 if (!conv_handles
[CH_UTF16LE
][CH_UNIX
])
140 conv_handles
[CH_UTF16LE
][CH_UNIX
] = smb_iconv_open("ASCII", charset_name(CH_UTF16LE
));
142 for (c1
=0;c1
<NUM_CHARSETS
;c1
++) {
143 for (c2
=0;c2
<NUM_CHARSETS
;c2
++) {
144 const char *n1
= charset_name((charset_t
)c1
);
145 const char *n2
= charset_name((charset_t
)c2
);
146 if (conv_handles
[c1
][c2
] &&
147 strcmp(n1
, conv_handles
[c1
][c2
]->from_name
) == 0 &&
148 strcmp(n2
, conv_handles
[c1
][c2
]->to_name
) == 0)
153 if (conv_handles
[c1
][c2
])
154 smb_iconv_close(conv_handles
[c1
][c2
]);
156 conv_handles
[c1
][c2
] = smb_iconv_open(n2
,n1
);
157 if (conv_handles
[c1
][c2
] == (smb_iconv_t
)-1) {
158 DEBUG(0,("init_iconv: Conversion from %s to %s not supported\n",
159 charset_name((charset_t
)c1
), charset_name((charset_t
)c2
)));
160 if (c1
!= CH_UTF16LE
&& c1
!= CH_UTF16BE
) {
163 if (c2
!= CH_UTF16LE
&& c2
!= CH_UTF16BE
) {
166 DEBUG(0,("init_iconv: Attempting to replace with conversion from %s to %s\n",
168 conv_handles
[c1
][c2
] = smb_iconv_open(n2
,n1
);
169 if (!conv_handles
[c1
][c2
]) {
170 DEBUG(0,("init_iconv: Conversion from %s to %s failed", n1
, n2
));
171 smb_panic("init_iconv: conv_handle initialization failed");
178 /* XXX: Does this really get called every time the dos
179 * codepage changes? */
180 /* XXX: Is the did_reload test too strict? */
182 init_doschar_table();
189 * Convert string from one encoding to another, making error checking etc
190 * Slow path version - uses (slow) iconv.
192 * @param src pointer to source string (multibyte or singlebyte)
193 * @param srclen length of the source string in bytes
194 * @param dest pointer to destination string (multibyte or singlebyte)
195 * @param destlen maximal length allowed for string
196 * @param allow_bad_conv determines if a "best effort" conversion is acceptable (never returns errors)
197 * @returns the number of bytes occupied in the destination
199 * Ensure the srclen contains the terminating zero.
203 static size_t convert_string_internal(charset_t from
, charset_t to
,
204 void const *src
, size_t srclen
,
205 void *dest
, size_t destlen
, BOOL allow_bad_conv
)
209 const char* inbuf
= (const char*)src
;
210 char* outbuf
= (char*)dest
;
211 smb_iconv_t descriptor
;
213 lazy_initialize_conv();
215 descriptor
= conv_handles
[from
][to
];
217 if (srclen
== (size_t)-1) {
218 if (from
== CH_UTF16LE
|| from
== CH_UTF16BE
) {
219 srclen
= (strlen_w((const smb_ucs2_t
*)src
)+1) * 2;
221 srclen
= strlen((const char *)src
)+1;
226 if (descriptor
== (smb_iconv_t
)-1 || descriptor
== (smb_iconv_t
)0) {
228 DEBUG(0,("convert_string_internal: Conversion not supported.\n"));
237 retval
= smb_iconv(descriptor
, &inbuf
, &i_len
, &outbuf
, &o_len
);
238 if(retval
==(size_t)-1) {
239 const char *reason
="unknown error";
242 reason
="Incomplete multibyte sequence";
244 DEBUG(3,("convert_string_internal: Conversion error: %s(%s)\n",reason
,inbuf
));
249 reason
="No more room";
251 if (from
== CH_UNIX
) {
252 DEBUG(3,("E2BIG: convert_string(%s,%s): srclen=%u destlen=%u - '%s'\n",
253 charset_name(from
), charset_name(to
),
254 (unsigned int)srclen
, (unsigned int)destlen
, (const char *)src
));
256 DEBUG(3,("E2BIG: convert_string(%s,%s): srclen=%u destlen=%u\n",
257 charset_name(from
), charset_name(to
),
258 (unsigned int)srclen
, (unsigned int)destlen
));
263 reason
="Illegal multibyte sequence";
265 DEBUG(3,("convert_string_internal: Conversion error: %s(%s)\n",reason
,inbuf
));
271 DEBUG(0,("convert_string_internal: Conversion error: %s(%s)\n",reason
,inbuf
));
274 /* smb_panic(reason); */
276 return destlen
-o_len
;
281 * Conversion not supported. This is actually an error, but there are so
282 * many misconfigured iconv systems and smb.conf's out there we can't just
283 * fail. Do a very bad conversion instead.... JRA.
287 if (o_len
== 0 || i_len
== 0)
288 return destlen
- o_len
;
290 if (((from
== CH_UTF16LE
)||(from
== CH_UTF16BE
)) &&
291 ((to
!= CH_UTF16LE
)||(to
!= CH_UTF16BE
))) {
292 /* Can't convert from utf16 any endian to multibyte.
293 Replace with the default fail char.
296 return destlen
- o_len
;
298 *outbuf
= lp_failed_convert_char();
307 if (o_len
== 0 || i_len
== 0)
308 return destlen
- o_len
;
310 /* Keep trying with the next char... */
313 } else if (from
!= CH_UTF16LE
&& from
!= CH_UTF16BE
&& to
== CH_UTF16LE
) {
314 /* Can't convert to UTF16LE - just widen by adding the
315 default fail char then zero.
318 return destlen
- o_len
;
320 outbuf
[0] = lp_failed_convert_char();
329 if (o_len
== 0 || i_len
== 0)
330 return destlen
- o_len
;
332 /* Keep trying with the next char... */
335 } else if (from
!= CH_UTF16LE
&& from
!= CH_UTF16BE
&&
336 to
!= CH_UTF16LE
&& to
!= CH_UTF16BE
) {
337 /* Failed multibyte to multibyte. Just copy the default fail char and
339 outbuf
[0] = lp_failed_convert_char();
347 if (o_len
== 0 || i_len
== 0)
348 return destlen
- o_len
;
350 /* Keep trying with the next char... */
354 /* Keep compiler happy.... */
355 return destlen
- o_len
;
361 * Convert string from one encoding to another, making error checking etc
362 * Fast path version - handles ASCII first.
364 * @param src pointer to source string (multibyte or singlebyte)
365 * @param srclen length of the source string in bytes, or -1 for nul terminated.
366 * @param dest pointer to destination string (multibyte or singlebyte)
367 * @param destlen maximal length allowed for string - *NEVER* -1.
368 * @param allow_bad_conv determines if a "best effort" conversion is acceptable (never returns errors)
369 * @returns the number of bytes occupied in the destination
371 * Ensure the srclen contains the terminating zero.
373 * This function has been hand-tuned to provide a fast path.
374 * Don't change unless you really know what you are doing. JRA.
377 size_t convert_string(charset_t from
, charset_t to
,
378 void const *src
, size_t srclen
,
379 void *dest
, size_t destlen
, BOOL allow_bad_conv
)
382 * NB. We deliberately don't do a strlen here if srclen == -1.
383 * This is very expensive over millions of calls and is taken
384 * care of in the slow path in convert_string_internal. JRA.
388 SMB_ASSERT(destlen
!= (size_t)-1);
394 if (from
!= CH_UTF16LE
&& from
!= CH_UTF16BE
&& to
!= CH_UTF16LE
&& to
!= CH_UTF16BE
) {
395 const unsigned char *p
= (const unsigned char *)src
;
396 unsigned char *q
= (unsigned char *)dest
;
397 size_t slen
= srclen
;
398 size_t dlen
= destlen
;
399 unsigned char lastp
= '\0';
402 /* If all characters are ascii, fast path here. */
403 while (slen
&& dlen
) {
404 if ((lastp
= *p
) <= 0x7f) {
406 if (slen
!= (size_t)-1) {
414 #ifdef BROKEN_UNICODE_COMPOSE_CHARACTERS
417 return retval
+ convert_string_internal(from
, to
, p
, slen
, q
, dlen
, allow_bad_conv
);
422 /* Even if we fast path we should note if we ran out of room. */
423 if (((slen
!= (size_t)-1) && slen
) ||
424 ((slen
== (size_t)-1) && lastp
)) {
429 } else if (from
== CH_UTF16LE
&& to
!= CH_UTF16LE
) {
430 const unsigned char *p
= (const unsigned char *)src
;
431 unsigned char *q
= (unsigned char *)dest
;
433 size_t slen
= srclen
;
434 size_t dlen
= destlen
;
435 unsigned char lastp
= '\0';
437 /* If all characters are ascii, fast path here. */
438 while (((slen
== (size_t)-1) || (slen
>= 2)) && dlen
) {
439 if (((lastp
= *p
) <= 0x7f) && (p
[1] == 0)) {
441 if (slen
!= (size_t)-1) {
450 #ifdef BROKEN_UNICODE_COMPOSE_CHARACTERS
453 return retval
+ convert_string_internal(from
, to
, p
, slen
, q
, dlen
, allow_bad_conv
);
458 /* Even if we fast path we should note if we ran out of room. */
459 if (((slen
!= (size_t)-1) && slen
) ||
460 ((slen
== (size_t)-1) && lastp
)) {
465 } else if (from
!= CH_UTF16LE
&& from
!= CH_UTF16BE
&& to
== CH_UTF16LE
) {
466 const unsigned char *p
= (const unsigned char *)src
;
467 unsigned char *q
= (unsigned char *)dest
;
469 size_t slen
= srclen
;
470 size_t dlen
= destlen
;
471 unsigned char lastp
= '\0';
473 /* If all characters are ascii, fast path here. */
474 while (slen
&& (dlen
>= 2)) {
475 if ((lastp
= *p
) <= 0x7F) {
478 if (slen
!= (size_t)-1) {
486 #ifdef BROKEN_UNICODE_COMPOSE_CHARACTERS
489 return retval
+ convert_string_internal(from
, to
, p
, slen
, q
, dlen
, allow_bad_conv
);
494 /* Even if we fast path we should note if we ran out of room. */
495 if (((slen
!= (size_t)-1) && slen
) ||
496 ((slen
== (size_t)-1) && lastp
)) {
503 #ifdef BROKEN_UNICODE_COMPOSE_CHARACTERS
506 return convert_string_internal(from
, to
, src
, srclen
, dest
, destlen
, allow_bad_conv
);
510 * Convert between character sets, allocating a new buffer for the result.
512 * @param ctx TALLOC_CTX to use to allocate with. If NULL use malloc.
513 * @param srclen length of source buffer.
514 * @param dest always set at least to NULL
515 * @note -1 is not accepted for srclen.
517 * @returns Size in bytes of the converted string; or -1 in case of error.
519 * Ensure the srclen contains the terminating zero.
521 * I hate the goto's in this function. It's embarressing.....
522 * There has to be a cleaner way to do this. JRA.
525 size_t convert_string_allocate(TALLOC_CTX
*ctx
, charset_t from
, charset_t to
,
526 void const *src
, size_t srclen
, void *dst
, BOOL allow_bad_conv
)
528 size_t i_len
, o_len
, destlen
= MAX(srclen
, 512);
530 const char *inbuf
= (const char *)src
;
531 char *outbuf
= NULL
, *ob
= NULL
;
532 smb_iconv_t descriptor
;
533 void **dest
= (void **)dst
;
537 if (src
== NULL
|| srclen
== (size_t)-1)
542 lazy_initialize_conv();
544 descriptor
= conv_handles
[from
][to
];
546 if (descriptor
== (smb_iconv_t
)-1 || descriptor
== (smb_iconv_t
)0) {
548 DEBUG(0,("convert_string_allocate: Conversion not supported.\n"));
554 if ((destlen
*2) < destlen
) {
555 /* wrapped ! abort. */
557 DEBUG(0, ("convert_string_allocate: destlen wrapped !\n"));
562 destlen
= destlen
* 2;
566 ob
= (char *)TALLOC_REALLOC(ctx
, ob
, destlen
);
568 ob
= (char *)SMB_REALLOC(ob
, destlen
);
572 DEBUG(0, ("convert_string_allocate: realloc failed!\n"));
581 retval
= smb_iconv(descriptor
,
584 if(retval
== (size_t)-1) {
585 const char *reason
="unknown error";
588 reason
="Incomplete multibyte sequence";
590 DEBUG(3,("convert_string_allocate: Conversion error: %s(%s)\n",reason
,inbuf
));
597 reason
="Illegal multibyte sequence";
599 DEBUG(3,("convert_string_allocate: Conversion error: %s(%s)\n",reason
,inbuf
));
605 DEBUG(0,("Conversion error: %s(%s)\n",reason
,inbuf
));
606 /* smb_panic(reason); */
612 destlen
= destlen
- o_len
;
614 ob
= (char *)TALLOC_REALLOC(ctx
,ob
,destlen
);
616 ob
= (char *)SMB_REALLOC(ob
,destlen
);
619 if (destlen
&& !ob
) {
620 DEBUG(0, ("convert_string_allocate: out of memory!\n"));
630 * Conversion not supported. This is actually an error, but there are so
631 * many misconfigured iconv systems and smb.conf's out there we can't just
632 * fail. Do a very bad conversion instead.... JRA.
636 if (o_len
== 0 || i_len
== 0)
639 if (((from
== CH_UTF16LE
)||(from
== CH_UTF16BE
)) &&
640 ((to
!= CH_UTF16LE
)||(to
!= CH_UTF16BE
))) {
641 /* Can't convert from utf16 any endian to multibyte.
642 Replace with the default fail char.
649 *outbuf
= lp_failed_convert_char();
658 if (o_len
== 0 || i_len
== 0)
661 /* Keep trying with the next char... */
664 } else if (from
!= CH_UTF16LE
&& from
!= CH_UTF16BE
&& to
== CH_UTF16LE
) {
665 /* Can't convert to UTF16LE - just widen by adding the
666 default fail char then zero.
671 outbuf
[0] = lp_failed_convert_char();
680 if (o_len
== 0 || i_len
== 0)
683 /* Keep trying with the next char... */
686 } else if (from
!= CH_UTF16LE
&& from
!= CH_UTF16BE
&&
687 to
!= CH_UTF16LE
&& to
!= CH_UTF16BE
) {
688 /* Failed multibyte to multibyte. Just copy the default fail char and
690 outbuf
[0] = lp_failed_convert_char();
698 if (o_len
== 0 || i_len
== 0)
701 /* Keep trying with the next char... */
705 /* Keep compiler happy.... */
712 * Convert between character sets, allocating a new buffer using talloc for the result.
714 * @param srclen length of source buffer.
715 * @param dest always set at least to NULL
716 * @note -1 is not accepted for srclen.
718 * @returns Size in bytes of the converted string; or -1 in case of error.
720 size_t convert_string_talloc(TALLOC_CTX
*ctx
, charset_t from
, charset_t to
,
721 void const *src
, size_t srclen
, void *dst
,
724 void **dest
= (void **)dst
;
728 dest_len
=convert_string_allocate(ctx
, from
, to
, src
, srclen
, dest
, allow_bad_conv
);
729 if (dest_len
== (size_t)-1)
736 size_t unix_strupper(const char *src
, size_t srclen
, char *dest
, size_t destlen
)
741 size
= push_ucs2_allocate(&buffer
, src
);
742 if (size
== (size_t)-1) {
743 smb_panic("failed to create UCS2 buffer");
745 if (!strupper_w(buffer
) && (dest
== src
)) {
750 size
= convert_string(CH_UTF16LE
, CH_UNIX
, buffer
, size
, dest
, destlen
, True
);
756 strdup() a unix string to upper case.
760 char *strdup_upper(const char *s
)
763 const unsigned char *p
= (const unsigned char *)s
;
764 unsigned char *q
= (unsigned char *)out_buffer
;
766 /* this is quite a common operation, so we want it to be
767 fast. We optimise for the ascii case, knowing that all our
768 supported multi-byte character sets are ascii-compatible
769 (ie. they match for the first 128 chars) */
774 *q
++ = toupper_ascii(*p
);
778 if (p
- ( const unsigned char *)s
>= sizeof(pstring
))
786 size
= convert_string(CH_UNIX
, CH_UTF16LE
, s
, -1, buffer
, sizeof(buffer
), True
);
787 if (size
== (size_t)-1) {
793 size
= convert_string(CH_UTF16LE
, CH_UNIX
, buffer
, -1, out_buffer
, sizeof(out_buffer
), True
);
794 if (size
== (size_t)-1) {
799 return SMB_STRDUP(out_buffer
);
802 size_t unix_strlower(const char *src
, size_t srclen
, char *dest
, size_t destlen
)
805 smb_ucs2_t
*buffer
= NULL
;
807 size
= convert_string_allocate(NULL
, CH_UNIX
, CH_UTF16LE
, src
, srclen
,
808 (void **)(void *)&buffer
, True
);
809 if (size
== (size_t)-1 || !buffer
) {
810 smb_panic("failed to create UCS2 buffer");
812 if (!strlower_w(buffer
) && (dest
== src
)) {
816 size
= convert_string(CH_UTF16LE
, CH_UNIX
, buffer
, size
, dest
, destlen
, True
);
822 strdup() a unix string to lower case.
825 char *strdup_lower(const char *s
)
828 smb_ucs2_t
*buffer
= NULL
;
831 size
= push_ucs2_allocate(&buffer
, s
);
832 if (size
== -1 || !buffer
) {
838 size
= pull_ucs2_allocate(&out_buffer
, buffer
);
841 if (size
== (size_t)-1) {
848 static size_t ucs2_align(const void *base_ptr
, const void *p
, int flags
)
850 if (flags
& (STR_NOALIGN
|STR_ASCII
))
852 return PTR_DIFF(p
, base_ptr
) & 1;
857 * Copy a string from a char* unix src to a dos codepage string destination.
859 * @return the number of bytes occupied by the string in the destination.
861 * @param flags can include
863 * <dt>STR_TERMINATE</dt> <dd>means include the null termination</dd>
864 * <dt>STR_UPPER</dt> <dd>means uppercase in the destination</dd>
867 * @param dest_len the maximum length in bytes allowed in the
868 * destination. If @p dest_len is -1 then no maximum is used.
870 size_t push_ascii(void *dest
, const char *src
, size_t dest_len
, int flags
)
872 size_t src_len
= strlen(src
);
875 /* treat a pstring as "unlimited" length */
876 if (dest_len
== (size_t)-1)
877 dest_len
= sizeof(pstring
);
879 if (flags
& STR_UPPER
) {
880 pstrcpy(tmpbuf
, src
);
885 if (flags
& (STR_TERMINATE
| STR_TERMINATE_ASCII
))
888 return convert_string(CH_UNIX
, CH_DOS
, src
, src_len
, dest
, dest_len
, True
);
891 size_t push_ascii_fstring(void *dest
, const char *src
)
893 return push_ascii(dest
, src
, sizeof(fstring
), STR_TERMINATE
);
896 size_t push_ascii_pstring(void *dest
, const char *src
)
898 return push_ascii(dest
, src
, sizeof(pstring
), STR_TERMINATE
);
901 /********************************************************************
902 Push an nstring - ensure null terminated. Written by
903 moriyama@miraclelinux.com (MORIYAMA Masayuki).
904 ********************************************************************/
906 size_t push_ascii_nstring(void *dest
, const char *src
)
908 size_t i
, buffer_len
, dest_len
;
912 buffer_len
= push_ucs2_allocate(&buffer
, src
);
913 if (buffer_len
== (size_t)-1) {
914 smb_panic("failed to create UCS2 buffer");
917 /* We're using buffer_len below to count ucs2 characters, not bytes. */
918 buffer_len
/= sizeof(smb_ucs2_t
);
921 for (i
= 0; buffer
[i
] != 0 && (i
< buffer_len
); i
++) {
922 unsigned char mb
[10];
923 /* Convert one smb_ucs2_t character at a time. */
924 size_t mb_len
= convert_string(CH_UTF16LE
, CH_DOS
, buffer
+i
, sizeof(smb_ucs2_t
), mb
, sizeof(mb
), False
);
925 if ((mb_len
!= (size_t)-1) && (dest_len
+ mb_len
<= MAX_NETBIOSNAME_LEN
- 1)) {
926 memcpy((char *)dest
+ dest_len
, mb
, mb_len
);
933 ((char *)dest
)[dest_len
] = '\0';
941 * Copy a string from a dos codepage source to a unix char* destination.
943 * The resulting string in "dest" is always null terminated.
945 * @param flags can have:
947 * <dt>STR_TERMINATE</dt>
948 * <dd>STR_TERMINATE means the string in @p src
949 * is null terminated, and src_len is ignored.</dd>
952 * @param src_len is the length of the source area in bytes.
953 * @returns the number of bytes occupied by the string in @p src.
955 size_t pull_ascii(char *dest
, const void *src
, size_t dest_len
, size_t src_len
, int flags
)
959 if (dest_len
== (size_t)-1)
960 dest_len
= sizeof(pstring
);
962 if (flags
& STR_TERMINATE
) {
963 if (src_len
== (size_t)-1) {
964 src_len
= strlen((const char *)src
) + 1;
966 size_t len
= strnlen((const char *)src
, src_len
);
973 ret
= convert_string(CH_DOS
, CH_UNIX
, src
, src_len
, dest
, dest_len
, True
);
974 if (ret
== (size_t)-1) {
979 if (dest_len
&& ret
) {
980 /* Did we already process the terminating zero ? */
981 if (dest
[MIN(ret
-1, dest_len
-1)] != 0) {
982 dest
[MIN(ret
, dest_len
-1)] = 0;
991 size_t pull_ascii_pstring(char *dest
, const void *src
)
993 return pull_ascii(dest
, src
, sizeof(pstring
), -1, STR_TERMINATE
);
996 size_t pull_ascii_fstring(char *dest
, const void *src
)
998 return pull_ascii(dest
, src
, sizeof(fstring
), -1, STR_TERMINATE
);
1001 /* When pulling an nstring it can expand into a larger size (dos cp -> utf8). Cope with this. */
1003 size_t pull_ascii_nstring(char *dest
, size_t dest_len
, const void *src
)
1005 return pull_ascii(dest
, src
, dest_len
, sizeof(nstring
)-1, STR_TERMINATE
);
1009 * Copy a string from a char* src to a unicode destination.
1011 * @returns the number of bytes occupied by the string in the destination.
1013 * @param flags can have:
1016 * <dt>STR_TERMINATE <dd>means include the null termination.
1017 * <dt>STR_UPPER <dd>means uppercase in the destination.
1018 * <dt>STR_NOALIGN <dd>means don't do alignment.
1021 * @param dest_len is the maximum length allowed in the
1022 * destination. If dest_len is -1 then no maxiumum is used.
1025 size_t push_ucs2(const void *base_ptr
, void *dest
, const char *src
, size_t dest_len
, int flags
)
1031 /* treat a pstring as "unlimited" length */
1032 if (dest_len
== (size_t)-1)
1033 dest_len
= sizeof(pstring
);
1035 if (flags
& STR_TERMINATE
)
1036 src_len
= (size_t)-1;
1038 src_len
= strlen(src
);
1040 if (ucs2_align(base_ptr
, dest
, flags
)) {
1042 dest
= (void *)((char *)dest
+ 1);
1048 /* ucs2 is always a multiple of 2 bytes */
1051 ret
= convert_string(CH_UNIX
, CH_UTF16LE
, src
, src_len
, dest
, dest_len
, True
);
1052 if (ret
== (size_t)-1) {
1058 if (flags
& STR_UPPER
) {
1059 smb_ucs2_t
*dest_ucs2
= (smb_ucs2_t
*)dest
;
1062 /* We check for i < (ret / 2) below as the dest string isn't null
1063 terminated if STR_TERMINATE isn't set. */
1065 for (i
= 0; i
< (ret
/ 2) && i
< (dest_len
/ 2) && dest_ucs2
[i
]; i
++) {
1066 smb_ucs2_t v
= toupper_w(dest_ucs2
[i
]);
1067 if (v
!= dest_ucs2
[i
]) {
1078 * Copy a string from a unix char* src to a UCS2 destination,
1079 * allocating a buffer using talloc().
1081 * @param dest always set at least to NULL
1083 * @returns The number of bytes occupied by the string in the destination
1084 * or -1 in case of error.
1086 size_t push_ucs2_talloc(TALLOC_CTX
*ctx
, smb_ucs2_t
**dest
, const char *src
)
1088 size_t src_len
= strlen(src
)+1;
1091 return convert_string_talloc(ctx
, CH_UNIX
, CH_UTF16LE
, src
, src_len
, (void **)dest
, True
);
1096 * Copy a string from a unix char* src to a UCS2 destination, allocating a buffer
1098 * @param dest always set at least to NULL
1100 * @returns The number of bytes occupied by the string in the destination
1101 * or -1 in case of error.
1104 size_t push_ucs2_allocate(smb_ucs2_t
**dest
, const char *src
)
1106 size_t src_len
= strlen(src
)+1;
1109 return convert_string_allocate(NULL
, CH_UNIX
, CH_UTF16LE
, src
, src_len
, (void **)dest
, True
);
1113 Copy a string from a char* src to a UTF-8 destination.
1114 Return the number of bytes occupied by the string in the destination
1116 STR_TERMINATE means include the null termination
1117 STR_UPPER means uppercase in the destination
1118 dest_len is the maximum length allowed in the destination. If dest_len
1119 is -1 then no maxiumum is used.
1122 static size_t push_utf8(void *dest
, const char *src
, size_t dest_len
, int flags
)
1124 size_t src_len
= strlen(src
);
1127 /* treat a pstring as "unlimited" length */
1128 if (dest_len
== (size_t)-1)
1129 dest_len
= sizeof(pstring
);
1131 if (flags
& STR_UPPER
) {
1132 pstrcpy(tmpbuf
, src
);
1137 if (flags
& STR_TERMINATE
)
1140 return convert_string(CH_UNIX
, CH_UTF8
, src
, src_len
, dest
, dest_len
, True
);
1143 size_t push_utf8_fstring(void *dest
, const char *src
)
1145 return push_utf8(dest
, src
, sizeof(fstring
), STR_TERMINATE
);
1149 * Copy a string from a unix char* src to a UTF-8 destination, allocating a buffer using talloc
1151 * @param dest always set at least to NULL
1153 * @returns The number of bytes occupied by the string in the destination
1156 size_t push_utf8_talloc(TALLOC_CTX
*ctx
, char **dest
, const char *src
)
1158 size_t src_len
= strlen(src
)+1;
1161 return convert_string_talloc(ctx
, CH_UNIX
, CH_UTF8
, src
, src_len
, (void**)dest
, True
);
1165 * Copy a string from a unix char* src to a UTF-8 destination, allocating a buffer
1167 * @param dest always set at least to NULL
1169 * @returns The number of bytes occupied by the string in the destination
1172 size_t push_utf8_allocate(char **dest
, const char *src
)
1174 size_t src_len
= strlen(src
)+1;
1177 return convert_string_allocate(NULL
, CH_UNIX
, CH_UTF8
, src
, src_len
, (void **)dest
, True
);
1181 Copy a string from a ucs2 source to a unix char* destination.
1183 STR_TERMINATE means the string in src is null terminated.
1184 STR_NOALIGN means don't try to align.
1185 if STR_TERMINATE is set then src_len is ignored if it is -1.
1186 src_len is the length of the source area in bytes
1187 Return the number of bytes occupied by the string in src.
1188 The resulting string in "dest" is always null terminated.
1191 size_t pull_ucs2(const void *base_ptr
, char *dest
, const void *src
, size_t dest_len
, size_t src_len
, int flags
)
1195 if (dest_len
== (size_t)-1)
1196 dest_len
= sizeof(pstring
);
1198 if (ucs2_align(base_ptr
, src
, flags
)) {
1199 src
= (const void *)((const char *)src
+ 1);
1200 if (src_len
!= (size_t)-1)
1204 if (flags
& STR_TERMINATE
) {
1205 /* src_len -1 is the default for null terminated strings. */
1206 if (src_len
!= (size_t)-1) {
1207 size_t len
= strnlen_w((const smb_ucs2_t
*)src
,
1209 if (len
< src_len
/2)
1215 /* ucs2 is always a multiple of 2 bytes */
1216 if (src_len
!= (size_t)-1)
1219 ret
= convert_string(CH_UTF16LE
, CH_UNIX
, src
, src_len
, dest
, dest_len
, True
);
1220 if (ret
== (size_t)-1) {
1224 if (src_len
== (size_t)-1)
1227 if (dest_len
&& ret
) {
1228 /* Did we already process the terminating zero ? */
1229 if (dest
[MIN(ret
-1, dest_len
-1)] != 0) {
1230 dest
[MIN(ret
, dest_len
-1)] = 0;
1239 size_t pull_ucs2_pstring(char *dest
, const void *src
)
1241 return pull_ucs2(NULL
, dest
, src
, sizeof(pstring
), -1, STR_TERMINATE
);
1244 size_t pull_ucs2_fstring(char *dest
, const void *src
)
1246 return pull_ucs2(NULL
, dest
, src
, sizeof(fstring
), -1, STR_TERMINATE
);
1250 * Copy a string from a UCS2 src to a unix char * destination, allocating a buffer using talloc
1252 * @param dest always set at least to NULL
1254 * @returns The number of bytes occupied by the string in the destination
1257 size_t pull_ucs2_talloc(TALLOC_CTX
*ctx
, char **dest
, const smb_ucs2_t
*src
)
1259 size_t src_len
= (strlen_w(src
)+1) * sizeof(smb_ucs2_t
);
1261 return convert_string_talloc(ctx
, CH_UTF16LE
, CH_UNIX
, src
, src_len
, (void **)dest
, True
);
1265 * Copy a string from a UCS2 src to a unix char * destination, allocating a buffer
1267 * @param dest always set at least to NULL
1269 * @returns The number of bytes occupied by the string in the destination
1272 size_t pull_ucs2_allocate(char **dest
, const smb_ucs2_t
*src
)
1274 size_t src_len
= (strlen_w(src
)+1) * sizeof(smb_ucs2_t
);
1276 return convert_string_allocate(NULL
, CH_UTF16LE
, CH_UNIX
, src
, src_len
, (void **)dest
, True
);
1280 * Copy a string from a UTF-8 src to a unix char * destination, allocating a buffer using talloc
1282 * @param dest always set at least to NULL
1284 * @returns The number of bytes occupied by the string in the destination
1287 size_t pull_utf8_talloc(TALLOC_CTX
*ctx
, char **dest
, const char *src
)
1289 size_t src_len
= strlen(src
)+1;
1291 return convert_string_talloc(ctx
, CH_UTF8
, CH_UNIX
, src
, src_len
, (void **)dest
, True
);
1295 * Copy a string from a UTF-8 src to a unix char * destination, allocating a buffer
1297 * @param dest always set at least to NULL
1299 * @returns The number of bytes occupied by the string in the destination
1302 size_t pull_utf8_allocate(char **dest
, const char *src
)
1304 size_t src_len
= strlen(src
)+1;
1306 return convert_string_allocate(NULL
, CH_UTF8
, CH_UNIX
, src
, src_len
, (void **)dest
, True
);
1310 * Copy a string from a DOS src to a unix char * destination, allocating a buffer using talloc
1312 * @param dest always set at least to NULL
1314 * @returns The number of bytes occupied by the string in the destination
1317 size_t pull_ascii_talloc(TALLOC_CTX
*ctx
, char **dest
, const char *src
)
1319 size_t src_len
= strlen(src
)+1;
1321 return convert_string_talloc(ctx
, CH_DOS
, CH_UNIX
, src
, src_len
, (void **)dest
, True
);
1325 Copy a string from a char* src to a unicode or ascii
1326 dos codepage destination choosing unicode or ascii based on the
1327 flags in the SMB buffer starting at base_ptr.
1328 Return the number of bytes occupied by the string in the destination.
1330 STR_TERMINATE means include the null termination.
1331 STR_UPPER means uppercase in the destination.
1332 STR_ASCII use ascii even with unicode packet.
1333 STR_NOALIGN means don't do alignment.
1334 dest_len is the maximum length allowed in the destination. If dest_len
1335 is -1 then no maxiumum is used.
1338 size_t push_string_fn(const char *function
, unsigned int line
, const void *base_ptr
, void *dest
, const char *src
, size_t dest_len
, int flags
)
1341 /* We really need to zero fill here, not clobber
1342 * region, as we want to ensure that valgrind thinks
1343 * all of the outgoing buffer has been written to
1344 * so a send() or write() won't trap an error.
1348 if (dest_len
!= (size_t)-1)
1349 clobber_region(function
, line
, dest
, dest_len
);
1351 if (dest_len
!= (size_t)-1)
1352 memset(dest
, '\0', dest_len
);
1356 if (!(flags
& STR_ASCII
) && \
1357 ((flags
& STR_UNICODE
|| \
1358 (SVAL(base_ptr
, smb_flg2
) & FLAGS2_UNICODE_STRINGS
)))) {
1359 return push_ucs2(base_ptr
, dest
, src
, dest_len
, flags
);
1361 return push_ascii(dest
, src
, dest_len
, flags
);
1366 Copy a string from a unicode or ascii source (depending on
1367 the packet flags) to a char* destination.
1369 STR_TERMINATE means the string in src is null terminated.
1370 STR_UNICODE means to force as unicode.
1371 STR_ASCII use ascii even with unicode packet.
1372 STR_NOALIGN means don't do alignment.
1373 if STR_TERMINATE is set then src_len is ignored is it is -1
1374 src_len is the length of the source area in bytes.
1375 Return the number of bytes occupied by the string in src.
1376 The resulting string in "dest" is always null terminated.
1379 size_t pull_string_fn(const char *function
, unsigned int line
, const void *base_ptr
, char *dest
, const void *src
, size_t dest_len
, size_t src_len
, int flags
)
1382 if (dest_len
!= (size_t)-1)
1383 clobber_region(function
, line
, dest
, dest_len
);
1386 if (!(flags
& STR_ASCII
) && \
1387 ((flags
& STR_UNICODE
|| \
1388 (SVAL(base_ptr
, smb_flg2
) & FLAGS2_UNICODE_STRINGS
)))) {
1389 return pull_ucs2(base_ptr
, dest
, src
, dest_len
, src_len
, flags
);
1391 return pull_ascii(dest
, src
, dest_len
, src_len
, flags
);
1394 size_t align_string(const void *base_ptr
, const char *p
, int flags
)
1396 if (!(flags
& STR_ASCII
) && \
1397 ((flags
& STR_UNICODE
|| \
1398 (SVAL(base_ptr
, smb_flg2
) & FLAGS2_UNICODE_STRINGS
)))) {
1399 return ucs2_align(base_ptr
, p
, flags
);
1405 Return the unicode codepoint for the next multi-byte CH_UNIX character
1406 in the string. The unicode codepoint (codepoint_t) is an unsinged 32 bit value.
1408 Also return the number of bytes consumed (which tells the caller
1409 how many bytes to skip to get to the next CH_UNIX character).
1411 Return INVALID_CODEPOINT if the next character cannot be converted.
1414 codepoint_t
next_codepoint(const char *str
, size_t *size
)
1416 /* It cannot occupy more than 4 bytes in UTF16 format */
1418 smb_iconv_t descriptor
;
1424 if ((str
[0] & 0x80) == 0) {
1426 return (codepoint_t
)str
[0];
1429 /* We assume that no multi-byte character can take
1430 more than 5 bytes. This is OK as we only
1431 support codepoints up to 1M */
1433 ilen_orig
= strnlen(str
, 5);
1436 lazy_initialize_conv();
1438 descriptor
= conv_handles
[CH_UNIX
][CH_UTF16LE
];
1439 if (descriptor
== (smb_iconv_t
)-1 || descriptor
== (smb_iconv_t
)0) {
1441 return INVALID_CODEPOINT
;
1444 /* This looks a little strange, but it is needed to cope
1445 with codepoints above 64k which are encoded as per RFC2781. */
1447 outbuf
= (char *)buf
;
1448 smb_iconv(descriptor
, &str
, &ilen
, &outbuf
, &olen
);
1450 /* We failed to convert to a 2 byte character.
1451 See if we can convert to a 4 UTF16-LE byte char encoding.
1454 outbuf
= (char *)buf
;
1455 smb_iconv(descriptor
, &str
, &ilen
, &outbuf
, &olen
);
1457 /* We didn't convert any bytes */
1459 return INVALID_CODEPOINT
;
1466 *size
= ilen_orig
- ilen
;
1469 /* 2 byte, UTF16-LE encoded value. */
1470 return (codepoint_t
)SVAL(buf
, 0);
1473 /* Decode a 4 byte UTF16-LE character manually.
1474 See RFC2871 for the encoding machanism.
1476 codepoint_t w1
= SVAL(buf
,0) & ~0xD800;
1477 codepoint_t w2
= SVAL(buf
,2) & ~0xDC00;
1479 return (codepoint_t
)0x10000 +
1483 /* no other length is valid */
1484 return INVALID_CODEPOINT
;