Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Mar 24-27, 2025, special US time zones
Register
Loading...
v3.1
 
  1/*******************************************************************************
  2 * This file houses the main functions for the iSCSI CHAP support
  3 *
  4 * \u00a9 Copyright 2007-2011 RisingTide Systems LLC.
  5 *
  6 * Licensed to the Linux Foundation under the General Public License (GPL) version 2.
  7 *
  8 * Author: Nicholas A. Bellinger <nab@linux-iscsi.org>
  9 *
 10 * This program is free software; you can redistribute it and/or modify
 11 * it under the terms of the GNU General Public License as published by
 12 * the Free Software Foundation; either version 2 of the License, or
 13 * (at your option) any later version.
 14 *
 15 * This program is distributed in the hope that it will be useful,
 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 18 * GNU General Public License for more details.
 19 ******************************************************************************/
 20
 
 
 21#include <linux/string.h>
 22#include <linux/crypto.h>
 23#include <linux/err.h>
 
 24#include <linux/scatterlist.h>
 25
 26#include "iscsi_target_core.h"
 27#include "iscsi_target_nego.h"
 28#include "iscsi_target_auth.h"
 29
 30static unsigned char chap_asciihex_to_binaryhex(unsigned char val[2])
 31{
 32	unsigned char result = 0;
 33	/*
 34	 * MSB
 35	 */
 36	if ((val[0] >= 'a') && (val[0] <= 'f'))
 37		result = ((val[0] - 'a' + 10) & 0xf) << 4;
 38	else
 39		if ((val[0] >= 'A') && (val[0] <= 'F'))
 40			result = ((val[0] - 'A' + 10) & 0xf) << 4;
 41		else /* digit */
 42			result = ((val[0] - '0') & 0xf) << 4;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 43	/*
 44	 * LSB
 45	 */
 46	if ((val[1] >= 'a') && (val[1] <= 'f'))
 47		result |= ((val[1] - 'a' + 10) & 0xf);
 48	else
 49		if ((val[1] >= 'A') && (val[1] <= 'F'))
 50			result |= ((val[1] - 'A' + 10) & 0xf);
 51		else /* digit */
 52			result |= ((val[1] - '0') & 0xf);
 53
 54	return result;
 
 
 55}
 56
 57static int chap_string_to_hex(unsigned char *dst, unsigned char *src, int len)
 58{
 59	int i, j = 0;
 60
 61	for (i = 0; i < len; i += 2) {
 62		dst[j++] = (unsigned char) chap_asciihex_to_binaryhex(&src[i]);
 63	}
 64
 65	dst[j] = '\0';
 66	return j;
 67}
 68
 69static void chap_binaryhex_to_asciihex(char *dst, char *src, int src_len)
 70{
 71	int i;
 
 
 72
 73	for (i = 0; i < src_len; i++) {
 74		sprintf(&dst[i*2], "%02x", (int) src[i] & 0xff);
 
 
 75	}
 76}
 77
 78static void chap_set_random(char *data, int length)
 79{
 80	long r;
 81	unsigned n;
 82
 83	while (length > 0) {
 84		get_random_bytes(&r, sizeof(long));
 85		r = r ^ (r >> 8);
 86		r = r ^ (r >> 4);
 87		n = r & 0x7;
 88
 89		get_random_bytes(&r, sizeof(long));
 90		r = r ^ (r >> 8);
 91		r = r ^ (r >> 5);
 92		n = (n << 3) | (r & 0x7);
 93
 94		get_random_bytes(&r, sizeof(long));
 95		r = r ^ (r >> 8);
 96		r = r ^ (r >> 5);
 97		n = (n << 2) | (r & 0x3);
 98
 99		*data++ = n;
100		length--;
 
101	}
102}
103
104static void chap_gen_challenge(
105	struct iscsi_conn *conn,
106	int caller,
107	char *c_str,
108	unsigned int *c_len)
109{
110	unsigned char challenge_asciihex[CHAP_CHALLENGE_LENGTH * 2 + 1];
111	struct iscsi_chap *chap = (struct iscsi_chap *) conn->auth_protocol;
112
113	memset(challenge_asciihex, 0, CHAP_CHALLENGE_LENGTH * 2 + 1);
 
114
115	chap_set_random(chap->challenge, CHAP_CHALLENGE_LENGTH);
116	chap_binaryhex_to_asciihex(challenge_asciihex, chap->challenge,
117				CHAP_CHALLENGE_LENGTH);
118	/*
119	 * Set CHAP_C, and copy the generated challenge into c_str.
120	 */
121	*c_len += sprintf(c_str + *c_len, "CHAP_C=0x%s", challenge_asciihex);
122	*c_len += 1;
123
124	pr_debug("[%s] Sending CHAP_C=0x%s\n\n", (caller) ? "server" : "client",
125			challenge_asciihex);
 
 
 
 
 
 
 
 
 
126}
127
 
 
 
 
 
