2 Unix SMB/CIFS implementation.
4 Copyright (C) Stefan (metze) Metzmacher 2003
5 Copyright (C) Jeremy Allison 2007
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.
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, see <http://www.gnu.org/licenses/>.
23 /****************************************************************************
24 Get UNIX extensions version info.
25 ****************************************************************************/
27 bool cli_unix_extensions_version(struct cli_state
*cli
, uint16
*pmajor
, uint16
*pminor
,
28 uint32
*pcaplow
, uint32
*pcaphigh
)
33 char *rparam
=NULL
, *rdata
=NULL
;
34 unsigned int rparam_count
=0, rdata_count
=0;
36 setup
= TRANSACT2_QFSINFO
;
38 SSVAL(param
,0,SMB_QUERY_CIFS_UNIX_INFO
);
40 if (!cli_send_trans(cli
, SMBtrans2
,
49 if (!cli_receive_trans(cli
, SMBtrans2
,
50 &rparam
, &rparam_count
,
51 &rdata
, &rdata_count
)) {
55 if (cli_is_error(cli
)) {
62 if (rdata_count
< 12) {
66 *pmajor
= SVAL(rdata
,0);
67 *pminor
= SVAL(rdata
,2);
68 cli
->posix_capabilities
= *pcaplow
= IVAL(rdata
,4);
69 *pcaphigh
= IVAL(rdata
,8);
71 /* todo: but not yet needed
72 * return the other stuff
82 /****************************************************************************
83 Set UNIX extensions capabilities.
84 ****************************************************************************/
86 bool cli_set_unix_extensions_capabilities(struct cli_state
*cli
, uint16 major
, uint16 minor
,
87 uint32 caplow
, uint32 caphigh
)
93 char *rparam
=NULL
, *rdata
=NULL
;
94 unsigned int rparam_count
=0, rdata_count
=0;
96 setup
= TRANSACT2_SETFSINFO
;
99 SSVAL(param
,2,SMB_SET_CIFS_UNIX_INFO
);
103 SIVAL(data
,4,caplow
);
104 SIVAL(data
,8,caphigh
);
106 if (!cli_send_trans(cli
, SMBtrans2
,
115 if (!cli_receive_trans(cli
, SMBtrans2
,
116 &rparam
, &rparam_count
,
117 &rdata
, &rdata_count
)) {
121 if (cli_is_error(cli
)) {
135 bool cli_get_fs_attr_info(struct cli_state
*cli
, uint32
*fs_attr
)
140 char *rparam
=NULL
, *rdata
=NULL
;
141 unsigned int rparam_count
=0, rdata_count
=0;
144 smb_panic("cli_get_fs_attr_info() called with NULL Pionter!");
146 setup
= TRANSACT2_QFSINFO
;
148 SSVAL(param
,0,SMB_QUERY_FS_ATTRIBUTE_INFO
);
150 if (!cli_send_trans(cli
, SMBtrans2
,
159 if (!cli_receive_trans(cli
, SMBtrans2
,
160 &rparam
, &rparam_count
,
161 &rdata
, &rdata_count
)) {
165 if (cli_is_error(cli
)) {
172 if (rdata_count
< 12) {
176 *fs_attr
= IVAL(rdata
,0);
178 /* todo: but not yet needed
179 * return the other stuff
189 bool cli_get_fs_volume_info_old(struct cli_state
*cli
, fstring volume_name
, uint32
*pserial_number
)
194 char *rparam
=NULL
, *rdata
=NULL
;
195 unsigned int rparam_count
=0, rdata_count
=0;
198 setup
= TRANSACT2_QFSINFO
;
200 SSVAL(param
,0,SMB_INFO_VOLUME
);
202 if (!cli_send_trans(cli
, SMBtrans2
,
211 if (!cli_receive_trans(cli
, SMBtrans2
,
212 &rparam
, &rparam_count
,
213 &rdata
, &rdata_count
)) {
217 if (cli_is_error(cli
)) {
224 if (rdata_count
< 5) {
228 if (pserial_number
) {
229 *pserial_number
= IVAL(rdata
,0);
231 nlen
= CVAL(rdata
,l2_vol_cch
);
232 clistr_pull(cli
, volume_name
, rdata
+ l2_vol_szVolLabel
, sizeof(fstring
), nlen
, STR_NOALIGN
);
234 /* todo: but not yet needed
235 * return the other stuff
245 bool cli_get_fs_volume_info(struct cli_state
*cli
, fstring volume_name
, uint32
*pserial_number
, time_t *pdate
)
250 char *rparam
=NULL
, *rdata
=NULL
;
251 unsigned int rparam_count
=0, rdata_count
=0;
254 setup
= TRANSACT2_QFSINFO
;
256 SSVAL(param
,0,SMB_QUERY_FS_VOLUME_INFO
);
258 if (!cli_send_trans(cli
, SMBtrans2
,
267 if (!cli_receive_trans(cli
, SMBtrans2
,
268 &rparam
, &rparam_count
,
269 &rdata
, &rdata_count
)) {
273 if (cli_is_error(cli
)) {
280 if (rdata_count
< 19) {
286 ts
= interpret_long_date(rdata
);
289 if (pserial_number
) {
290 *pserial_number
= IVAL(rdata
,8);
292 nlen
= IVAL(rdata
,12);
293 clistr_pull(cli
, volume_name
, rdata
+ 18, sizeof(fstring
), nlen
, STR_UNICODE
);
295 /* todo: but not yet needed
296 * return the other stuff
306 bool cli_get_fs_full_size_info(struct cli_state
*cli
,
307 SMB_BIG_UINT
*total_allocation_units
,
308 SMB_BIG_UINT
*caller_allocation_units
,
309 SMB_BIG_UINT
*actual_allocation_units
,
310 SMB_BIG_UINT
*sectors_per_allocation_unit
,
311 SMB_BIG_UINT
*bytes_per_sector
)
316 char *rparam
=NULL
, *rdata
=NULL
;
317 unsigned int rparam_count
=0, rdata_count
=0;
319 setup
= TRANSACT2_QFSINFO
;
321 SSVAL(param
,0,SMB_FS_FULL_SIZE_INFORMATION
);
323 if (!cli_send_trans(cli
, SMBtrans2
,
332 if (!cli_receive_trans(cli
, SMBtrans2
,
333 &rparam
, &rparam_count
,
334 &rdata
, &rdata_count
)) {
338 if (cli_is_error(cli
)) {
345 if (rdata_count
!= 32) {
349 if (total_allocation_units
) {
350 *total_allocation_units
= BIG_UINT(rdata
, 0);
352 if (caller_allocation_units
) {
353 *caller_allocation_units
= BIG_UINT(rdata
,8);
355 if (actual_allocation_units
) {
356 *actual_allocation_units
= BIG_UINT(rdata
,16);
358 if (sectors_per_allocation_unit
) {
359 *sectors_per_allocation_unit
= IVAL(rdata
,24);
361 if (bytes_per_sector
) {
362 *bytes_per_sector
= IVAL(rdata
,28);
372 bool cli_get_posix_fs_info(struct cli_state
*cli
,
373 uint32
*optimal_transfer_size
,
375 SMB_BIG_UINT
*total_blocks
,
376 SMB_BIG_UINT
*blocks_available
,
377 SMB_BIG_UINT
*user_blocks_available
,
378 SMB_BIG_UINT
*total_file_nodes
,
379 SMB_BIG_UINT
*free_file_nodes
,
380 SMB_BIG_UINT
*fs_identifier
)
385 char *rparam
=NULL
, *rdata
=NULL
;
386 unsigned int rparam_count
=0, rdata_count
=0;
388 setup
= TRANSACT2_QFSINFO
;
390 SSVAL(param
,0,SMB_QUERY_POSIX_FS_INFO
);
392 if (!cli_send_trans(cli
, SMBtrans2
,
401 if (!cli_receive_trans(cli
, SMBtrans2
,
402 &rparam
, &rparam_count
,
403 &rdata
, &rdata_count
)) {
407 if (cli_is_error(cli
)) {
414 if (rdata_count
!= 56) {
418 if (optimal_transfer_size
) {
419 *optimal_transfer_size
= IVAL(rdata
, 0);
422 *block_size
= IVAL(rdata
,4);
425 *total_blocks
= BIG_UINT(rdata
,8);
427 if (blocks_available
) {
428 *blocks_available
= BIG_UINT(rdata
,16);
430 if (user_blocks_available
) {
431 *user_blocks_available
= BIG_UINT(rdata
,24);
433 if (total_file_nodes
) {
434 *total_file_nodes
= BIG_UINT(rdata
,32);
436 if (free_file_nodes
) {
437 *free_file_nodes
= BIG_UINT(rdata
,40);
440 *fs_identifier
= BIG_UINT(rdata
,48);
451 /******************************************************************************
452 Send/receive the request encryption blob.
453 ******************************************************************************/
455 static NTSTATUS
enc_blob_send_receive(struct cli_state
*cli
, DATA_BLOB
*in
, DATA_BLOB
*out
, DATA_BLOB
*param_out
)
459 char *rparam
=NULL
, *rdata
=NULL
;
460 unsigned int rparam_count
=0, rdata_count
=0;
461 NTSTATUS status
= NT_STATUS_OK
;
463 setup
= TRANSACT2_SETFSINFO
;
466 SSVAL(param
,2,SMB_REQUEST_TRANSPORT_ENCRYPTION
);
468 if (!cli_send_trans(cli
, SMBtrans2
,
473 (char *)in
->data
, in
->length
, CLI_BUFFER_SIZE
)) {
474 status
= cli_nt_error(cli
);
478 if (!cli_receive_trans(cli
, SMBtrans2
,
479 &rparam
, &rparam_count
,
480 &rdata
, &rdata_count
)) {
481 status
= cli_nt_error(cli
);
485 if (cli_is_error(cli
)) {
486 status
= cli_nt_error(cli
);
487 if (!NT_STATUS_EQUAL(status
, NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
492 *out
= data_blob(rdata
, rdata_count
);
493 *param_out
= data_blob(rparam
, rparam_count
);
502 /******************************************************************************
503 Make a client state struct.
504 ******************************************************************************/
506 static struct smb_trans_enc_state
*make_cli_enc_state(enum smb_trans_enc_type smb_enc_type
)
508 struct smb_trans_enc_state
*es
= NULL
;
509 es
= SMB_MALLOC_P(struct smb_trans_enc_state
);
514 es
->smb_enc_type
= smb_enc_type
;
516 #if defined(HAVE_GSSAPI) && defined(HAVE_KRB5)
517 if (smb_enc_type
== SMB_TRANS_ENC_GSS
) {
518 es
->s
.gss_state
= SMB_MALLOC_P(struct smb_tran_enc_state_gss
);
519 if (!es
->s
.gss_state
) {
523 ZERO_STRUCTP(es
->s
.gss_state
);
529 /******************************************************************************
530 Start a raw ntlmssp encryption.
531 ******************************************************************************/
533 NTSTATUS
cli_raw_ntlm_smb_encryption_start(struct cli_state
*cli
,
538 DATA_BLOB blob_in
= data_blob_null
;
539 DATA_BLOB blob_out
= data_blob_null
;
540 DATA_BLOB param_out
= data_blob_null
;
541 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
542 struct smb_trans_enc_state
*es
= make_cli_enc_state(SMB_TRANS_ENC_NTLM
);
545 return NT_STATUS_NO_MEMORY
;
547 status
= ntlmssp_client_start(&es
->s
.ntlmssp_state
);
548 if (!NT_STATUS_IS_OK(status
)) {
552 ntlmssp_want_feature(es
->s
.ntlmssp_state
, NTLMSSP_FEATURE_SESSION_KEY
);
553 es
->s
.ntlmssp_state
->neg_flags
|= (NTLMSSP_NEGOTIATE_SIGN
|NTLMSSP_NEGOTIATE_SEAL
);
555 if (!NT_STATUS_IS_OK(status
= ntlmssp_set_username(es
->s
.ntlmssp_state
, user
))) {
558 if (!NT_STATUS_IS_OK(status
= ntlmssp_set_domain(es
->s
.ntlmssp_state
, domain
))) {
561 if (!NT_STATUS_IS_OK(status
= ntlmssp_set_password(es
->s
.ntlmssp_state
, pass
))) {
566 status
= ntlmssp_update(es
->s
.ntlmssp_state
, blob_in
, &blob_out
);
567 data_blob_free(&blob_in
);
568 data_blob_free(¶m_out
);
569 if (NT_STATUS_EQUAL(status
, NT_STATUS_MORE_PROCESSING_REQUIRED
) || NT_STATUS_IS_OK(status
)) {
570 NTSTATUS trans_status
= enc_blob_send_receive(cli
,
574 if (!NT_STATUS_EQUAL(trans_status
,
575 NT_STATUS_MORE_PROCESSING_REQUIRED
) &&
576 !NT_STATUS_IS_OK(trans_status
)) {
577 status
= trans_status
;
579 if (param_out
.length
== 2) {
580 es
->enc_ctx_num
= SVAL(param_out
.data
, 0);
584 data_blob_free(&blob_out
);
585 } while (NT_STATUS_EQUAL(status
, NT_STATUS_MORE_PROCESSING_REQUIRED
));
587 data_blob_free(&blob_in
);
589 if (NT_STATUS_IS_OK(status
)) {
590 /* Replace the old state, if any. */
591 if (cli
->trans_enc_state
) {
592 common_free_encryption_state(&cli
->trans_enc_state
);
594 cli
->trans_enc_state
= es
;
595 cli
->trans_enc_state
->enc_on
= True
;
601 common_free_encryption_state(&es
);
605 #if defined(HAVE_GSSAPI) && defined(HAVE_KRB5)
607 #ifndef SMB_GSS_REQUIRED_FLAGS
608 #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)
611 /******************************************************************************
612 Get client gss blob to send to a server.
613 ******************************************************************************/
615 static NTSTATUS
make_cli_gss_blob(struct smb_trans_enc_state
*es
,
619 DATA_BLOB spnego_blob_in
,
620 DATA_BLOB
*p_blob_out
)
622 const char *krb_mechs
[] = {OID_KERBEROS5
, NULL
};
626 gss_buffer_desc input_name
;
627 gss_buffer_desc
*p_tok_in
;
628 gss_buffer_desc tok_out
, tok_in
;
629 DATA_BLOB blob_out
= data_blob_null
;
630 DATA_BLOB blob_in
= data_blob_null
;
631 char *host_princ_s
= NULL
;
632 OM_uint32 ret_flags
= 0;
633 NTSTATUS status
= NT_STATUS_OK
;
635 gss_OID_desc nt_hostbased_service
=
636 {10, CONST_DISCARD(char *,"\x2a\x86\x48\x86\xf7\x12\x01\x02\x01\x04")};
638 memset(&tok_out
, '\0', sizeof(tok_out
));
640 /* Get a ticket for the service@host */
641 if (asprintf(&host_princ_s
, "%s@%s", service
, host
) == -1) {
642 return NT_STATUS_NO_MEMORY
;
645 input_name
.value
= host_princ_s
;
646 input_name
.length
= strlen(host_princ_s
) + 1;
648 ret
= gss_import_name(&min
,
650 &nt_hostbased_service
,
653 if (ret
!= GSS_S_COMPLETE
) {
654 SAFE_FREE(host_princ_s
);
655 return map_nt_error_from_gss(ret
, min
);
658 if (spnego_blob_in
.length
== 0) {
659 p_tok_in
= GSS_C_NO_BUFFER
;
661 /* Remove the SPNEGO wrapper */
662 if (!spnego_parse_auth_response(spnego_blob_in
, status_in
, OID_KERBEROS5
, &blob_in
)) {
663 status
= NT_STATUS_UNSUCCESSFUL
;
666 tok_in
.value
= blob_in
.data
;
667 tok_in
.length
= blob_in
.length
;
671 ret
= gss_init_sec_context(&min
,
672 GSS_C_NO_CREDENTIAL
, /* Use our default cred. */
673 &es
->s
.gss_state
->gss_ctx
,
675 GSS_C_NO_OID
, /* default OID. */
676 GSS_C_MUTUAL_FLAG
| GSS_C_REPLAY_FLAG
| GSS_C_SEQUENCE_FLAG
| GSS_C_DELEG_FLAG
,
677 GSS_C_INDEFINITE
, /* requested ticket lifetime. */
678 NULL
, /* no channel bindings */
680 NULL
, /* ignore mech type */
683 NULL
); /* ignore time_rec */
685 status
= map_nt_error_from_gss(ret
, min
);
686 if (!NT_STATUS_IS_OK(status
) && !NT_STATUS_EQUAL(status
,NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
687 ADS_STATUS adss
= ADS_ERROR_GSS(ret
, min
);
688 DEBUG(10,("make_cli_gss_blob: gss_init_sec_context failed with %s\n",
693 if ((ret_flags
& SMB_GSS_REQUIRED_FLAGS
) != SMB_GSS_REQUIRED_FLAGS
) {
694 status
= NT_STATUS_ACCESS_DENIED
;
697 blob_out
= data_blob(tok_out
.value
, tok_out
.length
);
699 /* Wrap in an SPNEGO wrapper */
700 *p_blob_out
= gen_negTokenTarg(krb_mechs
, blob_out
);
704 data_blob_free(&blob_out
);
705 data_blob_free(&blob_in
);
706 SAFE_FREE(host_princ_s
);
707 gss_release_name(&min
, &srv_name
);
709 gss_release_buffer(&min
, &tok_out
);
714 /******************************************************************************
715 Start a SPNEGO gssapi encryption context.
716 ******************************************************************************/
718 NTSTATUS
cli_gss_smb_encryption_start(struct cli_state
*cli
)
720 DATA_BLOB blob_recv
= data_blob_null
;
721 DATA_BLOB blob_send
= data_blob_null
;
722 DATA_BLOB param_out
= data_blob_null
;
723 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
725 const char *servicename
;
726 struct smb_trans_enc_state
*es
= make_cli_enc_state(SMB_TRANS_ENC_GSS
);
729 return NT_STATUS_NO_MEMORY
;
732 name_to_fqdn(fqdn
, cli
->desthost
);
735 servicename
= "cifs";
736 status
= make_cli_gss_blob(es
, servicename
, fqdn
, NT_STATUS_OK
, blob_recv
, &blob_send
);
737 if (!NT_STATUS_EQUAL(status
,NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
738 servicename
= "host";
739 status
= make_cli_gss_blob(es
, servicename
, fqdn
, NT_STATUS_OK
, blob_recv
, &blob_send
);
740 if (!NT_STATUS_EQUAL(status
,NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
746 data_blob_free(&blob_recv
);
747 status
= enc_blob_send_receive(cli
, &blob_send
, &blob_recv
, ¶m_out
);
748 if (param_out
.length
== 2) {
749 es
->enc_ctx_num
= SVAL(param_out
.data
, 0);
751 data_blob_free(&blob_send
);
752 status
= make_cli_gss_blob(es
, servicename
, fqdn
, status
, blob_recv
, &blob_send
);
753 } while (NT_STATUS_EQUAL(status
, NT_STATUS_MORE_PROCESSING_REQUIRED
));
754 data_blob_free(&blob_recv
);
756 if (NT_STATUS_IS_OK(status
)) {
757 /* Replace the old state, if any. */
758 if (cli
->trans_enc_state
) {
759 common_free_encryption_state(&cli
->trans_enc_state
);
761 cli
->trans_enc_state
= es
;
762 cli
->trans_enc_state
->enc_on
= True
;
768 common_free_encryption_state(&es
);
772 NTSTATUS
cli_gss_smb_encryption_start(struct cli_state
*cli
)
774 return NT_STATUS_NOT_SUPPORTED
;
778 /********************************************************************
779 Ensure a connection is encrypted.
780 ********************************************************************/
782 NTSTATUS
cli_force_encryption(struct cli_state
*c
,
783 const char *username
,
784 const char *password
,
788 uint32 caplow
, caphigh
;
790 if (!SERVER_HAS_UNIX_CIFS(c
)) {
791 return NT_STATUS_NOT_SUPPORTED
;
794 if (!cli_unix_extensions_version(c
, &major
, &minor
, &caplow
, &caphigh
)) {
795 return NT_STATUS_UNKNOWN_REVISION
;
798 if (!(caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
)) {
799 return NT_STATUS_UNSUPPORTED_COMPRESSION
;
802 if (c
->use_kerberos
) {
803 return cli_gss_smb_encryption_start(c
);
805 return cli_raw_ntlm_smb_encryption_start(c
,