2 * fs/cifs/cifsencrypt.c
4 * Copyright (C) International Business Machines Corp., 2005,2006
5 * Author(s): Steve French (sfrench@us.ibm.com)
7 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published
9 * by the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
12 * This library 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
15 * the GNU Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/slab.h>
26 #include "cifs_debug.h"
27 #include "cifs_unicode.h"
28 #include "cifsproto.h"
30 #include <linux/ctype.h>
31 #include <linux/random.h>
34 * Calculate and return the CIFS signature based on the mac key and SMB PDU.
35 * The 16 byte signature must be allocated by the caller. Note we only use the
36 * 1st eight bytes and that the smb header signature field on input contains
37 * the sequence number before this function is called. Also, this function
38 * should be called with the server->srv_mutex held.
40 static int cifs_calculate_signature(const struct smb_hdr
*cifs_pdu
,
41 struct TCP_Server_Info
*server
, char *signature
)
45 if (cifs_pdu
== NULL
|| signature
== NULL
|| server
== NULL
)
48 if (!server
->secmech
.sdescmd5
) {
49 cERROR(1, "%s: Can't generate signature\n", __func__
);
53 rc
= crypto_shash_init(&server
->secmech
.sdescmd5
->shash
);
55 cERROR(1, "%s: Oould not init md5\n", __func__
);
59 crypto_shash_update(&server
->secmech
.sdescmd5
->shash
,
60 server
->session_key
.response
, server
->session_key
.len
);
62 crypto_shash_update(&server
->secmech
.sdescmd5
->shash
,
63 cifs_pdu
->Protocol
, cifs_pdu
->smb_buf_length
);
65 rc
= crypto_shash_final(&server
->secmech
.sdescmd5
->shash
, signature
);
70 /* must be called with server->srv_mutex held */
71 int cifs_sign_smb(struct smb_hdr
*cifs_pdu
, struct TCP_Server_Info
*server
,
72 __u32
*pexpected_response_sequence_number
)
75 char smb_signature
[20];
77 if ((cifs_pdu
== NULL
) || (server
== NULL
))
80 if ((cifs_pdu
->Flags2
& SMBFLG2_SECURITY_SIGNATURE
) == 0)
83 cifs_pdu
->Signature
.Sequence
.SequenceNumber
=
84 cpu_to_le32(server
->sequence_number
);
85 cifs_pdu
->Signature
.Sequence
.Reserved
= 0;
87 *pexpected_response_sequence_number
= server
->sequence_number
++;
88 server
->sequence_number
++;
90 rc
= cifs_calculate_signature(cifs_pdu
, server
, smb_signature
);
92 memset(cifs_pdu
->Signature
.SecuritySignature
, 0, 8);
94 memcpy(cifs_pdu
->Signature
.SecuritySignature
, smb_signature
, 8);
99 static int cifs_calc_signature2(const struct kvec
*iov
, int n_vec
,
100 struct TCP_Server_Info
*server
, char *signature
)
105 if (iov
== NULL
|| signature
== NULL
|| server
== NULL
)
108 if (!server
->secmech
.sdescmd5
) {
109 cERROR(1, "%s: Can't generate signature\n", __func__
);
113 rc
= crypto_shash_init(&server
->secmech
.sdescmd5
->shash
);
115 cERROR(1, "%s: Oould not init md5\n", __func__
);
119 crypto_shash_update(&server
->secmech
.sdescmd5
->shash
,
120 server
->session_key
.response
, server
->session_key
.len
);
122 for (i
= 0; i
< n_vec
; i
++) {
123 if (iov
[i
].iov_len
== 0)
125 if (iov
[i
].iov_base
== NULL
) {
126 cERROR(1, "null iovec entry");
129 /* The first entry includes a length field (which does not get
130 signed that occupies the first 4 bytes before the header */
132 if (iov
[0].iov_len
<= 8) /* cmd field at offset 9 */
133 break; /* nothing to sign or corrupt header */
134 crypto_shash_update(&server
->secmech
.sdescmd5
->shash
,
135 iov
[i
].iov_base
+ 4, iov
[i
].iov_len
- 4);
137 crypto_shash_update(&server
->secmech
.sdescmd5
->shash
,
138 iov
[i
].iov_base
, iov
[i
].iov_len
);
141 rc
= crypto_shash_final(&server
->secmech
.sdescmd5
->shash
, signature
);
146 /* must be called with server->srv_mutex held */
147 int cifs_sign_smb2(struct kvec
*iov
, int n_vec
, struct TCP_Server_Info
*server
,
148 __u32
*pexpected_response_sequence_number
)
151 char smb_signature
[20];
152 struct smb_hdr
*cifs_pdu
= iov
[0].iov_base
;
154 if ((cifs_pdu
== NULL
) || (server
== NULL
))
157 if ((cifs_pdu
->Flags2
& SMBFLG2_SECURITY_SIGNATURE
) == 0)
160 cifs_pdu
->Signature
.Sequence
.SequenceNumber
=
161 cpu_to_le32(server
->sequence_number
);
162 cifs_pdu
->Signature
.Sequence
.Reserved
= 0;
164 *pexpected_response_sequence_number
= server
->sequence_number
++;
165 server
->sequence_number
++;
167 rc
= cifs_calc_signature2(iov
, n_vec
, server
, smb_signature
);
169 memset(cifs_pdu
->Signature
.SecuritySignature
, 0, 8);
171 memcpy(cifs_pdu
->Signature
.SecuritySignature
, smb_signature
, 8);
176 int cifs_verify_signature(struct smb_hdr
*cifs_pdu
,
177 struct TCP_Server_Info
*server
,
178 __u32 expected_sequence_number
)
181 char server_response_sig
[8];
182 char what_we_think_sig_should_be
[20];
184 if (cifs_pdu
== NULL
|| server
== NULL
)
187 if (cifs_pdu
->Command
== SMB_COM_NEGOTIATE
)
190 if (cifs_pdu
->Command
== SMB_COM_LOCKING_ANDX
) {
191 struct smb_com_lock_req
*pSMB
=
192 (struct smb_com_lock_req
*)cifs_pdu
;
193 if (pSMB
->LockType
& LOCKING_ANDX_OPLOCK_RELEASE
)
197 /* BB what if signatures are supposed to be on for session but
198 server does not send one? BB */
200 /* Do not need to verify session setups with signature "BSRSPYL " */
201 if (memcmp(cifs_pdu
->Signature
.SecuritySignature
, "BSRSPYL ", 8) == 0)
202 cFYI(1, "dummy signature received for smb command 0x%x",
205 /* save off the origiginal signature so we can modify the smb and check
206 its signature against what the server sent */
207 memcpy(server_response_sig
, cifs_pdu
->Signature
.SecuritySignature
, 8);
209 cifs_pdu
->Signature
.Sequence
.SequenceNumber
=
210 cpu_to_le32(expected_sequence_number
);
211 cifs_pdu
->Signature
.Sequence
.Reserved
= 0;
213 mutex_lock(&server
->srv_mutex
);
214 rc
= cifs_calculate_signature(cifs_pdu
, server
,
215 what_we_think_sig_should_be
);
216 mutex_unlock(&server
->srv_mutex
);
221 /* cifs_dump_mem("what we think it should be: ",
222 what_we_think_sig_should_be, 16); */
224 if (memcmp(server_response_sig
, what_we_think_sig_should_be
, 8))
231 /* first calculate 24 bytes ntlm response and then 16 byte session key */
232 int setup_ntlm_response(struct cifsSesInfo
*ses
)
235 unsigned int temp_len
= CIFS_SESS_KEY_SIZE
+ CIFS_AUTH_RESP_SIZE
;
236 char temp_key
[CIFS_SESS_KEY_SIZE
];
241 ses
->auth_key
.response
= kmalloc(temp_len
, GFP_KERNEL
);
242 if (!ses
->auth_key
.response
) {
243 cERROR(1, "NTLM can't allocate (%u bytes) memory", temp_len
);
246 ses
->auth_key
.len
= temp_len
;
248 rc
= SMBNTencrypt(ses
->password
, ses
->server
->cryptkey
,
249 ses
->auth_key
.response
+ CIFS_SESS_KEY_SIZE
);
251 cFYI(1, "%s Can't generate NTLM response, error: %d",
256 rc
= E_md4hash(ses
->password
, temp_key
);
258 cFYI(1, "%s Can't generate NT hash, error: %d", __func__
, rc
);
262 rc
= mdfour(ses
->auth_key
.response
, temp_key
, CIFS_SESS_KEY_SIZE
);
264 cFYI(1, "%s Can't generate NTLM session key, error: %d",
270 #ifdef CONFIG_CIFS_WEAK_PW_HASH
271 void calc_lanman_hash(const char *password
, const char *cryptkey
, bool encrypt
,
272 char *lnm_session_key
)
275 char password_with_pad
[CIFS_ENCPWD_SIZE
];
277 memset(password_with_pad
, 0, CIFS_ENCPWD_SIZE
);
279 strncpy(password_with_pad
, password
, CIFS_ENCPWD_SIZE
);
281 if (!encrypt
&& global_secflags
& CIFSSEC_MAY_PLNTXT
) {
282 memset(lnm_session_key
, 0, CIFS_SESS_KEY_SIZE
);
283 memcpy(lnm_session_key
, password_with_pad
,
288 /* calculate old style session key */
289 /* calling toupper is less broken than repeatedly
290 calling nls_toupper would be since that will never
291 work for UTF8, but neither handles multibyte code pages
292 but the only alternative would be converting to UCS-16 (Unicode)
293 (using a routine something like UniStrupr) then
294 uppercasing and then converting back from Unicode - which
295 would only worth doing it if we knew it were utf8. Basically
296 utf8 and other multibyte codepages each need their own strupper
297 function since a byte at a time will ont work. */
299 for (i
= 0; i
< CIFS_ENCPWD_SIZE
; i
++)
300 password_with_pad
[i
] = toupper(password_with_pad
[i
]);
302 SMBencrypt(password_with_pad
, cryptkey
, lnm_session_key
);
304 /* clear password before we return/free memory */
305 memset(password_with_pad
, 0, CIFS_ENCPWD_SIZE
);
307 #endif /* CIFS_WEAK_PW_HASH */
309 /* Build a proper attribute value/target info pairs blob.
310 * Fill in netbios and dns domain name and workstation name
311 * and client time (total five av pairs and + one end of fields indicator.
312 * Allocate domain name which gets freed when session struct is deallocated.
315 build_avpair_blob(struct cifsSesInfo
*ses
, const struct nls_table
*nls_cp
)
319 unsigned int size
= 6 * sizeof(struct ntlmssp2_name
);
321 char *defdmname
= "WORKGROUP";
322 unsigned char *blobptr
;
323 struct ntlmssp2_name
*attrptr
;
325 if (!ses
->domainName
) {
326 ses
->domainName
= kstrdup(defdmname
, GFP_KERNEL
);
327 if (!ses
->domainName
)
331 dlen
= strlen(ses
->domainName
);
332 wlen
= strlen(ses
->server
->hostname
);
334 /* The length of this blob is a size which is
335 * six times the size of a structure which holds name/size +
336 * two times the unicode length of a domain name +
337 * two times the unicode length of a server name +
338 * size of a timestamp (which is 8 bytes).
340 ses
->auth_key
.len
= size
+ 2 * (2 * dlen
) + 2 * (2 * wlen
) + 8;
341 ses
->auth_key
.response
= kzalloc(ses
->auth_key
.len
, GFP_KERNEL
);
342 if (!ses
->auth_key
.response
) {
343 ses
->auth_key
.len
= 0;
344 cERROR(1, "Challenge target info allocation failure");
348 blobptr
= ses
->auth_key
.response
;
349 attrptr
= (struct ntlmssp2_name
*) blobptr
;
351 attrptr
->type
= cpu_to_le16(NTLMSSP_AV_NB_DOMAIN_NAME
);
352 attrptr
->length
= cpu_to_le16(2 * dlen
);
353 blobptr
= (unsigned char *)attrptr
+ sizeof(struct ntlmssp2_name
);
354 cifs_strtoUCS((__le16
*)blobptr
, ses
->domainName
, dlen
, nls_cp
);
357 attrptr
= (struct ntlmssp2_name
*) blobptr
;
359 attrptr
->type
= cpu_to_le16(NTLMSSP_AV_NB_COMPUTER_NAME
);
360 attrptr
->length
= cpu_to_le16(2 * wlen
);
361 blobptr
= (unsigned char *)attrptr
+ sizeof(struct ntlmssp2_name
);
362 cifs_strtoUCS((__le16
*)blobptr
, ses
->server
->hostname
, wlen
, nls_cp
);
365 attrptr
= (struct ntlmssp2_name
*) blobptr
;
367 attrptr
->type
= cpu_to_le16(NTLMSSP_AV_DNS_DOMAIN_NAME
);
368 attrptr
->length
= cpu_to_le16(2 * dlen
);
369 blobptr
= (unsigned char *)attrptr
+ sizeof(struct ntlmssp2_name
);
370 cifs_strtoUCS((__le16
*)blobptr
, ses
->domainName
, dlen
, nls_cp
);
373 attrptr
= (struct ntlmssp2_name
*) blobptr
;
375 attrptr
->type
= cpu_to_le16(NTLMSSP_AV_DNS_COMPUTER_NAME
);
376 attrptr
->length
= cpu_to_le16(2 * wlen
);
377 blobptr
= (unsigned char *)attrptr
+ sizeof(struct ntlmssp2_name
);
378 cifs_strtoUCS((__le16
*)blobptr
, ses
->server
->hostname
, wlen
, nls_cp
);
381 attrptr
= (struct ntlmssp2_name
*) blobptr
;
383 attrptr
->type
= cpu_to_le16(NTLMSSP_AV_TIMESTAMP
);
384 attrptr
->length
= cpu_to_le16(sizeof(__le64
));
385 blobptr
= (unsigned char *)attrptr
+ sizeof(struct ntlmssp2_name
);
386 curtime
= cpu_to_le64(cifs_UnixTimeToNT(CURRENT_TIME
));
387 memcpy(blobptr
, &curtime
, sizeof(__le64
));
392 /* Server has provided av pairs/target info in the type 2 challenge
393 * packet and we have plucked it and stored within smb session.
394 * We parse that blob here to find netbios domain name to be used
395 * as part of ntlmv2 authentication (in Target String), if not already
396 * specified on the command line.
397 * If this function returns without any error but without fetching
398 * domain name, authentication may fail against some server but
399 * may not fail against other (those who are not very particular
400 * about target string i.e. for some, just user name might suffice.
403 find_domain_name(struct cifsSesInfo
*ses
, const struct nls_table
*nls_cp
)
405 unsigned int attrsize
;
407 unsigned int onesize
= sizeof(struct ntlmssp2_name
);
408 unsigned char *blobptr
;
409 unsigned char *blobend
;
410 struct ntlmssp2_name
*attrptr
;
412 if (!ses
->auth_key
.len
|| !ses
->auth_key
.response
)
415 blobptr
= ses
->auth_key
.response
;
416 blobend
= blobptr
+ ses
->auth_key
.len
;
418 while (blobptr
+ onesize
< blobend
) {
419 attrptr
= (struct ntlmssp2_name
*) blobptr
;
420 type
= le16_to_cpu(attrptr
->type
);
421 if (type
== NTLMSSP_AV_EOL
)
423 blobptr
+= 2; /* advance attr type */
424 attrsize
= le16_to_cpu(attrptr
->length
);
425 blobptr
+= 2; /* advance attr size */
426 if (blobptr
+ attrsize
> blobend
)
428 if (type
== NTLMSSP_AV_NB_DOMAIN_NAME
) {
431 if (!ses
->domainName
) {
433 kmalloc(attrsize
+ 1, GFP_KERNEL
);
434 if (!ses
->domainName
)
436 cifs_from_ucs2(ses
->domainName
,
437 (__le16
*)blobptr
, attrsize
, attrsize
,
442 blobptr
+= attrsize
; /* advance attr value */
448 static int calc_ntlmv2_hash(struct cifsSesInfo
*ses
, char *ntlmv2_hash
,
449 const struct nls_table
*nls_cp
)
453 char nt_hash
[CIFS_NTHASH_SIZE
];
458 if (!ses
->server
->secmech
.sdeschmacmd5
) {
459 cERROR(1, "calc_ntlmv2_hash: can't generate ntlmv2 hash\n");
463 /* calculate md4 hash of password */
464 E_md4hash(ses
->password
, nt_hash
);
466 crypto_shash_setkey(ses
->server
->secmech
.hmacmd5
, nt_hash
,
469 rc
= crypto_shash_init(&ses
->server
->secmech
.sdeschmacmd5
->shash
);
471 cERROR(1, "calc_ntlmv2_hash: could not init hmacmd5\n");
475 /* convert ses->user_name to unicode and uppercase */
476 len
= strlen(ses
->user_name
);
477 user
= kmalloc(2 + (len
* 2), GFP_KERNEL
);
479 cERROR(1, "calc_ntlmv2_hash: user mem alloc failure\n");
483 len
= cifs_strtoUCS((__le16
*)user
, ses
->user_name
, len
, nls_cp
);
486 crypto_shash_update(&ses
->server
->secmech
.sdeschmacmd5
->shash
,
487 (char *)user
, 2 * len
);
489 /* convert ses->domainName to unicode and uppercase */
490 if (ses
->domainName
) {
491 len
= strlen(ses
->domainName
);
493 domain
= kmalloc(2 + (len
* 2), GFP_KERNEL
);
494 if (domain
== NULL
) {
495 cERROR(1, "calc_ntlmv2_hash: domain mem alloc failure");
499 len
= cifs_strtoUCS((__le16
*)domain
, ses
->domainName
, len
,
501 crypto_shash_update(&ses
->server
->secmech
.sdeschmacmd5
->shash
,
502 (char *)domain
, 2 * len
);
504 } else if (ses
->serverName
) {
505 len
= strlen(ses
->serverName
);
507 server
= kmalloc(2 + (len
* 2), GFP_KERNEL
);
508 if (server
== NULL
) {
509 cERROR(1, "calc_ntlmv2_hash: server mem alloc failure");
513 len
= cifs_strtoUCS((__le16
*)server
, ses
->serverName
, len
,
515 crypto_shash_update(&ses
->server
->secmech
.sdeschmacmd5
->shash
,
516 (char *)server
, 2 * len
);
520 rc
= crypto_shash_final(&ses
->server
->secmech
.sdeschmacmd5
->shash
,
530 CalcNTLMv2_response(const struct cifsSesInfo
*ses
, char *ntlmv2_hash
)
533 unsigned int offset
= CIFS_SESS_KEY_SIZE
+ 8;
535 if (!ses
->server
->secmech
.sdeschmacmd5
) {
536 cERROR(1, "calc_ntlmv2_hash: can't generate ntlmv2 hash\n");
540 crypto_shash_setkey(ses
->server
->secmech
.hmacmd5
,
541 ntlmv2_hash
, CIFS_HMAC_MD5_HASH_SIZE
);
543 rc
= crypto_shash_init(&ses
->server
->secmech
.sdeschmacmd5
->shash
);
545 cERROR(1, "CalcNTLMv2_response: could not init hmacmd5");
549 if (ses
->server
->secType
== RawNTLMSSP
)
550 memcpy(ses
->auth_key
.response
+ offset
,
551 ses
->ntlmssp
->cryptkey
, CIFS_SERVER_CHALLENGE_SIZE
);
553 memcpy(ses
->auth_key
.response
+ offset
,
554 ses
->server
->cryptkey
, CIFS_SERVER_CHALLENGE_SIZE
);
555 crypto_shash_update(&ses
->server
->secmech
.sdeschmacmd5
->shash
,
556 ses
->auth_key
.response
+ offset
, ses
->auth_key
.len
- offset
);
558 rc
= crypto_shash_final(&ses
->server
->secmech
.sdeschmacmd5
->shash
,
559 ses
->auth_key
.response
+ CIFS_SESS_KEY_SIZE
);
566 setup_ntlmv2_rsp(struct cifsSesInfo
*ses
, const struct nls_table
*nls_cp
)
571 struct ntlmv2_resp
*buf
;
572 char ntlmv2_hash
[16];
573 unsigned char *tiblob
= NULL
; /* target info blob */
575 if (ses
->server
->secType
== RawNTLMSSP
) {
576 if (!ses
->domainName
) {
577 rc
= find_domain_name(ses
, nls_cp
);
579 cERROR(1, "error %d finding domain name", rc
);
580 goto setup_ntlmv2_rsp_ret
;
584 rc
= build_avpair_blob(ses
, nls_cp
);
586 cERROR(1, "error %d building av pair blob", rc
);
587 goto setup_ntlmv2_rsp_ret
;
591 baselen
= CIFS_SESS_KEY_SIZE
+ sizeof(struct ntlmv2_resp
);
592 tilen
= ses
->auth_key
.len
;
593 tiblob
= ses
->auth_key
.response
;
595 ses
->auth_key
.response
= kmalloc(baselen
+ tilen
, GFP_KERNEL
);
596 if (!ses
->auth_key
.response
) {
598 ses
->auth_key
.len
= 0;
599 cERROR(1, "%s: Can't allocate auth blob", __func__
);
600 goto setup_ntlmv2_rsp_ret
;
602 ses
->auth_key
.len
+= baselen
;
604 buf
= (struct ntlmv2_resp
*)
605 (ses
->auth_key
.response
+ CIFS_SESS_KEY_SIZE
);
606 buf
->blob_signature
= cpu_to_le32(0x00000101);
608 buf
->time
= cpu_to_le64(cifs_UnixTimeToNT(CURRENT_TIME
));
609 get_random_bytes(&buf
->client_chal
, sizeof(buf
->client_chal
));
612 memcpy(ses
->auth_key
.response
+ baselen
, tiblob
, tilen
);
614 /* calculate ntlmv2_hash */
615 rc
= calc_ntlmv2_hash(ses
, ntlmv2_hash
, nls_cp
);
617 cERROR(1, "could not get v2 hash rc %d", rc
);
618 goto setup_ntlmv2_rsp_ret
;
621 /* calculate first part of the client response (CR1) */
622 rc
= CalcNTLMv2_response(ses
, ntlmv2_hash
);
624 cERROR(1, "Could not calculate CR1 rc: %d", rc
);
625 goto setup_ntlmv2_rsp_ret
;
628 /* now calculate the session key for NTLMv2 */
629 crypto_shash_setkey(ses
->server
->secmech
.hmacmd5
,
630 ntlmv2_hash
, CIFS_HMAC_MD5_HASH_SIZE
);
632 rc
= crypto_shash_init(&ses
->server
->secmech
.sdeschmacmd5
->shash
);
634 cERROR(1, "%s: Could not init hmacmd5\n", __func__
);
635 goto setup_ntlmv2_rsp_ret
;
638 crypto_shash_update(&ses
->server
->secmech
.sdeschmacmd5
->shash
,
639 ses
->auth_key
.response
+ CIFS_SESS_KEY_SIZE
,
640 CIFS_HMAC_MD5_HASH_SIZE
);
642 rc
= crypto_shash_final(&ses
->server
->secmech
.sdeschmacmd5
->shash
,
643 ses
->auth_key
.response
);
645 setup_ntlmv2_rsp_ret
:
652 calc_seckey(struct cifsSesInfo
*ses
)
655 struct crypto_blkcipher
*tfm_arc4
;
656 struct scatterlist sgin
, sgout
;
657 struct blkcipher_desc desc
;
658 unsigned char sec_key
[CIFS_SESS_KEY_SIZE
]; /* a nonce */
660 get_random_bytes(sec_key
, CIFS_SESS_KEY_SIZE
);
662 tfm_arc4
= crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC
);
663 if (IS_ERR(tfm_arc4
)) {
664 rc
= PTR_ERR(tfm_arc4
);
665 cERROR(1, "could not allocate crypto API arc4\n");
671 crypto_blkcipher_setkey(tfm_arc4
, ses
->auth_key
.response
,
674 sg_init_one(&sgin
, sec_key
, CIFS_SESS_KEY_SIZE
);
675 sg_init_one(&sgout
, ses
->ntlmssp
->ciphertext
, CIFS_CPHTXT_SIZE
);
677 rc
= crypto_blkcipher_encrypt(&desc
, &sgout
, &sgin
, CIFS_CPHTXT_SIZE
);
679 cERROR(1, "could not encrypt session key rc: %d\n", rc
);
680 crypto_free_blkcipher(tfm_arc4
);
684 /* make secondary_key/nonce as session key */
685 memcpy(ses
->auth_key
.response
, sec_key
, CIFS_SESS_KEY_SIZE
);
686 /* and make len as that of session key only */
687 ses
->auth_key
.len
= CIFS_SESS_KEY_SIZE
;
689 crypto_free_blkcipher(tfm_arc4
);
695 cifs_crypto_shash_release(struct TCP_Server_Info
*server
)
697 if (server
->secmech
.md5
)
698 crypto_free_shash(server
->secmech
.md5
);
700 if (server
->secmech
.hmacmd5
)
701 crypto_free_shash(server
->secmech
.hmacmd5
);
703 kfree(server
->secmech
.sdeschmacmd5
);
705 kfree(server
->secmech
.sdescmd5
);
709 cifs_crypto_shash_allocate(struct TCP_Server_Info
*server
)
714 server
->secmech
.hmacmd5
= crypto_alloc_shash("hmac(md5)", 0, 0);
715 if (IS_ERR(server
->secmech
.hmacmd5
)) {
716 cERROR(1, "could not allocate crypto hmacmd5\n");
717 return PTR_ERR(server
->secmech
.hmacmd5
);
720 server
->secmech
.md5
= crypto_alloc_shash("md5", 0, 0);
721 if (IS_ERR(server
->secmech
.md5
)) {
722 cERROR(1, "could not allocate crypto md5\n");
723 rc
= PTR_ERR(server
->secmech
.md5
);
724 goto crypto_allocate_md5_fail
;
727 size
= sizeof(struct shash_desc
) +
728 crypto_shash_descsize(server
->secmech
.hmacmd5
);
729 server
->secmech
.sdeschmacmd5
= kmalloc(size
, GFP_KERNEL
);
730 if (!server
->secmech
.sdeschmacmd5
) {
731 cERROR(1, "cifs_crypto_shash_allocate: can't alloc hmacmd5\n");
733 goto crypto_allocate_hmacmd5_sdesc_fail
;
735 server
->secmech
.sdeschmacmd5
->shash
.tfm
= server
->secmech
.hmacmd5
;
736 server
->secmech
.sdeschmacmd5
->shash
.flags
= 0x0;
739 size
= sizeof(struct shash_desc
) +
740 crypto_shash_descsize(server
->secmech
.md5
);
741 server
->secmech
.sdescmd5
= kmalloc(size
, GFP_KERNEL
);
742 if (!server
->secmech
.sdescmd5
) {
743 cERROR(1, "cifs_crypto_shash_allocate: can't alloc md5\n");
745 goto crypto_allocate_md5_sdesc_fail
;
747 server
->secmech
.sdescmd5
->shash
.tfm
= server
->secmech
.md5
;
748 server
->secmech
.sdescmd5
->shash
.flags
= 0x0;
752 crypto_allocate_md5_sdesc_fail
:
753 kfree(server
->secmech
.sdeschmacmd5
);
755 crypto_allocate_hmacmd5_sdesc_fail
:
756 crypto_free_shash(server
->secmech
.md5
);
758 crypto_allocate_md5_fail
:
759 crypto_free_shash(server
->secmech
.hmacmd5
);