128
129static struct iscsi_chap *chap_server_open(
130	struct iscsi_conn *conn,
131	struct iscsi_node_auth *auth,
132	const char *a_str,
133	char *aic_str,
134	unsigned int *aic_len)
135{
 
136	struct iscsi_chap *chap;
137
138	if (!(auth->naf_flags & NAF_USERID_SET) ||
139	    !(auth->naf_flags & NAF_PASSWORD_SET)) {
140		pr_err("CHAP user or password not set for"
141				" Initiator ACL\n");
142		return NULL;
143	}
144
145	conn->auth_protocol = kzalloc(sizeof(struct iscsi_chap), GFP_KERNEL);
146	if (!conn->auth_protocol)
147		return NULL;
148
149	chap = (struct iscsi_chap *) conn->auth_protocol;
150	/*
151	 * We only support MD5 MDA presently.
152	 */
153	if (strncmp(a_str, "CHAP_A=5", 8)) {
154		pr_err("CHAP_A is not MD5.\n");
 
 
 
 
 
 
 
 
 
 
 
 
 
155		return NULL;
156	}
157	pr_debug("[server] Got CHAP_A=5\n");
158	/*
159	 * Send back CHAP_A set to MD5.
160	 */
161	*aic_len = sprintf(aic_str, "CHAP_A=5");
 
 
 
162	*aic_len += 1;
163	chap->digest_type = CHAP_DIGEST_MD5;
164	pr_debug("[server] Sending CHAP_A=%d\n", chap->digest_type);
165	/*
166	 * Set Identifier.
167	 */
168	chap->id = ISCSI_TPG_C(conn)->tpg_chap_id++;
169	*aic_len += sprintf(aic_str + *aic_len, "CHAP_I=%d", chap->id);
170	*aic_len += 1;
171	pr_debug("[server] Sending CHAP_I=%d\n", chap->id);
172	/*
173	 * Generate Challenge.
174	 */
175	chap_gen_challenge(conn, 1, aic_str, aic_len);
 
 
 
176
177	return chap;
178}
179
180static void chap_close(struct iscsi_conn *conn)
 
 
 
181{
182	kfree(conn->auth_protocol);
183	conn->auth_protocol = NULL;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184}
185
186static int chap_server_compute_md5(
187	struct iscsi_conn *conn,
188	struct iscsi_node_auth *auth,
189	char *nr_in_ptr,
190	char *nr_out_ptr,
191	unsigned int *nr_out_len)
192{
193	char *endptr;
194	unsigned char id, digest[MD5_SIGNATURE_SIZE];
195	unsigned char type, response[MD5_SIGNATURE_SIZE * 2 + 2];
196	unsigned char identifier[10], *challenge = NULL;
197	unsigned char *challenge_binhex = NULL;
198	unsigned char client_digest[MD5_SIGNATURE_SIZE];
199	unsigned char server_digest[MD5_SIGNATURE_SIZE];
 
 
200	unsigned char chap_n[MAX_CHAP_N_SIZE], chap_r[MAX_RESPONSE_LENGTH];
201	struct iscsi_chap *chap = (struct iscsi_chap *) conn->auth_protocol;
202	struct crypto_hash *tfm;
203	struct hash_desc desc;
204	struct scatterlist sg;
205	int auth_ret = -1, ret, challenge_len;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
207	memset(identifier, 0, 10);
208	memset(chap_n, 0, MAX_CHAP_N_SIZE);
209	memset(chap_r, 0, MAX_RESPONSE_LENGTH);
210	memset(digest, 0, MD5_SIGNATURE_SIZE);
211	memset(response, 0, MD5_SIGNATURE_SIZE * 2 + 2);
212	memset(client_digest, 0, MD5_SIGNATURE_SIZE);
213	memset(server_digest, 0, MD5_SIGNATURE_SIZE);
214
215	challenge = kzalloc(CHAP_CHALLENGE_STR_LEN, GFP_KERNEL);
216	if (!challenge) {
217		pr_err("Unable to allocate challenge buffer\n");
218		goto out;
219	}
220
221	challenge_binhex = kzalloc(CHAP_CHALLENGE_STR_LEN, GFP_KERNEL);
222	if (!challenge_binhex) {
223		pr_err("Unable to allocate challenge_binhex buffer\n");
224		goto out;
225	}
226	/*
227	 * Extract CHAP_N.
228	 */
229	if (extract_param(nr_in_ptr, "CHAP_N", MAX_CHAP_N_SIZE, chap_n,
230				&type) < 0) {
231		pr_err("Could not find CHAP_N.\n");
232		goto out;
233	}
234	if (type == HEX) {
235		pr_err("Could not find CHAP_N.\n");
236		goto out;
237	}
238
239	if (memcmp(chap_n, auth->userid, strlen(auth->userid)) != 0) {
 
 
240		pr_err("CHAP_N values do not match!\n");
241		goto out;
242	}
243	pr_debug("[server] Got CHAP_N=%s\n", chap_n);
244	/*
245	 * Extract CHAP_R.
246	 */
247	if (extract_param(nr_in_ptr, "CHAP_R", MAX_RESPONSE_LENGTH, chap_r,
248				&type) < 0) {
249		pr_err("Could not find CHAP_R.\n");
250		goto out;
251	}
252	if (type != HEX) {
253		pr_err("Could not find CHAP_R.\n");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
254		goto out;
255	}
256
257	pr_debug("[server] Got CHAP_R=%s\n", chap_r);
258	chap_string_to_hex(client_digest, chap_r, strlen(chap_r));
259
260	tfm = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC);
261	if (IS_ERR(tfm)) {
262		pr_err("Unable to allocate struct crypto_hash\n");
 
263		goto out;
264	}
265	desc.tfm = tfm;
266	desc.flags = 0;
267
268	ret = crypto_hash_init(&desc);
269	if (ret < 0) {
270		pr_err("crypto_hash_init() failed\n");
271		crypto_free_hash(tfm);
272		goto out;
273	}
274
275	sg_init_one(&sg, (void *)&chap->id, 1);
276	ret = crypto_hash_update(&desc, &sg, 1);
 
