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/>.
22 #include "../libcli/auth/spnego.h"
23 #include "../libcli/auth/ntlmssp.h"
25 /****************************************************************************
26 Get UNIX extensions version info.
27 ****************************************************************************/
29 struct cli_unix_extensions_version_state
{
30 struct cli_state
*cli
;
33 uint16_t major
, minor
;
34 uint32_t caplow
, caphigh
;
37 static void cli_unix_extensions_version_done(struct tevent_req
*subreq
);
39 struct tevent_req
*cli_unix_extensions_version_send(TALLOC_CTX
*mem_ctx
,
40 struct tevent_context
*ev
,
41 struct cli_state
*cli
)
43 struct tevent_req
*req
, *subreq
;
44 struct cli_unix_extensions_version_state
*state
;
46 req
= tevent_req_create(mem_ctx
, &state
,
47 struct cli_unix_extensions_version_state
);
52 SSVAL(state
->setup
, 0, TRANSACT2_QFSINFO
);
53 SSVAL(state
->param
, 0, SMB_QUERY_CIFS_UNIX_INFO
);
55 subreq
= cli_trans_send(state
, ev
, cli
, SMBtrans2
,
60 if (tevent_req_nomem(subreq
, req
)) {
61 return tevent_req_post(req
, ev
);
63 tevent_req_set_callback(subreq
, cli_unix_extensions_version_done
, req
);
67 static void cli_unix_extensions_version_done(struct tevent_req
*subreq
)
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
);
77 status
= cli_trans_recv(subreq
, state
, NULL
, NULL
, 0, NULL
,
78 NULL
, 0, NULL
, &data
, 12, &num_data
);
80 if (!NT_STATUS_IS_OK(status
)) {
81 tevent_req_nterror(req
, status
);
85 state
->major
= SVAL(data
, 0);
86 state
->minor
= SVAL(data
, 2);
87 state
->caplow
= IVAL(data
, 4);
88 state
->caphigh
= IVAL(data
, 8);
93 NTSTATUS
cli_unix_extensions_version_recv(struct tevent_req
*req
,
94 uint16_t *pmajor
, uint16_t *pminor
,
98 struct cli_unix_extensions_version_state
*state
= tevent_req_data(
99 req
, struct cli_unix_extensions_version_state
);
102 if (tevent_req_is_nterror(req
, &status
)) {
105 *pmajor
= state
->major
;
106 *pminor
= state
->minor
;
107 *pcaplow
= state
->caplow
;
108 *pcaphigh
= state
->caphigh
;
109 state
->cli
->server_posix_capabilities
= *pcaplow
;
113 NTSTATUS
cli_unix_extensions_version(struct cli_state
*cli
, uint16
*pmajor
,
114 uint16
*pminor
, uint32
*pcaplow
,
117 TALLOC_CTX
*frame
= talloc_stackframe();
118 struct event_context
*ev
;
119 struct tevent_req
*req
;
120 NTSTATUS status
= NT_STATUS_OK
;
122 if (cli_has_async_calls(cli
)) {
124 * Can't use sync call while an async call is in flight
126 status
= NT_STATUS_INVALID_PARAMETER
;
130 ev
= event_context_init(frame
);
132 status
= NT_STATUS_NO_MEMORY
;
136 req
= cli_unix_extensions_version_send(frame
, ev
, cli
);
138 status
= NT_STATUS_NO_MEMORY
;
142 if (!tevent_req_poll(req
, ev
)) {
143 status
= map_nt_error_from_unix(errno
);
147 status
= cli_unix_extensions_version_recv(req
, pmajor
, pminor
, pcaplow
,
151 if (!NT_STATUS_IS_OK(status
)) {
152 cli_set_error(cli
, status
);
157 /****************************************************************************
158 Set UNIX extensions capabilities.
159 ****************************************************************************/
161 struct cli_set_unix_extensions_capabilities_state
{
162 struct cli_state
*cli
;
168 static void cli_set_unix_extensions_capabilities_done(
169 struct tevent_req
*subreq
);
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
)
175 struct tevent_req
*req
, *subreq
;
176 struct cli_set_unix_extensions_capabilities_state
*state
;
178 req
= tevent_req_create(
180 struct cli_set_unix_extensions_capabilities_state
);
186 SSVAL(state
->setup
+0, 0, TRANSACT2_SETFSINFO
);
188 SSVAL(state
->param
, 0, 0);
189 SSVAL(state
->param
, 2, SMB_SET_CIFS_UNIX_INFO
);
191 SSVAL(state
->data
, 0, major
);
192 SSVAL(state
->data
, 2, minor
);
193 SIVAL(state
->data
, 4, caplow
);
194 SIVAL(state
->data
, 8, caphigh
);
196 subreq
= cli_trans_send(state
, ev
, cli
, SMBtrans2
,
200 state
->data
, 12, 560);
201 if (tevent_req_nomem(subreq
, req
)) {
202 return tevent_req_post(req
, ev
);
204 tevent_req_set_callback(
205 subreq
, cli_set_unix_extensions_capabilities_done
, req
);
209 static void cli_set_unix_extensions_capabilities_done(
210 struct tevent_req
*subreq
)
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
);
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);
222 tevent_req_simple_finish_ntstatus(subreq
, status
);
225 NTSTATUS
cli_set_unix_extensions_capabilities_recv(struct tevent_req
*req
)
227 return tevent_req_simple_recv_ntstatus(req
);
230 NTSTATUS
cli_set_unix_extensions_capabilities(struct cli_state
*cli
,
231 uint16 major
, uint16 minor
,
232 uint32 caplow
, uint32 caphigh
)
234 struct tevent_context
*ev
;
235 struct tevent_req
*req
;
236 NTSTATUS status
= NT_STATUS_NO_MEMORY
;
238 if (cli_has_async_calls(cli
)) {
239 return NT_STATUS_INVALID_PARAMETER
;
241 ev
= tevent_context_init(talloc_tos());
245 req
= cli_set_unix_extensions_capabilities_send(
246 ev
, ev
, cli
, major
, minor
, caplow
, caphigh
);
250 if (!tevent_req_poll_ntstatus(req
, ev
, &status
)) {
253 status
= cli_set_unix_extensions_capabilities_recv(req
);
256 if (!NT_STATUS_IS_OK(status
)) {
257 cli_set_error(cli
, status
);
262 struct cli_get_fs_attr_info_state
{
268 static void cli_get_fs_attr_info_done(struct tevent_req
*subreq
);
270 struct tevent_req
*cli_get_fs_attr_info_send(TALLOC_CTX
*mem_ctx
,
271 struct tevent_context
*ev
,
272 struct cli_state
*cli
)
274 struct tevent_req
*subreq
, *req
;
275 struct cli_get_fs_attr_info_state
*state
;
277 req
= tevent_req_create(mem_ctx
, &state
,
278 struct cli_get_fs_attr_info_state
);
282 SSVAL(state
->setup
+0, 0, TRANSACT2_QFSINFO
);
283 SSVAL(state
->param
+0, 0, SMB_QUERY_FS_ATTRIBUTE_INFO
);
285 subreq
= cli_trans_send(state
, ev
, cli
, SMBtrans2
,
290 if (tevent_req_nomem(subreq
, req
)) {
291 return tevent_req_post(req
, ev
);
293 tevent_req_set_callback(subreq
, cli_get_fs_attr_info_done
, req
);
297 static void cli_get_fs_attr_info_done(struct tevent_req
*subreq
)
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
);
307 status
= cli_trans_recv(subreq
, talloc_tos(), NULL
, NULL
, 0, NULL
,
308 NULL
, 0, NULL
, &data
, 12, &num_data
);
310 if (!NT_STATUS_IS_OK(status
)) {
311 tevent_req_nterror(req
, status
);
314 state
->fs_attr
= IVAL(data
, 0);
316 tevent_req_done(req
);
319 NTSTATUS
cli_get_fs_attr_info_recv(struct tevent_req
*req
, uint32_t *fs_attr
)
321 struct cli_get_fs_attr_info_state
*state
= tevent_req_data(
322 req
, struct cli_get_fs_attr_info_state
);
325 if (tevent_req_is_nterror(req
, &status
)) {
328 *fs_attr
= state
->fs_attr
;
332 NTSTATUS
cli_get_fs_attr_info(struct cli_state
*cli
, uint32_t *fs_attr
)
334 struct tevent_context
*ev
;
335 struct tevent_req
*req
;
336 NTSTATUS status
= NT_STATUS_NO_MEMORY
;
338 if (cli_has_async_calls(cli
)) {
339 return NT_STATUS_INVALID_PARAMETER
;
341 ev
= tevent_context_init(talloc_tos());
345 req
= cli_get_fs_attr_info_send(ev
, ev
, cli
);
349 if (!tevent_req_poll_ntstatus(req
, ev
, &status
)) {
352 status
= cli_get_fs_attr_info_recv(req
, fs_attr
);
355 if (!NT_STATUS_IS_OK(status
)) {
356 cli_set_error(cli
, status
);
361 NTSTATUS
cli_get_fs_volume_info(struct cli_state
*cli
, fstring volume_name
,
362 uint32
*pserial_number
, time_t *pdate
)
368 uint32_t rdata_count
;
371 SSVAL(setup
, 0, TRANSACT2_QFSINFO
);
372 SSVAL(param
,0,SMB_QUERY_FS_VOLUME_INFO
);
374 status
= cli_trans(talloc_tos(), cli
, SMBtrans2
,
382 &rdata
, 10, &rdata_count
);
383 if (!NT_STATUS_IS_OK(status
)) {
389 ts
= interpret_long_date((char *)rdata
);
392 if (pserial_number
) {
393 *pserial_number
= IVAL(rdata
,8);
395 nlen
= IVAL(rdata
,12);
396 clistr_pull(cli
->inbuf
, volume_name
, rdata
+ 18, sizeof(fstring
),
399 /* todo: but not yet needed
400 * return the other stuff
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
)
417 char *rparam
=NULL
, *rdata
=NULL
;
418 unsigned int rparam_count
=0, rdata_count
=0;
420 setup
= TRANSACT2_QFSINFO
;
422 SSVAL(param
,0,SMB_FS_FULL_SIZE_INFORMATION
);
424 if (!cli_send_trans(cli
, SMBtrans2
,
433 if (!cli_receive_trans(cli
, SMBtrans2
,
434 &rparam
, &rparam_count
,
435 &rdata
, &rdata_count
)) {
439 if (cli_is_error(cli
)) {
446 if (rdata_count
!= 32) {
450 if (total_allocation_units
) {
451 *total_allocation_units
= BIG_UINT(rdata
, 0);
453 if (caller_allocation_units
) {
454 *caller_allocation_units
= BIG_UINT(rdata
,8);
456 if (actual_allocation_units
) {
457 *actual_allocation_units
= BIG_UINT(rdata
,16);
459 if (sectors_per_allocation_unit
) {
460 *sectors_per_allocation_unit
= IVAL(rdata
,24);
462 if (bytes_per_sector
) {
463 *bytes_per_sector
= IVAL(rdata
,28);
473 bool cli_get_posix_fs_info(struct cli_state
*cli
,
474 uint32
*optimal_transfer_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
)
486 char *rparam
=NULL
, *rdata
=NULL
;
487 unsigned int rparam_count
=0, rdata_count
=0;
489 setup
= TRANSACT2_QFSINFO
;
491 SSVAL(param
,0,SMB_QUERY_POSIX_FS_INFO
);
493 if (!cli_send_trans(cli
, SMBtrans2
,
502 if (!cli_receive_trans(cli
, SMBtrans2
,
503 &rparam
, &rparam_count
,
504 &rdata
, &rdata_count
)) {
508 if (cli_is_error(cli
)) {
515 if (rdata_count
!= 56) {
519 if (optimal_transfer_size
) {
520 *optimal_transfer_size
= IVAL(rdata
, 0);
523 *block_size
= IVAL(rdata
,4);
526 *total_blocks
= BIG_UINT(rdata
,8);
528 if (blocks_available
) {
529 *blocks_available
= BIG_UINT(rdata
,16);
531 if (user_blocks_available
) {
532 *user_blocks_available
= BIG_UINT(rdata
,24);
534 if (total_file_nodes
) {
535 *total_file_nodes
= BIG_UINT(rdata
,32);
537 if (free_file_nodes
) {
538 *free_file_nodes
= BIG_UINT(rdata
,40);
541 *fs_identifier
= BIG_UINT(rdata
,48);
552 /******************************************************************************
553 Send/receive the request encryption blob.
554 ******************************************************************************/
556 static NTSTATUS
enc_blob_send_receive(struct cli_state
*cli
, DATA_BLOB
*in
, DATA_BLOB
*out
, DATA_BLOB
*param_out
)
560 char *rparam
=NULL
, *rdata
=NULL
;
561 unsigned int rparam_count
=0, rdata_count
=0;
562 NTSTATUS status
= NT_STATUS_OK
;
564 setup
= TRANSACT2_SETFSINFO
;
567 SSVAL(param
,2,SMB_REQUEST_TRANSPORT_ENCRYPTION
);
569 if (!cli_send_trans(cli
, SMBtrans2
,
574 (char *)in
->data
, in
->length
, CLI_BUFFER_SIZE
)) {
575 status
= cli_nt_error(cli
);
579 if (!cli_receive_trans(cli
, SMBtrans2
,
580 &rparam
, &rparam_count
,
581 &rdata
, &rdata_count
)) {
582 status
= cli_nt_error(cli
);
586 if (cli_is_error(cli
)) {
587 status
= cli_nt_error(cli
);
588 if (!NT_STATUS_EQUAL(status
, NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
593 *out
= data_blob(rdata
, rdata_count
);
594 *param_out
= data_blob(rparam
, rparam_count
);
603 /******************************************************************************
604 Make a client state struct.
605 ******************************************************************************/
607 static struct smb_trans_enc_state
*make_cli_enc_state(enum smb_trans_enc_type smb_enc_type
)
609 struct smb_trans_enc_state
*es
= NULL
;
610 es
= SMB_MALLOC_P(struct smb_trans_enc_state
);
615 es
->smb_enc_type
= smb_enc_type
;
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
) {
624 ZERO_STRUCTP(es
->s
.gss_state
);
630 /******************************************************************************
631 Start a raw ntlmssp encryption.
632 ******************************************************************************/
634 NTSTATUS
cli_raw_ntlm_smb_encryption_start(struct cli_state
*cli
,
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
);
646 return NT_STATUS_NO_MEMORY
;
648 status
= ntlmssp_client_start(NULL
,
651 lp_client_ntlmv2_auth(),
652 &es
->s
.ntlmssp_state
);
653 if (!NT_STATUS_IS_OK(status
)) {
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
);
660 if (!NT_STATUS_IS_OK(status
= ntlmssp_set_username(es
->s
.ntlmssp_state
, user
))) {
663 if (!NT_STATUS_IS_OK(status
= ntlmssp_set_domain(es
->s
.ntlmssp_state
, domain
))) {
666 if (!NT_STATUS_IS_OK(status
= ntlmssp_set_password(es
->s
.ntlmssp_state
, pass
))) {
671 status
= ntlmssp_update(es
->s
.ntlmssp_state
, blob_in
, &blob_out
);
672 data_blob_free(&blob_in
);
673 data_blob_free(¶m_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
,
679 if (!NT_STATUS_EQUAL(trans_status
,
680 NT_STATUS_MORE_PROCESSING_REQUIRED
) &&
681 !NT_STATUS_IS_OK(trans_status
)) {
682 status
= trans_status
;
684 if (param_out
.length
== 2) {
685 es
->enc_ctx_num
= SVAL(param_out
.data
, 0);
689 data_blob_free(&blob_out
);
690 } while (NT_STATUS_EQUAL(status
, NT_STATUS_MORE_PROCESSING_REQUIRED
));
692 data_blob_free(&blob_in
);
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
);
699 cli
->trans_enc_state
= es
;
700 cli
->trans_enc_state
->enc_on
= True
;
706 common_free_encryption_state(&es
);
710 #if defined(HAVE_GSSAPI) && defined(HAVE_KRB5)
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)
716 /******************************************************************************
717 Get client gss blob to send to a server.
718 ******************************************************************************/
720 static NTSTATUS
make_cli_gss_blob(TALLOC_CTX
*ctx
,
721 struct smb_trans_enc_state
*es
,
725 DATA_BLOB spnego_blob_in
,
726 DATA_BLOB
*p_blob_out
)
728 const char *krb_mechs
[] = {OID_KERBEROS5
, NULL
};
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
;
741 gss_OID_desc nt_hostbased_service
=
742 {10, CONST_DISCARD(char *,"\x2a\x86\x48\x86\xf7\x12\x01\x02\x01\x04")};
744 memset(&tok_out
, '\0', sizeof(tok_out
));
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
;
751 input_name
.value
= host_princ_s
;
752 input_name
.length
= strlen(host_princ_s
) + 1;
754 ret
= gss_import_name(&min
,
756 &nt_hostbased_service
,
759 if (ret
!= GSS_S_COMPLETE
) {
760 SAFE_FREE(host_princ_s
);
761 return map_nt_error_from_gss(ret
, min
);
764 if (spnego_blob_in
.length
== 0) {
765 p_tok_in
= GSS_C_NO_BUFFER
;
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
;
772 tok_in
.value
= blob_in
.data
;
773 tok_in
.length
= blob_in
.length
;
777 ret
= gss_init_sec_context(&min
,
778 GSS_C_NO_CREDENTIAL
, /* Use our default cred. */
779 &es
->s
.gss_state
->gss_ctx
,
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 */
786 NULL
, /* ignore mech type */
789 NULL
); /* ignore time_rec */
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",
799 if ((ret_flags
& SMB_GSS_REQUIRED_FLAGS
) != SMB_GSS_REQUIRED_FLAGS
) {
800 status
= NT_STATUS_ACCESS_DENIED
;
803 blob_out
= data_blob_talloc(ctx
, tok_out
.value
, tok_out
.length
);
805 /* Wrap in an SPNEGO wrapper */
806 *p_blob_out
= spnego_gen_negTokenInit(ctx
, krb_mechs
, &blob_out
, NULL
);
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
);
815 gss_release_buffer(&min
, &tok_out
);
820 /******************************************************************************
821 Start a SPNEGO gssapi encryption context.
822 ******************************************************************************/
824 NTSTATUS
cli_gss_smb_encryption_start(struct cli_state
*cli
)
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
;
831 const char *servicename
;
832 struct smb_trans_enc_state
*es
= make_cli_enc_state(SMB_TRANS_ENC_GSS
);
835 return NT_STATUS_NO_MEMORY
;
838 name_to_fqdn(fqdn
, cli
->desthost
);
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
)) {
852 data_blob_free(&blob_recv
);
853 status
= enc_blob_send_receive(cli
, &blob_send
, &blob_recv
, ¶m_out
);
854 if (param_out
.length
== 2) {
855 es
->enc_ctx_num
= SVAL(param_out
.data
, 0);
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
);
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
);
867 cli
->trans_enc_state
= es
;
868 cli
->trans_enc_state
->enc_on
= True
;
874 common_free_encryption_state(&es
);
878 NTSTATUS
cli_gss_smb_encryption_start(struct cli_state
*cli
)
880 return NT_STATUS_NOT_SUPPORTED
;
884 /********************************************************************
885 Ensure a connection is encrypted.
886 ********************************************************************/
888 NTSTATUS
cli_force_encryption(struct cli_state
*c
,
889 const char *username
,
890 const char *password
,
894 uint32 caplow
, caphigh
;
897 if (!SERVER_HAS_UNIX_CIFS(c
)) {
898 return NT_STATUS_NOT_SUPPORTED
;
901 status
= cli_unix_extensions_version(c
, &major
, &minor
, &caplow
,
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
;
909 if (!(caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
)) {
910 return NT_STATUS_UNSUPPORTED_COMPRESSION
;
913 if (c
->use_kerberos
) {
914 return cli_gss_smb_encryption_start(c
);
916 return cli_raw_ntlm_smb_encryption_start(c
,