2 Unix SMB/Netbios implementation.
4 SMB client generic functions
5 Copyright (C) Andrew Tridgell 1994-1998
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 2 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, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 * Change the port number used to call on
29 int cli_set_port(struct cli_state
*cli
, int port
)
35 /****************************************************************************
37 ****************************************************************************/
38 BOOL
cli_receive_smb(struct cli_state
*cli
)
42 /* fd == -1 causes segfaults -- Tom (tom@ninja.nl) */
43 if (cli
->fd
== -1) return False
;
46 ret
= client_receive_smb(cli
->fd
,cli
->inbuf
,cli
->timeout
);
49 /* it might be an oplock break request */
50 if (!(CVAL(cli
->inbuf
, smb_flg
) & FLAG_REPLY
) &&
51 CVAL(cli
->inbuf
,smb_com
) == SMBlockingX
&&
52 SVAL(cli
->inbuf
,smb_vwv6
) == 0 &&
53 SVAL(cli
->inbuf
,smb_vwv7
) == 0) {
54 if (cli
->oplock_handler
) {
55 int fnum
= SVAL(cli
->inbuf
,smb_vwv2
);
56 unsigned char level
= CVAL(cli
->inbuf
,smb_vwv3
+1);
57 if (!cli
->oplock_handler(cli
, fnum
, level
)) return False
;
59 /* try to prevent loops */
60 CVAL(cli
->inbuf
,smb_com
) = 0xFF;
65 /* If the server is not responding, note that now */
75 /****************************************************************************
77 ****************************************************************************/
79 BOOL
cli_send_smb(struct cli_state
*cli
)
85 /* fd == -1 causes segfaults -- Tom (tom@ninja.nl) */
86 if (cli
->fd
== -1) return False
;
88 len
= smb_len(cli
->outbuf
) + 4;
90 while (nwritten
< len
) {
91 ret
= write_socket(cli
->fd
,cli
->outbuf
+nwritten
,len
- nwritten
);
95 DEBUG(0,("Error writing %d bytes to client. %d\n",
105 /****************************************************************************
106 setup basics in a outgoing packet
107 ****************************************************************************/
108 void cli_setup_packet(struct cli_state
*cli
)
111 SSVAL(cli
->outbuf
,smb_pid
,cli
->pid
);
112 SSVAL(cli
->outbuf
,smb_uid
,cli
->vuid
);
113 SSVAL(cli
->outbuf
,smb_mid
,cli
->mid
);
114 if (cli
->protocol
> PROTOCOL_CORE
) {
116 SCVAL(cli
->outbuf
,smb_flg
,0x8);
117 flags2
= FLAGS2_LONG_PATH_COMPONENTS
;
118 if (cli
->capabilities
& CAP_UNICODE
) {
119 flags2
|= FLAGS2_UNICODE_STRINGS
;
121 if (cli
->capabilities
& CAP_STATUS32
) {
122 flags2
|= FLAGS2_32_BIT_ERROR_CODES
;
124 if (cli
->use_spnego
) {
125 flags2
|= FLAGS2_EXTENDED_SECURITY
;
127 SSVAL(cli
->outbuf
,smb_flg2
, flags2
);
131 /****************************************************************************
132 setup the bcc length of the packet from a pointer to the end of the data
133 ****************************************************************************/
134 void cli_setup_bcc(struct cli_state
*cli
, void *p
)
136 set_message_bcc(cli
->outbuf
, PTR_DIFF(p
, smb_buf(cli
->outbuf
)));
141 /****************************************************************************
142 initialise a client structure
143 ****************************************************************************/
144 void cli_init_creds(struct cli_state
*cli
, const struct ntuser_creds
*usr
)
146 /* copy_nt_creds(&cli->usr, usr); */
147 safe_strcpy(cli
->domain
, usr
->domain
, sizeof(usr
->domain
)-1);
148 safe_strcpy(cli
->user_name
, usr
->user_name
, sizeof(usr
->user_name
)-1);
149 memcpy(&cli
->pwd
, &usr
->pwd
, sizeof(usr
->pwd
));
150 cli
->ntlmssp_flags
= usr
->ntlmssp_flags
;
151 cli
->ntlmssp_cli_flgs
= usr
!= NULL
? usr
->ntlmssp_flags
: 0;
153 DEBUG(10,("cli_init_creds: user %s domain %s flgs: %x\nntlmssp_cli_flgs:%x\n",
154 cli
->user_name
, cli
->domain
,
155 cli
->ntlmssp_flags
,cli
->ntlmssp_cli_flgs
));
159 /****************************************************************************
160 initialise a client structure
161 ****************************************************************************/
162 struct cli_state
*cli_initialise(struct cli_state
*cli
)
164 BOOL alloced_cli
= False
;
166 /* Check the effective uid - make sure we are not setuid */
167 if (is_setuid_root()) {
168 DEBUG(0,("libsmb based programs must *NOT* be setuid root.\n"));
173 cli
= (struct cli_state
*)malloc(sizeof(*cli
));
180 if (cli
->initialised
) {
189 cli
->pid
= (uint16
)sys_getpid();
191 cli
->vuid
= UID_FIELD_INVALID
;
192 cli
->protocol
= PROTOCOL_NT1
;
193 cli
->timeout
= 20000; /* Timeout is in milliseconds. */
194 cli
->bufsize
= CLI_BUFFER_SIZE
+4;
195 cli
->max_xmit
= cli
->bufsize
;
196 cli
->outbuf
= (char *)malloc(cli
->bufsize
);
197 cli
->inbuf
= (char *)malloc(cli
->bufsize
);
198 cli
->oplock_handler
= cli_oplock_ack
;
199 cli
->use_spnego
= True
;
201 if (!cli
->outbuf
|| !cli
->inbuf
)
204 if ((cli
->mem_ctx
= talloc_init()) == NULL
)
207 memset(cli
->outbuf
, 0, cli
->bufsize
);
208 memset(cli
->inbuf
, 0, cli
->bufsize
);
210 cli
->nt_pipe_fnum
= 0;
212 cli
->initialised
= 1;
216 /* Clean up after malloc() error */
220 SAFE_FREE(cli
->inbuf
);
221 SAFE_FREE(cli
->outbuf
);
229 /****************************************************************************
230 shutdown a client structure
231 ****************************************************************************/
232 void cli_shutdown(struct cli_state
*cli
)
234 SAFE_FREE(cli
->outbuf
);
235 SAFE_FREE(cli
->inbuf
);
237 data_blob_free(&cli
->secblob
);
240 talloc_destroy(cli
->mem_ctx
);
244 sslutil_disconnect(cli
->fd
);
245 #endif /* WITH_SSL */
248 memset(cli
, 0, sizeof(*cli
));
252 /****************************************************************************
253 set socket options on a open connection
254 ****************************************************************************/
255 void cli_sockopt(struct cli_state
*cli
, char *options
)
257 set_socket_options(cli
->fd
, options
);
260 /****************************************************************************
261 set the PID to use for smb messages. Return the old pid.
262 ****************************************************************************/
263 uint16
cli_setpid(struct cli_state
*cli
, uint16 pid
)
265 uint16 ret
= cli
->pid
;