277	if (ret < 0) {
278		pr_err("crypto_hash_update() failed for id\n");
279		crypto_free_hash(tfm);
280		goto out;
281	}
282
283	sg_init_one(&sg, (void *)&auth->password, strlen(auth->password));
284	ret = crypto_hash_update(&desc, &sg, strlen(auth->password));
285	if (ret < 0) {
286		pr_err("crypto_hash_update() failed for password\n");
287		crypto_free_hash(tfm);
288		goto out;
289	}
290
291	sg_init_one(&sg, (void *)chap->challenge, CHAP_CHALLENGE_LENGTH);
292	ret = crypto_hash_update(&desc, &sg, CHAP_CHALLENGE_LENGTH);
293	if (ret < 0) {
294		pr_err("crypto_hash_update() failed for challenge\n");
295		crypto_free_hash(tfm);
296		goto out;
297	}
298
299	ret = crypto_hash_final(&desc, server_digest);
 
300	if (ret < 0) {
301		pr_err("crypto_hash_final() failed for server digest\n");
302		crypto_free_hash(tfm);
303		goto out;
304	}
305	crypto_free_hash(tfm);
306
307	chap_binaryhex_to_asciihex(response, server_digest, MD5_SIGNATURE_SIZE);
308	pr_debug("[server] MD5 Server Digest: %s\n", response);
 
309
310	if (memcmp(server_digest, client_digest, MD5_SIGNATURE_SIZE) != 0) {
311		pr_debug("[server] MD5 Digests do not match!\n\n");
 
312		goto out;
313	} else
314		pr_debug("[server] MD5 Digests match, CHAP connetication"
315				" successful.\n\n");
316	/*
317	 * One way authentication has succeeded, return now if mutual
318	 * authentication is not enabled.
319	 */
320	if (!auth->authenticate_target) {
321		kfree(challenge);
322		kfree(challenge_binhex);
323		return 0;
324	}
325	/*
326	 * Get CHAP_I.
327	 */
328	if (extract_param(nr_in_ptr, "CHAP_I", 10, identifier, &type) < 0) {
 
 
 
 
 
 
329		pr_err("Could not find CHAP_I.\n");
330		goto out;
331	}
332
333	if (type == HEX)
334		id = (unsigned char)simple_strtoul((char *)&identifier[2],
335					&endptr, 0);
336	else
337		id = (unsigned char)simple_strtoul(identifier, &endptr, 0);
 
 
 
 
 
 
 
 
 
338	/*
339	 * RFC 1994 says Identifier is no more than octet (8 bits).
340	 */
341	pr_debug("[server] Got CHAP_I=%d\n", id);
342	/*
343	 * Get CHAP_C.
344	 */
345	if (extract_param(nr_in_ptr, "CHAP_C", CHAP_CHALLENGE_STR_LEN,
346			challenge, &type) < 0) {
347		pr_err("Could not find CHAP_C.\n");
348		goto out;
349	}
350
351	if (type != HEX) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
352		pr_err("Could not find CHAP_C.\n");
353		goto out;
354	}
355	pr_debug("[server] Got CHAP_C=%s\n", challenge);
356	challenge_len = chap_string_to_hex(challenge_binhex, challenge,
357				strlen(challenge));
358	if (!challenge_len) {
359		pr_err("Unable to convert incoming challenge\n");
 
 
 
 
 
 
 
360		goto out;
361	}
362	/*
363	 * Generate CHAP_N and CHAP_R for mutual authentication.
364	 */
365	tfm = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC);
366	if (IS_ERR(tfm)) {
367		pr_err("Unable to allocate struct crypto_hash\n");
368		goto out;
369	}
370	desc.tfm = tfm;
371	desc.flags = 0;
372
373	ret = crypto_hash_init(&desc);
374	if (ret < 0) {
375		pr_err("crypto_hash_init() failed\n");
376		crypto_free_hash(tfm);
377		goto out;
378	}
379
380	sg_init_one(&sg, (void *)&id, 1);
381	ret = crypto_hash_update(&desc, &sg, 1);
 
