[linux-nvme:nvme-6.13 7/7] drivers/nvme/target/pr.c:851 nvmet_execute_pr_report() warn: potential pointer math issue ('ctrl_eds' is a 512 bit pointer)

Dan Carpenter dan.carpenter at linaro.org
Mon Nov 11 01:47:42 PST 2024


tree:   git://git.infradead.org/nvme.git nvme-6.13
head:   4c0ce9416cd06e9ef0e049f7a9226707c3786b1a
commit: 4c0ce9416cd06e9ef0e049f7a9226707c3786b1a [7/7] nvmet: support reservation feature
config: i386-randconfig-141-20241108 (https://download.01.org/0day-ci/archive/20241108/202411081457.mmSUxHMU-lkp@intel.com/config)
compiler: clang version 19.1.3 (https://github.com/llvm/llvm-project ab51eccf88f5321e7c60591c5546b254b6afab99)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp at intel.com>
| Reported-by: Dan Carpenter <dan.carpenter at linaro.org>
| Closes: https://lore.kernel.org/r/202411081457.mmSUxHMU-lkp@intel.com/

smatch warnings:
drivers/nvme/target/pr.c:851 nvmet_execute_pr_report() warn: potential pointer math issue ('ctrl_eds' is a 512 bit pointer)

vim +851 drivers/nvme/target/pr.c

4c0ce9416cd06e Guixin Liu 2024-11-06  803  static void nvmet_execute_pr_report(struct nvmet_req *req)
4c0ce9416cd06e Guixin Liu 2024-11-06  804  {
4c0ce9416cd06e Guixin Liu 2024-11-06  805  	u32 cdw11 = le32_to_cpu(req->cmd->common.cdw11);
4c0ce9416cd06e Guixin Liu 2024-11-06  806  	u32 cdw10 = le32_to_cpu(req->cmd->common.cdw10);
4c0ce9416cd06e Guixin Liu 2024-11-06  807  	u32 num_bytes = 4 * (cdw10 + 1); /* cdw10 is number of dwords */
4c0ce9416cd06e Guixin Liu 2024-11-06  808  	u8 eds = cdw11 & 1; /* Extended data structure, bit 00 */
4c0ce9416cd06e Guixin Liu 2024-11-06  809  	struct nvme_registered_ctrl_ext *ctrl_eds;
4c0ce9416cd06e Guixin Liu 2024-11-06  810  	struct nvme_reservation_status_ext *data;
4c0ce9416cd06e Guixin Liu 2024-11-06  811  	struct nvmet_pr *pr = &req->ns->pr;
4c0ce9416cd06e Guixin Liu 2024-11-06  812  	struct nvmet_pr_registrant *holder;
4c0ce9416cd06e Guixin Liu 2024-11-06  813  	struct nvmet_pr_registrant *reg;
4c0ce9416cd06e Guixin Liu 2024-11-06  814  	u16 num_ctrls = 0;
4c0ce9416cd06e Guixin Liu 2024-11-06  815  	u16 status;
4c0ce9416cd06e Guixin Liu 2024-11-06  816  	u8 rtype;
4c0ce9416cd06e Guixin Liu 2024-11-06  817  
4c0ce9416cd06e Guixin Liu 2024-11-06  818  	/* nvmet hostid(uuid_t) is 128 bit. */
4c0ce9416cd06e Guixin Liu 2024-11-06  819  	if (!eds) {
4c0ce9416cd06e Guixin Liu 2024-11-06  820  		req->error_loc = offsetof(struct nvme_common_command, cdw11);
4c0ce9416cd06e Guixin Liu 2024-11-06  821  		status = NVME_SC_HOST_ID_INCONSIST | NVME_STATUS_DNR;
4c0ce9416cd06e Guixin Liu 2024-11-06  822  		goto out;
4c0ce9416cd06e Guixin Liu 2024-11-06  823  	}
4c0ce9416cd06e Guixin Liu 2024-11-06  824  
4c0ce9416cd06e Guixin Liu 2024-11-06  825  	if (num_bytes < sizeof(struct nvme_reservation_status_ext)) {
4c0ce9416cd06e Guixin Liu 2024-11-06  826  		req->error_loc = offsetof(struct nvme_common_command, cdw10);
4c0ce9416cd06e Guixin Liu 2024-11-06  827  		status = NVME_SC_INVALID_FIELD | NVME_STATUS_DNR;
4c0ce9416cd06e Guixin Liu 2024-11-06  828  		goto out;
4c0ce9416cd06e Guixin Liu 2024-11-06  829  	}
4c0ce9416cd06e Guixin Liu 2024-11-06  830  
4c0ce9416cd06e Guixin Liu 2024-11-06  831  	data = kmalloc(num_bytes, GFP_KERNEL);
4c0ce9416cd06e Guixin Liu 2024-11-06  832  	if (!data) {
4c0ce9416cd06e Guixin Liu 2024-11-06  833  		status = NVME_SC_INTERNAL;
4c0ce9416cd06e Guixin Liu 2024-11-06  834  		goto out;
4c0ce9416cd06e Guixin Liu 2024-11-06  835  	}
4c0ce9416cd06e Guixin Liu 2024-11-06  836  	memset(data, 0, num_bytes);
4c0ce9416cd06e Guixin Liu 2024-11-06  837  	data->gen = cpu_to_le32(atomic_read(&pr->generation));
4c0ce9416cd06e Guixin Liu 2024-11-06  838  	data->ptpls = 0;
4c0ce9416cd06e Guixin Liu 2024-11-06  839  	ctrl_eds = data->regctl_eds;
4c0ce9416cd06e Guixin Liu 2024-11-06  840  
4c0ce9416cd06e Guixin Liu 2024-11-06  841  	rcu_read_lock();
4c0ce9416cd06e Guixin Liu 2024-11-06  842  	holder = rcu_dereference(pr->holder);
4c0ce9416cd06e Guixin Liu 2024-11-06  843  	rtype = holder ? holder->rtype : 0;
4c0ce9416cd06e Guixin Liu 2024-11-06  844  	data->rtype = rtype;
4c0ce9416cd06e Guixin Liu 2024-11-06  845  
4c0ce9416cd06e Guixin Liu 2024-11-06  846  	list_for_each_entry_rcu(reg, &pr->registrant_list, entry) {
4c0ce9416cd06e Guixin Liu 2024-11-06  847  		num_ctrls++;
4c0ce9416cd06e Guixin Liu 2024-11-06  848  		/*
4c0ce9416cd06e Guixin Liu 2024-11-06  849  		 * continue to get the number of all registrans.
4c0ce9416cd06e Guixin Liu 2024-11-06  850  		 */
4c0ce9416cd06e Guixin Liu 2024-11-06 @851  		if ((void *)(ctrl_eds + sizeof(*ctrl_eds)) >

The parenthesis are in the wrong place so it's a pointer math bug.

4c0ce9416cd06e Guixin Liu 2024-11-06  852  			(void *)(data + num_bytes))

This is wrong too.  I'm disappointed that Smatch doesn't catch this.  I thought
it would...

	if ((void *)ctrl_eds + sizeof(*ctrl_eds) > (void *)data + num_bytes) {

4c0ce9416cd06e Guixin Liu 2024-11-06  853  			continue;
4c0ce9416cd06e Guixin Liu 2024-11-06  854  		/*
4c0ce9416cd06e Guixin Liu 2024-11-06  855  		 * Dynamic controller, set cntlid to 0xffff.
4c0ce9416cd06e Guixin Liu 2024-11-06  856  		 */
4c0ce9416cd06e Guixin Liu 2024-11-06  857  		ctrl_eds->cntlid = NVME_CNTLID_DYNAMIC;
4c0ce9416cd06e Guixin Liu 2024-11-06  858  		if (rtype == NVME_PR_WRITE_EXCLUSIVE_ALL_REGS ||
4c0ce9416cd06e Guixin Liu 2024-11-06  859  		    rtype == NVME_PR_EXCLUSIVE_ACCESS_ALL_REGS)
4c0ce9416cd06e Guixin Liu 2024-11-06  860  			ctrl_eds->rcsts = 1;
4c0ce9416cd06e Guixin Liu 2024-11-06  861  		if (reg == holder)
4c0ce9416cd06e Guixin Liu 2024-11-06  862  			ctrl_eds->rcsts = 1;
4c0ce9416cd06e Guixin Liu 2024-11-06  863  		uuid_copy((uuid_t *)&ctrl_eds->hostid, &reg->hostid);
4c0ce9416cd06e Guixin Liu 2024-11-06  864  		ctrl_eds->rkey = cpu_to_le64(reg->rkey);
4c0ce9416cd06e Guixin Liu 2024-11-06  865  		ctrl_eds++;
4c0ce9416cd06e Guixin Liu 2024-11-06  866  	}
4c0ce9416cd06e Guixin Liu 2024-11-06  867  	rcu_read_unlock();
4c0ce9416cd06e Guixin Liu 2024-11-06  868  
4c0ce9416cd06e Guixin Liu 2024-11-06  869  	put_unaligned_le16(num_ctrls, data->regctl);
4c0ce9416cd06e Guixin Liu 2024-11-06  870  	status = nvmet_copy_to_sgl(req, 0, data, num_bytes);
4c0ce9416cd06e Guixin Liu 2024-11-06  871  	kfree(data);
4c0ce9416cd06e Guixin Liu 2024-11-06  872  out:
4c0ce9416cd06e Guixin Liu 2024-11-06  873  	nvmet_req_complete(req, status);
4c0ce9416cd06e Guixin Liu 2024-11-06  874  }

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki




More information about the Linux-nvme mailing list