[GLUE] Rsync SAMBA_3_2_0 SVN r25598 in order to create the v3-2-test branch.
[Samba/gebeck_regimport.git] / source3 / smbd / srvstr.c
blob68e61033ae1a30b482073a53ca62fb534a52afef
1 /*
2 Unix SMB/CIFS implementation.
3 server specific string routines
4 Copyright (C) Andrew Tridgell 2001
5 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2003
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 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 extern int max_send;
24 /* Make sure we can't write a string past the end of the buffer */
26 size_t srvstr_push_fn(const char *function, unsigned int line,
27 const char *base_ptr, uint16 smb_flags2, void *dest,
28 const char *src, int dest_len, int flags)
30 size_t buf_used = PTR_DIFF(dest, base_ptr);
31 if (dest_len == -1) {
32 if (((ptrdiff_t)dest < (ptrdiff_t)base_ptr) || (buf_used > (size_t)max_send)) {
33 #if 0
34 DEBUG(0, ("Pushing string of 'unlimited' length into non-SMB buffer!\n"));
35 #endif
36 return push_string_fn(function, line, base_ptr,
37 smb_flags2, dest, src, -1,
38 flags);
40 return push_string_fn(function, line, base_ptr, smb_flags2,
41 dest, src, max_send - buf_used, flags);
44 /* 'normal' push into size-specified buffer */
45 return push_string_fn(function, line, base_ptr, smb_flags2, dest, src,
46 dest_len, flags);
49 /*******************************************************************
50 Add a string to the end of a smb_buf, adjusting bcc and smb_len.
51 Return the bytes added
52 ********************************************************************/
54 ssize_t message_push_string(uint8 **outbuf, const char *str, int flags)
56 size_t buf_size = smb_len(*outbuf) + 4;
57 size_t grow_size;
58 size_t result;
59 uint8 *tmp;
62 * We need to over-allocate, now knowing what srvstr_push will
63 * actually use. This is very generous by incorporating potential
64 * padding, the terminating 0 and at most 4 chars per UTF-16 code
65 * point.
67 grow_size = (strlen(str) + 2) * 4;
69 if (!(tmp = TALLOC_REALLOC_ARRAY(NULL, *outbuf, uint8,
70 buf_size + grow_size))) {
71 DEBUG(0, ("talloc failed\n"));
72 return -1;
75 result = srvstr_push((char *)tmp, SVAL(tmp, smb_flg2),
76 tmp + buf_size, str, grow_size, flags);
78 if (result == (size_t)-1) {
79 DEBUG(0, ("srvstr_push failed\n"));
80 return -1;
82 set_message_bcc((char *)tmp, smb_buflen(tmp) + result);
84 *outbuf = tmp;
86 return result;