util: Build samba-util without unresolved symbols.
[samba.git] / source3 / libsmb / clistr.c
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
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 3 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, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22
23 size_t clistr_push_fn(struct cli_state *cli,
24                         void *dest,
25                         const char *src,
26                         int dest_len,
27                         int flags)
28 {
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);
36                 }
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);
41         }
42
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);
47 }
48
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)
55 {
56         return pull_string_fn(inbuf,
57                               SVAL(inbuf, smb_flg2), dest, src, dest_len,
58                               src_len, flags);
59 }
60
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)
68 {
69         return pull_string_talloc(ctx,
70                                   base,
71                                   flags2,
72                                   pp_dest,
73                                   src,
74                                   src_len,
75                                   flags);
76 }
77
78 size_t clistr_align_out(struct cli_state *cli, const void *p, int flags)
79 {
80         return align_string(cli->outbuf, (const char *)p, flags);
81 }