382	if (ret < 0) {
383		pr_err("crypto_hash_update() failed for id\n");
384		crypto_free_hash(tfm);
385		goto out;
386	}
387
388	sg_init_one(&sg, (void *)auth->password_mutual,
389				strlen(auth->password_mutual));
390	ret = crypto_hash_update(&desc, &sg, strlen(auth->password_mutual));
391	if (ret < 0) {
392		pr_err("crypto_hash_update() failed for"
393				" password_mutual\n");
394		crypto_free_hash(tfm);
395		goto out;
396	}
397	/*
398	 * Convert received challenge to binary hex.
399	 */
400	sg_init_one(&sg, (void *)challenge_binhex, challenge_len);
401	ret = crypto_hash_update(&desc, &sg, challenge_len);
402	if (ret < 0) {
403		pr_err("crypto_hash_update() failed for ma challenge\n");
404		crypto_free_hash(tfm);
405		goto out;
406	}
407
408	ret = crypto_hash_final(&desc, digest);
409	if (ret < 0) {
410		pr_err("crypto_hash_final() failed for ma digest\n");
411		crypto_free_hash(tfm);
412		goto out;
413	}
414	crypto_free_hash(tfm);
415	/*
416	 * Generate CHAP_N and CHAP_R.
417	 */
418	*nr_out_len = sprintf(nr_out_ptr, "CHAP_N=%s", auth->userid_mutual);
419	*nr_out_len += 1;
420	pr_debug("[server] Sending CHAP_N=%s\n", auth->userid_mutual);
421	/*
422	 * Convert response from binary hex to ascii hext.
423	 */
424	chap_binaryhex_to_asciihex(response, digest, MD5_SIGNATURE_SIZE);
425	*nr_out_len += sprintf(nr_out_ptr + *nr_out_len, "CHAP_R=0x%s",
426			response);
427	*nr_out_len += 1;
428	pr_debug("[server] Sending CHAP_R=0x%s\n", response);
429	auth_ret = 0;
430out:
431	kfree(challenge);
432	kfree(challenge_binhex);
 
 
 
 
 
 
 
