cifsencrypt.c 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. /*
  2. * fs/cifs/cifsencrypt.c
  3. *
  4. * Copyright (C) International Business Machines Corp., 2005,2006
  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,
  36. const char * key, char * signature)
  37. {
  38. struct MD5Context context;
  39. if((cifs_pdu == NULL) || (signature == NULL))
  40. return -EINVAL;
  41. MD5Init(&context);
  42. MD5Update(&context,key,CIFS_SESSION_KEY_SIZE+16);
  43. MD5Update(&context,cifs_pdu->Protocol,cifs_pdu->smb_buf_length);
  44. MD5Final(signature,&context);
  45. return 0;
  46. }
  47. int cifs_sign_smb(struct smb_hdr * cifs_pdu, struct TCP_Server_Info * server,
  48. __u32 * pexpected_response_sequence_number)
  49. {
  50. int rc = 0;
  51. char smb_signature[20];
  52. if((cifs_pdu == NULL) || (server == NULL))
  53. return -EINVAL;
  54. if((cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) == 0)
  55. return rc;
  56. spin_lock(&GlobalMid_Lock);
  57. cifs_pdu->Signature.Sequence.SequenceNumber = cpu_to_le32(server->sequence_number);
  58. cifs_pdu->Signature.Sequence.Reserved = 0;
  59. *pexpected_response_sequence_number = server->sequence_number++;
  60. server->sequence_number++;
  61. spin_unlock(&GlobalMid_Lock);
  62. rc = cifs_calculate_signature(cifs_pdu, server->mac_signing_key,smb_signature);
  63. if(rc)
  64. memset(cifs_pdu->Signature.SecuritySignature, 0, 8);
  65. else
  66. memcpy(cifs_pdu->Signature.SecuritySignature, smb_signature, 8);
  67. return rc;
  68. }
  69. static int cifs_calc_signature2(const struct kvec * iov, int n_vec,
  70. const char * key, char * signature)
  71. {
  72. struct MD5Context context;
  73. int i;
  74. if((iov == NULL) || (signature == NULL))
  75. return -EINVAL;
  76. MD5Init(&context);
  77. MD5Update(&context,key,CIFS_SESSION_KEY_SIZE+16);
  78. for(i=0;i<n_vec;i++) {
  79. if(iov[i].iov_base == NULL) {
  80. cERROR(1,("null iovec entry"));
  81. return -EIO;
  82. } else if(iov[i].iov_len == 0)
  83. break; /* bail out if we are sent nothing to sign */
  84. /* The first entry includes a length field (which does not get
  85. signed that occupies the first 4 bytes before the header */
  86. if(i==0) {
  87. if (iov[0].iov_len <= 8 ) /* cmd field at offset 9 */
  88. break; /* nothing to sign or corrupt header */
  89. MD5Update(&context,iov[0].iov_base+4, iov[0].iov_len-4);
  90. } else
  91. MD5Update(&context,iov[i].iov_base, iov[i].iov_len);
  92. }
  93. MD5Final(signature,&context);
  94. return 0;
  95. }
  96. int cifs_sign_smb2(struct kvec * iov, int n_vec, struct TCP_Server_Info *server,
  97. __u32 * pexpected_response_sequence_number)
  98. {
  99. int rc = 0;
  100. char smb_signature[20];
  101. struct smb_hdr * cifs_pdu = iov[0].iov_base;
  102. if((cifs_pdu == NULL) || (server == NULL))
  103. return -EINVAL;
  104. if((cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) == 0)
  105. return rc;
  106. spin_lock(&GlobalMid_Lock);
  107. cifs_pdu->Signature.Sequence.SequenceNumber =
  108. cpu_to_le32(server->sequence_number);
  109. cifs_pdu->Signature.Sequence.Reserved = 0;
  110. *pexpected_response_sequence_number = server->sequence_number++;
  111. server->sequence_number++;
  112. spin_unlock(&GlobalMid_Lock);
  113. rc = cifs_calc_signature2(iov, n_vec, server->mac_signing_key,
  114. smb_signature);
  115. if(rc)
  116. memset(cifs_pdu->Signature.SecuritySignature, 0, 8);
  117. else
  118. memcpy(cifs_pdu->Signature.SecuritySignature, smb_signature, 8);
  119. return rc;
  120. }
  121. int cifs_verify_signature(struct smb_hdr * cifs_pdu, const char * mac_key,
  122. __u32 expected_sequence_number)
  123. {
  124. unsigned int rc;
  125. char server_response_sig[8];
  126. char what_we_think_sig_should_be[20];
  127. if((cifs_pdu == NULL) || (mac_key == NULL))
  128. return -EINVAL;
  129. if (cifs_pdu->Command == SMB_COM_NEGOTIATE)
  130. return 0;
  131. if (cifs_pdu->Command == SMB_COM_LOCKING_ANDX) {
  132. struct smb_com_lock_req * pSMB = (struct smb_com_lock_req *)cifs_pdu;
  133. if(pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE)
  134. return 0;
  135. }
  136. /* BB what if signatures are supposed to be on for session but server does not
  137. send one? BB */
  138. /* Do not need to verify session setups with signature "BSRSPYL " */
  139. if(memcmp(cifs_pdu->Signature.SecuritySignature,"BSRSPYL ",8)==0)
  140. cFYI(1,("dummy signature received for smb command 0x%x",cifs_pdu->Command));
  141. /* save off the origiginal signature so we can modify the smb and check
  142. its signature against what the server sent */
  143. memcpy(server_response_sig,cifs_pdu->Signature.SecuritySignature,8);
  144. cifs_pdu->Signature.Sequence.SequenceNumber = cpu_to_le32(expected_sequence_number);
  145. cifs_pdu->Signature.Sequence.Reserved = 0;
  146. rc = cifs_calculate_signature(cifs_pdu, mac_key,
  147. what_we_think_sig_should_be);
  148. if(rc)
  149. return rc;
  150. /* cifs_dump_mem("what we think it should be: ",what_we_think_sig_should_be,16); */
  151. if(memcmp(server_response_sig, what_we_think_sig_should_be, 8))
  152. return -EACCES;
  153. else
  154. return 0;
  155. }
  156. /* We fill in key by putting in 40 byte array which was allocated by caller */
  157. int cifs_calculate_mac_key(char * key, const char * rn, const char * password)
  158. {
  159. char temp_key[16];
  160. if ((key == NULL) || (rn == NULL))
  161. return -EINVAL;
  162. E_md4hash(password, temp_key);
  163. mdfour(key,temp_key,16);
  164. memcpy(key+16,rn, CIFS_SESSION_KEY_SIZE);
  165. return 0;
  166. }
  167. int CalcNTLMv2_partial_mac_key(struct cifsSesInfo * ses, struct nls_table * nls_info)
  168. {
  169. char temp_hash[16];
  170. struct HMACMD5Context ctx;
  171. char * ucase_buf;
  172. __le16 * unicode_buf;
  173. unsigned int i,user_name_len,dom_name_len;
  174. if(ses == NULL)
  175. return -EINVAL;
  176. E_md4hash(ses->password, temp_hash);
  177. hmac_md5_init_limK_to_64(temp_hash, 16, &ctx);
  178. user_name_len = strlen(ses->userName);
  179. if(user_name_len > MAX_USERNAME_SIZE)
  180. return -EINVAL;
  181. dom_name_len = strlen(ses->domainName);
  182. if(dom_name_len > MAX_USERNAME_SIZE)
  183. return -EINVAL;
  184. ucase_buf = kmalloc((MAX_USERNAME_SIZE+1), GFP_KERNEL);
  185. if(ucase_buf == NULL)
  186. return -ENOMEM;
  187. unicode_buf = kmalloc((MAX_USERNAME_SIZE+1)*4, GFP_KERNEL);
  188. if(unicode_buf == NULL) {
  189. kfree(ucase_buf);
  190. return -ENOMEM;
  191. }
  192. for(i=0;i<user_name_len;i++)
  193. ucase_buf[i] = nls_info->charset2upper[(int)ses->userName[i]];
  194. ucase_buf[i] = 0;
  195. user_name_len = cifs_strtoUCS(unicode_buf, ucase_buf, MAX_USERNAME_SIZE*2, nls_info);
  196. unicode_buf[user_name_len] = 0;
  197. user_name_len++;
  198. for(i=0;i<dom_name_len;i++)
  199. ucase_buf[i] = nls_info->charset2upper[(int)ses->domainName[i]];
  200. ucase_buf[i] = 0;
  201. dom_name_len = cifs_strtoUCS(unicode_buf+user_name_len, ucase_buf, MAX_USERNAME_SIZE*2, nls_info);
  202. unicode_buf[user_name_len + dom_name_len] = 0;
  203. hmac_md5_update((const unsigned char *) unicode_buf,
  204. (user_name_len+dom_name_len)*2,&ctx);
  205. hmac_md5_final(ses->server->mac_signing_key,&ctx);
  206. kfree(ucase_buf);
  207. kfree(unicode_buf);
  208. return 0;
  209. }
  210. void CalcNTLMv2_response(const struct cifsSesInfo * ses,char * v2_session_response)
  211. {
  212. struct HMACMD5Context context;
  213. memcpy(v2_session_response + 8, ses->server->cryptKey,8);
  214. /* gen_blob(v2_session_response + 16); */
  215. hmac_md5_init_limK_to_64(ses->server->mac_signing_key, 16, &context);
  216. hmac_md5_update(ses->server->cryptKey,8,&context);
  217. /* hmac_md5_update(v2_session_response+16)client thing,8,&context); */ /* BB fix */
  218. hmac_md5_final(v2_session_response,&context);
  219. cifs_dump_mem("v2_sess_rsp: ", v2_session_response, 32); /* BB removeme BB */
  220. }