cifsencrypt.c 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. /*
  2. * fs/cifs/cifsencrypt.c
  3. *
  4. * Copyright (C) International Business Machines Corp., 2005
  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. static int cifs_calc_signature2(const struct kvec * iov, int n_vec,
  71. const char * key, char * signature)
  72. {
  73. struct MD5Context context;
  74. if((iov == NULL) || (signature == NULL))
  75. return -EINVAL;
  76. MD5Init(&context);
  77. MD5Update(&context,key,CIFS_SESSION_KEY_SIZE+16);
  78. /* MD5Update(&context,cifs_pdu->Protocol,cifs_pdu->smb_buf_length); */ /* BB FIXME BB */
  79. MD5Final(signature,&context);
  80. return -EOPNOTSUPP;
  81. /* return 0; */
  82. }
  83. int cifs_sign_smb2(struct kvec * iov, int n_vec, struct TCP_Server_Info *server,
  84. __u32 * pexpected_response_sequence_number)
  85. {
  86. int rc = 0;
  87. char smb_signature[20];
  88. struct smb_hdr * cifs_pdu = iov[0].iov_base;
  89. if((cifs_pdu == NULL) || (server == NULL))
  90. return -EINVAL;
  91. if((cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) == 0)
  92. return rc;
  93. spin_lock(&GlobalMid_Lock);
  94. cifs_pdu->Signature.Sequence.SequenceNumber =
  95. cpu_to_le32(server->sequence_number);
  96. cifs_pdu->Signature.Sequence.Reserved = 0;
  97. *pexpected_response_sequence_number = server->sequence_number++;
  98. server->sequence_number++;
  99. spin_unlock(&GlobalMid_Lock);
  100. rc = cifs_calc_signature2(iov, n_vec, server->mac_signing_key,
  101. smb_signature);
  102. if(rc)
  103. memset(cifs_pdu->Signature.SecuritySignature, 0, 8);
  104. else
  105. memcpy(cifs_pdu->Signature.SecuritySignature, smb_signature, 8);
  106. return rc;
  107. }
  108. int cifs_verify_signature(struct smb_hdr * cifs_pdu, const char * mac_key,
  109. __u32 expected_sequence_number)
  110. {
  111. unsigned int rc;
  112. char server_response_sig[8];
  113. char what_we_think_sig_should_be[20];
  114. if((cifs_pdu == NULL) || (mac_key == NULL))
  115. return -EINVAL;
  116. if (cifs_pdu->Command == SMB_COM_NEGOTIATE)
  117. return 0;
  118. if (cifs_pdu->Command == SMB_COM_LOCKING_ANDX) {
  119. struct smb_com_lock_req * pSMB = (struct smb_com_lock_req *)cifs_pdu;
  120. if(pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE)
  121. return 0;
  122. }
  123. /* BB what if signatures are supposed to be on for session but server does not
  124. send one? BB */
  125. /* Do not need to verify session setups with signature "BSRSPYL " */
  126. if(memcmp(cifs_pdu->Signature.SecuritySignature,"BSRSPYL ",8)==0)
  127. cFYI(1,("dummy signature received for smb command 0x%x",cifs_pdu->Command));
  128. /* save off the origiginal signature so we can modify the smb and check
  129. its signature against what the server sent */
  130. memcpy(server_response_sig,cifs_pdu->Signature.SecuritySignature,8);
  131. cifs_pdu->Signature.Sequence.SequenceNumber = cpu_to_le32(expected_sequence_number);
  132. cifs_pdu->Signature.Sequence.Reserved = 0;
  133. rc = cifs_calculate_signature(cifs_pdu, mac_key,
  134. what_we_think_sig_should_be);
  135. if(rc)
  136. return rc;
  137. /* cifs_dump_mem("what we think it should be: ",what_we_think_sig_should_be,16); */
  138. if(memcmp(server_response_sig, what_we_think_sig_should_be, 8))
  139. return -EACCES;
  140. else
  141. return 0;
  142. }
  143. /* We fill in key by putting in 40 byte array which was allocated by caller */
  144. int cifs_calculate_mac_key(char * key, const char * rn, const char * password)
  145. {
  146. char temp_key[16];
  147. if ((key == NULL) || (rn == NULL))
  148. return -EINVAL;
  149. E_md4hash(password, temp_key);
  150. mdfour(key,temp_key,16);
  151. memcpy(key+16,rn, CIFS_SESSION_KEY_SIZE);
  152. return 0;
  153. }
  154. int CalcNTLMv2_partial_mac_key(struct cifsSesInfo * ses, struct nls_table * nls_info)
  155. {
  156. char temp_hash[16];
  157. struct HMACMD5Context ctx;
  158. char * ucase_buf;
  159. __le16 * unicode_buf;
  160. unsigned int i,user_name_len,dom_name_len;
  161. if(ses == NULL)
  162. return -EINVAL;
  163. E_md4hash(ses->password, temp_hash);
  164. hmac_md5_init_limK_to_64(temp_hash, 16, &ctx);
  165. user_name_len = strlen(ses->userName);
  166. if(user_name_len > MAX_USERNAME_SIZE)
  167. return -EINVAL;
  168. dom_name_len = strlen(ses->domainName);
  169. if(dom_name_len > MAX_USERNAME_SIZE)
  170. return -EINVAL;
  171. ucase_buf = kmalloc((MAX_USERNAME_SIZE+1), GFP_KERNEL);
  172. if(ucase_buf == NULL)
  173. return -ENOMEM;
  174. unicode_buf = kmalloc((MAX_USERNAME_SIZE+1)*4, GFP_KERNEL);
  175. if(unicode_buf == NULL) {
  176. kfree(ucase_buf);
  177. return -ENOMEM;
  178. }
  179. for(i=0;i<user_name_len;i++)
  180. ucase_buf[i] = nls_info->charset2upper[(int)ses->userName[i]];
  181. ucase_buf[i] = 0;
  182. user_name_len = cifs_strtoUCS(unicode_buf, ucase_buf, MAX_USERNAME_SIZE*2, nls_info);
  183. unicode_buf[user_name_len] = 0;
  184. user_name_len++;
  185. for(i=0;i<dom_name_len;i++)
  186. ucase_buf[i] = nls_info->charset2upper[(int)ses->domainName[i]];
  187. ucase_buf[i] = 0;
  188. dom_name_len = cifs_strtoUCS(unicode_buf+user_name_len, ucase_buf, MAX_USERNAME_SIZE*2, nls_info);
  189. unicode_buf[user_name_len + dom_name_len] = 0;
  190. hmac_md5_update((const unsigned char *) unicode_buf,
  191. (user_name_len+dom_name_len)*2,&ctx);
  192. hmac_md5_final(ses->server->mac_signing_key,&ctx);
  193. kfree(ucase_buf);
  194. kfree(unicode_buf);
  195. return 0;
  196. }
  197. void CalcNTLMv2_response(const struct cifsSesInfo * ses,char * v2_session_response)
  198. {
  199. struct HMACMD5Context context;
  200. memcpy(v2_session_response + 8, ses->server->cryptKey,8);
  201. /* gen_blob(v2_session_response + 16); */
  202. hmac_md5_init_limK_to_64(ses->server->mac_signing_key, 16, &context);
  203. hmac_md5_update(ses->server->cryptKey,8,&context);
  204. /* hmac_md5_update(v2_session_response+16)client thing,8,&context); */ /* BB fix */
  205. hmac_md5_final(v2_session_response,&context);
  206. }