1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2020 Hannes Reinecke, SUSE Linux
6 #include <linux/crc32.h>
7 #include <linux/base64.h>
8 #include <linux/prandom.h>
9 #include <asm/unaligned.h>
10 #include <crypto/hash.h>
11 #include <crypto/dh.h>
14 #include <linux/nvme-auth.h>
16 #define CHAP_BUF_SIZE 4096
17 static struct kmem_cache *nvme_chap_buf_cache;
18 static mempool_t *nvme_chap_buf_pool;
20 struct nvme_dhchap_queue_context {
21 struct list_head entry;
22 struct work_struct auth_work;
23 struct nvme_ctrl *ctrl;
24 struct crypto_shash *shash_tfm;
25 struct crypto_kpp *dh_tfm;
48 static struct workqueue_struct *nvme_auth_wq;
50 #define nvme_auth_flags_from_qid(qid) \
51 (qid == 0) ? 0 : BLK_MQ_REQ_NOWAIT | BLK_MQ_REQ_RESERVED
52 #define nvme_auth_queue_from_qid(ctrl, qid) \
53 (qid == 0) ? (ctrl)->fabrics_q : (ctrl)->connect_q
55 static inline int ctrl_max_dhchaps(struct nvme_ctrl *ctrl)
57 return ctrl->opts->nr_io_queues + ctrl->opts->nr_write_queues +
58 ctrl->opts->nr_poll_queues + 1;
61 static int nvme_auth_submit(struct nvme_ctrl *ctrl, int qid,
62 void *data, size_t data_len, bool auth_send)
64 struct nvme_command cmd = {};
65 blk_mq_req_flags_t flags = nvme_auth_flags_from_qid(qid);
66 struct request_queue *q = nvme_auth_queue_from_qid(ctrl, qid);
69 cmd.auth_common.opcode = nvme_fabrics_command;
70 cmd.auth_common.secp = NVME_AUTH_DHCHAP_PROTOCOL_IDENTIFIER;
71 cmd.auth_common.spsp0 = 0x01;
72 cmd.auth_common.spsp1 = 0x01;
74 cmd.auth_send.fctype = nvme_fabrics_type_auth_send;
75 cmd.auth_send.tl = cpu_to_le32(data_len);
77 cmd.auth_receive.fctype = nvme_fabrics_type_auth_receive;
78 cmd.auth_receive.al = cpu_to_le32(data_len);
81 ret = __nvme_submit_sync_cmd(q, &cmd, NULL, data, data_len,
82 qid == 0 ? NVME_QID_ANY : qid,
85 dev_warn(ctrl->device,
86 "qid %d auth_send failed with status %d\n", qid, ret);
89 "qid %d auth_send failed with error %d\n", qid, ret);
93 static int nvme_auth_receive_validate(struct nvme_ctrl *ctrl, int qid,
94 struct nvmf_auth_dhchap_failure_data *data,
95 u16 transaction, u8 expected_msg)
97 dev_dbg(ctrl->device, "%s: qid %d auth_type %d auth_id %x\n",
98 __func__, qid, data->auth_type, data->auth_id);
100 if (data->auth_type == NVME_AUTH_COMMON_MESSAGES &&
101 data->auth_id == NVME_AUTH_DHCHAP_MESSAGE_FAILURE1) {
102 return data->rescode_exp;
104 if (data->auth_type != NVME_AUTH_DHCHAP_MESSAGES ||
105 data->auth_id != expected_msg) {
106 dev_warn(ctrl->device,
107 "qid %d invalid message %02x/%02x\n",
108 qid, data->auth_type, data->auth_id);
109 return NVME_AUTH_DHCHAP_FAILURE_INCORRECT_MESSAGE;
111 if (le16_to_cpu(data->t_id) != transaction) {
112 dev_warn(ctrl->device,
113 "qid %d invalid transaction ID %d\n",
114 qid, le16_to_cpu(data->t_id));
115 return NVME_AUTH_DHCHAP_FAILURE_INCORRECT_MESSAGE;
120 static int nvme_auth_set_dhchap_negotiate_data(struct nvme_ctrl *ctrl,
121 struct nvme_dhchap_queue_context *chap)
123 struct nvmf_auth_dhchap_negotiate_data *data = chap->buf;
124 size_t size = sizeof(*data) + sizeof(union nvmf_auth_protocol);
126 if (size > CHAP_BUF_SIZE) {
127 chap->status = NVME_AUTH_DHCHAP_FAILURE_INCORRECT_PAYLOAD;
130 memset((u8 *)chap->buf, 0, size);
131 data->auth_type = NVME_AUTH_COMMON_MESSAGES;
132 data->auth_id = NVME_AUTH_DHCHAP_MESSAGE_NEGOTIATE;
133 data->t_id = cpu_to_le16(chap->transaction);
134 data->sc_c = 0; /* No secure channel concatenation */
136 data->auth_protocol[0].dhchap.authid = NVME_AUTH_DHCHAP_AUTH_ID;
137 data->auth_protocol[0].dhchap.halen = 3;
138 data->auth_protocol[0].dhchap.dhlen = 6;
139 data->auth_protocol[0].dhchap.idlist[0] = NVME_AUTH_HASH_SHA256;
140 data->auth_protocol[0].dhchap.idlist[1] = NVME_AUTH_HASH_SHA384;
141 data->auth_protocol[0].dhchap.idlist[2] = NVME_AUTH_HASH_SHA512;
142 data->auth_protocol[0].dhchap.idlist[30] = NVME_AUTH_DHGROUP_NULL;
143 data->auth_protocol[0].dhchap.idlist[31] = NVME_AUTH_DHGROUP_2048;
144 data->auth_protocol[0].dhchap.idlist[32] = NVME_AUTH_DHGROUP_3072;
145 data->auth_protocol[0].dhchap.idlist[33] = NVME_AUTH_DHGROUP_4096;
146 data->auth_protocol[0].dhchap.idlist[34] = NVME_AUTH_DHGROUP_6144;
147 data->auth_protocol[0].dhchap.idlist[35] = NVME_AUTH_DHGROUP_8192;
152 static int nvme_auth_process_dhchap_challenge(struct nvme_ctrl *ctrl,
153 struct nvme_dhchap_queue_context *chap)
155 struct nvmf_auth_dhchap_challenge_data *data = chap->buf;
156 u16 dhvlen = le16_to_cpu(data->dhvlen);
157 size_t size = sizeof(*data) + data->hl + dhvlen;
158 const char *gid_name = nvme_auth_dhgroup_name(data->dhgid);
159 const char *hmac_name, *kpp_name;
161 if (size > CHAP_BUF_SIZE) {
162 chap->status = NVME_AUTH_DHCHAP_FAILURE_INCORRECT_PAYLOAD;
166 hmac_name = nvme_auth_hmac_name(data->hashid);
168 dev_warn(ctrl->device,
169 "qid %d: invalid HASH ID %d\n",
170 chap->qid, data->hashid);
171 chap->status = NVME_AUTH_DHCHAP_FAILURE_HASH_UNUSABLE;
175 if (chap->hash_id == data->hashid && chap->shash_tfm &&
176 !strcmp(crypto_shash_alg_name(chap->shash_tfm), hmac_name) &&
177 crypto_shash_digestsize(chap->shash_tfm) == data->hl) {
178 dev_dbg(ctrl->device,
179 "qid %d: reuse existing hash %s\n",
180 chap->qid, hmac_name);
184 /* Reset if hash cannot be reused */
185 if (chap->shash_tfm) {
186 crypto_free_shash(chap->shash_tfm);
190 chap->shash_tfm = crypto_alloc_shash(hmac_name, 0,
191 CRYPTO_ALG_ALLOCATES_MEMORY);
192 if (IS_ERR(chap->shash_tfm)) {
193 dev_warn(ctrl->device,
194 "qid %d: failed to allocate hash %s, error %ld\n",
195 chap->qid, hmac_name, PTR_ERR(chap->shash_tfm));
196 chap->shash_tfm = NULL;
197 chap->status = NVME_AUTH_DHCHAP_FAILURE_FAILED;
201 if (crypto_shash_digestsize(chap->shash_tfm) != data->hl) {
202 dev_warn(ctrl->device,
203 "qid %d: invalid hash length %d\n",
204 chap->qid, data->hl);
205 crypto_free_shash(chap->shash_tfm);
206 chap->shash_tfm = NULL;
207 chap->status = NVME_AUTH_DHCHAP_FAILURE_HASH_UNUSABLE;
211 chap->hash_id = data->hashid;
212 chap->hash_len = data->hl;
213 dev_dbg(ctrl->device, "qid %d: selected hash %s\n",
214 chap->qid, hmac_name);
217 kpp_name = nvme_auth_dhgroup_kpp(data->dhgid);
219 dev_warn(ctrl->device,
220 "qid %d: invalid DH group id %d\n",
221 chap->qid, data->dhgid);
222 chap->status = NVME_AUTH_DHCHAP_FAILURE_DHGROUP_UNUSABLE;
223 /* Leave previous dh_tfm intact */
227 if (chap->dhgroup_id == data->dhgid &&
228 (data->dhgid == NVME_AUTH_DHGROUP_NULL || chap->dh_tfm)) {
229 dev_dbg(ctrl->device,
230 "qid %d: reuse existing DH group %s\n",
231 chap->qid, gid_name);
235 /* Reset dh_tfm if it can't be reused */
237 crypto_free_kpp(chap->dh_tfm);
241 if (data->dhgid != NVME_AUTH_DHGROUP_NULL) {
243 dev_warn(ctrl->device,
244 "qid %d: empty DH value\n",
246 chap->status = NVME_AUTH_DHCHAP_FAILURE_DHGROUP_UNUSABLE;
250 chap->dh_tfm = crypto_alloc_kpp(kpp_name, 0, 0);
251 if (IS_ERR(chap->dh_tfm)) {
252 int ret = PTR_ERR(chap->dh_tfm);
254 dev_warn(ctrl->device,
255 "qid %d: error %d initializing DH group %s\n",
256 chap->qid, ret, gid_name);
257 chap->status = NVME_AUTH_DHCHAP_FAILURE_DHGROUP_UNUSABLE;
261 dev_dbg(ctrl->device, "qid %d: selected DH group %s\n",
262 chap->qid, gid_name);
263 } else if (dhvlen != 0) {
264 dev_warn(ctrl->device,
265 "qid %d: invalid DH value for NULL DH\n",
267 chap->status = NVME_AUTH_DHCHAP_FAILURE_INCORRECT_PAYLOAD;
270 chap->dhgroup_id = data->dhgid;
273 chap->s1 = le32_to_cpu(data->seqnum);
274 memcpy(chap->c1, data->cval, chap->hash_len);
276 chap->ctrl_key = kmalloc(dhvlen, GFP_KERNEL);
277 if (!chap->ctrl_key) {
278 chap->status = NVME_AUTH_DHCHAP_FAILURE_FAILED;
281 chap->ctrl_key_len = dhvlen;
282 memcpy(chap->ctrl_key, data->cval + chap->hash_len,
284 dev_dbg(ctrl->device, "ctrl public key %*ph\n",
285 (int)chap->ctrl_key_len, chap->ctrl_key);
291 static int nvme_auth_set_dhchap_reply_data(struct nvme_ctrl *ctrl,
292 struct nvme_dhchap_queue_context *chap)
294 struct nvmf_auth_dhchap_reply_data *data = chap->buf;
295 size_t size = sizeof(*data);
297 size += 2 * chap->hash_len;
299 if (chap->host_key_len)
300 size += chap->host_key_len;
302 if (size > CHAP_BUF_SIZE) {
303 chap->status = NVME_AUTH_DHCHAP_FAILURE_INCORRECT_PAYLOAD;
307 memset(chap->buf, 0, size);
308 data->auth_type = NVME_AUTH_DHCHAP_MESSAGES;
309 data->auth_id = NVME_AUTH_DHCHAP_MESSAGE_REPLY;
310 data->t_id = cpu_to_le16(chap->transaction);
311 data->hl = chap->hash_len;
312 data->dhvlen = cpu_to_le16(chap->host_key_len);
313 memcpy(data->rval, chap->response, chap->hash_len);
314 if (ctrl->ctrl_key) {
315 get_random_bytes(chap->c2, chap->hash_len);
317 chap->s2 = nvme_auth_get_seqnum();
318 memcpy(data->rval + chap->hash_len, chap->c2,
320 dev_dbg(ctrl->device, "%s: qid %d ctrl challenge %*ph\n",
321 __func__, chap->qid, (int)chap->hash_len, chap->c2);
323 memset(chap->c2, 0, chap->hash_len);
326 data->seqnum = cpu_to_le32(chap->s2);
327 if (chap->host_key_len) {
328 dev_dbg(ctrl->device, "%s: qid %d host public key %*ph\n",
330 chap->host_key_len, chap->host_key);
331 memcpy(data->rval + 2 * chap->hash_len, chap->host_key,
338 static int nvme_auth_process_dhchap_success1(struct nvme_ctrl *ctrl,
339 struct nvme_dhchap_queue_context *chap)
341 struct nvmf_auth_dhchap_success1_data *data = chap->buf;
342 size_t size = sizeof(*data);
345 size += chap->hash_len;
347 if (size > CHAP_BUF_SIZE) {
348 chap->status = NVME_AUTH_DHCHAP_FAILURE_INCORRECT_PAYLOAD;
352 if (data->hl != chap->hash_len) {
353 dev_warn(ctrl->device,
354 "qid %d: invalid hash length %u\n",
355 chap->qid, data->hl);
356 chap->status = NVME_AUTH_DHCHAP_FAILURE_HASH_UNUSABLE;
360 /* Just print out information for the admin queue */
362 dev_info(ctrl->device,
363 "qid 0: authenticated with hash %s dhgroup %s\n",
364 nvme_auth_hmac_name(chap->hash_id),
365 nvme_auth_dhgroup_name(chap->dhgroup_id));
370 /* Validate controller response */
371 if (memcmp(chap->response, data->rval, data->hl)) {
372 dev_dbg(ctrl->device, "%s: qid %d ctrl response %*ph\n",
373 __func__, chap->qid, (int)chap->hash_len, data->rval);
374 dev_dbg(ctrl->device, "%s: qid %d host response %*ph\n",
375 __func__, chap->qid, (int)chap->hash_len,
377 dev_warn(ctrl->device,
378 "qid %d: controller authentication failed\n",
380 chap->status = NVME_AUTH_DHCHAP_FAILURE_FAILED;
381 return -ECONNREFUSED;
384 /* Just print out information for the admin queue */
386 dev_info(ctrl->device,
387 "qid 0: controller authenticated\n");
391 static int nvme_auth_set_dhchap_success2_data(struct nvme_ctrl *ctrl,
392 struct nvme_dhchap_queue_context *chap)
394 struct nvmf_auth_dhchap_success2_data *data = chap->buf;
395 size_t size = sizeof(*data);
397 memset(chap->buf, 0, size);
398 data->auth_type = NVME_AUTH_DHCHAP_MESSAGES;
399 data->auth_id = NVME_AUTH_DHCHAP_MESSAGE_SUCCESS2;
400 data->t_id = cpu_to_le16(chap->transaction);
405 static int nvme_auth_set_dhchap_failure2_data(struct nvme_ctrl *ctrl,
406 struct nvme_dhchap_queue_context *chap)
408 struct nvmf_auth_dhchap_failure_data *data = chap->buf;
409 size_t size = sizeof(*data);
411 memset(chap->buf, 0, size);
412 data->auth_type = NVME_AUTH_COMMON_MESSAGES;
413 data->auth_id = NVME_AUTH_DHCHAP_MESSAGE_FAILURE2;
414 data->t_id = cpu_to_le16(chap->transaction);
415 data->rescode = NVME_AUTH_DHCHAP_FAILURE_REASON_FAILED;
416 data->rescode_exp = chap->status;
421 static int nvme_auth_dhchap_setup_host_response(struct nvme_ctrl *ctrl,
422 struct nvme_dhchap_queue_context *chap)
424 SHASH_DESC_ON_STACK(shash, chap->shash_tfm);
425 u8 buf[4], *challenge = chap->c1;
428 dev_dbg(ctrl->device, "%s: qid %d host response seq %u transaction %d\n",
429 __func__, chap->qid, chap->s1, chap->transaction);
431 if (!chap->host_response) {
432 chap->host_response = nvme_auth_transform_key(ctrl->host_key,
433 ctrl->opts->host->nqn);
434 if (IS_ERR(chap->host_response)) {
435 ret = PTR_ERR(chap->host_response);
436 chap->host_response = NULL;
440 dev_dbg(ctrl->device, "%s: qid %d re-using host response\n",
441 __func__, chap->qid);
444 ret = crypto_shash_setkey(chap->shash_tfm,
445 chap->host_response, ctrl->host_key->len);
447 dev_warn(ctrl->device, "qid %d: failed to set key, error %d\n",
453 challenge = kmalloc(chap->hash_len, GFP_KERNEL);
458 ret = nvme_auth_augmented_challenge(chap->hash_id,
467 shash->tfm = chap->shash_tfm;
468 ret = crypto_shash_init(shash);
471 ret = crypto_shash_update(shash, challenge, chap->hash_len);
474 put_unaligned_le32(chap->s1, buf);
475 ret = crypto_shash_update(shash, buf, 4);
478 put_unaligned_le16(chap->transaction, buf);
479 ret = crypto_shash_update(shash, buf, 2);
482 memset(buf, 0, sizeof(buf));
483 ret = crypto_shash_update(shash, buf, 1);
486 ret = crypto_shash_update(shash, "HostHost", 8);
489 ret = crypto_shash_update(shash, ctrl->opts->host->nqn,
490 strlen(ctrl->opts->host->nqn));
493 ret = crypto_shash_update(shash, buf, 1);
496 ret = crypto_shash_update(shash, ctrl->opts->subsysnqn,
497 strlen(ctrl->opts->subsysnqn));
500 ret = crypto_shash_final(shash, chap->response);
502 if (challenge != chap->c1)
507 static int nvme_auth_dhchap_setup_ctrl_response(struct nvme_ctrl *ctrl,
508 struct nvme_dhchap_queue_context *chap)
510 SHASH_DESC_ON_STACK(shash, chap->shash_tfm);
512 u8 buf[4], *challenge = chap->c2;
515 ctrl_response = nvme_auth_transform_key(ctrl->ctrl_key,
516 ctrl->opts->subsysnqn);
517 if (IS_ERR(ctrl_response)) {
518 ret = PTR_ERR(ctrl_response);
522 ret = crypto_shash_setkey(chap->shash_tfm,
523 ctrl_response, ctrl->ctrl_key->len);
525 dev_warn(ctrl->device, "qid %d: failed to set key, error %d\n",
531 challenge = kmalloc(chap->hash_len, GFP_KERNEL);
536 ret = nvme_auth_augmented_challenge(chap->hash_id,
544 dev_dbg(ctrl->device, "%s: qid %d ctrl response seq %u transaction %d\n",
545 __func__, chap->qid, chap->s2, chap->transaction);
546 dev_dbg(ctrl->device, "%s: qid %d challenge %*ph\n",
547 __func__, chap->qid, (int)chap->hash_len, challenge);
548 dev_dbg(ctrl->device, "%s: qid %d subsysnqn %s\n",
549 __func__, chap->qid, ctrl->opts->subsysnqn);
550 dev_dbg(ctrl->device, "%s: qid %d hostnqn %s\n",
551 __func__, chap->qid, ctrl->opts->host->nqn);
552 shash->tfm = chap->shash_tfm;
553 ret = crypto_shash_init(shash);
556 ret = crypto_shash_update(shash, challenge, chap->hash_len);
559 put_unaligned_le32(chap->s2, buf);
560 ret = crypto_shash_update(shash, buf, 4);
563 put_unaligned_le16(chap->transaction, buf);
564 ret = crypto_shash_update(shash, buf, 2);
568 ret = crypto_shash_update(shash, buf, 1);
571 ret = crypto_shash_update(shash, "Controller", 10);
574 ret = crypto_shash_update(shash, ctrl->opts->subsysnqn,
575 strlen(ctrl->opts->subsysnqn));
578 ret = crypto_shash_update(shash, buf, 1);
581 ret = crypto_shash_update(shash, ctrl->opts->host->nqn,
582 strlen(ctrl->opts->host->nqn));
585 ret = crypto_shash_final(shash, chap->response);
587 if (challenge != chap->c2)
589 kfree(ctrl_response);
593 static int nvme_auth_dhchap_exponential(struct nvme_ctrl *ctrl,
594 struct nvme_dhchap_queue_context *chap)
598 if (chap->host_key && chap->host_key_len) {
599 dev_dbg(ctrl->device,
600 "qid %d: reusing host key\n", chap->qid);
603 ret = nvme_auth_gen_privkey(chap->dh_tfm, chap->dhgroup_id);
605 chap->status = NVME_AUTH_DHCHAP_FAILURE_INCORRECT_PAYLOAD;
609 chap->host_key_len = crypto_kpp_maxsize(chap->dh_tfm);
611 chap->host_key = kzalloc(chap->host_key_len, GFP_KERNEL);
612 if (!chap->host_key) {
613 chap->host_key_len = 0;
614 chap->status = NVME_AUTH_DHCHAP_FAILURE_FAILED;
617 ret = nvme_auth_gen_pubkey(chap->dh_tfm,
618 chap->host_key, chap->host_key_len);
620 dev_dbg(ctrl->device,
621 "failed to generate public key, error %d\n", ret);
622 chap->status = NVME_AUTH_DHCHAP_FAILURE_INCORRECT_PAYLOAD;
627 chap->sess_key_len = chap->host_key_len;
628 chap->sess_key = kmalloc(chap->sess_key_len, GFP_KERNEL);
629 if (!chap->sess_key) {
630 chap->sess_key_len = 0;
631 chap->status = NVME_AUTH_DHCHAP_FAILURE_FAILED;
635 ret = nvme_auth_gen_shared_secret(chap->dh_tfm,
636 chap->ctrl_key, chap->ctrl_key_len,
637 chap->sess_key, chap->sess_key_len);
639 dev_dbg(ctrl->device,
640 "failed to generate shared secret, error %d\n", ret);
641 chap->status = NVME_AUTH_DHCHAP_FAILURE_INCORRECT_PAYLOAD;
644 dev_dbg(ctrl->device, "shared secret %*ph\n",
645 (int)chap->sess_key_len, chap->sess_key);
649 static void nvme_auth_reset_dhchap(struct nvme_dhchap_queue_context *chap)
651 kfree_sensitive(chap->host_response);
652 chap->host_response = NULL;
653 kfree_sensitive(chap->host_key);
654 chap->host_key = NULL;
655 chap->host_key_len = 0;
656 kfree_sensitive(chap->ctrl_key);
657 chap->ctrl_key = NULL;
658 chap->ctrl_key_len = 0;
659 kfree_sensitive(chap->sess_key);
660 chap->sess_key = NULL;
661 chap->sess_key_len = 0;
666 chap->transaction = 0;
667 memset(chap->c1, 0, sizeof(chap->c1));
668 memset(chap->c2, 0, sizeof(chap->c2));
669 mempool_free(chap->buf, nvme_chap_buf_pool);
673 static void nvme_auth_free_dhchap(struct nvme_dhchap_queue_context *chap)
675 nvme_auth_reset_dhchap(chap);
677 crypto_free_shash(chap->shash_tfm);
679 crypto_free_kpp(chap->dh_tfm);
682 static void nvme_queue_auth_work(struct work_struct *work)
684 struct nvme_dhchap_queue_context *chap =
685 container_of(work, struct nvme_dhchap_queue_context, auth_work);
686 struct nvme_ctrl *ctrl = chap->ctrl;
691 * Allocate a large enough buffer for the entire negotiation:
692 * 4k is enough to ffdhe8192.
694 chap->buf = mempool_alloc(nvme_chap_buf_pool, GFP_KERNEL);
696 chap->error = -ENOMEM;
700 chap->transaction = ctrl->transaction++;
702 /* DH-HMAC-CHAP Step 1: send negotiate */
703 dev_dbg(ctrl->device, "%s: qid %d send negotiate\n",
704 __func__, chap->qid);
705 ret = nvme_auth_set_dhchap_negotiate_data(ctrl, chap);
711 ret = nvme_auth_submit(ctrl, chap->qid, chap->buf, tl, true);
717 /* DH-HMAC-CHAP Step 2: receive challenge */
718 dev_dbg(ctrl->device, "%s: qid %d receive challenge\n",
719 __func__, chap->qid);
721 memset(chap->buf, 0, CHAP_BUF_SIZE);
722 ret = nvme_auth_submit(ctrl, chap->qid, chap->buf, CHAP_BUF_SIZE,
725 dev_warn(ctrl->device,
726 "qid %d failed to receive challenge, %s %d\n",
727 chap->qid, ret < 0 ? "error" : "nvme status", ret);
731 ret = nvme_auth_receive_validate(ctrl, chap->qid, chap->buf, chap->transaction,
732 NVME_AUTH_DHCHAP_MESSAGE_CHALLENGE);
735 chap->error = -ECONNREFUSED;
739 ret = nvme_auth_process_dhchap_challenge(ctrl, chap);
741 /* Invalid challenge parameters */
746 if (chap->ctrl_key_len) {
747 dev_dbg(ctrl->device,
748 "%s: qid %d DH exponential\n",
749 __func__, chap->qid);
750 ret = nvme_auth_dhchap_exponential(ctrl, chap);
757 dev_dbg(ctrl->device, "%s: qid %d host response\n",
758 __func__, chap->qid);
759 mutex_lock(&ctrl->dhchap_auth_mutex);
760 ret = nvme_auth_dhchap_setup_host_response(ctrl, chap);
762 mutex_unlock(&ctrl->dhchap_auth_mutex);
766 mutex_unlock(&ctrl->dhchap_auth_mutex);
768 /* DH-HMAC-CHAP Step 3: send reply */
769 dev_dbg(ctrl->device, "%s: qid %d send reply\n",
770 __func__, chap->qid);
771 ret = nvme_auth_set_dhchap_reply_data(ctrl, chap);
778 ret = nvme_auth_submit(ctrl, chap->qid, chap->buf, tl, true);
784 /* DH-HMAC-CHAP Step 4: receive success1 */
785 dev_dbg(ctrl->device, "%s: qid %d receive success1\n",
786 __func__, chap->qid);
788 memset(chap->buf, 0, CHAP_BUF_SIZE);
789 ret = nvme_auth_submit(ctrl, chap->qid, chap->buf, CHAP_BUF_SIZE,
792 dev_warn(ctrl->device,
793 "qid %d failed to receive success1, %s %d\n",
794 chap->qid, ret < 0 ? "error" : "nvme status", ret);
798 ret = nvme_auth_receive_validate(ctrl, chap->qid,
799 chap->buf, chap->transaction,
800 NVME_AUTH_DHCHAP_MESSAGE_SUCCESS1);
803 chap->error = -ECONNREFUSED;
807 mutex_lock(&ctrl->dhchap_auth_mutex);
808 if (ctrl->ctrl_key) {
809 dev_dbg(ctrl->device,
810 "%s: qid %d controller response\n",
811 __func__, chap->qid);
812 ret = nvme_auth_dhchap_setup_ctrl_response(ctrl, chap);
814 mutex_unlock(&ctrl->dhchap_auth_mutex);
819 mutex_unlock(&ctrl->dhchap_auth_mutex);
821 ret = nvme_auth_process_dhchap_success1(ctrl, chap);
823 /* Controller authentication failed */
824 chap->error = -ECONNREFUSED;
828 if (chap->ctrl_key) {
829 /* DH-HMAC-CHAP Step 5: send success2 */
830 dev_dbg(ctrl->device, "%s: qid %d send success2\n",
831 __func__, chap->qid);
832 tl = nvme_auth_set_dhchap_success2_data(ctrl, chap);
833 ret = nvme_auth_submit(ctrl, chap->qid, chap->buf, tl, true);
843 dev_dbg(ctrl->device, "%s: qid %d send failure2, status %x\n",
844 __func__, chap->qid, chap->status);
845 tl = nvme_auth_set_dhchap_failure2_data(ctrl, chap);
846 ret = nvme_auth_submit(ctrl, chap->qid, chap->buf, tl, true);
848 * only update error if send failure2 failed and no other
849 * error had been set during authentication.
851 if (ret && !chap->error)
855 int nvme_auth_negotiate(struct nvme_ctrl *ctrl, int qid)
857 struct nvme_dhchap_queue_context *chap;
859 if (!ctrl->host_key) {
860 dev_warn(ctrl->device, "qid %d: no key\n", qid);
864 if (ctrl->opts->dhchap_ctrl_secret && !ctrl->ctrl_key) {
865 dev_warn(ctrl->device, "qid %d: invalid ctrl key\n", qid);
869 chap = &ctrl->dhchap_ctxs[qid];
870 cancel_work_sync(&chap->auth_work);
871 queue_work(nvme_auth_wq, &chap->auth_work);
874 EXPORT_SYMBOL_GPL(nvme_auth_negotiate);
876 int nvme_auth_wait(struct nvme_ctrl *ctrl, int qid)
878 struct nvme_dhchap_queue_context *chap;
881 chap = &ctrl->dhchap_ctxs[qid];
882 flush_work(&chap->auth_work);
884 /* clear sensitive info */
885 nvme_auth_reset_dhchap(chap);
888 EXPORT_SYMBOL_GPL(nvme_auth_wait);
890 static void nvme_ctrl_auth_work(struct work_struct *work)
892 struct nvme_ctrl *ctrl =
893 container_of(work, struct nvme_ctrl, dhchap_auth_work);
897 * If the ctrl is no connected, bail as reconnect will handle
900 if (ctrl->state != NVME_CTRL_LIVE)
903 /* Authenticate admin queue first */
904 ret = nvme_auth_negotiate(ctrl, 0);
906 dev_warn(ctrl->device,
907 "qid 0: error %d setting up authentication\n", ret);
910 ret = nvme_auth_wait(ctrl, 0);
912 dev_warn(ctrl->device,
913 "qid 0: authentication failed\n");
917 for (q = 1; q < ctrl->queue_count; q++) {
918 ret = nvme_auth_negotiate(ctrl, q);
920 dev_warn(ctrl->device,
921 "qid %d: error %d setting up authentication\n",
928 * Failure is a soft-state; credentials remain valid until
929 * the controller terminates the connection.
931 for (q = 1; q < ctrl->queue_count; q++) {
932 ret = nvme_auth_wait(ctrl, q);
934 dev_warn(ctrl->device,
935 "qid %d: authentication failed\n", q);
939 int nvme_auth_init_ctrl(struct nvme_ctrl *ctrl)
941 struct nvme_dhchap_queue_context *chap;
944 mutex_init(&ctrl->dhchap_auth_mutex);
945 INIT_WORK(&ctrl->dhchap_auth_work, nvme_ctrl_auth_work);
948 ret = nvme_auth_generate_key(ctrl->opts->dhchap_secret,
952 ret = nvme_auth_generate_key(ctrl->opts->dhchap_ctrl_secret,
955 goto err_free_dhchap_secret;
957 if (!ctrl->opts->dhchap_secret && !ctrl->opts->dhchap_ctrl_secret)
960 ctrl->dhchap_ctxs = kvcalloc(ctrl_max_dhchaps(ctrl),
961 sizeof(*chap), GFP_KERNEL);
962 if (!ctrl->dhchap_ctxs) {
964 goto err_free_dhchap_ctrl_secret;
967 for (i = 0; i < ctrl_max_dhchaps(ctrl); i++) {
968 chap = &ctrl->dhchap_ctxs[i];
971 INIT_WORK(&chap->auth_work, nvme_queue_auth_work);
975 err_free_dhchap_ctrl_secret:
976 nvme_auth_free_key(ctrl->ctrl_key);
977 ctrl->ctrl_key = NULL;
978 err_free_dhchap_secret:
979 nvme_auth_free_key(ctrl->host_key);
980 ctrl->host_key = NULL;
983 EXPORT_SYMBOL_GPL(nvme_auth_init_ctrl);
985 void nvme_auth_stop(struct nvme_ctrl *ctrl)
987 cancel_work_sync(&ctrl->dhchap_auth_work);
989 EXPORT_SYMBOL_GPL(nvme_auth_stop);
991 void nvme_auth_free(struct nvme_ctrl *ctrl)
995 if (ctrl->dhchap_ctxs) {
996 for (i = 0; i < ctrl_max_dhchaps(ctrl); i++)
997 nvme_auth_free_dhchap(&ctrl->dhchap_ctxs[i]);
998 kfree(ctrl->dhchap_ctxs);
1000 if (ctrl->host_key) {
1001 nvme_auth_free_key(ctrl->host_key);
1002 ctrl->host_key = NULL;
1004 if (ctrl->ctrl_key) {
1005 nvme_auth_free_key(ctrl->ctrl_key);
1006 ctrl->ctrl_key = NULL;
1009 EXPORT_SYMBOL_GPL(nvme_auth_free);
1011 int __init nvme_init_auth(void)
1013 nvme_auth_wq = alloc_workqueue("nvme-auth-wq",
1014 WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
1018 nvme_chap_buf_cache = kmem_cache_create("nvme-chap-buf-cache",
1019 CHAP_BUF_SIZE, 0, SLAB_HWCACHE_ALIGN, NULL);
1020 if (!nvme_chap_buf_cache)
1021 goto err_destroy_workqueue;
1023 nvme_chap_buf_pool = mempool_create(16, mempool_alloc_slab,
1024 mempool_free_slab, nvme_chap_buf_cache);
1025 if (!nvme_chap_buf_pool)
1026 goto err_destroy_chap_buf_cache;
1029 err_destroy_chap_buf_cache:
1030 kmem_cache_destroy(nvme_chap_buf_cache);
1031 err_destroy_workqueue:
1032 destroy_workqueue(nvme_auth_wq);
1036 void __exit nvme_exit_auth(void)
1038 mempool_destroy(nvme_chap_buf_pool);
1039 kmem_cache_destroy(nvme_chap_buf_cache);
1040 destroy_workqueue(nvme_auth_wq);