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