cifsencrypt.c 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  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. #include <linux/ctype.h>
  29. /* Calculate and return the CIFS signature based on the mac key and the smb pdu */
  30. /* the 16 byte signature must be allocated by the caller */
  31. /* Note we only use the 1st eight bytes */
  32. /* Note that the smb header signature field on input contains the
  33. sequence number before this function is called */
  34. extern void mdfour(unsigned char *out, unsigned char *in, int n);
  35. extern void E_md4hash(const unsigned char *passwd, unsigned char *p16);
  36. extern void SMBencrypt(unsigned char *passwd, unsigned char *c8,
  37. unsigned char *p24);
  38. static int cifs_calculate_signature(const struct smb_hdr * cifs_pdu,
  39. const char * key, char * signature)
  40. {
  41. struct MD5Context context;
  42. if((cifs_pdu == NULL) || (signature == NULL))
  43. return -EINVAL;
  44. MD5Init(&context);
  45. MD5Update(&context,key,CIFS_SESS_KEY_SIZE+16);
  46. MD5Update(&context,cifs_pdu->Protocol,cifs_pdu->smb_buf_length);
  47. MD5Final(signature,&context);
  48. return 0;
  49. }
  50. int cifs_sign_smb(struct smb_hdr * cifs_pdu, struct TCP_Server_Info * server,
  51. __u32 * pexpected_response_sequence_number)
  52. {
  53. int rc = 0;
  54. char smb_signature[20];
  55. if((cifs_pdu == NULL) || (server == NULL))
  56. return -EINVAL;
  57. if((cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) == 0)
  58. return rc;
  59. spin_lock(&GlobalMid_Lock);
  60. cifs_pdu->Signature.Sequence.SequenceNumber = cpu_to_le32(server->sequence_number);
  61. cifs_pdu->Signature.Sequence.Reserved = 0;
  62. *pexpected_response_sequence_number = server->sequence_number++;
  63. server->sequence_number++;
  64. spin_unlock(&GlobalMid_Lock);
  65. rc = cifs_calculate_signature(cifs_pdu, server->mac_signing_key,smb_signature);
  66. if(rc)
  67. memset(cifs_pdu->Signature.SecuritySignature, 0, 8);
  68. else
  69. memcpy(cifs_pdu->Signature.SecuritySignature, smb_signature, 8);
  70. return rc;
  71. }
  72. static int cifs_calc_signature2(const struct kvec * iov, int n_vec,
  73. const char * key, char * signature)
  74. {
  75. struct MD5Context context;
  76. int i;
  77. if((iov == NULL) || (signature == NULL))
  78. return -EINVAL;
  79. MD5Init(&context);
  80. MD5Update(&context,key,CIFS_SESS_KEY_SIZE+16);
  81. for(i=0;i<n_vec;i++) {
  82. if(iov[i].iov_base == NULL) {
  83. cERROR(1,("null iovec entry"));
  84. return -EIO;
  85. } else if(iov[i].iov_len == 0)
  86. break; /* bail out if we are sent nothing to sign */
  87. /* The first entry includes a length field (which does not get
  88. signed that occupies the first 4 bytes before the header */
  89. if(i==0) {
  90. if (iov[0].iov_len <= 8 ) /* cmd field at offset 9 */
  91. break; /* nothing to sign or corrupt header */
  92. MD5Update(&context,iov[0].iov_base+4, iov[0].iov_len-4);
  93. } else
  94. MD5Update(&context,iov[i].iov_base, iov[i].iov_len);
  95. }
  96. MD5Final(signature,&context);
  97. return 0;
  98. }
  99. int cifs_sign_smb2(struct kvec * iov, int n_vec, struct TCP_Server_Info *server,
  100. __u32 * pexpected_response_sequence_number)
  101. {
  102. int rc = 0;
  103. char smb_signature[20];
  104. struct smb_hdr * cifs_pdu = iov[0].iov_base;
  105. if((cifs_pdu == NULL) || (server == NULL))
  106. return -EINVAL;
  107. if((cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) == 0)
  108. return rc;
  109. spin_lock(&GlobalMid_Lock);
  110. cifs_pdu->Signature.Sequence.SequenceNumber =
  111. cpu_to_le32(server->sequence_number);
  112. cifs_pdu->Signature.Sequence.Reserved = 0;
  113. *pexpected_response_sequence_number = server->sequence_number++;
  114. server->sequence_number++;
  115. spin_unlock(&GlobalMid_Lock);
  116. rc = cifs_calc_signature2(iov, n_vec, server->mac_signing_key,
  117. smb_signature);
  118. if(rc)
  119. memset(cifs_pdu->Signature.SecuritySignature, 0, 8);
  120. else
  121. memcpy(cifs_pdu->Signature.SecuritySignature, smb_signature, 8);
  122. return rc;
  123. }
  124. int cifs_verify_signature(struct smb_hdr * cifs_pdu, const char * mac_key,
  125. __u32 expected_sequence_number)
  126. {
  127. unsigned int rc;
  128. char server_response_sig[8];
  129. char what_we_think_sig_should_be[20];
  130. if((cifs_pdu == NULL) || (mac_key == NULL))
  131. return -EINVAL;
  132. if (cifs_pdu->Command == SMB_COM_NEGOTIATE)
  133. return 0;
  134. if (cifs_pdu->Command == SMB_COM_LOCKING_ANDX) {
  135. struct smb_com_lock_req * pSMB = (struct smb_com_lock_req *)cifs_pdu;
  136. if(pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE)
  137. return 0;
  138. }
  139. /* BB what if signatures are supposed to be on for session but server does not
  140. send one? BB */
  141. /* Do not need to verify session setups with signature "BSRSPYL " */
  142. if(memcmp(cifs_pdu->Signature.SecuritySignature,"BSRSPYL ",8)==0)
  143. cFYI(1,("dummy signature received for smb command 0x%x",cifs_pdu->Command));
  144. /* save off the origiginal signature so we can modify the smb and check
  145. its signature against what the server sent */
  146. memcpy(server_response_sig,cifs_pdu->Signature.SecuritySignature,8);
  147. cifs_pdu->Signature.Sequence.SequenceNumber = cpu_to_le32(expected_sequence_number);
  148. cifs_pdu->Signature.Sequence.Reserved = 0;
  149. rc = cifs_calculate_signature(cifs_pdu, mac_key,
  150. what_we_think_sig_should_be);
  151. if(rc)
  152. return rc;
  153. /* cifs_dump_mem("what we think it should be: ",what_we_think_sig_should_be,16); */
  154. if(memcmp(server_response_sig, what_we_think_sig_should_be, 8))
  155. return -EACCES;
  156. else
  157. return 0;
  158. }
  159. /* We fill in key by putting in 40 byte array which was allocated by caller */
  160. int cifs_calculate_mac_key(char * key, const char * rn, const char * password)
  161. {
  162. char temp_key[16];
  163. if ((key == NULL) || (rn == NULL))
  164. return -EINVAL;
  165. E_md4hash(password, temp_key);
  166. mdfour(key,temp_key,16);
  167. memcpy(key+16,rn, CIFS_SESS_KEY_SIZE);
  168. return 0;
  169. }
  170. int CalcNTLMv2_partial_mac_key(struct cifsSesInfo * ses, struct nls_table * nls_info)
  171. {
  172. char temp_hash[16];
  173. struct HMACMD5Context ctx;
  174. char * ucase_buf;
  175. __le16 * unicode_buf;
  176. unsigned int i,user_name_len,dom_name_len;
  177. if(ses == NULL)
  178. return -EINVAL;
  179. E_md4hash(ses->password, temp_hash);
  180. hmac_md5_init_limK_to_64(temp_hash, 16, &ctx);
  181. user_name_len = strlen(ses->userName);
  182. if(user_name_len > MAX_USERNAME_SIZE)
  183. return -EINVAL;
  184. if(ses->domainName == NULL)
  185. return -EINVAL; /* BB should we use CIFS_LINUX_DOM */
  186. dom_name_len = strlen(ses->domainName);
  187. if(dom_name_len > MAX_USERNAME_SIZE)
  188. return -EINVAL;
  189. ucase_buf = kmalloc((MAX_USERNAME_SIZE+1), GFP_KERNEL);
  190. if(ucase_buf == NULL)
  191. return -ENOMEM;
  192. unicode_buf = kmalloc((MAX_USERNAME_SIZE+1)*4, GFP_KERNEL);
  193. if(unicode_buf == NULL) {
  194. kfree(ucase_buf);
  195. return -ENOMEM;
  196. }
  197. for(i=0;i<user_name_len;i++)
  198. ucase_buf[i] = nls_info->charset2upper[(int)ses->userName[i]];
  199. ucase_buf[i] = 0;
  200. user_name_len = cifs_strtoUCS(unicode_buf, ucase_buf, MAX_USERNAME_SIZE*2, nls_info);
  201. unicode_buf[user_name_len] = 0;
  202. user_name_len++;
  203. for(i=0;i<dom_name_len;i++)
  204. ucase_buf[i] = nls_info->charset2upper[(int)ses->domainName[i]];
  205. ucase_buf[i] = 0;
  206. dom_name_len = cifs_strtoUCS(unicode_buf+user_name_len, ucase_buf, MAX_USERNAME_SIZE*2, nls_info);
  207. unicode_buf[user_name_len + dom_name_len] = 0;
  208. hmac_md5_update((const unsigned char *) unicode_buf,
  209. (user_name_len+dom_name_len)*2,&ctx);
  210. hmac_md5_final(ses->server->mac_signing_key,&ctx);
  211. kfree(ucase_buf);
  212. kfree(unicode_buf);
  213. return 0;
  214. }
  215. #ifdef CONFIG_CIFS_WEAK_PW_HASH
  216. void calc_lanman_hash(struct cifsSesInfo * ses, char * lnm_session_key)
  217. {
  218. int i;
  219. char password_with_pad[CIFS_ENCPWD_SIZE];
  220. if(ses->server == NULL)
  221. return;
  222. memset(password_with_pad, 0, CIFS_ENCPWD_SIZE);
  223. strncpy(password_with_pad, ses->password, CIFS_ENCPWD_SIZE);
  224. if((ses->server->secMode & SECMODE_PW_ENCRYPT) == 0)
  225. if(extended_security & CIFSSEC_MAY_PLNTXT) {
  226. memcpy(lnm_session_key, password_with_pad, CIFS_ENCPWD_SIZE);
  227. return;
  228. }
  229. /* calculate old style session key */
  230. /* calling toupper is less broken than repeatedly
  231. calling nls_toupper would be since that will never
  232. work for UTF8, but neither handles multibyte code pages
  233. but the only alternative would be converting to UCS-16 (Unicode)
  234. (using a routine something like UniStrupr) then
  235. uppercasing and then converting back from Unicode - which
  236. would only worth doing it if we knew it were utf8. Basically
  237. utf8 and other multibyte codepages each need their own strupper
  238. function since a byte at a time will ont work. */
  239. for(i = 0; i < CIFS_ENCPWD_SIZE; i++) {
  240. password_with_pad[i] = toupper(password_with_pad[i]);
  241. }
  242. SMBencrypt(password_with_pad, ses->server->cryptKey, lnm_session_key);
  243. /* clear password before we return/free memory */
  244. memset(password_with_pad, 0, CIFS_ENCPWD_SIZE);
  245. }
  246. #endif /* CIFS_WEAK_PW_HASH */
  247. void CalcNTLMv2_response(const struct cifsSesInfo * ses,char * v2_session_response)
  248. {
  249. struct HMACMD5Context context;
  250. memcpy(v2_session_response + 8, ses->server->cryptKey,8);
  251. /* gen_blob(v2_session_response + 16); */
  252. hmac_md5_init_limK_to_64(ses->server->mac_signing_key, 16, &context);
  253. hmac_md5_update(ses->server->cryptKey,8,&context);
  254. /* hmac_md5_update(v2_session_response+16)client thing,8,&context); */ /* BB fix */
  255. hmac_md5_final(v2_session_response,&context);
  256. cifs_dump_mem("v2_sess_rsp: ", v2_session_response, 32); /* BB removeme BB */
  257. }