Fix coverity CID-602. Possible use of uninitialized var.
[Samba.git] / source / libsmb / climessage.c
blob808190e79c7c5f1850049222e8f1fc17322e863c
1 /*
2 Unix SMB/CIFS implementation.
3 client message handling routines
4 Copyright (C) Andrew Tridgell 1994-1998
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "includes.h"
22 /****************************************************************************
23 Start a message sequence.
24 ****************************************************************************/
26 int cli_message_start_build(struct cli_state *cli, const char *host, const char *username)
28 char *p;
30 /* construct a SMBsendstrt command */
31 memset(cli->outbuf,'\0',smb_size);
32 cli_set_message(cli->outbuf,0,0,True);
33 SCVAL(cli->outbuf,smb_com,SMBsendstrt);
34 SSVAL(cli->outbuf,smb_tid,cli->cnum);
35 cli_setup_packet(cli);
37 p = smb_buf(cli->outbuf);
38 *p++ = 4;
39 p += clistr_push(cli, p, username,
40 cli->bufsize - PTR_DIFF(p,cli->outbuf), STR_ASCII|STR_TERMINATE);
41 *p++ = 4;
42 p += clistr_push(cli, p, host,
43 cli->bufsize - PTR_DIFF(p,cli->outbuf), STR_ASCII|STR_TERMINATE);
45 cli_setup_bcc(cli, p);
47 return(PTR_DIFF(p, cli->outbuf));
50 bool cli_message_start(struct cli_state *cli, const char *host, const char *username,
51 int *grp)
53 cli_message_start_build(cli, host, username);
54 cli_send_smb(cli);
56 if (!cli_receive_smb(cli)) {
57 return False;
60 if (cli_is_error(cli)) return False;
62 *grp = SVAL(cli->inbuf,smb_vwv0);
64 return True;
67 /****************************************************************************
68 Send a message
69 ****************************************************************************/
71 int cli_message_text_build(struct cli_state *cli, const char *msg, int len, int grp)
73 char *msgdos;
74 size_t lendos;
75 char *p;
77 memset(cli->outbuf,'\0',smb_size);
78 cli_set_message(cli->outbuf,1,0,True);
79 SCVAL(cli->outbuf,smb_com,SMBsendtxt);
80 SSVAL(cli->outbuf,smb_tid,cli->cnum);
81 cli_setup_packet(cli);
83 SSVAL(cli->outbuf,smb_vwv0,grp);
85 p = smb_buf(cli->outbuf);
86 *p++ = 1;
88 if (!convert_string_allocate(NULL, CH_UNIX, CH_DOS, msg, len,
89 (void **)(void *)&msgdos, &lendos, True) || !msgdos) {
90 DEBUG(3,("Conversion failed, sending message in UNIX charset\n"));
91 SSVAL(p, 0, len); p += 2;
92 if (len > cli->bufsize - PTR_DIFF(p,cli->outbuf)) {
93 return -1;
95 memcpy(p, msg, len);
96 p += len;
97 } else {
98 SSVAL(p, 0, lendos); p += 2;
99 if (lendos > cli->bufsize - PTR_DIFF(p,cli->outbuf)) {
100 return -1;
102 memcpy(p, msgdos, lendos);
103 p += lendos;
104 SAFE_FREE(msgdos);
107 cli_setup_bcc(cli, p);
109 return(PTR_DIFF(p, cli->outbuf));
112 bool cli_message_text(struct cli_state *cli, const char *msg, int len, int grp)
114 cli_message_text_build(cli, msg, len, grp);
116 cli_send_smb(cli);
118 if (!cli_receive_smb(cli)) {
119 return False;
122 if (cli_is_error(cli)) return False;
124 return True;
127 /****************************************************************************
128 End a message.
129 ****************************************************************************/
131 int cli_message_end_build(struct cli_state *cli, int grp)
133 char *p;
135 memset(cli->outbuf,'\0',smb_size);
136 cli_set_message(cli->outbuf,1,0,True);
137 SCVAL(cli->outbuf,smb_com,SMBsendend);
138 SSVAL(cli->outbuf,smb_tid,cli->cnum);
140 SSVAL(cli->outbuf,smb_vwv0,grp);
142 cli_setup_packet(cli);
144 p = smb_buf(cli->outbuf);
146 return(PTR_DIFF(p, cli->outbuf));
149 bool cli_message_end(struct cli_state *cli, int grp)
151 cli_message_end_build(cli, grp);
153 cli_send_smb(cli);
155 if (!cli_receive_smb(cli)) {
156 return False;
159 if (cli_is_error(cli)) return False;
161 return True;