aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/target/target_core_device.c1
-rw-r--r--drivers/target/target_core_fabric_configfs.c12
-rw-r--r--drivers/target/target_core_tpg.c1
-rw-r--r--include/target/target_core_base.h4
4 files changed, 18 insertions, 0 deletions
diff --git a/drivers/target/target_core_device.c b/drivers/target/target_core_device.c
index 3f604393d89c..e2695101bb99 100644
--- a/drivers/target/target_core_device.c
+++ b/drivers/target/target_core_device.c
@@ -1352,6 +1352,7 @@ struct se_device *target_alloc_device(struct se_hba *hba, const char *name)
1352 if (!dev) 1352 if (!dev)
1353 return NULL; 1353 return NULL;
1354 1354
1355 dev->dev_link_magic = SE_DEV_LINK_MAGIC;
1355 dev->se_hba = hba; 1356 dev->se_hba = hba;
1356 dev->transport = hba->transport; 1357 dev->transport = hba->transport;
1357 1358
diff --git a/drivers/target/target_core_fabric_configfs.c b/drivers/target/target_core_fabric_configfs.c
index 9c6791734ee8..810263dfa4a1 100644
--- a/drivers/target/target_core_fabric_configfs.c
+++ b/drivers/target/target_core_fabric_configfs.c
@@ -70,6 +70,12 @@ static int target_fabric_mappedlun_link(
70 struct se_portal_group *se_tpg; 70 struct se_portal_group *se_tpg;
71 struct config_item *nacl_ci, *tpg_ci, *tpg_ci_s, *wwn_ci, *wwn_ci_s; 71 struct config_item *nacl_ci, *tpg_ci, *tpg_ci_s, *wwn_ci, *wwn_ci_s;
72 int ret = 0, lun_access; 72 int ret = 0, lun_access;
73
74 if (lun->lun_link_magic != SE_LUN_LINK_MAGIC) {
75 pr_err("Bad lun->lun_link_magic, not a valid lun_ci pointer:"
76 " %p to struct lun: %p\n", lun_ci, lun);
77 return -EFAULT;
78 }
73 /* 79 /*
74 * Ensure that the source port exists 80 * Ensure that the source port exists
75 */ 81 */
@@ -742,6 +748,12 @@ static int target_fabric_port_link(
742 struct target_fabric_configfs *tf; 748 struct target_fabric_configfs *tf;
743 int ret; 749 int ret;
744 750
751 if (dev->dev_link_magic != SE_DEV_LINK_MAGIC) {
752 pr_err("Bad dev->dev_link_magic, not a valid se_dev_ci pointer:"
753 " %p to struct se_device: %p\n", se_dev_ci, dev);
754 return -EFAULT;
755 }
756
745 tpg_ci = &lun_ci->ci_parent->ci_group->cg_item; 757 tpg_ci = &lun_ci->ci_parent->ci_group->cg_item;
746 se_tpg = container_of(to_config_group(tpg_ci), 758 se_tpg = container_of(to_config_group(tpg_ci),
747 struct se_portal_group, tpg_group); 759 struct se_portal_group, tpg_group);
diff --git a/drivers/target/target_core_tpg.c b/drivers/target/target_core_tpg.c
index d84cc0a8739e..0163309e2aba 100644
--- a/drivers/target/target_core_tpg.c
+++ b/drivers/target/target_core_tpg.c
@@ -669,6 +669,7 @@ int core_tpg_register(
669 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) { 669 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
670 lun = se_tpg->tpg_lun_list[i]; 670 lun = se_tpg->tpg_lun_list[i];
671 lun->unpacked_lun = i; 671 lun->unpacked_lun = i;
672 lun->lun_link_magic = SE_LUN_LINK_MAGIC;
672 lun->lun_status = TRANSPORT_LUN_STATUS_FREE; 673 lun->lun_status = TRANSPORT_LUN_STATUS_FREE;
673 atomic_set(&lun->lun_acl_count, 0); 674 atomic_set(&lun->lun_acl_count, 0);
674 init_completion(&lun->lun_shutdown_comp); 675 init_completion(&lun->lun_shutdown_comp);
diff --git a/include/target/target_core_base.h b/include/target/target_core_base.h
index 645d90ac6097..1346ee04db5e 100644
--- a/include/target/target_core_base.h
+++ b/include/target/target_core_base.h
@@ -624,6 +624,8 @@ struct se_dev_stat_grps {
624}; 624};
625 625
626struct se_device { 626struct se_device {
627#define SE_DEV_LINK_MAGIC 0xfeeddeef
628 u32 dev_link_magic;
627 /* RELATIVE TARGET PORT IDENTIFER Counter */ 629 /* RELATIVE TARGET PORT IDENTIFER Counter */
628 u16 dev_rpti_counter; 630 u16 dev_rpti_counter;
629 /* Used for SAM Task Attribute ordering */ 631 /* Used for SAM Task Attribute ordering */
@@ -722,6 +724,8 @@ struct se_port_stat_grps {
722}; 724};
723 725
724struct se_lun { 726struct se_lun {
727#define SE_LUN_LINK_MAGIC 0xffff7771
728 u32 lun_link_magic;
725 /* See transport_lun_status_table */ 729 /* See transport_lun_status_table */
726 enum transport_lun_status_table lun_status; 730 enum transport_lun_status_table lun_status;
727 u32 lun_access; 731 u32 lun_access;