started converting some of the only-ascii code to use srvstr_*
[sfrench/samba-autobuild/.git] / source3 / smbd / srvstr.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 3.0
4    server specific string routines
5    Copyright (C) Andrew Tridgell 2001
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #define NO_SYSLOG
23
24 #include "includes.h"
25
26 #define UNICODE_FLAG(buf) (SVAL(buf, smb_flg2) & FLAGS2_UNICODE_STRINGS)
27
28 /****************************************************************************
29 copy a string from a char* src to a unicode or ascii
30 dos code page destination choosing unicode or ascii based on the 
31 FLAGS2_UNICODE_STRINGS bit in inbuf
32 return the number of bytes occupied by the string in the destination
33 flags can have:
34   STR_TERMINATE means include the null termination
35   STR_CONVERT   means convert from unix to dos codepage
36   STR_UPPER     means uppercase in the destination
37   STR_ASCII     use ascii even with unicode servers
38 dest_len is the maximum length allowed in the destination. If dest_len
39 is -1 then no maxiumum is used
40 ****************************************************************************/
41 int srvstr_push(void *outbuf, void *dest, const char *src, int dest_len, int flags)
42 {
43         int len=0;
44
45         /* treat a pstring as "unlimited" length */
46         if (dest_len == -1) {
47                 dest_len = sizeof(pstring);
48         }
49
50         if (!(flags & STR_ASCII) && srvstr_align(outbuf, PTR_DIFF(dest, outbuf))) {
51                 *(char *)dest = 0;
52                 dest = (void *)((char *)dest + 1);
53                 dest_len--;
54                 len++;
55         }
56
57         if ((flags & STR_ASCII) || !UNICODE_FLAG(outbuf)) {
58                 /* the client doesn't want unicode */
59                 safe_strcpy(dest, src, dest_len);
60                 len = strlen(dest);
61                 if (flags & STR_TERMINATE) len++;
62                 if (flags & STR_CONVERT) unix_to_dos(dest,True);
63                 if (flags & STR_UPPER) strupper(dest);
64                 return len;
65         }
66
67         /* the server likes unicode. give it the works */
68         if (flags & STR_CONVERT) {
69                 dos_PutUniCode(dest, src, dest_len, flags & STR_TERMINATE);
70         } else {
71                 ascii_to_unistr(dest, src, dest_len);
72         }
73         if (flags & STR_UPPER) {
74                 strupper_w(dest);
75         }
76         len += strlen(src)*2;
77         if (flags & STR_TERMINATE) len += 2;
78         return len;
79 }
80
81 /****************************************************************************
82 copy a string from a unicode or ascii source (depending on flg2) 
83 to a char* destination
84 flags can have:
85   STR_CONVERT   means convert from dos to unix codepage
86   STR_TERMINATE means the string in src is null terminated
87   STR_UNICODE   means to force as unicode
88 if STR_TERMINATE is set then src_len is ignored
89 src_len is the length of the source area in bytes
90 return the number of bytes occupied by the string in src
91 ****************************************************************************/
92 int srvstr_pull(void *inbuf, char *dest, const void *src, int dest_len, int src_len, int flags)
93 {
94         int len;
95
96         if (dest_len == -1) {
97                 dest_len = sizeof(pstring);
98         }
99
100         if (!(flags & STR_ASCII) && srvstr_align(inbuf, PTR_DIFF(src, inbuf))) {
101                 src = (void *)((char *)src + 1);
102                 if (src_len > 0) src_len--;
103         }
104
105         if ((flags & STR_ASCII) || (!(flags & STR_UNICODE) && !UNICODE_FLAG(inbuf))) {
106                 /* the server doesn't want unicode */
107                 if (flags & STR_TERMINATE) {
108                         safe_strcpy(dest, src, dest_len);
109                         len = strlen(src)+1;
110                 } else {
111                         if (src_len > dest_len) src_len = dest_len;
112                         len = src_len;
113                         memcpy(dest, src, len);
114                         dest[len] = 0;
115                 }
116                 if (flags & STR_CONVERT) dos_to_unix(dest,True);
117                 return len;
118         }
119
120         if (flags & STR_TERMINATE) {
121                 unistr_to_ascii(dest, src, dest_len);
122                 len = strlen(dest)*2 + 2;
123         } else {
124                 int i, c;
125                 if (dest_len*2 < src_len) src_len = 2*dest_len;
126                 for (i=0; i < src_len; i += 2) {
127                         c = SVAL(src, i);
128                         *dest++ = c;
129                 }
130                 *dest++ = 0;
131                 len = src_len;
132         }
133         if (flags & STR_CONVERT) dos_to_unix(dest,True);
134         return len;
135 }
136
137 /****************************************************************************
138 return an alignment of either 0 or 1
139 if unicode is not negotiated then return 0
140 otherwise return 1 if offset is off
141 ****************************************************************************/
142 int srvstr_align(void *inbuf, int offset)
143 {
144         if (!UNICODE_FLAG(inbuf)) return 0;
145         return offset & 1;
146 }
147
148
149 /****************************************************************************
150 these are useful for replacing all those StrnCpy() ops for copying data
151 to/from the wire 
152 ****************************************************************************/
153
154 int srvstr_push_ascii(void *dest, const char *src, int dest_len)
155 {
156         return srvstr_push(NULL, dest, src, dest_len, 
157                            STR_ASCII|STR_CONVERT|STR_TERMINATE);
158 }
159
160 int srvstr_pull_ascii(char *dest, const void *src, int dest_len)
161 {
162         return srvstr_pull(NULL, dest, src, dest_len, -1,
163                            STR_ASCII|STR_CONVERT|STR_TERMINATE);
164 }