xref: /freebsd/sys/netsmb/smb_crypt.c (revision fdafd315ad0d0f28a11b9fb4476a9ab059c62b92)
1c398230bSWarner Losh /*-
2df57947fSPedro F. Giffuni  * SPDX-License-Identifier: BSD-4-Clause
3df57947fSPedro F. Giffuni  *
4681a5bbeSBoris Popov  * Copyright (c) 2000-2001, Boris Popov
5681a5bbeSBoris Popov  * All rights reserved.
6681a5bbeSBoris Popov  *
7190b2c4fSTim J. Robbins  * Copyright (c) 2003, 2004 Tim J. Robbins.
8190b2c4fSTim J. Robbins  * All rights reserved.
9190b2c4fSTim J. Robbins  *
10681a5bbeSBoris Popov  * Redistribution and use in source and binary forms, with or without
11681a5bbeSBoris Popov  * modification, are permitted provided that the following conditions
12681a5bbeSBoris Popov  * are met:
13681a5bbeSBoris Popov  * 1. Redistributions of source code must retain the above copyright
14681a5bbeSBoris Popov  *    notice, this list of conditions and the following disclaimer.
15681a5bbeSBoris Popov  * 2. Redistributions in binary form must reproduce the above copyright
16681a5bbeSBoris Popov  *    notice, this list of conditions and the following disclaimer in the
17681a5bbeSBoris Popov  *    documentation and/or other materials provided with the distribution.
18681a5bbeSBoris Popov  * 3. All advertising materials mentioning features or use of this software
19681a5bbeSBoris Popov  *    must display the following acknowledgement:
20681a5bbeSBoris Popov  *    This product includes software developed by Boris Popov.
21681a5bbeSBoris Popov  * 4. Neither the name of the author nor the names of any co-contributors
22681a5bbeSBoris Popov  *    may be used to endorse or promote products derived from this software
23681a5bbeSBoris Popov  *    without specific prior written permission.
24681a5bbeSBoris Popov  *
25681a5bbeSBoris Popov  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
26681a5bbeSBoris Popov  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27681a5bbeSBoris Popov  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28681a5bbeSBoris Popov  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
29681a5bbeSBoris Popov  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30681a5bbeSBoris Popov  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31681a5bbeSBoris Popov  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32681a5bbeSBoris Popov  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33681a5bbeSBoris Popov  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34681a5bbeSBoris Popov  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35681a5bbeSBoris Popov  * SUCH DAMAGE.
36681a5bbeSBoris Popov  */
37ab0de15bSDavid E. O'Brien 
38681a5bbeSBoris Popov #include <sys/param.h>
39681a5bbeSBoris Popov #include <sys/malloc.h>
40681a5bbeSBoris Popov #include <sys/kernel.h>
41681a5bbeSBoris Popov #include <sys/systm.h>
42681a5bbeSBoris Popov #include <sys/conf.h>
43681a5bbeSBoris Popov #include <sys/proc.h>
44681a5bbeSBoris Popov #include <sys/fcntl.h>
45681a5bbeSBoris Popov #include <sys/socket.h>
46681a5bbeSBoris Popov #include <sys/socketvar.h>
47681a5bbeSBoris Popov #include <sys/sysctl.h>
48190b2c4fSTim J. Robbins #include <sys/endian.h>
49190b2c4fSTim J. Robbins #include <sys/mbuf.h>
50190b2c4fSTim J. Robbins #include <sys/mchain.h>
51681a5bbeSBoris Popov #include <sys/md4.h>
52190b2c4fSTim J. Robbins #include <sys/md5.h>
53681a5bbeSBoris Popov #include <sys/iconv.h>
54681a5bbeSBoris Popov 
55681a5bbeSBoris Popov #include <netsmb/smb.h>
56681a5bbeSBoris Popov #include <netsmb/smb_conn.h>
57681a5bbeSBoris Popov #include <netsmb/smb_subr.h>
58190b2c4fSTim J. Robbins #include <netsmb/smb_rq.h>
59681a5bbeSBoris Popov #include <netsmb/smb_dev.h>
60681a5bbeSBoris Popov 
61681a5bbeSBoris Popov #include <crypto/des/des.h>
62681a5bbeSBoris Popov 
638d96e455SYaroslav Tykhiy #include "opt_netsmb.h"
648d96e455SYaroslav Tykhiy 
65681a5bbeSBoris Popov static u_char N8[] = {0x4b, 0x47, 0x53, 0x21, 0x40, 0x23, 0x24, 0x25};
66681a5bbeSBoris Popov 
67681a5bbeSBoris Popov static void
smb_E(const u_char * key,u_char * data,u_char * dest)68681a5bbeSBoris Popov smb_E(const u_char *key, u_char *data, u_char *dest)
69681a5bbeSBoris Popov {
70681a5bbeSBoris Popov 	des_key_schedule *ksp;
71681a5bbeSBoris Popov 	u_char kk[8];
72681a5bbeSBoris Popov 
73681a5bbeSBoris Popov 	kk[0] = key[0] & 0xfe;
74681a5bbeSBoris Popov 	kk[1] = key[0] << 7 | (key[1] >> 1 & 0xfe);
75681a5bbeSBoris Popov 	kk[2] = key[1] << 6 | (key[2] >> 2 & 0xfe);
76681a5bbeSBoris Popov 	kk[3] = key[2] << 5 | (key[3] >> 3 & 0xfe);
77681a5bbeSBoris Popov 	kk[4] = key[3] << 4 | (key[4] >> 4 & 0xfe);
78681a5bbeSBoris Popov 	kk[5] = key[4] << 3 | (key[5] >> 5 & 0xfe);
79681a5bbeSBoris Popov 	kk[6] = key[5] << 2 | (key[6] >> 6 & 0xfe);
80681a5bbeSBoris Popov 	kk[7] = key[6] << 1;
81a163d034SWarner Losh 	ksp = malloc(sizeof(des_key_schedule), M_SMBTEMP, M_WAITOK);
82*87210a0cSJohn Baldwin 	des_set_key(kk, *ksp);
83*87210a0cSJohn Baldwin 	des_ecb_encrypt(data, dest, *ksp, 1);
84681a5bbeSBoris Popov 	free(ksp, M_SMBTEMP);
85681a5bbeSBoris Popov }
86681a5bbeSBoris Popov 
87681a5bbeSBoris Popov int
smb_encrypt(const u_char * apwd,u_char * C8,u_char * RN)88681a5bbeSBoris Popov smb_encrypt(const u_char *apwd, u_char *C8, u_char *RN)
89681a5bbeSBoris Popov {
90681a5bbeSBoris Popov 	u_char *p, *P14, *S21;
91681a5bbeSBoris Popov 
92a163d034SWarner Losh 	p = malloc(14 + 21, M_SMBTEMP, M_WAITOK);
93681a5bbeSBoris Popov 	bzero(p, 14 + 21);
94681a5bbeSBoris Popov 	P14 = p;
95681a5bbeSBoris Popov 	S21 = p + 14;
96681a5bbeSBoris Popov 	bcopy(apwd, P14, min(14, strlen(apwd)));
97681a5bbeSBoris Popov 	/*
98681a5bbeSBoris Popov 	 * S21 = concat(Ex(P14, N8), zeros(5));
99681a5bbeSBoris Popov 	 */
100681a5bbeSBoris Popov 	smb_E(P14, N8, S21);
101681a5bbeSBoris Popov 	smb_E(P14 + 7, N8, S21 + 8);
102681a5bbeSBoris Popov 
103681a5bbeSBoris Popov 	smb_E(S21, C8, RN);
104681a5bbeSBoris Popov 	smb_E(S21 + 7, C8, RN + 8);
105681a5bbeSBoris Popov 	smb_E(S21 + 14, C8, RN + 16);
106681a5bbeSBoris Popov 	free(p, M_SMBTEMP);
107681a5bbeSBoris Popov 	return 0;
108681a5bbeSBoris Popov }
109681a5bbeSBoris Popov 
110681a5bbeSBoris Popov int
smb_ntencrypt(const u_char * apwd,u_char * C8,u_char * RN)111681a5bbeSBoris Popov smb_ntencrypt(const u_char *apwd, u_char *C8, u_char *RN)
112681a5bbeSBoris Popov {
113681a5bbeSBoris Popov 	u_char S21[21];
114681a5bbeSBoris Popov 	u_int16_t *unipwd;
115681a5bbeSBoris Popov 	MD4_CTX *ctxp;
116d821d364SPedro F. Giffuni 	u_int len;
117681a5bbeSBoris Popov 
118681a5bbeSBoris Popov 	len = strlen(apwd);
119a163d034SWarner Losh 	unipwd = malloc((len + 1) * sizeof(u_int16_t), M_SMBTEMP, M_WAITOK);
120681a5bbeSBoris Popov 	/*
121681a5bbeSBoris Popov 	 * S21 = concat(MD4(U(apwd)), zeros(5));
122681a5bbeSBoris Popov 	 */
123681a5bbeSBoris Popov 	smb_strtouni(unipwd, apwd);
124a163d034SWarner Losh 	ctxp = malloc(sizeof(MD4_CTX), M_SMBTEMP, M_WAITOK);
125681a5bbeSBoris Popov 	MD4Init(ctxp);
126681a5bbeSBoris Popov 	MD4Update(ctxp, (u_char*)unipwd, len * sizeof(u_int16_t));
127681a5bbeSBoris Popov 	free(unipwd, M_SMBTEMP);
128681a5bbeSBoris Popov 	bzero(S21, 21);
129681a5bbeSBoris Popov 	MD4Final(S21, ctxp);
130681a5bbeSBoris Popov 	free(ctxp, M_SMBTEMP);
131681a5bbeSBoris Popov 
132681a5bbeSBoris Popov 	smb_E(S21, C8, RN);
133681a5bbeSBoris Popov 	smb_E(S21 + 7, C8, RN + 8);
134681a5bbeSBoris Popov 	smb_E(S21 + 14, C8, RN + 16);
135681a5bbeSBoris Popov 	return 0;
136681a5bbeSBoris Popov }
137681a5bbeSBoris Popov 
138190b2c4fSTim J. Robbins /*
139190b2c4fSTim J. Robbins  * Calculate message authentication code (MAC) key for virtual circuit.
140190b2c4fSTim J. Robbins  */
141190b2c4fSTim J. Robbins int
smb_calcmackey(struct smb_vc * vcp)142190b2c4fSTim J. Robbins smb_calcmackey(struct smb_vc *vcp)
143190b2c4fSTim J. Robbins {
144190b2c4fSTim J. Robbins 	const char *pwd;
145190b2c4fSTim J. Robbins 	u_int16_t *unipwd;
146d821d364SPedro F. Giffuni 	u_int len;
147190b2c4fSTim J. Robbins 	MD4_CTX md4;
148190b2c4fSTim J. Robbins 	u_char S16[16], S21[21];
149190b2c4fSTim J. Robbins 
150190b2c4fSTim J. Robbins 	KASSERT(vcp->vc_hflags2 & SMB_FLAGS2_SECURITY_SIGNATURE,
151190b2c4fSTim J. Robbins 	    ("signatures not enabled"));
152190b2c4fSTim J. Robbins 
153190b2c4fSTim J. Robbins 	if (vcp->vc_mackey != NULL) {
154190b2c4fSTim J. Robbins 		free(vcp->vc_mackey, M_SMBTEMP);
155190b2c4fSTim J. Robbins 		vcp->vc_mackey = NULL;
156190b2c4fSTim J. Robbins 		vcp->vc_mackeylen = 0;
157190b2c4fSTim J. Robbins 		vcp->vc_seqno = 0;
158190b2c4fSTim J. Robbins 	}
159190b2c4fSTim J. Robbins 
160190b2c4fSTim J. Robbins 	/*
161190b2c4fSTim J. Robbins 	 * The partial MAC key is the concatenation of the 16 byte session
162190b2c4fSTim J. Robbins 	 * key and the 24 byte challenge response.
163190b2c4fSTim J. Robbins 	 */
164190b2c4fSTim J. Robbins 	vcp->vc_mackeylen = 16 + 24;
165190b2c4fSTim J. Robbins 	vcp->vc_mackey = malloc(vcp->vc_mackeylen, M_SMBTEMP, M_WAITOK);
166190b2c4fSTim J. Robbins 
167190b2c4fSTim J. Robbins 	/*
168190b2c4fSTim J. Robbins 	 * Calculate session key:
169190b2c4fSTim J. Robbins 	 *	MD4(MD4(U(PN)))
170190b2c4fSTim J. Robbins 	 */
171190b2c4fSTim J. Robbins 	pwd = smb_vc_getpass(vcp);
172190b2c4fSTim J. Robbins 	len = strlen(pwd);
173190b2c4fSTim J. Robbins 	unipwd = malloc((len + 1) * sizeof(u_int16_t), M_SMBTEMP, M_WAITOK);
174190b2c4fSTim J. Robbins 	smb_strtouni(unipwd, pwd);
175190b2c4fSTim J. Robbins 	MD4Init(&md4);
176190b2c4fSTim J. Robbins 	MD4Update(&md4, (u_char *)unipwd, len * sizeof(u_int16_t));
177190b2c4fSTim J. Robbins 	MD4Final(S16, &md4);
178190b2c4fSTim J. Robbins 	MD4Init(&md4);
179190b2c4fSTim J. Robbins 	MD4Update(&md4, S16, 16);
180190b2c4fSTim J. Robbins 	MD4Final(vcp->vc_mackey, &md4);
181190b2c4fSTim J. Robbins 	free(unipwd, M_SMBTEMP);
182190b2c4fSTim J. Robbins 
183190b2c4fSTim J. Robbins 	/*
184190b2c4fSTim J. Robbins 	 * Calculate response to challenge:
185190b2c4fSTim J. Robbins 	 *	Ex(concat(MD4(U(pass)), zeros(5)), C8)
186190b2c4fSTim J. Robbins 	 */
187190b2c4fSTim J. Robbins 	bzero(S21, 21);
188190b2c4fSTim J. Robbins 	bcopy(S16, S21, 16);
189190b2c4fSTim J. Robbins 	smb_E(S21, vcp->vc_ch, vcp->vc_mackey + 16);
190190b2c4fSTim J. Robbins 	smb_E(S21 + 7, vcp->vc_ch, vcp->vc_mackey + 24);
191190b2c4fSTim J. Robbins 	smb_E(S21 + 14, vcp->vc_ch, vcp->vc_mackey + 32);
192190b2c4fSTim J. Robbins 
193190b2c4fSTim J. Robbins 	return (0);
194190b2c4fSTim J. Robbins }
195190b2c4fSTim J. Robbins 
196190b2c4fSTim J. Robbins /*
197190b2c4fSTim J. Robbins  * Sign request with MAC.
198190b2c4fSTim J. Robbins  */
199190b2c4fSTim J. Robbins int
smb_rq_sign(struct smb_rq * rqp)200190b2c4fSTim J. Robbins smb_rq_sign(struct smb_rq *rqp)
201190b2c4fSTim J. Robbins {
202190b2c4fSTim J. Robbins 	struct smb_vc *vcp = rqp->sr_vc;
203190b2c4fSTim J. Robbins 	struct mbchain *mbp;
204190b2c4fSTim J. Robbins 	struct mbuf *mb;
205190b2c4fSTim J. Robbins 	MD5_CTX md5;
206190b2c4fSTim J. Robbins 	u_char digest[16];
207190b2c4fSTim J. Robbins 
208190b2c4fSTim J. Robbins 	KASSERT(vcp->vc_hflags2 & SMB_FLAGS2_SECURITY_SIGNATURE,
209190b2c4fSTim J. Robbins 	    ("signatures not enabled"));
210190b2c4fSTim J. Robbins 
211190b2c4fSTim J. Robbins 	if (vcp->vc_mackey == NULL)
212190b2c4fSTim J. Robbins 		/* XXX Should assert that cmd == SMB_COM_NEGOTIATE. */
213190b2c4fSTim J. Robbins 		return (0);
214190b2c4fSTim J. Robbins 
215190b2c4fSTim J. Robbins 	/*
216190b2c4fSTim J. Robbins 	 * This is a bit of a kludge. If the request is non-TRANSACTION,
217190b2c4fSTim J. Robbins 	 * or it is the first request of a transaction, give it the next
218190b2c4fSTim J. Robbins 	 * sequence number, and expect the reply to have the sequence number
219190b2c4fSTim J. Robbins 	 * following that one. Otherwise, it is a secondary request in
220190b2c4fSTim J. Robbins 	 * a transaction, and it gets the same sequence numbers as the
221190b2c4fSTim J. Robbins 	 * primary request.
222190b2c4fSTim J. Robbins 	 */
223190b2c4fSTim J. Robbins 	if (rqp->sr_t2 == NULL ||
224190b2c4fSTim J. Robbins 	    (rqp->sr_t2->t2_flags & SMBT2_SECONDARY) == 0) {
225190b2c4fSTim J. Robbins 		rqp->sr_seqno = vcp->vc_seqno++;
226190b2c4fSTim J. Robbins 		rqp->sr_rseqno = vcp->vc_seqno++;
227190b2c4fSTim J. Robbins 	} else {
228190b2c4fSTim J. Robbins 		/*
229190b2c4fSTim J. Robbins 		 * Sequence numbers are already in the struct because
230190b2c4fSTim J. Robbins 		 * smb_t2_request_int() uses the same one for all the
231190b2c4fSTim J. Robbins 		 * requests in the transaction.
232190b2c4fSTim J. Robbins 		 * (At least we hope so.)
233190b2c4fSTim J. Robbins 		 */
234190b2c4fSTim J. Robbins 		KASSERT(rqp->sr_t2 == NULL ||
235190b2c4fSTim J. Robbins 		    (rqp->sr_t2->t2_flags & SMBT2_SECONDARY) == 0 ||
236190b2c4fSTim J. Robbins 		    rqp->sr_t2->t2_rq == rqp,
237190b2c4fSTim J. Robbins 		    ("sec t2 rq not using same smb_rq"));
238190b2c4fSTim J. Robbins 	}
239190b2c4fSTim J. Robbins 
240190b2c4fSTim J. Robbins 	/* Initialize sec. signature field to sequence number + zeros. */
241a6a4232fSMarcel Moolenaar 	le32enc(rqp->sr_rqsig, rqp->sr_seqno);
242a6a4232fSMarcel Moolenaar 	le32enc(rqp->sr_rqsig + 4, 0);
243190b2c4fSTim J. Robbins 
244190b2c4fSTim J. Robbins 	/*
245190b2c4fSTim J. Robbins 	 * Compute HMAC-MD5 of packet data, keyed by MAC key.
246190b2c4fSTim J. Robbins 	 * Store the first 8 bytes in the sec. signature field.
247190b2c4fSTim J. Robbins 	 */
248190b2c4fSTim J. Robbins 	smb_rq_getrequest(rqp, &mbp);
249190b2c4fSTim J. Robbins 	MD5Init(&md5);
250190b2c4fSTim J. Robbins 	MD5Update(&md5, vcp->vc_mackey, vcp->vc_mackeylen);
251190b2c4fSTim J. Robbins 	for (mb = mbp->mb_top; mb != NULL; mb = mb->m_next)
252190b2c4fSTim J. Robbins 		MD5Update(&md5, mtod(mb, void *), mb->m_len);
253190b2c4fSTim J. Robbins 	MD5Final(digest, &md5);
254190b2c4fSTim J. Robbins 	bcopy(digest, rqp->sr_rqsig, 8);
255190b2c4fSTim J. Robbins 
256190b2c4fSTim J. Robbins 	return (0);
257190b2c4fSTim J. Robbins }
258190b2c4fSTim J. Robbins 
259190b2c4fSTim J. Robbins /*
260190b2c4fSTim J. Robbins  * Verify reply signature.
261190b2c4fSTim J. Robbins  */
262190b2c4fSTim J. Robbins int
smb_rq_verify(struct smb_rq * rqp)263190b2c4fSTim J. Robbins smb_rq_verify(struct smb_rq *rqp)
264190b2c4fSTim J. Robbins {
265190b2c4fSTim J. Robbins 	struct smb_vc *vcp = rqp->sr_vc;
266190b2c4fSTim J. Robbins 	struct mdchain *mdp;
267190b2c4fSTim J. Robbins 	u_char sigbuf[8];
268190b2c4fSTim J. Robbins 	MD5_CTX md5;
269190b2c4fSTim J. Robbins 	u_char digest[16];
270190b2c4fSTim J. Robbins 	struct mbuf *mb;
271190b2c4fSTim J. Robbins 
272190b2c4fSTim J. Robbins 	KASSERT(vcp->vc_hflags2 & SMB_FLAGS2_SECURITY_SIGNATURE,
273190b2c4fSTim J. Robbins 	    ("signatures not enabled"));
274190b2c4fSTim J. Robbins 
275190b2c4fSTim J. Robbins 	if (vcp->vc_mackey == NULL)
276190b2c4fSTim J. Robbins 		/* XXX Should check that this is a SMB_COM_NEGOTIATE reply. */
277190b2c4fSTim J. Robbins 		return (0);
278190b2c4fSTim J. Robbins 
279190b2c4fSTim J. Robbins 	/*
280190b2c4fSTim J. Robbins 	 * Compute HMAC-MD5 of packet data, keyed by MAC key.
281190b2c4fSTim J. Robbins 	 * We play games to pretend the security signature field
282190b2c4fSTim J. Robbins 	 * contains their sequence number, to avoid modifying
283190b2c4fSTim J. Robbins 	 * the packet itself.
284190b2c4fSTim J. Robbins 	 */
285190b2c4fSTim J. Robbins 	smb_rq_getreply(rqp, &mdp);
286190b2c4fSTim J. Robbins 	mb = mdp->md_top;
287190b2c4fSTim J. Robbins 	KASSERT(mb->m_len >= SMB_HDRLEN, ("forgot to m_pullup"));
288190b2c4fSTim J. Robbins 	MD5Init(&md5);
289190b2c4fSTim J. Robbins 	MD5Update(&md5, vcp->vc_mackey, vcp->vc_mackeylen);
290190b2c4fSTim J. Robbins 	MD5Update(&md5, mtod(mb, void *), 14);
291190b2c4fSTim J. Robbins 	*(u_int32_t *)sigbuf = htole32(rqp->sr_rseqno);
292190b2c4fSTim J. Robbins 	*(u_int32_t *)(sigbuf + 4) = 0;
293190b2c4fSTim J. Robbins 	MD5Update(&md5, sigbuf, 8);
294190b2c4fSTim J. Robbins 	MD5Update(&md5, mtod(mb, u_char *) + 22, mb->m_len - 22);
295190b2c4fSTim J. Robbins 	for (mb = mb->m_next; mb != NULL; mb = mb->m_next)
296190b2c4fSTim J. Robbins 		MD5Update(&md5, mtod(mb, void *), mb->m_len);
297190b2c4fSTim J. Robbins 	MD5Final(digest, &md5);
298190b2c4fSTim J. Robbins 
299190b2c4fSTim J. Robbins 	/*
300190b2c4fSTim J. Robbins 	 * Now verify the signature.
301190b2c4fSTim J. Robbins 	 */
302190b2c4fSTim J. Robbins 	if (bcmp(mtod(mdp->md_top, u_char *) + 14, digest, 8) != 0)
303190b2c4fSTim J. Robbins 		return (EAUTH);
304190b2c4fSTim J. Robbins 
305190b2c4fSTim J. Robbins 	return (0);
306190b2c4fSTim J. Robbins }
307