433	return auth_ret;
434}
435
436static int chap_got_response(
437	struct iscsi_conn *conn,
438	struct iscsi_node_auth *auth,
439	char *nr_in_ptr,
440	char *nr_out_ptr,
441	unsigned int *nr_out_len)
442{
443	struct iscsi_chap *chap = (struct iscsi_chap *) conn->auth_protocol;
444
445	switch (chap->digest_type) {
446	case CHAP_DIGEST_MD5:
447		if (chap_server_compute_md5(conn, auth, nr_in_ptr,
448				nr_out_ptr, nr_out_len) < 0)
449			return -1;
450		return 0;
451	default:
452		pr_err("Unknown CHAP digest type %d!\n",
453				chap->digest_type);
454		return -1;
455	}
456}
457
458u32 chap_main_loop(
459	struct iscsi_conn *conn,
460	struct iscsi_node_auth *auth,
461	char *in_text,
462	char *out_text,
463	int *in_len,
464	int *out_len)
465{
466	struct iscsi_chap *chap = (struct iscsi_chap *) conn->auth_protocol;
467
468	if (!chap) {
469		chap = chap_server_open(conn, auth, in_text, out_text, out_len);
470		if (!chap)
471			return 2;
472		chap->chap_state = CHAP_STAGE_SERVER_AIC;
473		return 0;
474	} else if (chap->chap_state == CHAP_STAGE_SERVER_AIC) {
475		convert_null_to_semi(in_text, *in_len);
476		if (chap_got_response(conn, auth, in_text, out_text,
477				out_len) < 0) {
478			chap_close(conn);
479			return 2;
480		}
481		if (auth->authenticate_target)
482			chap->chap_state = CHAP_STAGE_SERVER_NR;
483		else
484			*out_len = 0;
485		chap_close(conn);
486		return 1;
487	}
488
489	return 2;
490}
v6.2
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*******************************************************************************
  3 * This file houses the main functions for the iSCSI CHAP support
  4 *
  5 * (c) Copyright 2007-2013 Datera, Inc.
 
 
  6 *
  7 * Author: Nicholas A. Bellinger <nab@linux-iscsi.org>
  8 *
 
 
 
 
 
 
 
 
 
  9 ******************************************************************************/
 10
 11#include <crypto/hash.h>
 12#include <linux/kernel.h>
 13#include <linux/string.h>
 
 14#include <linux/err.h>
 15#include <linux/random.h>
 16#include <linux/scatterlist.h>
 17#include <target/iscsi/iscsi_target_core.h>
 
 18#include "iscsi_target_nego.h"
 19#include "iscsi_target_auth.h"
 20
 21static char *chap_get_digest_name(const int digest_type)
 22{
 23	switch (digest_type) {
 24	case CHAP_DIGEST_MD5:
 25		return "md5";
 26	case CHAP_DIGEST_SHA1:
 27		return "sha1";
 28	case CHAP_DIGEST_SHA256:
 29		return "sha256";
 30	case CHAP_DIGEST_SHA3_256:
 31		return "sha3-256";
 32	default:
 33		return NULL;
 34	}
 35}
 36
 37static int chap_gen_challenge(
 38	struct iscsit_conn *conn,
 39	int caller,
 40	char *c_str,
 41	unsigned int *c_len)
 42{
 43	int ret;
 44	unsigned char *challenge_asciihex;
 45	struct iscsi_chap *chap = conn->auth_protocol;
 46
 47	challenge_asciihex = kzalloc(chap->challenge_len * 2 + 1, GFP_KERNEL);
 48	if (!challenge_asciihex)
 49		return -ENOMEM;
 50
 51	memset(chap->challenge, 0, MAX_CHAP_CHALLENGE_LEN);
 52
 53	ret = get_random_bytes_wait(chap->challenge, chap->challenge_len);
 54	if (unlikely(ret))
 55		goto out;
 56
 57	bin2hex(challenge_asciihex, chap->challenge,
 58				chap->challenge_len);
 59	/*
 60	 * Set CHAP_C, and copy the generated challenge into c_str.
 61	 */
 62	*c_len += sprintf(c_str + *c_len, "CHAP_C=0x%s", challenge_asciihex);
 63	*c_len += 1;
 64
 65	pr_debug("[%s] Sending CHAP_C=0x%s\n\n", (caller) ? "server" : "client",
 66			challenge_asciihex);
 
 
 67
 68out:
 69	kfree(challenge_asciihex);
 70	return ret;
 71}
 72
 73static int chap_test_algorithm(const char *name)
 74{
 75	struct crypto_shash *tfm;
 76
 77	tfm = crypto_alloc_shash(name, 0, 0);
 78	if (IS_ERR(tfm))
 79		return -1;
 80
 81	crypto_free_shash(tfm);
 82	return 0;
 83}
 84
 85static int chap_check_algorithm(const char *a_str)
 86{
 87	char *tmp, *orig, *token, *digest_name;
 88	long digest_type;
 89	int r = CHAP_DIGEST_UNKNOWN;
 90
 91	tmp = kstrdup(a_str, GFP_KERNEL);
 92	if (!tmp) {
 93		pr_err("Memory allocation failed for CHAP_A temporary buffer\n");
 94		return CHAP_DIGEST_UNKNOWN;
 95	}
 96	orig = tmp;
 
 
 
 
 
 97
 98	token = strsep(&tmp, "=");
 99	if (!token)
100		goto out;
 
 
 
 
 
 
 
 
 
 
 
 
101
102	if (strcmp(token, "CHAP_A")) {
103		pr_err("Unable to locate CHAP_A key\n");
104		goto out;
105	}
106	while (token) {
107		token = strsep(&tmp, ",");
108		if (!token)
109			goto out;
 
 
 
 
 
 
110
111		if (kstrtol(token, 10, &digest_type))
112			continue;
113
114		digest_name = chap_get_digest_name(digest_type);
115		if (!digest_name)
116			continue;
 
 
 
 
 
117
118		pr_debug("Selected %s Algorithm\n", digest_name);
119		if (chap_test_algorithm(digest_name) < 0) {
120			pr_err("failed to allocate %s algo\n", digest_name);
121		} else {
122			r = digest_type;
123			goto out;
124		}
125	}
126out:
127	kfree(orig);
128	return r;
129}
130
131static void chap_close(struct iscsit_conn *conn)
132{
133	kfree(conn->auth_protocol);
134	conn->auth_protocol = NULL;
135}
136
137static struct iscsi_chap *chap_server_open(
138	struct iscsit_conn *conn,
139	struct iscsi_node_auth *auth,
140	const char *a_str,
141	char *aic_str,
142	unsigned int *aic_len)
143{
144	int digest_type;
145	struct iscsi_chap *chap;
146
147	if (!(auth->naf_flags & NAF_USERID_SET) ||
148	    !(auth->naf_flags & NAF_PASSWORD_SET)) {
149		pr_err("CHAP user or password not set for"
150				" Initiator ACL\n");
151		return NULL;
152	}
153
154	conn->auth_protocol = kzalloc(sizeof(struct iscsi_chap), GFP_KERNEL);
155	if (!conn->auth_protocol)
156		return NULL;
157
158	chap = conn->auth_protocol;
159	digest_type = chap_check_algorithm(a_str);
160	switch (digest_type) {
161	case CHAP_DIGEST_MD5:
162		chap->digest_size = MD5_SIGNATURE_SIZE;
163		break;
164	case CHAP_DIGEST_SHA1:
165		chap->digest_size = SHA1_SIGNATURE_SIZE;
166		break;
167	case CHAP_DIGEST_SHA256:
168		chap->digest_size = SHA256_SIGNATURE_SIZE;
169		break;
170	case CHAP_DIGEST_SHA3_256:
171		chap->digest_size = SHA3_256_SIGNATURE_SIZE;
172		break;
173	case CHAP_DIGEST_UNKNOWN:
174	default:
175		pr_err("Unsupported CHAP_A value\n");
176		chap_close(conn);
177		return NULL;
178	}
179
180	chap->digest_name = chap_get_digest_name(digest_type);
181
182	/* Tie the challenge length to the digest size */
183	chap->challenge_len = chap->digest_size;
184
185	pr_debug("[server] Got CHAP_A=%d\n", digest_type);
186	*aic_len = sprintf(aic_str, "CHAP_A=%d", digest_type);
187	*aic_len += 1;
188	pr_debug("[server] Sending CHAP_A=%d\n", digest_type);
189
190	/*
191	 * Set Identifier.
192	 */
193	chap->id = conn->tpg->tpg_chap_id++;
194	*aic_len += sprintf(aic_str + *aic_len, "CHAP_I=%d", chap->id);
195	*aic_len += 1;
196	pr_debug("[server] Sending CHAP_I=%d\n", chap->id);
197	/*
198	 * Generate Challenge.
199	 */
200	if (chap_gen_challenge(conn, 1, aic_str, aic_len) < 0) {
201		chap_close(conn);
202		return NULL;
203	}
204
205	return chap;
206}
207
208static const char base64_lookup_table[] =
209	"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
210
211static int chap_base64_decode(u8 *dst, const char *src, size_t len)
212{
213	int i, bits = 0, ac = 0;
214	const char *p;
215	u8 *cp = dst;
216
217	for (i = 0; i < len; i++) {
218		if (src[i] == '=')
219			return cp - dst;
220
221		p = strchr(base64_lookup_table, src[i]);
222		if (p == NULL || src[i] == 0)
223			return -2;
224
225		ac <<= 6;
226		ac += (p - base64_lookup_table);
227		bits += 6;
228		if (bits >= 8) {
229			*cp++ = (ac >> (bits - 8)) & 0xff;
230			ac &= ~(BIT(16) - BIT(bits - 8));
231			bits -= 8;
232		}
233	}
234	if (ac)
235		return -1;
236
237	return cp - dst;
238}
239
240static int chap_server_compute_hash(
241	struct iscsit_conn *conn,
242	struct iscsi_node_auth *auth,
243	char *nr_in_ptr,
244	char *nr_out_ptr,
245	unsigned int *nr_out_len)
246{
247	unsigned long id;
248	unsigned char id_as_uchar;
249	unsigned char type;
250	unsigned char identifier[10], *initiatorchg = NULL;
251	unsigned char *initiatorchg_binhex = NULL;
252	unsigned char *digest = NULL;
253	unsigned char *response = NULL;
254	unsigned char *client_digest = NULL;
255	unsigned char *server_digest = NULL;
256	unsigned char chap_n[MAX_CHAP_N_SIZE], chap_r[MAX_RESPONSE_LENGTH];
257	size_t compare_len;
258	struct iscsi_chap *chap = conn->auth_protocol;
259	struct crypto_shash *tfm = NULL;
260	struct shash_desc *desc = NULL;
261	int auth_ret = -1, ret, initiatorchg_len;
262
263	digest = kzalloc(chap->digest_size, GFP_KERNEL);
264	if (!digest) {
265		pr_err("Unable to allocate the digest buffer\n");
266		goto out;
267	}
268
269	response = kzalloc(chap->digest_size * 2 + 2, GFP_KERNEL);
270	if (!response) {
271		pr_err("Unable to allocate the response buffer\n");
272		goto out;
273	}
274
275	client_digest = kzalloc(chap->digest_size, GFP_KERNEL);
276	if (!client_digest) {
277		pr_err("Unable to allocate the client_digest buffer\n");
278		goto out;
279	}
280
281	server_digest = kzalloc(chap->digest_size, GFP_KERNEL);
282	if (!server_digest) {
283		pr_err("Unable to allocate the server_digest buffer\n");
284		goto out;
285	}
286
287	memset(identifier, 0, 10);
288	memset(chap_n, 0, MAX_CHAP_N_SIZE);
289	memset(chap_r, 0, MAX_RESPONSE_LENGTH);
 
 
 
 
290
291	initiatorchg = kzalloc(CHAP_CHALLENGE_STR_LEN, GFP_KERNEL);
292	if (!initiatorchg) {
293		pr_err("Unable to allocate challenge buffer\n");
294		goto out;
295	}
296
297	initiatorchg_binhex = kzalloc(CHAP_CHALLENGE_STR_LEN, GFP_KERNEL);
298	if (!initiatorchg_binhex) {
299		pr_err("Unable to allocate initiatorchg_binhex buffer\n");
300		goto out;
301	}
302	/*
303	 * Extract CHAP_N.
304	 */
305	if (extract_param(nr_in_ptr, "CHAP_N", MAX_CHAP_N_SIZE, chap_n,
306				&type) < 0) {
307		pr_err("Could not find CHAP_N.\n");
308		goto out;
309	}
310	if (type == HEX) {
311		pr_err("Could not find CHAP_N.\n");
312		goto out;
313	}
314
315	/* Include the terminating NULL in the compare */
316	compare_len = strlen(auth->userid) + 1;
317	if (strncmp(chap_n, auth->userid, compare_len) != 0) {
318		pr_err("CHAP_N values do not match!\n");
319		goto out;
320	}
321	pr_debug("[server] Got CHAP_N=%s\n", chap_n);
322	/*
323	 * Extract CHAP_R.
324	 */
325	if (extract_param(nr_in_ptr, "CHAP_R", MAX_RESPONSE_LENGTH, chap_r,
326				&type) < 0) {
327		pr_err("Could not find CHAP_R.\n");
328		goto out;
329	}
330
331	switch (type) {
332	case HEX:
333		if (strlen(chap_r) != chap->digest_size * 2) {
334			pr_err("Malformed CHAP_R\n");
335			goto out;
336		}
337		if (hex2bin(client_digest, chap_r, chap->digest_size) < 0) {
338			pr_err("Malformed CHAP_R: invalid HEX\n");
339			goto out;
340		}
341		break;
342	case BASE64:
343		if (chap_base64_decode(client_digest, chap_r, strlen(chap_r)) !=
344		    chap->digest_size) {
345			pr_err("Malformed CHAP_R: invalid BASE64\n");
346			goto out;
347		}
348		break;
349	default:
350		pr_err("Could not find CHAP_R\n");
351		goto out;
352	}
353
354	pr_debug("[server] Got CHAP_R=%s\n", chap_r);
 
355
356	tfm = crypto_alloc_shash(chap->digest_name, 0, 0);
357	if (IS_ERR(tfm)) {
358		tfm = NULL;
359		pr_err("Unable to allocate struct crypto_shash\n");
360		goto out;
361	}
 
 
362
363	desc = kmalloc(sizeof(*desc) + crypto_shash_descsize(tfm), GFP_KERNEL);
364	if (!desc) {
365		pr_err("Unable to allocate struct shash_desc\n");
 
366		goto out;
367	}
368
369	desc->tfm = tfm;
370
371	ret = crypto_shash_init(desc);
372	if (ret < 0) {
373		pr_err("crypto_shash_init() failed\n");
 
374		goto out;
375	}
376
377	ret = crypto_shash_update(desc, &chap->id, 1);
 
378	if (ret < 0) {
379		pr_err("crypto_shash_update() failed for id\n");
 
380		goto out;
381	}
382
383	ret = crypto_shash_update(desc, (char *)&auth->password,
384				  strlen(auth->password));
385	if (ret < 0) {
386		pr_err("crypto_shash_update() failed for password\n");
 
387		goto out;
388	}
389
390	ret = crypto_shash_finup(desc, chap->challenge,
391				 chap->challenge_len, server_digest);
392	if (ret < 0) {
393		pr_err("crypto_shash_finup() failed for challenge\n");
 
394		goto out;
395	}
 
396
397	bin2hex(response, server_digest, chap->digest_size);
398	pr_debug("[server] %s Server Digest: %s\n",
399		chap->digest_name, response);
400
401	if (memcmp(server_digest, client_digest, chap->digest_size) != 0) {
402		pr_debug("[server] %s Digests do not match!\n\n",
403			chap->digest_name);
404		goto out;
405	} else
406		pr_debug("[server] %s Digests match, CHAP connection"
407				" successful.\n\n", chap->digest_name);
408	/*
409	 * One way authentication has succeeded, return now if mutual
410	 * authentication is not enabled.
411	 */
412	if (!auth->authenticate_target) {
413		auth_ret = 0;
414		goto out;
 
415	}
416	/*
417	 * Get CHAP_I.
418	 */
419	ret = extract_param(nr_in_ptr, "CHAP_I", 10, identifier, &type);
420	if (ret == -ENOENT) {
421		pr_debug("Could not find CHAP_I. Initiator uses One way authentication.\n");
422		auth_ret = 0;
423		goto out;
424	}
425	if (ret < 0) {
426		pr_err("Could not find CHAP_I.\n");
427		goto out;
428	}
429
430	if (type == HEX)
431		ret = kstrtoul(&identifier[2], 0, &id);
 
432	else
433		ret = kstrtoul(identifier, 0, &id);
434
435	if (ret < 0) {
436		pr_err("kstrtoul() failed for CHAP identifier: %d\n", ret);
437		goto out;
438	}
439	if (id > 255) {
440		pr_err("chap identifier: %lu greater than 255\n", id);
441		goto out;
442	}
443	/*
444	 * RFC 1994 says Identifier is no more than octet (8 bits).
445	 */
446	pr_debug("[server] Got CHAP_I=%lu\n", id);
447	/*
448	 * Get CHAP_C.
449	 */
450	if (extract_param(nr_in_ptr, "CHAP_C", CHAP_CHALLENGE_STR_LEN,
451			initiatorchg, &type) < 0) {
452		pr_err("Could not find CHAP_C.\n");
453		goto out;
454	}
455
456	switch (type) {
457	case HEX:
458		initiatorchg_len = DIV_ROUND_UP(strlen(initiatorchg), 2);
459		if (!initiatorchg_len) {
460			pr_err("Unable to convert incoming challenge\n");
461			goto out;
462		}
463		if (initiatorchg_len > 1024) {
464			pr_err("CHAP_C exceeds maximum binary size of 1024 bytes\n");
465			goto out;
466		}
467
468		if (hex2bin(initiatorchg_binhex, initiatorchg,
469			    initiatorchg_len) < 0) {
470			pr_err("Malformed CHAP_C: invalid HEX\n");
471			goto out;
472		}
473		break;
474	case BASE64:
475		initiatorchg_len = chap_base64_decode(initiatorchg_binhex,
476						      initiatorchg,
477						      strlen(initiatorchg));
478		if (initiatorchg_len < 0) {
479			pr_err("Malformed CHAP_C: invalid BASE64\n");
480			goto out;
481		}
482		if (!initiatorchg_len) {
483			pr_err("Unable to convert incoming challenge\n");
484			goto out;
485		}
486		if (initiatorchg_len > 1024) {
487			pr_err("CHAP_C exceeds maximum binary size of 1024 bytes\n");
488			goto out;
489		}
490		break;
491	default:
492		pr_err("Could not find CHAP_C.\n");
493		goto out;
494	}
495
496	pr_debug("[server] Got CHAP_C=%s\n", initiatorchg);
497	/*
498	 * During mutual authentication, the CHAP_C generated by the
499	 * initiator must not match the original CHAP_C generated by
500	 * the target.
501	 */
502	if (initiatorchg_len == chap->challenge_len &&
503				!memcmp(initiatorchg_binhex, chap->challenge,
504				initiatorchg_len)) {
505		pr_err("initiator CHAP_C matches target CHAP_C, failing"
506		       " login attempt\n");
507		goto out;
508	}
509	/*
510	 * Generate CHAP_N and CHAP_R for mutual authentication.
511	 */
512	ret = crypto_shash_init(desc);
 
 
 
 
 
 
 
 
513	if (ret < 0) {
514		pr_err("crypto_shash_init() failed\n");
 
515		goto out;
516	}
517
518	/* To handle both endiannesses */
519	id_as_uchar = id;
520	ret = crypto_shash_update(desc, &id_as_uchar, 1);
521	if (ret < 0) {
522		pr_err("crypto_shash_update() failed for id\n");
 
523		goto out;
524	}
525
526	ret = crypto_shash_update(desc, auth->password_mutual,
527				  strlen(auth->password_mutual));
 
528	if (ret < 0) {
529		pr_err("crypto_shash_update() failed for"
530				" password_mutual\n");
 
531		goto out;
532	}
533	/*
534	 * Convert received challenge to binary hex.
535	 */
536	ret = crypto_shash_finup(desc, initiatorchg_binhex, initiatorchg_len,
537				 digest);
538	if (ret < 0) {
539		pr_err("crypto_shash_finup() failed for ma challenge\n");
 
540		goto out;
541	}
542
 
 
 
 
 
 
 
543	/*
544	 * Generate CHAP_N and CHAP_R.
545	 */
546	*nr_out_len = sprintf(nr_out_ptr, "CHAP_N=%s", auth->userid_mutual);
547	*nr_out_len += 1;
548	pr_debug("[server] Sending CHAP_N=%s\n", auth->userid_mutual);
549	/*
550	 * Convert response from binary hex to ascii hext.
551	 */
552	bin2hex(response, digest, chap->digest_size);
553	*nr_out_len += sprintf(nr_out_ptr + *nr_out_len, "CHAP_R=0x%s",
554			response);
555	*nr_out_len += 1;
556	pr_debug("[server] Sending CHAP_R=0x%s\n", response);
557	auth_ret = 0;
558out:
559	kfree_sensitive(desc);
560	if (tfm)
561		crypto_free_shash(tfm);
562	kfree(initiatorchg);
563	kfree(initiatorchg_binhex);
564	kfree(digest);
565	kfree(response);
566	kfree(server_digest);
567	kfree(client_digest);
568	return auth_ret;
569}
570
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
571u32 chap_main_loop(
572	struct iscsit_conn *conn,
573	struct iscsi_node_auth *auth,
574	char *in_text,
575	char *out_text,
576	int *in_len,
577	int *out_len)
578{
579	struct iscsi_chap *chap = conn->auth_protocol;
580
581	if (!chap) {
582		chap = chap_server_open(conn, auth, in_text, out_text, out_len);
583		if (!chap)
584			return 2;
585		chap->chap_state = CHAP_STAGE_SERVER_AIC;
586		return 0;
587	} else if (chap->chap_state == CHAP_STAGE_SERVER_AIC) {
588		convert_null_to_semi(in_text, *in_len);
589		if (chap_server_compute_hash(conn, auth, in_text, out_text,
590				out_len) < 0) {
591			chap_close(conn);
592			return 2;
593		}
594		if (auth->authenticate_target)
595			chap->chap_state = CHAP_STAGE_SERVER_NR;
596		else
597			*out_len = 0;
598		chap_close(conn);
599		return 1;
600	}
601
602	return 2;
603}