s3:libsmb: add cli_state_encryption_on()
[mat/samba.git] / source3 / libsmb / clientgen.c
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB client generic functions
4    Copyright (C) Andrew Tridgell 1994-1998
5    Copyright (C) Jeremy Allison 2007.
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 #include "libsmb/libsmb.h"
23 #include "../lib/util/tevent_ntstatus.h"
24 #include "smb_signing.h"
25 #include "async_smb.h"
26
27 /*******************************************************************
28  Setup the word count and byte count for a client smb message.
29 ********************************************************************/
30
31 int cli_set_message(char *buf,int num_words,int num_bytes,bool zero)
32 {
33         if (zero && (num_words || num_bytes)) {
34                 memset(buf + smb_size,'\0',num_words*2 + num_bytes);
35         }
36         SCVAL(buf,smb_wct,num_words);
37         SSVAL(buf,smb_vwv + num_words*SIZEOFWORD,num_bytes);
38         smb_setlen(buf,smb_size + num_words*2 + num_bytes - 4);
39         return (smb_size + num_words*2 + num_bytes);
40 }
41
42 /****************************************************************************
43  Change the timeout (in milliseconds).
44 ****************************************************************************/
45
46 unsigned int cli_set_timeout(struct cli_state *cli, unsigned int timeout)
47 {
48         unsigned int old_timeout = cli->timeout;
49         cli->timeout = timeout;
50         return old_timeout;
51 }
52
53 /****************************************************************************
54  convenience routine to find if we negotiated ucs2
55 ****************************************************************************/
56
57 bool cli_ucs2(struct cli_state *cli)
58 {
59         return ((cli->capabilities & CAP_UNICODE) != 0);
60 }
61
62 /****************************************************************************
63  Setup basics in a outgoing packet.
64 ****************************************************************************/
65
66 void cli_setup_packet_buf(struct cli_state *cli, char *buf)
67 {
68         uint16 flags2;
69         cli->rap_error = 0;
70         SIVAL(buf,smb_rcls,0);
71         SSVAL(buf,smb_pid,cli->smb1.pid);
72         memset(buf+smb_pidhigh, 0, 12);
73         SSVAL(buf,smb_uid,cli->vuid);
74         SSVAL(buf,smb_mid,cli->smb1.mid);
75
76         if (cli->protocol <= PROTOCOL_CORE) {
77                 return;
78         }
79
80         if (cli->case_sensitive) {
81                 SCVAL(buf,smb_flg,0x0);
82         } else {
83                 /* Default setting, case insensitive. */
84                 SCVAL(buf,smb_flg,0x8);
85         }
86         flags2 = FLAGS2_LONG_PATH_COMPONENTS;
87         if (cli->capabilities & CAP_UNICODE)
88                 flags2 |= FLAGS2_UNICODE_STRINGS;
89         if ((cli->capabilities & CAP_DFS) && cli->dfsroot)
90                 flags2 |= FLAGS2_DFS_PATHNAMES;
91         if (cli->capabilities & CAP_STATUS32)
92                 flags2 |= FLAGS2_32_BIT_ERROR_CODES;
93         if (cli->use_spnego)
94                 flags2 |= FLAGS2_EXTENDED_SECURITY;
95         SSVAL(buf,smb_flg2, flags2);
96 }
97
98 /****************************************************************************
99  Initialize Domain, user or password.
100 ****************************************************************************/
101
102 NTSTATUS cli_set_domain(struct cli_state *cli, const char *domain)
103 {
104         TALLOC_FREE(cli->domain);
105         cli->domain = talloc_strdup(cli, domain ? domain : "");
106         if (cli->domain == NULL) {
107                 return NT_STATUS_NO_MEMORY;
108         }
109         return NT_STATUS_OK;
110 }
111
112 NTSTATUS cli_set_username(struct cli_state *cli, const char *username)
113 {
114         TALLOC_FREE(cli->user_name);
115         cli->user_name = talloc_strdup(cli, username ? username : "");
116         if (cli->user_name == NULL) {
117                 return NT_STATUS_NO_MEMORY;
118         }
119         return NT_STATUS_OK;
120 }
121
122 NTSTATUS cli_set_password(struct cli_state *cli, const char *password)
123 {
124         TALLOC_FREE(cli->password);
125
126         /* Password can be NULL. */
127         if (password) {
128                 cli->password = talloc_strdup(cli, password);
129                 if (cli->password == NULL) {
130                         return NT_STATUS_NO_MEMORY;
131                 }
132         } else {
133                 /* Use zero NTLMSSP hashes and session key. */
134                 cli->password = NULL;
135         }
136
137         return NT_STATUS_OK;
138 }
139
140 /****************************************************************************
141  Initialise credentials of a client structure.
142 ****************************************************************************/
143
144 NTSTATUS cli_init_creds(struct cli_state *cli, const char *username, const char *domain, const char *password)
145 {
146         NTSTATUS status = cli_set_username(cli, username);
147         if (!NT_STATUS_IS_OK(status)) {
148                 return status;
149         }
150         status = cli_set_domain(cli, domain);
151         if (!NT_STATUS_IS_OK(status)) {
152                 return status;
153         }
154         DEBUG(10,("cli_init_creds: user %s domain %s\n", cli->user_name, cli->domain));
155
156         return cli_set_password(cli, password);
157 }
158
159 /****************************************************************************
160  Initialise a client structure. Always returns a talloc'ed struct.
161  Set the signing state (used from the command line).
162 ****************************************************************************/
163
164 struct cli_state *cli_initialise_ex(int signing_state)
165 {
166         struct cli_state *cli = NULL;
167         bool allow_smb_signing = false;
168         bool mandatory_signing = false;
169
170         /* Check the effective uid - make sure we are not setuid */
171         if (is_setuid_root()) {
172                 DEBUG(0,("libsmb based programs must *NOT* be setuid root.\n"));
173                 return NULL;
174         }
175
176         cli = talloc_zero(NULL, struct cli_state);
177         if (!cli) {
178                 return NULL;
179         }
180
181         cli->dfs_mountpoint = talloc_strdup(cli, "");
182         if (!cli->dfs_mountpoint) {
183                 goto error;
184         }
185         cli->fd = -1;
186         cli->raw_status = NT_STATUS_INTERNAL_ERROR;
187         cli->vuid = UID_FIELD_INVALID;
188         cli->protocol = PROTOCOL_NT1;
189         cli->timeout = 20000; /* Timeout is in milliseconds. */
190         cli->max_xmit = CLI_BUFFER_SIZE+4;
191         cli->case_sensitive = false;
192
193         cli->use_spnego = lp_client_use_spnego();
194
195         cli->capabilities = CAP_UNICODE | CAP_STATUS32 | CAP_DFS;
196
197         /* Set the CLI_FORCE_DOSERR environment variable to test
198            client routines using DOS errors instead of STATUS32
199            ones.  This intended only as a temporary hack. */    
200         if (getenv("CLI_FORCE_DOSERR"))
201                 cli->force_dos_errors = true;
202
203         if (lp_client_signing()) {
204                 allow_smb_signing = true;
205         }
206
207         if (lp_client_signing() == Required) {
208                 mandatory_signing = true;
209         }
210
211         if (signing_state != Undefined) {
212                 allow_smb_signing = true;
213         }
214
215         if (signing_state == false) {
216                 allow_smb_signing = false;
217                 mandatory_signing = false;
218         }
219
220         if (signing_state == Required) {
221                 mandatory_signing = true;
222         }
223
224         /* initialise signing */
225         cli->signing_state = smb_signing_init(cli,
226                                               allow_smb_signing,
227                                               mandatory_signing);
228         if (!cli->signing_state) {
229                 goto error;
230         }
231
232         cli->outgoing = tevent_queue_create(cli, "cli_outgoing");
233         if (cli->outgoing == NULL) {
234                 goto error;
235         }
236         cli->pending = NULL;
237
238         cli->initialised = 1;
239
240         cli->smb1.mid = 1;
241         cli->smb1.pid = (uint16_t)sys_getpid();
242         cli->smb1.vc_num = cli->smb1.pid;
243         cli->smb1.tid = UINT16_MAX;
244
245         return cli;
246
247         /* Clean up after malloc() error */
248
249  error:
250
251         TALLOC_FREE(cli);
252         return NULL;
253 }
254
255 struct cli_state *cli_initialise(void)
256 {
257         return cli_initialise_ex(Undefined);
258 }
259
260 bool cli_state_encryption_on(struct cli_state *cli)
261 {
262         return common_encryption_on(cli->trans_enc_state);
263 }
264
265
266 /****************************************************************************
267  Close all pipes open on this session.
268 ****************************************************************************/
269
270 void cli_nt_pipes_close(struct cli_state *cli)
271 {
272         while (cli->pipe_list != NULL) {
273                 /*
274                  * No TALLOC_FREE here!
275                  */
276                 talloc_free(cli->pipe_list);
277         }
278 }
279
280 /****************************************************************************
281  Shutdown a client structure.
282 ****************************************************************************/
283
284 static void _cli_shutdown(struct cli_state *cli)
285 {
286         cli_nt_pipes_close(cli);
287
288         /*
289          * tell our peer to free his resources.  Wihtout this, when an
290          * application attempts to do a graceful shutdown and calls
291          * smbc_free_context() to clean up all connections, some connections
292          * can remain active on the peer end, until some (long) timeout period
293          * later.  This tree disconnect forces the peer to clean up, since the
294          * connection will be going away.
295          */
296         if (cli_state_has_tcon(cli)) {
297                 cli_tdis(cli);
298         }
299         
300         data_blob_free(&cli->secblob);
301         data_blob_free(&cli->user_session_key);
302
303         if (cli->fd != -1) {
304                 close(cli->fd);
305         }
306         cli->fd = -1;
307
308         /*
309          * Need to free pending first, they remove themselves
310          */
311         while (cli->pending) {
312                 talloc_free(cli->pending[0]);
313         }
314         TALLOC_FREE(cli);
315 }
316
317 void cli_shutdown(struct cli_state *cli)
318 {
319         struct cli_state *cli_head;
320         if (cli == NULL) {
321                 return;
322         }
323         DLIST_HEAD(cli, cli_head);
324         if (cli_head == cli) {
325                 /*
326                  * head of a DFS list, shutdown all subsidiary DFS
327                  * connections.
328                  */
329                 struct cli_state *p, *next;
330
331                 for (p = cli_head->next; p; p = next) {
332                         next = p->next;
333                         DLIST_REMOVE(cli_head, p);
334                         _cli_shutdown(p);
335                 }
336         } else {
337                 DLIST_REMOVE(cli_head, cli);
338         }
339
340         _cli_shutdown(cli);
341 }
342
343 /****************************************************************************
344  Set socket options on a open connection.
345 ****************************************************************************/
346
347 void cli_sockopt(struct cli_state *cli, const char *options)
348 {
349         set_socket_options(cli->fd, options);
350 }
351
352 uint16_t cli_state_get_vc_num(struct cli_state *cli)
353 {
354         return cli->smb1.vc_num;
355 }
356
357 /****************************************************************************
358  Set the PID to use for smb messages. Return the old pid.
359 ****************************************************************************/
360
361 uint16 cli_setpid(struct cli_state *cli, uint16 pid)
362 {
363         uint16_t ret = cli->smb1.pid;
364         cli->smb1.pid = pid;
365         return ret;
366 }
367
368 uint16_t cli_getpid(struct cli_state *cli)
369 {
370         return cli->smb1.pid;
371 }
372
373 bool cli_state_has_tcon(struct cli_state *cli)
374 {
375         if (cli->smb1.tid == UINT16_MAX) {
376                 return false;
377         }
378
379         return true;
380 }
381
382 uint16_t cli_state_get_tid(struct cli_state *cli)
383 {
384         return cli->smb1.tid;
385 }
386
387 uint16_t cli_state_set_tid(struct cli_state *cli, uint16_t tid)
388 {
389         uint16_t ret = cli->smb1.tid;
390         cli->smb1.tid = tid;
391         return ret;
392 }
393
394 /****************************************************************************
395  Set the case sensitivity flag on the packets. Returns old state.
396 ****************************************************************************/
397
398 bool cli_set_case_sensitive(struct cli_state *cli, bool case_sensitive)
399 {
400         bool ret = cli->case_sensitive;
401         cli->case_sensitive = case_sensitive;
402         return ret;
403 }
404
405 struct cli_echo_state {
406         uint16_t vwv[1];
407         DATA_BLOB data;
408         int num_echos;
409 };
410
411 static void cli_echo_done(struct tevent_req *subreq);
412
413 struct tevent_req *cli_echo_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
414                                  struct cli_state *cli, uint16_t num_echos,
415                                  DATA_BLOB data)
416 {
417         struct tevent_req *req, *subreq;
418         struct cli_echo_state *state;
419
420         req = tevent_req_create(mem_ctx, &state, struct cli_echo_state);
421         if (req == NULL) {
422                 return NULL;
423         }
424         SSVAL(state->vwv, 0, num_echos);
425         state->data = data;
426         state->num_echos = num_echos;
427
428         subreq = cli_smb_send(state, ev, cli, SMBecho, 0, 1, state->vwv,
429                               data.length, data.data);
430         if (subreq == NULL) {
431                 goto fail;
432         }
433         tevent_req_set_callback(subreq, cli_echo_done, req);
434         return req;
435  fail:
436         TALLOC_FREE(req);
437         return NULL;
438 }
439
440 static void cli_echo_done(struct tevent_req *subreq)
441 {
442         struct tevent_req *req = tevent_req_callback_data(
443                 subreq, struct tevent_req);
444         struct cli_echo_state *state = tevent_req_data(
445                 req, struct cli_echo_state);
446         NTSTATUS status;
447         uint32_t num_bytes;
448         uint8_t *bytes;
449         uint8_t *inbuf;
450
451         status = cli_smb_recv(subreq, state, &inbuf, 0, NULL, NULL,
452                               &num_bytes, &bytes);
453         if (!NT_STATUS_IS_OK(status)) {
454                 tevent_req_nterror(req, status);
455                 return;
456         }
457         if ((num_bytes != state->data.length)
458             || (memcmp(bytes, state->data.data, num_bytes) != 0)) {
459                 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
460                 return;
461         }
462
463         state->num_echos -=1;
464         if (state->num_echos == 0) {
465                 tevent_req_done(req);
466                 return;
467         }
468
469         if (!cli_smb_req_set_pending(subreq)) {
470                 tevent_req_nterror(req, NT_STATUS_NO_MEMORY);
471                 return;
472         }
473 }
474
475 /**
476  * Get the result out from an echo request
477  * @param[in] req       The async_req from cli_echo_send
478  * @retval Did the server reply correctly?
479  */
480
481 NTSTATUS cli_echo_recv(struct tevent_req *req)
482 {
483         return tevent_req_simple_recv_ntstatus(req);
484 }
485
486 /**
487  * @brief Send/Receive SMBEcho requests
488  * @param[in] mem_ctx   The memory context to put the async_req on
489  * @param[in] ev        The event context that will call us back
490  * @param[in] cli       The connection to send the echo to
491  * @param[in] num_echos How many times do we want to get the reply?
492  * @param[in] data      The data we want to get back
493  * @retval Did the server reply correctly?
494  */
495
496 NTSTATUS cli_echo(struct cli_state *cli, uint16_t num_echos, DATA_BLOB data)
497 {
498         TALLOC_CTX *frame = talloc_stackframe();
499         struct event_context *ev;
500         struct tevent_req *req;
501         NTSTATUS status = NT_STATUS_OK;
502
503         if (cli_has_async_calls(cli)) {
504                 /*
505                  * Can't use sync call while an async call is in flight
506                  */
507                 status = NT_STATUS_INVALID_PARAMETER;
508                 goto fail;
509         }
510
511         ev = event_context_init(frame);
512         if (ev == NULL) {
513                 status = NT_STATUS_NO_MEMORY;
514                 goto fail;
515         }
516
517         req = cli_echo_send(frame, ev, cli, num_echos, data);
518         if (req == NULL) {
519                 status = NT_STATUS_NO_MEMORY;
520                 goto fail;
521         }
522
523         if (!tevent_req_poll(req, ev)) {
524                 status = map_nt_error_from_unix(errno);
525                 goto fail;
526         }
527
528         status = cli_echo_recv(req);
529  fail:
530         TALLOC_FREE(frame);
531         return status;
532 }
533
534 /**
535  * Is the SMB command able to hold an AND_X successor
536  * @param[in] cmd       The SMB command in question
537  * @retval Can we add a chained request after "cmd"?
538  */
539 bool is_andx_req(uint8_t cmd)
540 {
541         switch (cmd) {
542         case SMBtconX:
543         case SMBlockingX:
544         case SMBopenX:
545         case SMBreadX:
546         case SMBwriteX:
547         case SMBsesssetupX:
548         case SMBulogoffX:
549         case SMBntcreateX:
550                 return true;
551                 break;
552         default:
553                 break;
554         }
555
556         return false;
557 }
558
559 NTSTATUS cli_smb(TALLOC_CTX *mem_ctx, struct cli_state *cli,
560                  uint8_t smb_command, uint8_t additional_flags,
561                  uint8_t wct, uint16_t *vwv,
562                  uint32_t num_bytes, const uint8_t *bytes,
563                  struct tevent_req **result_parent,
564                  uint8_t min_wct, uint8_t *pwct, uint16_t **pvwv,
565                  uint32_t *pnum_bytes, uint8_t **pbytes)
566 {
567         struct tevent_context *ev;
568         struct tevent_req *req = NULL;
569         NTSTATUS status = NT_STATUS_NO_MEMORY;
570
571         if (cli_has_async_calls(cli)) {
572                 return NT_STATUS_INVALID_PARAMETER;
573         }
574         ev = tevent_context_init(mem_ctx);
575         if (ev == NULL) {
576                 goto fail;
577         }
578         req = cli_smb_send(mem_ctx, ev, cli, smb_command, additional_flags,
579                            wct, vwv, num_bytes, bytes);
580         if (req == NULL) {
581                 goto fail;
582         }
583         if (!tevent_req_poll_ntstatus(req, ev, &status)) {
584                 goto fail;
585         }
586         status = cli_smb_recv(req, NULL, NULL, min_wct, pwct, pvwv,
587                               pnum_bytes, pbytes);
588 fail:
589         TALLOC_FREE(ev);
590         if (NT_STATUS_IS_OK(status) && (result_parent != NULL)) {
591                 *result_parent = req;
592         }
593         return status;
594 }