s3: Wrap creating the svcctl keys in a transaction
[Samba.git] / source3 / libsmb / clistr.c
blob944479c2a8f676ea30d92bb00d0af770b0354db9
1 /*
2 Unix SMB/CIFS implementation.
3 client 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"
23 size_t clistr_push_fn(struct cli_state *cli,
24 void *dest,
25 const char *src,
26 int dest_len,
27 int flags)
29 size_t buf_used = PTR_DIFF(dest, cli->outbuf);
30 if (dest_len == -1) {
31 if (((ptrdiff_t)dest < (ptrdiff_t)cli->outbuf) || (buf_used > cli->bufsize)) {
32 DEBUG(0, ("Pushing string of 'unlimited' length into non-SMB buffer!\n"));
33 return push_string_base(cli->outbuf,
34 (uint16_t)(cli_ucs2(cli) ? FLAGS2_UNICODE_STRINGS : 0),
35 dest, src, -1, flags);
37 return push_string_base(cli->outbuf,
38 (uint16_t)(cli_ucs2(cli) ? FLAGS2_UNICODE_STRINGS : 0),
39 dest, src, cli->bufsize - buf_used,
40 flags);
43 /* 'normal' push into size-specified buffer */
44 return push_string_base(cli->outbuf,
45 (uint16_t)(cli_ucs2(cli) ? FLAGS2_UNICODE_STRINGS : 0),
46 dest, src, dest_len, flags);
49 size_t clistr_pull_fn(const char *inbuf,
50 char *dest,
51 const void *src,
52 int dest_len,
53 int src_len,
54 int flags)
56 return pull_string_fn(inbuf,
57 SVAL(inbuf, smb_flg2), dest, src, dest_len,
58 src_len, flags);
61 size_t clistr_pull_talloc(TALLOC_CTX *ctx,
62 const char *base,
63 uint16_t flags2,
64 char **pp_dest,
65 const void *src,
66 int src_len,
67 int flags)
69 return pull_string_talloc(ctx,
70 base,
71 flags2,
72 pp_dest,
73 src,
74 src_len,
75 flags);
78 size_t clistr_align_out(struct cli_state *cli, const void *p, int flags)
80 return align_string(cli->outbuf, (const char *)p, flags);