[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / libsmb / climessage.c
blob1aa659c1ba3cee2547338d7dadcf43f738d05c7a
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 2 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, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "includes.h"
24 /****************************************************************************
25 start a message sequence
26 ****************************************************************************/
27 int cli_message_start_build(struct cli_state *cli, char *host, char *username)
29 char *p;
31 /* construct a SMBsendstrt command */
32 memset(cli->outbuf,'\0',smb_size);
33 set_message(cli->outbuf,0,0,True);
34 SCVAL(cli->outbuf,smb_com,SMBsendstrt);
35 SSVAL(cli->outbuf,smb_tid,cli->cnum);
36 cli_setup_packet(cli);
38 p = smb_buf(cli->outbuf);
39 *p++ = 4;
40 p += clistr_push(cli, p, username, -1, STR_ASCII|STR_TERMINATE);
41 *p++ = 4;
42 p += clistr_push(cli, p, host, -1, STR_ASCII|STR_TERMINATE);
44 cli_setup_bcc(cli, p);
46 return(PTR_DIFF(p, cli->outbuf));
49 BOOL cli_message_start(struct cli_state *cli, char *host, char *username,
50 int *grp)
52 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;
68 /****************************************************************************
69 send a message
70 ****************************************************************************/
71 int cli_message_text_build(struct cli_state *cli, char *msg, int len, int grp)
73 char *msgdos;
74 int lendos;
75 char *p;
77 memset(cli->outbuf,'\0',smb_size);
78 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 ((lendos = (int)convert_string_allocate(NULL,CH_UNIX, CH_DOS, msg,len, (void **)(void *)&msgdos, True)) < 0 || !msgdos) {
89 DEBUG(3,("Conversion failed, sending message in UNIX charset\n"));
90 SSVAL(p, 0, len); p += 2;
91 memcpy(p, msg, len);
92 p += len;
93 } else {
94 SSVAL(p, 0, lendos); p += 2;
95 memcpy(p, msgdos, lendos);
96 p += lendos;
97 SAFE_FREE(msgdos);
100 cli_setup_bcc(cli, p);
102 return(PTR_DIFF(p, cli->outbuf));
105 BOOL cli_message_text(struct cli_state *cli, char *msg, int len, int grp)
107 cli_message_text_build(cli, msg, len, grp);
109 cli_send_smb(cli);
111 if (!cli_receive_smb(cli)) {
112 return False;
115 if (cli_is_error(cli)) return False;
117 return True;
120 /****************************************************************************
121 end a message
122 ****************************************************************************/
123 int cli_message_end_build(struct cli_state *cli, int grp)
125 char *p;
127 memset(cli->outbuf,'\0',smb_size);
128 set_message(cli->outbuf,1,0,True);
129 SCVAL(cli->outbuf,smb_com,SMBsendend);
130 SSVAL(cli->outbuf,smb_tid,cli->cnum);
132 SSVAL(cli->outbuf,smb_vwv0,grp);
134 cli_setup_packet(cli);
136 p = smb_buf(cli->outbuf);
138 return(PTR_DIFF(p, cli->outbuf));
141 BOOL cli_message_end(struct cli_state *cli, int grp)
143 cli_message_end_build(cli, grp);
145 cli_send_smb(cli);
147 if (!cli_receive_smb(cli)) {
148 return False;
151 if (cli_is_error(cli)) return False;
153 return True;