s3:winbind: remove the method SET_MAPPING from winbind's API
[ira/wip.git] / source3 / libsmb / clifsinfo.c
1 /* 
2    Unix SMB/CIFS implementation.
3    FS info functions
4    Copyright (C) Stefan (metze) Metzmacher      2003
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 "../libcli/auth/spnego.h"
23 #include "../libcli/auth/ntlmssp.h"
24
25 /****************************************************************************
26  Get UNIX extensions version info.
27 ****************************************************************************/
28
29 struct cli_unix_extensions_version_state {
30         struct cli_state *cli;
31         uint16_t setup[1];
32         uint8_t param[2];
33         uint16_t major, minor;
34         uint32_t caplow, caphigh;
35 };
36
37 static void cli_unix_extensions_version_done(struct tevent_req *subreq);
38
39 struct tevent_req *cli_unix_extensions_version_send(TALLOC_CTX *mem_ctx,
40                                                     struct tevent_context *ev,
41                                                     struct cli_state *cli)
42 {
43         struct tevent_req *req, *subreq;
44         struct cli_unix_extensions_version_state *state;
45
46         req = tevent_req_create(mem_ctx, &state,
47                                 struct cli_unix_extensions_version_state);
48         if (req == NULL) {
49                 return NULL;
50         }
51         state->cli = cli;
52         SSVAL(state->setup, 0, TRANSACT2_QFSINFO);
53         SSVAL(state->param, 0, SMB_QUERY_CIFS_UNIX_INFO);
54
55         subreq = cli_trans_send(state, ev, cli, SMBtrans2,
56                                 NULL, 0, 0, 0,
57                                 state->setup, 1, 0,
58                                 state->param, 2, 0,
59                                 NULL, 0, 560);
60         if (tevent_req_nomem(subreq, req)) {
61                 return tevent_req_post(req, ev);
62         }
63         tevent_req_set_callback(subreq, cli_unix_extensions_version_done, req);
64         return req;
65 }
66
67 static void cli_unix_extensions_version_done(struct tevent_req *subreq)
68 {
69         struct tevent_req *req = tevent_req_callback_data(
70                 subreq, struct tevent_req);
71         struct cli_unix_extensions_version_state *state = tevent_req_data(
72                 req, struct cli_unix_extensions_version_state);
73         uint8_t *data;
74         uint32_t num_data;
75         NTSTATUS status;
76
77         status = cli_trans_recv(subreq, state, NULL, NULL, 0, NULL,
78                                 NULL, 0, NULL, &data, 12, &num_data);
79         TALLOC_FREE(subreq);
80         if (!NT_STATUS_IS_OK(status)) {
81                 tevent_req_nterror(req, status);
82                 return;
83         }
84
85         state->major = SVAL(data, 0);
86         state->minor = SVAL(data, 2);
87         state->caplow = IVAL(data, 4);
88         state->caphigh = IVAL(data, 8);
89         TALLOC_FREE(data);
90         tevent_req_done(req);
91 }
92
93 NTSTATUS cli_unix_extensions_version_recv(struct tevent_req *req,
94                                           uint16_t *pmajor, uint16_t *pminor,
95                                           uint32_t *pcaplow,
96                                           uint32_t *pcaphigh)
97 {
98         struct cli_unix_extensions_version_state *state = tevent_req_data(
99                 req, struct cli_unix_extensions_version_state);
100         NTSTATUS status;
101
102         if (tevent_req_is_nterror(req, &status)) {
103                 return status;
104         }
105         *pmajor = state->major;
106         *pminor = state->minor;
107         *pcaplow = state->caplow;
108         *pcaphigh = state->caphigh;
109         state->cli->server_posix_capabilities = *pcaplow;
110         return NT_STATUS_OK;
111 }
112
113 NTSTATUS cli_unix_extensions_version(struct cli_state *cli, uint16 *pmajor,
114                                      uint16 *pminor, uint32 *pcaplow,
115                                      uint32 *pcaphigh)
116 {
117         TALLOC_CTX *frame = talloc_stackframe();
118         struct event_context *ev;
119         struct tevent_req *req;
120         NTSTATUS status = NT_STATUS_OK;
121
122         if (cli_has_async_calls(cli)) {
123                 /*
124                  * Can't use sync call while an async call is in flight
125                  */
126                 status = NT_STATUS_INVALID_PARAMETER;
127                 goto fail;
128         }
129
130         ev = event_context_init(frame);
131         if (ev == NULL) {
132                 status = NT_STATUS_NO_MEMORY;
133                 goto fail;
134         }
135
136         req = cli_unix_extensions_version_send(frame, ev, cli);
137         if (req == NULL) {
138                 status = NT_STATUS_NO_MEMORY;
139                 goto fail;
140         }
141
142         if (!tevent_req_poll(req, ev)) {
143                 status = map_nt_error_from_unix(errno);
144                 goto fail;
145         }
146
147         status = cli_unix_extensions_version_recv(req, pmajor, pminor, pcaplow,
148                                                   pcaphigh);
149  fail:
150         TALLOC_FREE(frame);
151         if (!NT_STATUS_IS_OK(status)) {
152                 cli_set_error(cli, status);
153         }
154         return status;
155 }
156
157 /****************************************************************************
158  Set UNIX extensions capabilities.
159 ****************************************************************************/
160
161 struct cli_set_unix_extensions_capabilities_state {
162         struct cli_state *cli;
163         uint16_t setup[1];
164         uint8_t param[4];
165         uint8_t data[12];
166 };
167
168 static void cli_set_unix_extensions_capabilities_done(
169         struct tevent_req *subreq);
170
171 struct tevent_req *cli_set_unix_extensions_capabilities_send(
172         TALLOC_CTX *mem_ctx, struct tevent_context *ev, struct cli_state *cli,
173         uint16_t major, uint16_t minor, uint32_t caplow, uint32_t caphigh)
174 {
175         struct tevent_req *req, *subreq;
176         struct cli_set_unix_extensions_capabilities_state *state;
177
178         req = tevent_req_create(
179                 mem_ctx, &state,
180                 struct cli_set_unix_extensions_capabilities_state);
181         if (req == NULL) {
182                 return NULL;
183         }
184
185         state->cli = cli;
186         SSVAL(state->setup+0, 0, TRANSACT2_SETFSINFO);
187
188         SSVAL(state->param, 0, 0);
189         SSVAL(state->param, 2, SMB_SET_CIFS_UNIX_INFO);
190
191         SSVAL(state->data, 0, major);
192         SSVAL(state->data, 2, minor);
193         SIVAL(state->data, 4, caplow);
194         SIVAL(state->data, 8, caphigh);
195
196         subreq = cli_trans_send(state, ev, cli, SMBtrans2,
197                                 NULL, 0, 0, 0,
198                                 state->setup, 1, 0,
199                                 state->param, 4, 0,
200                                 state->data, 12, 560);
201         if (tevent_req_nomem(subreq, req)) {
202                 return tevent_req_post(req, ev);
203         }
204         tevent_req_set_callback(
205                 subreq, cli_set_unix_extensions_capabilities_done, req);
206         return req;
207 }
208
209 static void cli_set_unix_extensions_capabilities_done(
210         struct tevent_req *subreq)
211 {
212         struct tevent_req *req = tevent_req_callback_data(
213                 subreq, struct tevent_req);
214         struct cli_set_unix_extensions_capabilities_state *state = tevent_req_data(
215                 req, struct cli_set_unix_extensions_capabilities_state);
216
217         NTSTATUS status = cli_trans_recv(subreq, NULL, NULL, NULL, 0, NULL,
218                                          NULL, 0, NULL, NULL, 0, NULL);
219         if (NT_STATUS_IS_OK(status)) {
220                 state->cli->requested_posix_capabilities = IVAL(state->data, 4);
221         }
222         tevent_req_simple_finish_ntstatus(subreq, status);
223 }
224
225 NTSTATUS cli_set_unix_extensions_capabilities_recv(struct tevent_req *req)
226 {
227         return tevent_req_simple_recv_ntstatus(req);
228 }
229
230 NTSTATUS cli_set_unix_extensions_capabilities(struct cli_state *cli,
231                                               uint16 major, uint16 minor,
232                                               uint32 caplow, uint32 caphigh)
233 {
234         struct tevent_context *ev;
235         struct tevent_req *req;
236         NTSTATUS status = NT_STATUS_NO_MEMORY;
237
238         if (cli_has_async_calls(cli)) {
239                 return NT_STATUS_INVALID_PARAMETER;
240         }
241         ev = tevent_context_init(talloc_tos());
242         if (ev == NULL) {
243                 goto fail;
244         }
245         req = cli_set_unix_extensions_capabilities_send(
246                 ev, ev, cli, major, minor, caplow, caphigh);
247         if (req == NULL) {
248                 goto fail;
249         }
250         if (!tevent_req_poll_ntstatus(req, ev, &status)) {
251                 goto fail;
252         }
253         status = cli_set_unix_extensions_capabilities_recv(req);
254 fail:
255         TALLOC_FREE(ev);
256         if (!NT_STATUS_IS_OK(status)) {
257                 cli_set_error(cli, status);
258         }
259         return status;
260 }
261
262 struct cli_get_fs_attr_info_state {
263         uint16_t setup[1];
264         uint8_t param[2];
265         uint32_t fs_attr;
266 };
267
268 static void cli_get_fs_attr_info_done(struct tevent_req *subreq);
269
270 struct tevent_req *cli_get_fs_attr_info_send(TALLOC_CTX *mem_ctx,
271                                              struct tevent_context *ev,
272                                              struct cli_state *cli)
273 {
274         struct tevent_req *subreq, *req;
275         struct cli_get_fs_attr_info_state *state;
276
277         req = tevent_req_create(mem_ctx, &state,
278                                 struct cli_get_fs_attr_info_state);
279         if (req == NULL) {
280                 return NULL;
281         }
282         SSVAL(state->setup+0, 0, TRANSACT2_QFSINFO);
283         SSVAL(state->param+0, 0, SMB_QUERY_FS_ATTRIBUTE_INFO);
284
285         subreq = cli_trans_send(state, ev, cli, SMBtrans2,
286                                 NULL, 0, 0, 0,
287                                 state->setup, 1, 0,
288                                 state->param, 2, 0,
289                                 NULL, 0, 560);
290         if (tevent_req_nomem(subreq, req)) {
291                 return tevent_req_post(req, ev);
292         }
293         tevent_req_set_callback(subreq, cli_get_fs_attr_info_done, req);
294         return req;
295 }
296
297 static void cli_get_fs_attr_info_done(struct tevent_req *subreq)
298 {
299         struct tevent_req *req = tevent_req_callback_data(
300                 subreq, struct tevent_req);
301         struct cli_get_fs_attr_info_state *state = tevent_req_data(
302                 req, struct cli_get_fs_attr_info_state);
303         uint8_t *data;
304         uint32_t num_data;
305         NTSTATUS status;
306
307         status = cli_trans_recv(subreq, talloc_tos(), NULL, NULL, 0, NULL,
308                                 NULL, 0, NULL, &data, 12, &num_data);
309         TALLOC_FREE(subreq);
310         if (!NT_STATUS_IS_OK(status)) {
311                 tevent_req_nterror(req, status);
312                 return;
313         }
314         state->fs_attr = IVAL(data, 0);
315         TALLOC_FREE(data);
316         tevent_req_done(req);
317 }
318
319 NTSTATUS cli_get_fs_attr_info_recv(struct tevent_req *req, uint32_t *fs_attr)
320 {
321         struct cli_get_fs_attr_info_state *state = tevent_req_data(
322                 req, struct cli_get_fs_attr_info_state);
323         NTSTATUS status;
324
325         if (tevent_req_is_nterror(req, &status)) {
326                 return status;
327         }
328         *fs_attr = state->fs_attr;
329         return NT_STATUS_OK;
330 }
331
332 NTSTATUS cli_get_fs_attr_info(struct cli_state *cli, uint32_t *fs_attr)
333 {
334         struct tevent_context *ev;
335         struct tevent_req *req;
336         NTSTATUS status = NT_STATUS_NO_MEMORY;
337
338         if (cli_has_async_calls(cli)) {
339                 return NT_STATUS_INVALID_PARAMETER;
340         }
341         ev = tevent_context_init(talloc_tos());
342         if (ev == NULL) {
343                 goto fail;
344         }
345         req = cli_get_fs_attr_info_send(ev, ev, cli);
346         if (req == NULL) {
347                 goto fail;
348         }
349         if (!tevent_req_poll_ntstatus(req, ev, &status)) {
350                 goto fail;
351         }
352         status = cli_get_fs_attr_info_recv(req, fs_attr);
353 fail:
354         TALLOC_FREE(ev);
355         if (!NT_STATUS_IS_OK(status)) {
356                 cli_set_error(cli, status);
357         }
358         return status;
359 }
360
361 NTSTATUS cli_get_fs_volume_info(struct cli_state *cli, fstring volume_name,
362                                 uint32 *pserial_number, time_t *pdate)
363 {
364         NTSTATUS status;
365         uint16 setup[1];
366         uint8_t param[2];
367         uint8_t *rdata;
368         uint32_t rdata_count;
369         unsigned int nlen;
370
371         SSVAL(setup, 0, TRANSACT2_QFSINFO);
372         SSVAL(param,0,SMB_QUERY_FS_VOLUME_INFO);
373
374         status = cli_trans(talloc_tos(), cli, SMBtrans2,
375                            NULL, 0, 0, 0,
376                            setup, 1, 0,
377                            param, 2, 0,
378                            NULL, 0, 560,
379                            NULL,
380                            NULL, 0, NULL,
381                            NULL, 0, NULL,
382                            &rdata, 10, &rdata_count);
383         if (!NT_STATUS_IS_OK(status)) {
384                 return status;
385         }
386
387         if (pdate) {
388                 struct timespec ts;
389                 ts = interpret_long_date((char *)rdata);
390                 *pdate = ts.tv_sec;
391         }
392         if (pserial_number) {
393                 *pserial_number = IVAL(rdata,8);
394         }
395         nlen = IVAL(rdata,12);
396         clistr_pull(cli->inbuf, volume_name, rdata + 18, sizeof(fstring),
397                     nlen, STR_UNICODE);
398
399         /* todo: but not yet needed
400          *       return the other stuff
401          */
402
403         TALLOC_FREE(rdata);
404         return NT_STATUS_OK;
405 }
406
407 bool cli_get_fs_full_size_info(struct cli_state *cli,
408                                uint64_t *total_allocation_units,
409                                uint64_t *caller_allocation_units,
410                                uint64_t *actual_allocation_units,
411                                uint64_t *sectors_per_allocation_unit,
412                                uint64_t *bytes_per_sector)
413 {
414         bool ret = False;
415         uint16 setup;
416         char param[2];
417         char *rparam=NULL, *rdata=NULL;
418         unsigned int rparam_count=0, rdata_count=0;
419
420         setup = TRANSACT2_QFSINFO;
421
422         SSVAL(param,0,SMB_FS_FULL_SIZE_INFORMATION);
423
424         if (!cli_send_trans(cli, SMBtrans2,
425                     NULL,
426                     0, 0,
427                     &setup, 1, 0,
428                     param, 2, 0,
429                     NULL, 0, 560)) {
430                 goto cleanup;
431         }
432
433         if (!cli_receive_trans(cli, SMBtrans2,
434                               &rparam, &rparam_count,
435                               &rdata, &rdata_count)) {
436                 goto cleanup;
437         }
438
439         if (cli_is_error(cli)) {
440                 ret = False;
441                 goto cleanup;
442         } else {
443                 ret = True;
444         }
445
446         if (rdata_count != 32) {
447                 goto cleanup;
448         }
449
450         if (total_allocation_units) {
451                 *total_allocation_units = BIG_UINT(rdata, 0);
452         }
453         if (caller_allocation_units) {
454                 *caller_allocation_units = BIG_UINT(rdata,8);
455         }
456         if (actual_allocation_units) {
457                 *actual_allocation_units = BIG_UINT(rdata,16);
458         }
459         if (sectors_per_allocation_unit) {
460                 *sectors_per_allocation_unit = IVAL(rdata,24);
461         }
462         if (bytes_per_sector) {
463                 *bytes_per_sector = IVAL(rdata,28);
464         }
465
466 cleanup:
467         SAFE_FREE(rparam);
468         SAFE_FREE(rdata);
469
470         return ret;
471 }
472
473 bool cli_get_posix_fs_info(struct cli_state *cli,
474                            uint32 *optimal_transfer_size,
475                            uint32 *block_size,
476                            uint64_t *total_blocks,
477                            uint64_t *blocks_available,
478                            uint64_t *user_blocks_available,
479                            uint64_t *total_file_nodes,
480                            uint64_t *free_file_nodes,
481                            uint64_t *fs_identifier)
482 {
483         bool ret = False;
484         uint16 setup;
485         char param[2];
486         char *rparam=NULL, *rdata=NULL;
487         unsigned int rparam_count=0, rdata_count=0;
488
489         setup = TRANSACT2_QFSINFO;
490
491         SSVAL(param,0,SMB_QUERY_POSIX_FS_INFO);
492
493         if (!cli_send_trans(cli, SMBtrans2,
494                     NULL,
495                     0, 0,
496                     &setup, 1, 0,
497                     param, 2, 0,
498                     NULL, 0, 560)) {
499                 goto cleanup;
500         }
501
502         if (!cli_receive_trans(cli, SMBtrans2,
503                               &rparam, &rparam_count,
504                               &rdata, &rdata_count)) {
505                 goto cleanup;
506         }
507
508         if (cli_is_error(cli)) {
509                 ret = False;
510                 goto cleanup;
511         } else {
512                 ret = True;
513         }
514
515         if (rdata_count != 56) {
516                 goto cleanup;
517         }
518
519         if (optimal_transfer_size) {
520                 *optimal_transfer_size = IVAL(rdata, 0);
521         }
522         if (block_size) {
523                 *block_size = IVAL(rdata,4);
524         }
525         if (total_blocks) {
526                 *total_blocks = BIG_UINT(rdata,8);
527         }
528         if (blocks_available) {
529                 *blocks_available = BIG_UINT(rdata,16);
530         }
531         if (user_blocks_available) {
532                 *user_blocks_available = BIG_UINT(rdata,24);
533         }
534         if (total_file_nodes) {
535                 *total_file_nodes = BIG_UINT(rdata,32);
536         }
537         if (free_file_nodes) {
538                 *free_file_nodes = BIG_UINT(rdata,40);
539         }
540         if (fs_identifier) {
541                 *fs_identifier = BIG_UINT(rdata,48);
542         }
543
544 cleanup:
545         SAFE_FREE(rparam);
546         SAFE_FREE(rdata);
547
548         return ret;
549 }
550
551
552 /******************************************************************************
553  Send/receive the request encryption blob.
554 ******************************************************************************/
555
556 static NTSTATUS enc_blob_send_receive(struct cli_state *cli, DATA_BLOB *in, DATA_BLOB *out, DATA_BLOB *param_out)
557 {
558         uint16 setup;
559         char param[4];
560         char *rparam=NULL, *rdata=NULL;
561         unsigned int rparam_count=0, rdata_count=0;
562         NTSTATUS status = NT_STATUS_OK;
563
564         setup = TRANSACT2_SETFSINFO;
565
566         SSVAL(param,0,0);
567         SSVAL(param,2,SMB_REQUEST_TRANSPORT_ENCRYPTION);
568
569         if (!cli_send_trans(cli, SMBtrans2,
570                                 NULL,
571                                 0, 0,
572                                 &setup, 1, 0,
573                                 param, 4, 0,
574                                 (char *)in->data, in->length, CLI_BUFFER_SIZE)) {
575                 status = cli_nt_error(cli);
576                 goto out;
577         }
578
579         if (!cli_receive_trans(cli, SMBtrans2,
580                                 &rparam, &rparam_count,
581                                 &rdata, &rdata_count)) {
582                 status = cli_nt_error(cli);
583                 goto out;
584         }
585
586         if (cli_is_error(cli)) {
587                 status = cli_nt_error(cli);
588                 if (!NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
589                         goto out;
590                 }
591         }
592
593         *out = data_blob(rdata, rdata_count);
594         *param_out = data_blob(rparam, rparam_count);
595
596   out:
597
598         SAFE_FREE(rparam);
599         SAFE_FREE(rdata);
600         return status;
601 }
602
603 /******************************************************************************
604  Make a client state struct.
605 ******************************************************************************/
606
607 static struct smb_trans_enc_state *make_cli_enc_state(enum smb_trans_enc_type smb_enc_type)
608 {
609         struct smb_trans_enc_state *es = NULL;
610         es = SMB_MALLOC_P(struct smb_trans_enc_state);
611         if (!es) {
612                 return NULL;
613         }
614         ZERO_STRUCTP(es);
615         es->smb_enc_type = smb_enc_type;
616
617 #if defined(HAVE_GSSAPI) && defined(HAVE_KRB5)
618         if (smb_enc_type == SMB_TRANS_ENC_GSS) {
619                 es->s.gss_state = SMB_MALLOC_P(struct smb_tran_enc_state_gss);
620                 if (!es->s.gss_state) {
621                         SAFE_FREE(es);
622                         return NULL;
623                 }
624                 ZERO_STRUCTP(es->s.gss_state);
625         }
626 #endif
627         return es;
628 }
629
630 /******************************************************************************
631  Start a raw ntlmssp encryption.
632 ******************************************************************************/
633
634 NTSTATUS cli_raw_ntlm_smb_encryption_start(struct cli_state *cli, 
635                                 const char *user,
636                                 const char *pass,
637                                 const char *domain)
638 {
639         DATA_BLOB blob_in = data_blob_null;
640         DATA_BLOB blob_out = data_blob_null;
641         DATA_BLOB param_out = data_blob_null;
642         NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
643         struct smb_trans_enc_state *es = make_cli_enc_state(SMB_TRANS_ENC_NTLM);
644
645         if (!es) {
646                 return NT_STATUS_NO_MEMORY;
647         }
648         status = ntlmssp_client_start(NULL,
649                                       global_myname(),
650                                       lp_workgroup(),
651                                       lp_client_ntlmv2_auth(),
652                                       &es->s.ntlmssp_state);
653         if (!NT_STATUS_IS_OK(status)) {
654                 goto fail;
655         }
656
657         ntlmssp_want_feature(es->s.ntlmssp_state, NTLMSSP_FEATURE_SESSION_KEY);
658         es->s.ntlmssp_state->neg_flags |= (NTLMSSP_NEGOTIATE_SIGN|NTLMSSP_NEGOTIATE_SEAL);
659
660         if (!NT_STATUS_IS_OK(status = ntlmssp_set_username(es->s.ntlmssp_state, user))) {
661                 goto fail;
662         }
663         if (!NT_STATUS_IS_OK(status = ntlmssp_set_domain(es->s.ntlmssp_state, domain))) {
664                 goto fail;
665         }
666         if (!NT_STATUS_IS_OK(status = ntlmssp_set_password(es->s.ntlmssp_state, pass))) {
667                 goto fail;
668         }
669
670         do {
671                 status = ntlmssp_update(es->s.ntlmssp_state, blob_in, &blob_out);
672                 data_blob_free(&blob_in);
673                 data_blob_free(&param_out);
674                 if (NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED) || NT_STATUS_IS_OK(status)) {
675                         NTSTATUS trans_status = enc_blob_send_receive(cli,
676                                                                         &blob_out,
677                                                                         &blob_in,
678                                                                         &param_out);
679                         if (!NT_STATUS_EQUAL(trans_status,
680                                         NT_STATUS_MORE_PROCESSING_REQUIRED) &&
681                                         !NT_STATUS_IS_OK(trans_status)) {
682                                 status = trans_status;
683                         } else {
684                                 if (param_out.length == 2) {
685                                         es->enc_ctx_num = SVAL(param_out.data, 0);
686                                 }
687                         }
688                 }
689                 data_blob_free(&blob_out);
690         } while (NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED));
691
692         data_blob_free(&blob_in);
693
694         if (NT_STATUS_IS_OK(status)) {
695                 /* Replace the old state, if any. */
696                 if (cli->trans_enc_state) {
697                         common_free_encryption_state(&cli->trans_enc_state);
698                 }
699                 cli->trans_enc_state = es;
700                 cli->trans_enc_state->enc_on = True;
701                 es = NULL;
702         }
703
704   fail:
705
706         common_free_encryption_state(&es);
707         return status;
708 }
709
710 #if defined(HAVE_GSSAPI) && defined(HAVE_KRB5)
711
712 #ifndef SMB_GSS_REQUIRED_FLAGS
713 #define SMB_GSS_REQUIRED_FLAGS (GSS_C_CONF_FLAG|GSS_C_INTEG_FLAG|GSS_C_MUTUAL_FLAG|GSS_C_REPLAY_FLAG|GSS_C_SEQUENCE_FLAG)
714 #endif
715
716 /******************************************************************************
717  Get client gss blob to send to a server.
718 ******************************************************************************/
719
720 static NTSTATUS make_cli_gss_blob(TALLOC_CTX *ctx,
721                                 struct smb_trans_enc_state *es,
722                                 const char *service,
723                                 const char *host,
724                                 NTSTATUS status_in,
725                                 DATA_BLOB spnego_blob_in,
726                                 DATA_BLOB *p_blob_out)
727 {
728         const char *krb_mechs[] = {OID_KERBEROS5, NULL};
729         OM_uint32 ret;
730         OM_uint32 min;
731         gss_name_t srv_name;
732         gss_buffer_desc input_name;
733         gss_buffer_desc *p_tok_in;
734         gss_buffer_desc tok_out, tok_in;
735         DATA_BLOB blob_out = data_blob_null;
736         DATA_BLOB blob_in = data_blob_null;
737         char *host_princ_s = NULL;
738         OM_uint32 ret_flags = 0;
739         NTSTATUS status = NT_STATUS_OK;
740
741         gss_OID_desc nt_hostbased_service =
742         {10, CONST_DISCARD(char *,"\x2a\x86\x48\x86\xf7\x12\x01\x02\x01\x04")};
743
744         memset(&tok_out, '\0', sizeof(tok_out));
745
746         /* Get a ticket for the service@host */
747         if (asprintf(&host_princ_s, "%s@%s", service, host) == -1) {
748                 return NT_STATUS_NO_MEMORY;
749         }
750
751         input_name.value = host_princ_s;
752         input_name.length = strlen(host_princ_s) + 1;
753
754         ret = gss_import_name(&min,
755                                 &input_name,
756                                 &nt_hostbased_service,
757                                 &srv_name);
758
759         if (ret != GSS_S_COMPLETE) {
760                 SAFE_FREE(host_princ_s);
761                 return map_nt_error_from_gss(ret, min);
762         }
763
764         if (spnego_blob_in.length == 0) {
765                 p_tok_in = GSS_C_NO_BUFFER;
766         } else {
767                 /* Remove the SPNEGO wrapper */
768                 if (!spnego_parse_auth_response(ctx, spnego_blob_in, status_in, OID_KERBEROS5, &blob_in)) {
769                         status = NT_STATUS_UNSUCCESSFUL;
770                         goto fail;
771                 }
772                 tok_in.value = blob_in.data;
773                 tok_in.length = blob_in.length;
774                 p_tok_in = &tok_in;
775         }
776
777         ret = gss_init_sec_context(&min,
778                                 GSS_C_NO_CREDENTIAL, /* Use our default cred. */
779                                 &es->s.gss_state->gss_ctx,
780                                 srv_name,
781                                 GSS_C_NO_OID, /* default OID. */
782                                 GSS_C_MUTUAL_FLAG | GSS_C_REPLAY_FLAG | GSS_C_SEQUENCE_FLAG | GSS_C_DELEG_FLAG,
783                                 GSS_C_INDEFINITE,       /* requested ticket lifetime. */
784                                 NULL,   /* no channel bindings */
785                                 p_tok_in,
786                                 NULL,   /* ignore mech type */
787                                 &tok_out,
788                                 &ret_flags,
789                                 NULL);  /* ignore time_rec */
790
791         status = map_nt_error_from_gss(ret, min);
792         if (!NT_STATUS_IS_OK(status) && !NT_STATUS_EQUAL(status,NT_STATUS_MORE_PROCESSING_REQUIRED)) {
793                 ADS_STATUS adss = ADS_ERROR_GSS(ret, min);
794                 DEBUG(10,("make_cli_gss_blob: gss_init_sec_context failed with %s\n",
795                         ads_errstr(adss)));
796                 goto fail;
797         }
798
799         if ((ret_flags & SMB_GSS_REQUIRED_FLAGS) != SMB_GSS_REQUIRED_FLAGS) {
800                 status = NT_STATUS_ACCESS_DENIED;
801         }
802
803         blob_out = data_blob_talloc(ctx, tok_out.value, tok_out.length);
804
805         /* Wrap in an SPNEGO wrapper */
806         *p_blob_out = spnego_gen_negTokenInit(ctx, krb_mechs, &blob_out, NULL);
807
808   fail:
809
810         data_blob_free(&blob_out);
811         data_blob_free(&blob_in);
812         SAFE_FREE(host_princ_s);
813         gss_release_name(&min, &srv_name);
814         if (tok_out.value) {
815                 gss_release_buffer(&min, &tok_out);
816         }
817         return status;
818 }
819
820 /******************************************************************************
821  Start a SPNEGO gssapi encryption context.
822 ******************************************************************************/
823
824 NTSTATUS cli_gss_smb_encryption_start(struct cli_state *cli)
825 {
826         DATA_BLOB blob_recv = data_blob_null;
827         DATA_BLOB blob_send = data_blob_null;
828         DATA_BLOB param_out = data_blob_null;
829         NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
830         fstring fqdn;
831         const char *servicename;
832         struct smb_trans_enc_state *es = make_cli_enc_state(SMB_TRANS_ENC_GSS);
833
834         if (!es) {
835                 return NT_STATUS_NO_MEMORY;
836         }
837
838         name_to_fqdn(fqdn, cli->desthost);
839         strlower_m(fqdn);
840
841         servicename = "cifs";
842         status = make_cli_gss_blob(talloc_tos(), es, servicename, fqdn, NT_STATUS_OK, blob_recv, &blob_send);
843         if (!NT_STATUS_EQUAL(status,NT_STATUS_MORE_PROCESSING_REQUIRED)) {
844                 servicename = "host";
845                 status = make_cli_gss_blob(talloc_tos(), es, servicename, fqdn, NT_STATUS_OK, blob_recv, &blob_send);
846                 if (!NT_STATUS_EQUAL(status,NT_STATUS_MORE_PROCESSING_REQUIRED)) {
847                         goto fail;
848                 }
849         }
850
851         do {
852                 data_blob_free(&blob_recv);
853                 status = enc_blob_send_receive(cli, &blob_send, &blob_recv, &param_out);
854                 if (param_out.length == 2) {
855                         es->enc_ctx_num = SVAL(param_out.data, 0);
856                 }
857                 data_blob_free(&blob_send);
858                 status = make_cli_gss_blob(talloc_tos(), es, servicename, fqdn, status, blob_recv, &blob_send);
859         } while (NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED));
860         data_blob_free(&blob_recv);
861
862         if (NT_STATUS_IS_OK(status)) {
863                 /* Replace the old state, if any. */
864                 if (cli->trans_enc_state) {
865                         common_free_encryption_state(&cli->trans_enc_state);
866                 }
867                 cli->trans_enc_state = es;
868                 cli->trans_enc_state->enc_on = True;
869                 es = NULL;
870         }
871
872   fail:
873
874         common_free_encryption_state(&es);
875         return status;
876 }
877 #else
878 NTSTATUS cli_gss_smb_encryption_start(struct cli_state *cli)
879 {
880         return NT_STATUS_NOT_SUPPORTED;
881 }
882 #endif
883
884 /********************************************************************
885  Ensure a connection is encrypted.
886 ********************************************************************/
887
888 NTSTATUS cli_force_encryption(struct cli_state *c,
889                         const char *username,
890                         const char *password,
891                         const char *domain)
892 {
893         uint16 major, minor;
894         uint32 caplow, caphigh;
895         NTSTATUS status;
896
897         if (!SERVER_HAS_UNIX_CIFS(c)) {
898                 return NT_STATUS_NOT_SUPPORTED;
899         }
900
901         status = cli_unix_extensions_version(c, &major, &minor, &caplow,
902                                              &caphigh);
903         if (!NT_STATUS_IS_OK(status)) {
904                 DEBUG(10, ("cli_force_encryption: cli_unix_extensions_version "
905                            "returned %s\n", nt_errstr(status)));
906                 return NT_STATUS_UNKNOWN_REVISION;
907         }
908
909         if (!(caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)) {
910                 return NT_STATUS_UNSUPPORTED_COMPRESSION;
911         }
912
913         if (c->use_kerberos) {
914                 return cli_gss_smb_encryption_start(c);
915         }
916         return cli_raw_ntlm_smb_encryption_start(c,
917                                         username,
918                                         password,
919                                         domain);
920 }