cifsencrypt.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /*
  2. * fs/cifs/cifsencrypt.c
  3. *
  4. * Copyright (C) International Business Machines Corp., 2003
  5. * Author(s): Steve French (sfrench@us.ibm.com)
  6. *
  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.
  11. *
  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.
  16. *
  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
  20. */
  21. #include <linux/fs.h>
  22. #include "cifspdu.h"
  23. #include "cifsglob.h"
  24. #include "cifs_debug.h"
  25. #include "md5.h"
  26. #include "cifs_unicode.h"
  27. #include "cifsproto.h"
  28. /* Calculate and return the CIFS signature based on the mac key and the smb pdu */
  29. /* the 16 byte signature must be allocated by the caller */
  30. /* Note we only use the 1st eight bytes */
  31. /* Note that the smb header signature field on input contains the
  32. sequence number before this function is called */
  33. extern void mdfour(unsigned char *out, unsigned char *in, int n);
  34. extern void E_md4hash(const unsigned char *passwd, unsigned char *p16);
  35. static int cifs_calculate_signature(const struct smb_hdr * cifs_pdu, const char * key, char * signature)
  36. {
  37. struct MD5Context context;
  38. if((cifs_pdu == NULL) || (signature == NULL))
  39. return -EINVAL;
  40. MD5Init(&context);
  41. MD5Update(&context,key,CIFS_SESSION_KEY_SIZE+16);
  42. MD5Update(&context,cifs_pdu->Protocol,cifs_pdu->smb_buf_length);
  43. MD5Final(signature,&context);
  44. return 0;
  45. }
  46. int cifs_sign_smb(struct smb_hdr * cifs_pdu, struct TCP_Server_Info * server,
  47. __u32 * pexpected_response_sequence_number)
  48. {
  49. int rc = 0;
  50. char smb_signature[20];
  51. /* BB remember to initialize sequence number elsewhere and initialize mac_signing key elsewhere BB */
  52. /* BB remember to add code to save expected sequence number in midQ entry BB */
  53. if((cifs_pdu == NULL) || (server == NULL))
  54. return -EINVAL;
  55. if((cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) == 0)
  56. return rc;
  57. spin_lock(&GlobalMid_Lock);
  58. cifs_pdu->Signature.Sequence.SequenceNumber = cpu_to_le32(server->sequence_number);
  59. cifs_pdu->Signature.Sequence.Reserved = 0;
  60. *pexpected_response_sequence_number = server->sequence_number++;
  61. server->sequence_number++;
  62. spin_unlock(&GlobalMid_Lock);
  63. rc = cifs_calculate_signature(cifs_pdu, server->mac_signing_key,smb_signature);
  64. if(rc)
  65. memset(cifs_pdu->Signature.SecuritySignature, 0, 8);
  66. else
  67. memcpy(cifs_pdu->Signature.SecuritySignature, smb_signature, 8);
  68. return rc;
  69. }
  70. int cifs_verify_signature(struct smb_hdr * cifs_pdu, const char * mac_key,
  71. __u32 expected_sequence_number)
  72. {
  73. unsigned int rc;
  74. char server_response_sig[8];
  75. char what_we_think_sig_should_be[20];
  76. if((cifs_pdu == NULL) || (mac_key == NULL))
  77. return -EINVAL;
  78. if (cifs_pdu->Command == SMB_COM_NEGOTIATE)
  79. return 0;
  80. if (cifs_pdu->Command == SMB_COM_LOCKING_ANDX) {
  81. struct smb_com_lock_req * pSMB = (struct smb_com_lock_req *)cifs_pdu;
  82. if(pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE)
  83. return 0;
  84. }
  85. /* BB what if signatures are supposed to be on for session but server does not
  86. send one? BB */
  87. /* Do not need to verify session setups with signature "BSRSPYL " */
  88. if(memcmp(cifs_pdu->Signature.SecuritySignature,"BSRSPYL ",8)==0)
  89. cFYI(1,("dummy signature received for smb command 0x%x",cifs_pdu->Command));
  90. /* save off the origiginal signature so we can modify the smb and check
  91. its signature against what the server sent */
  92. memcpy(server_response_sig,cifs_pdu->Signature.SecuritySignature,8);
  93. cifs_pdu->Signature.Sequence.SequenceNumber = cpu_to_le32(expected_sequence_number);
  94. cifs_pdu->Signature.Sequence.Reserved = 0;
  95. rc = cifs_calculate_signature(cifs_pdu, mac_key,
  96. what_we_think_sig_should_be);
  97. if(rc)
  98. return rc;
  99. /* cifs_dump_mem("what we think it should be: ",what_we_think_sig_should_be,16); */
  100. if(memcmp(server_response_sig, what_we_think_sig_should_be, 8))
  101. return -EACCES;
  102. else
  103. return 0;
  104. }
  105. /* We fill in key by putting in 40 byte array which was allocated by caller */
  106. int cifs_calculate_mac_key(char * key, const char * rn, const char * password)
  107. {
  108. char temp_key[16];
  109. if ((key == NULL) || (rn == NULL))
  110. return -EINVAL;
  111. E_md4hash(password, temp_key);
  112. mdfour(key,temp_key,16);
  113. memcpy(key+16,rn, CIFS_SESSION_KEY_SIZE);
  114. return 0;
  115. }
  116. int CalcNTLMv2_partial_mac_key(struct cifsSesInfo * ses, struct nls_table * nls_info)
  117. {
  118. char temp_hash[16];
  119. struct HMACMD5Context ctx;
  120. char * ucase_buf;
  121. wchar_t * unicode_buf;
  122. unsigned int i,user_name_len,dom_name_len;
  123. if(ses == NULL)
  124. return -EINVAL;
  125. E_md4hash(ses->password, temp_hash);
  126. hmac_md5_init_limK_to_64(temp_hash, 16, &ctx);
  127. user_name_len = strlen(ses->userName);
  128. if(user_name_len > MAX_USERNAME_SIZE)
  129. return -EINVAL;
  130. dom_name_len = strlen(ses->domainName);
  131. if(dom_name_len > MAX_USERNAME_SIZE)
  132. return -EINVAL;
  133. ucase_buf = kmalloc((MAX_USERNAME_SIZE+1), GFP_KERNEL);
  134. if(ucase_buf == NULL)
  135. return -ENOMEM;
  136. unicode_buf = kmalloc((MAX_USERNAME_SIZE+1)*4, GFP_KERNEL);
  137. if(unicode_buf == NULL) {
  138. kfree(ucase_buf);
  139. return -ENOMEM;
  140. }
  141. for(i=0;i<user_name_len;i++)
  142. ucase_buf[i] = nls_info->charset2upper[(int)ses->userName[i]];
  143. ucase_buf[i] = 0;
  144. user_name_len = cifs_strtoUCS(unicode_buf, ucase_buf, MAX_USERNAME_SIZE*2, nls_info);
  145. unicode_buf[user_name_len] = 0;
  146. user_name_len++;
  147. for(i=0;i<dom_name_len;i++)
  148. ucase_buf[i] = nls_info->charset2upper[(int)ses->domainName[i]];
  149. ucase_buf[i] = 0;
  150. dom_name_len = cifs_strtoUCS(unicode_buf+user_name_len, ucase_buf, MAX_USERNAME_SIZE*2, nls_info);
  151. unicode_buf[user_name_len + dom_name_len] = 0;
  152. hmac_md5_update((const unsigned char *) unicode_buf,
  153. (user_name_len+dom_name_len)*2,&ctx);
  154. hmac_md5_final(ses->server->mac_signing_key,&ctx);
  155. kfree(ucase_buf);
  156. kfree(unicode_buf);
  157. return 0;
  158. }
  159. void CalcNTLMv2_response(const struct cifsSesInfo * ses,char * v2_session_response)
  160. {
  161. struct HMACMD5Context context;
  162. memcpy(v2_session_response + 8, ses->server->cryptKey,8);
  163. /* gen_blob(v2_session_response + 16); */
  164. hmac_md5_init_limK_to_64(ses->server->mac_signing_key, 16, &context);
  165. hmac_md5_update(ses->server->cryptKey,8,&context);
  166. /* hmac_md5_update(v2_session_response+16)client thing,8,&context); */ /* BB fix */
  167. hmac_md5_final(v2_session_response,&context);
  168. }