blob: 0048d0a0b0c1bf04ce089c22465a8a02ff447990 [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001/*******************************************************************************
2 * Filename: target_core_device.c (based on iscsi_target_device.c)
3 *
Andy Grovere3d6f902011-07-19 08:55:10 +00004 * This file contains the TCM Virtual Device and Disk Transport
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08005 * agnostic related functions.
6 *
7 * Copyright (c) 2003, 2004, 2005 PyX Technologies, Inc.
8 * Copyright (c) 2005-2006 SBE, Inc. All Rights Reserved.
9 * Copyright (c) 2007-2010 Rising Tide Systems
10 * Copyright (c) 2008-2010 Linux-iSCSI.org
11 *
12 * Nicholas A. Bellinger <nab@kernel.org>
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 *
28 ******************************************************************************/
29
30#include <linux/net.h>
31#include <linux/string.h>
32#include <linux/delay.h>
33#include <linux/timer.h>
34#include <linux/slab.h>
35#include <linux/spinlock.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080036#include <linux/kthread.h>
37#include <linux/in.h>
Paul Gortmakerc53181a2011-08-30 18:16:43 -040038#include <linux/export.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080039#include <net/sock.h>
40#include <net/tcp.h>
41#include <scsi/scsi.h>
Nicholas Bellinger1078da12011-05-19 20:19:13 -070042#include <scsi/scsi_device.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080043
44#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050045#include <target/target_core_backend.h>
46#include <target/target_core_fabric.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080047
Christoph Hellwige26d99a2011-11-14 12:30:30 -050048#include "target_core_internal.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080049#include "target_core_alua.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080050#include "target_core_pr.h"
51#include "target_core_ua.h"
52
53static void se_dev_start(struct se_device *dev);
54static void se_dev_stop(struct se_device *dev);
55
Andy Grovere3d6f902011-07-19 08:55:10 +000056static struct se_hba *lun0_hba;
57static struct se_subsystem_dev *lun0_su_dev;
58/* not static, needed by tpg.c */
59struct se_device *g_lun0_dev;
60
Andy Grover5951146d2011-07-19 10:26:37 +000061int transport_lookup_cmd_lun(struct se_cmd *se_cmd, u32 unpacked_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080062{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080063 struct se_lun *se_lun = NULL;
Andy Grovere3d6f902011-07-19 08:55:10 +000064 struct se_session *se_sess = se_cmd->se_sess;
Andy Grover5951146d2011-07-19 10:26:37 +000065 struct se_device *dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080066 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080067
Fubo Chend8144952011-02-13 15:13:42 -080068 if (unpacked_lun >= TRANSPORT_MAX_LUNS_PER_TPG) {
69 se_cmd->scsi_sense_reason = TCM_NON_EXISTENT_LUN;
70 se_cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
Andy Grovere3d6f902011-07-19 08:55:10 +000071 return -ENODEV;
Fubo Chend8144952011-02-13 15:13:42 -080072 }
73
Roland Dreier78faae32011-07-20 09:09:10 +000074 spin_lock_irqsave(&se_sess->se_node_acl->device_list_lock, flags);
Jörn Engelf2083242012-03-15 15:05:40 -040075 se_cmd->se_deve = se_sess->se_node_acl->device_list[unpacked_lun];
Andy Grover5951146d2011-07-19 10:26:37 +000076 if (se_cmd->se_deve->lun_flags & TRANSPORT_LUNFLAGS_INITIATOR_ACCESS) {
77 struct se_dev_entry *deve = se_cmd->se_deve;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080078
Andy Grover5951146d2011-07-19 10:26:37 +000079 deve->total_cmds++;
80 deve->total_bytes += se_cmd->data_length;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080081
Andy Grover5951146d2011-07-19 10:26:37 +000082 if ((se_cmd->data_direction == DMA_TO_DEVICE) &&
83 (deve->lun_flags & TRANSPORT_LUNFLAGS_READ_ONLY)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080084 se_cmd->scsi_sense_reason = TCM_WRITE_PROTECTED;
85 se_cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
Andy Grover6708bb22011-06-08 10:36:43 -070086 pr_err("TARGET_CORE[%s]: Detected WRITE_PROTECTED LUN"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080087 " Access for 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +000088 se_cmd->se_tfo->get_fabric_name(),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080089 unpacked_lun);
Roland Dreier78faae32011-07-20 09:09:10 +000090 spin_unlock_irqrestore(&se_sess->se_node_acl->device_list_lock, flags);
Andy Grovere3d6f902011-07-19 08:55:10 +000091 return -EACCES;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080092 }
Andy Grover5951146d2011-07-19 10:26:37 +000093
94 if (se_cmd->data_direction == DMA_TO_DEVICE)
95 deve->write_bytes += se_cmd->data_length;
96 else if (se_cmd->data_direction == DMA_FROM_DEVICE)
97 deve->read_bytes += se_cmd->data_length;
98
99 deve->deve_cmds++;
100
101 se_lun = deve->se_lun;
102 se_cmd->se_lun = deve->se_lun;
103 se_cmd->pr_res_key = deve->pr_res_key;
104 se_cmd->orig_fe_lun = unpacked_lun;
Andy Grover5951146d2011-07-19 10:26:37 +0000105 se_cmd->se_cmd_flags |= SCF_SE_LUN_CMD;
106 }
Roland Dreier78faae32011-07-20 09:09:10 +0000107 spin_unlock_irqrestore(&se_sess->se_node_acl->device_list_lock, flags);
Andy Grover5951146d2011-07-19 10:26:37 +0000108
109 if (!se_lun) {
110 /*
111 * Use the se_portal_group->tpg_virt_lun0 to allow for
112 * REPORT_LUNS, et al to be returned when no active
113 * MappedLUN=0 exists for this Initiator Port.
114 */
115 if (unpacked_lun != 0) {
116 se_cmd->scsi_sense_reason = TCM_NON_EXISTENT_LUN;
117 se_cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
Andy Grover6708bb22011-06-08 10:36:43 -0700118 pr_err("TARGET_CORE[%s]: Detected NON_EXISTENT_LUN"
Andy Grover5951146d2011-07-19 10:26:37 +0000119 " Access for 0x%08x\n",
120 se_cmd->se_tfo->get_fabric_name(),
121 unpacked_lun);
122 return -ENODEV;
123 }
124 /*
125 * Force WRITE PROTECT for virtual LUN 0
126 */
127 if ((se_cmd->data_direction != DMA_FROM_DEVICE) &&
128 (se_cmd->data_direction != DMA_NONE)) {
129 se_cmd->scsi_sense_reason = TCM_WRITE_PROTECTED;
130 se_cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
131 return -EACCES;
132 }
133
134 se_lun = &se_sess->se_tpg->tpg_virt_lun0;
135 se_cmd->se_lun = &se_sess->se_tpg->tpg_virt_lun0;
136 se_cmd->orig_fe_lun = 0;
Andy Grover5951146d2011-07-19 10:26:37 +0000137 se_cmd->se_cmd_flags |= SCF_SE_LUN_CMD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800138 }
139 /*
140 * Determine if the struct se_lun is online.
Andy Grover5951146d2011-07-19 10:26:37 +0000141 * FIXME: Check for LUN_RESET + UNIT Attention
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800142 */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800143 if (se_dev_check_online(se_lun->lun_se_dev) != 0) {
144 se_cmd->scsi_sense_reason = TCM_NON_EXISTENT_LUN;
145 se_cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
Andy Grovere3d6f902011-07-19 08:55:10 +0000146 return -ENODEV;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800147 }
148
Andy Grover5951146d2011-07-19 10:26:37 +0000149 /* Directly associate cmd with se_dev */
150 se_cmd->se_dev = se_lun->lun_se_dev;
151
152 /* TODO: get rid of this and use atomics for stats */
153 dev = se_lun->lun_se_dev;
Roland Dreier78faae32011-07-20 09:09:10 +0000154 spin_lock_irqsave(&dev->stats_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800155 dev->num_cmds++;
156 if (se_cmd->data_direction == DMA_TO_DEVICE)
157 dev->write_bytes += se_cmd->data_length;
158 else if (se_cmd->data_direction == DMA_FROM_DEVICE)
159 dev->read_bytes += se_cmd->data_length;
Roland Dreier78faae32011-07-20 09:09:10 +0000160 spin_unlock_irqrestore(&dev->stats_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800161
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800162 spin_lock_irqsave(&se_lun->lun_cmd_lock, flags);
Andy Grover5951146d2011-07-19 10:26:37 +0000163 list_add_tail(&se_cmd->se_lun_node, &se_lun->lun_cmd_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800164 spin_unlock_irqrestore(&se_lun->lun_cmd_lock, flags);
165
166 return 0;
167}
Andy Grover5951146d2011-07-19 10:26:37 +0000168EXPORT_SYMBOL(transport_lookup_cmd_lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800169
Andy Grover5951146d2011-07-19 10:26:37 +0000170int transport_lookup_tmr_lun(struct se_cmd *se_cmd, u32 unpacked_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800171{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800172 struct se_dev_entry *deve;
173 struct se_lun *se_lun = NULL;
Andy Grovere3d6f902011-07-19 08:55:10 +0000174 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800175 struct se_tmr_req *se_tmr = se_cmd->se_tmr_req;
Roland Dreier5e1be912011-07-20 09:28:56 +0000176 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800177
Fubo Chend8144952011-02-13 15:13:42 -0800178 if (unpacked_lun >= TRANSPORT_MAX_LUNS_PER_TPG) {
179 se_cmd->scsi_sense_reason = TCM_NON_EXISTENT_LUN;
180 se_cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
Andy Grovere3d6f902011-07-19 08:55:10 +0000181 return -ENODEV;
Fubo Chend8144952011-02-13 15:13:42 -0800182 }
183
Roland Dreier5e1be912011-07-20 09:28:56 +0000184 spin_lock_irqsave(&se_sess->se_node_acl->device_list_lock, flags);
Jörn Engelf2083242012-03-15 15:05:40 -0400185 se_cmd->se_deve = se_sess->se_node_acl->device_list[unpacked_lun];
Andy Grover5951146d2011-07-19 10:26:37 +0000186 deve = se_cmd->se_deve;
187
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800188 if (deve->lun_flags & TRANSPORT_LUNFLAGS_INITIATOR_ACCESS) {
Andy Grover5951146d2011-07-19 10:26:37 +0000189 se_tmr->tmr_lun = deve->se_lun;
190 se_cmd->se_lun = deve->se_lun;
191 se_lun = deve->se_lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800192 se_cmd->pr_res_key = deve->pr_res_key;
193 se_cmd->orig_fe_lun = unpacked_lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800194 }
Roland Dreier5e1be912011-07-20 09:28:56 +0000195 spin_unlock_irqrestore(&se_sess->se_node_acl->device_list_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800196
197 if (!se_lun) {
Andy Grover6708bb22011-06-08 10:36:43 -0700198 pr_debug("TARGET_CORE[%s]: Detected NON_EXISTENT_LUN"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800199 " Access for 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000200 se_cmd->se_tfo->get_fabric_name(),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800201 unpacked_lun);
202 se_cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
Andy Grovere3d6f902011-07-19 08:55:10 +0000203 return -ENODEV;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800204 }
205 /*
206 * Determine if the struct se_lun is online.
Andy Grover5951146d2011-07-19 10:26:37 +0000207 * FIXME: Check for LUN_RESET + UNIT Attention
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800208 */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800209 if (se_dev_check_online(se_lun->lun_se_dev) != 0) {
210 se_cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
Andy Grovere3d6f902011-07-19 08:55:10 +0000211 return -ENODEV;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800212 }
213
Andy Grover5951146d2011-07-19 10:26:37 +0000214 /* Directly associate cmd with se_dev */
215 se_cmd->se_dev = se_lun->lun_se_dev;
216 se_tmr->tmr_dev = se_lun->lun_se_dev;
217
Roland Dreier5e1be912011-07-20 09:28:56 +0000218 spin_lock_irqsave(&se_tmr->tmr_dev->se_tmr_lock, flags);
Andy Grover5951146d2011-07-19 10:26:37 +0000219 list_add_tail(&se_tmr->tmr_list, &se_tmr->tmr_dev->dev_tmr_list);
Roland Dreier5e1be912011-07-20 09:28:56 +0000220 spin_unlock_irqrestore(&se_tmr->tmr_dev->se_tmr_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800221
222 return 0;
223}
Andy Grover5951146d2011-07-19 10:26:37 +0000224EXPORT_SYMBOL(transport_lookup_tmr_lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800225
226/*
227 * This function is called from core_scsi3_emulate_pro_register_and_move()
228 * and core_scsi3_decode_spec_i_port(), and will increment &deve->pr_ref_count
229 * when a matching rtpi is found.
230 */
231struct se_dev_entry *core_get_se_deve_from_rtpi(
232 struct se_node_acl *nacl,
233 u16 rtpi)
234{
235 struct se_dev_entry *deve;
236 struct se_lun *lun;
237 struct se_port *port;
238 struct se_portal_group *tpg = nacl->se_tpg;
239 u32 i;
240
241 spin_lock_irq(&nacl->device_list_lock);
242 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
Jörn Engelf2083242012-03-15 15:05:40 -0400243 deve = nacl->device_list[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800244
245 if (!(deve->lun_flags & TRANSPORT_LUNFLAGS_INITIATOR_ACCESS))
246 continue;
247
248 lun = deve->se_lun;
Andy Grover6708bb22011-06-08 10:36:43 -0700249 if (!lun) {
250 pr_err("%s device entries device pointer is"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800251 " NULL, but Initiator has access.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000252 tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800253 continue;
254 }
255 port = lun->lun_sep;
Andy Grover6708bb22011-06-08 10:36:43 -0700256 if (!port) {
257 pr_err("%s device entries device pointer is"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800258 " NULL, but Initiator has access.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000259 tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800260 continue;
261 }
262 if (port->sep_rtpi != rtpi)
263 continue;
264
265 atomic_inc(&deve->pr_ref_count);
266 smp_mb__after_atomic_inc();
267 spin_unlock_irq(&nacl->device_list_lock);
268
269 return deve;
270 }
271 spin_unlock_irq(&nacl->device_list_lock);
272
273 return NULL;
274}
275
276int core_free_device_list_for_node(
277 struct se_node_acl *nacl,
278 struct se_portal_group *tpg)
279{
280 struct se_dev_entry *deve;
281 struct se_lun *lun;
282 u32 i;
283
284 if (!nacl->device_list)
285 return 0;
286
287 spin_lock_irq(&nacl->device_list_lock);
288 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
Jörn Engelf2083242012-03-15 15:05:40 -0400289 deve = nacl->device_list[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800290
291 if (!(deve->lun_flags & TRANSPORT_LUNFLAGS_INITIATOR_ACCESS))
292 continue;
293
294 if (!deve->se_lun) {
Andy Grover6708bb22011-06-08 10:36:43 -0700295 pr_err("%s device entries device pointer is"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800296 " NULL, but Initiator has access.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000297 tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800298 continue;
299 }
300 lun = deve->se_lun;
301
302 spin_unlock_irq(&nacl->device_list_lock);
Andy Grovere80ac6c2012-07-12 17:34:58 -0700303 core_disable_device_list_for_node(lun, NULL, deve->mapped_lun,
304 TRANSPORT_LUNFLAGS_NO_ACCESS, nacl, tpg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800305 spin_lock_irq(&nacl->device_list_lock);
306 }
307 spin_unlock_irq(&nacl->device_list_lock);
308
Jörn Engelf2083242012-03-15 15:05:40 -0400309 array_free(nacl->device_list, TRANSPORT_MAX_LUNS_PER_TPG);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800310 nacl->device_list = NULL;
311
312 return 0;
313}
314
315void core_dec_lacl_count(struct se_node_acl *se_nacl, struct se_cmd *se_cmd)
316{
317 struct se_dev_entry *deve;
Sebastian Andrzej Siewior1dd0a062012-01-10 14:16:58 +0100318 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800319
Sebastian Andrzej Siewior1dd0a062012-01-10 14:16:58 +0100320 spin_lock_irqsave(&se_nacl->device_list_lock, flags);
Jörn Engelf2083242012-03-15 15:05:40 -0400321 deve = se_nacl->device_list[se_cmd->orig_fe_lun];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800322 deve->deve_cmds--;
Sebastian Andrzej Siewior1dd0a062012-01-10 14:16:58 +0100323 spin_unlock_irqrestore(&se_nacl->device_list_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800324}
325
326void core_update_device_list_access(
327 u32 mapped_lun,
328 u32 lun_access,
329 struct se_node_acl *nacl)
330{
331 struct se_dev_entry *deve;
332
333 spin_lock_irq(&nacl->device_list_lock);
Jörn Engelf2083242012-03-15 15:05:40 -0400334 deve = nacl->device_list[mapped_lun];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800335 if (lun_access & TRANSPORT_LUNFLAGS_READ_WRITE) {
336 deve->lun_flags &= ~TRANSPORT_LUNFLAGS_READ_ONLY;
337 deve->lun_flags |= TRANSPORT_LUNFLAGS_READ_WRITE;
338 } else {
339 deve->lun_flags &= ~TRANSPORT_LUNFLAGS_READ_WRITE;
340 deve->lun_flags |= TRANSPORT_LUNFLAGS_READ_ONLY;
341 }
342 spin_unlock_irq(&nacl->device_list_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800343}
344
Andy Grovere80ac6c2012-07-12 17:34:58 -0700345/* core_enable_device_list_for_node():
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800346 *
347 *
348 */
Andy Grovere80ac6c2012-07-12 17:34:58 -0700349int core_enable_device_list_for_node(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800350 struct se_lun *lun,
351 struct se_lun_acl *lun_acl,
352 u32 mapped_lun,
353 u32 lun_access,
354 struct se_node_acl *nacl,
Andy Grovere80ac6c2012-07-12 17:34:58 -0700355 struct se_portal_group *tpg)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800356{
357 struct se_port *port = lun->lun_sep;
Andy Grovere80ac6c2012-07-12 17:34:58 -0700358 struct se_dev_entry *deve;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800359
360 spin_lock_irq(&nacl->device_list_lock);
Andy Grovere80ac6c2012-07-12 17:34:58 -0700361
362 deve = nacl->device_list[mapped_lun];
363
364 /*
365 * Check if the call is handling demo mode -> explict LUN ACL
366 * transition. This transition must be for the same struct se_lun
367 * + mapped_lun that was setup in demo mode..
368 */
369 if (deve->lun_flags & TRANSPORT_LUNFLAGS_INITIATOR_ACCESS) {
370 if (deve->se_lun_acl != NULL) {
371 pr_err("struct se_dev_entry->se_lun_acl"
372 " already set for demo mode -> explict"
373 " LUN ACL transition\n");
374 spin_unlock_irq(&nacl->device_list_lock);
375 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800376 }
Andy Grovere80ac6c2012-07-12 17:34:58 -0700377 if (deve->se_lun != lun) {
378 pr_err("struct se_dev_entry->se_lun does"
379 " match passed struct se_lun for demo mode"
380 " -> explict LUN ACL transition\n");
381 spin_unlock_irq(&nacl->device_list_lock);
382 return -EINVAL;
383 }
384 deve->se_lun_acl = lun_acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800385
386 if (lun_access & TRANSPORT_LUNFLAGS_READ_WRITE) {
387 deve->lun_flags &= ~TRANSPORT_LUNFLAGS_READ_ONLY;
388 deve->lun_flags |= TRANSPORT_LUNFLAGS_READ_WRITE;
389 } else {
390 deve->lun_flags &= ~TRANSPORT_LUNFLAGS_READ_WRITE;
391 deve->lun_flags |= TRANSPORT_LUNFLAGS_READ_ONLY;
392 }
393
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800394 spin_unlock_irq(&nacl->device_list_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800395 return 0;
396 }
Andy Grovere80ac6c2012-07-12 17:34:58 -0700397
398 deve->se_lun = lun;
399 deve->se_lun_acl = lun_acl;
400 deve->mapped_lun = mapped_lun;
401 deve->lun_flags |= TRANSPORT_LUNFLAGS_INITIATOR_ACCESS;
402
403 if (lun_access & TRANSPORT_LUNFLAGS_READ_WRITE) {
404 deve->lun_flags &= ~TRANSPORT_LUNFLAGS_READ_ONLY;
405 deve->lun_flags |= TRANSPORT_LUNFLAGS_READ_WRITE;
406 } else {
407 deve->lun_flags &= ~TRANSPORT_LUNFLAGS_READ_WRITE;
408 deve->lun_flags |= TRANSPORT_LUNFLAGS_READ_ONLY;
409 }
410
411 deve->creation_time = get_jiffies_64();
412 deve->attach_count++;
413 spin_unlock_irq(&nacl->device_list_lock);
414
415 spin_lock_bh(&port->sep_alua_lock);
416 list_add_tail(&deve->alua_port_list, &port->sep_alua_list);
417 spin_unlock_bh(&port->sep_alua_lock);
418
419 return 0;
420}
421
422/* core_disable_device_list_for_node():
423 *
424 *
425 */
426int core_disable_device_list_for_node(
427 struct se_lun *lun,
428 struct se_lun_acl *lun_acl,
429 u32 mapped_lun,
430 u32 lun_access,
431 struct se_node_acl *nacl,
432 struct se_portal_group *tpg)
433{
434 struct se_port *port = lun->lun_sep;
Nicholas Bellinger77d4c742012-07-14 15:11:41 -0700435 struct se_dev_entry *deve = nacl->device_list[mapped_lun];
Andy Grovere80ac6c2012-07-12 17:34:58 -0700436
437 /*
438 * If the MappedLUN entry is being disabled, the entry in
439 * port->sep_alua_list must be removed now before clearing the
440 * struct se_dev_entry pointers below as logic in
441 * core_alua_do_transition_tg_pt() depends on these being present.
442 *
443 * deve->se_lun_acl will be NULL for demo-mode created LUNs
444 * that have not been explicitly converted to MappedLUNs ->
445 * struct se_lun_acl, but we remove deve->alua_port_list from
446 * port->sep_alua_list. This also means that active UAs and
447 * NodeACL context specific PR metadata for demo-mode
448 * MappedLUN *deve will be released below..
449 */
450 spin_lock_bh(&port->sep_alua_lock);
451 list_del(&deve->alua_port_list);
452 spin_unlock_bh(&port->sep_alua_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800453 /*
454 * Wait for any in process SPEC_I_PT=1 or REGISTER_AND_MOVE
455 * PR operation to complete.
456 */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800457 while (atomic_read(&deve->pr_ref_count) != 0)
458 cpu_relax();
Nicholas Bellinger77d4c742012-07-14 15:11:41 -0700459
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800460 spin_lock_irq(&nacl->device_list_lock);
461 /*
462 * Disable struct se_dev_entry LUN ACL mapping
463 */
464 core_scsi3_ua_release_all(deve);
465 deve->se_lun = NULL;
466 deve->se_lun_acl = NULL;
467 deve->lun_flags = 0;
468 deve->creation_time = 0;
469 deve->attach_count--;
470 spin_unlock_irq(&nacl->device_list_lock);
471
472 core_scsi3_free_pr_reg_from_nacl(lun->lun_se_dev, nacl);
473 return 0;
474}
475
476/* core_clear_lun_from_tpg():
477 *
478 *
479 */
480void core_clear_lun_from_tpg(struct se_lun *lun, struct se_portal_group *tpg)
481{
482 struct se_node_acl *nacl;
483 struct se_dev_entry *deve;
484 u32 i;
485
Roland Dreier28638882011-08-16 09:40:01 -0700486 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800487 list_for_each_entry(nacl, &tpg->acl_node_list, acl_list) {
Roland Dreier28638882011-08-16 09:40:01 -0700488 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800489
490 spin_lock_irq(&nacl->device_list_lock);
491 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
Jörn Engelf2083242012-03-15 15:05:40 -0400492 deve = nacl->device_list[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800493 if (lun != deve->se_lun)
494 continue;
495 spin_unlock_irq(&nacl->device_list_lock);
496
Andy Grovere80ac6c2012-07-12 17:34:58 -0700497 core_disable_device_list_for_node(lun, NULL,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800498 deve->mapped_lun, TRANSPORT_LUNFLAGS_NO_ACCESS,
Andy Grovere80ac6c2012-07-12 17:34:58 -0700499 nacl, tpg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800500
501 spin_lock_irq(&nacl->device_list_lock);
502 }
503 spin_unlock_irq(&nacl->device_list_lock);
504
Roland Dreier28638882011-08-16 09:40:01 -0700505 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800506 }
Roland Dreier28638882011-08-16 09:40:01 -0700507 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800508}
509
510static struct se_port *core_alloc_port(struct se_device *dev)
511{
512 struct se_port *port, *port_tmp;
513
514 port = kzalloc(sizeof(struct se_port), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700515 if (!port) {
516 pr_err("Unable to allocate struct se_port\n");
Andy Grovere3d6f902011-07-19 08:55:10 +0000517 return ERR_PTR(-ENOMEM);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800518 }
519 INIT_LIST_HEAD(&port->sep_alua_list);
520 INIT_LIST_HEAD(&port->sep_list);
521 atomic_set(&port->sep_tg_pt_secondary_offline, 0);
522 spin_lock_init(&port->sep_alua_lock);
523 mutex_init(&port->sep_tg_pt_md_mutex);
524
525 spin_lock(&dev->se_port_lock);
526 if (dev->dev_port_count == 0x0000ffff) {
Andy Grover6708bb22011-06-08 10:36:43 -0700527 pr_warn("Reached dev->dev_port_count =="
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800528 " 0x0000ffff\n");
529 spin_unlock(&dev->se_port_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +0000530 return ERR_PTR(-ENOSPC);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800531 }
532again:
533 /*
534 * Allocate the next RELATIVE TARGET PORT IDENTIFER for this struct se_device
535 * Here is the table from spc4r17 section 7.7.3.8.
536 *
537 * Table 473 -- RELATIVE TARGET PORT IDENTIFIER field
538 *
539 * Code Description
540 * 0h Reserved
541 * 1h Relative port 1, historically known as port A
542 * 2h Relative port 2, historically known as port B
543 * 3h to FFFFh Relative port 3 through 65 535
544 */
545 port->sep_rtpi = dev->dev_rpti_counter++;
Andy Grover6708bb22011-06-08 10:36:43 -0700546 if (!port->sep_rtpi)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800547 goto again;
548
549 list_for_each_entry(port_tmp, &dev->dev_sep_list, sep_list) {
550 /*
551 * Make sure RELATIVE TARGET PORT IDENTIFER is unique
552 * for 16-bit wrap..
553 */
554 if (port->sep_rtpi == port_tmp->sep_rtpi)
555 goto again;
556 }
557 spin_unlock(&dev->se_port_lock);
558
559 return port;
560}
561
562static void core_export_port(
563 struct se_device *dev,
564 struct se_portal_group *tpg,
565 struct se_port *port,
566 struct se_lun *lun)
567{
Andy Grovere3d6f902011-07-19 08:55:10 +0000568 struct se_subsystem_dev *su_dev = dev->se_sub_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800569 struct t10_alua_tg_pt_gp_member *tg_pt_gp_mem = NULL;
570
571 spin_lock(&dev->se_port_lock);
572 spin_lock(&lun->lun_sep_lock);
573 port->sep_tpg = tpg;
574 port->sep_lun = lun;
575 lun->lun_sep = port;
576 spin_unlock(&lun->lun_sep_lock);
577
578 list_add_tail(&port->sep_list, &dev->dev_sep_list);
579 spin_unlock(&dev->se_port_lock);
580
Andy Grovere3d6f902011-07-19 08:55:10 +0000581 if (su_dev->t10_alua.alua_type == SPC3_ALUA_EMULATED) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800582 tg_pt_gp_mem = core_alua_allocate_tg_pt_gp_mem(port);
583 if (IS_ERR(tg_pt_gp_mem) || !tg_pt_gp_mem) {
Andy Grover6708bb22011-06-08 10:36:43 -0700584 pr_err("Unable to allocate t10_alua_tg_pt"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800585 "_gp_member_t\n");
586 return;
587 }
588 spin_lock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
589 __core_alua_attach_tg_pt_gp_mem(tg_pt_gp_mem,
Andy Grovere3d6f902011-07-19 08:55:10 +0000590 su_dev->t10_alua.default_tg_pt_gp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800591 spin_unlock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
Andy Grover6708bb22011-06-08 10:36:43 -0700592 pr_debug("%s/%s: Adding to default ALUA Target Port"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800593 " Group: alua/default_tg_pt_gp\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000594 dev->transport->name, tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800595 }
596
597 dev->dev_port_count++;
598 port->sep_index = port->sep_rtpi; /* RELATIVE TARGET PORT IDENTIFER */
599}
600
601/*
602 * Called with struct se_device->se_port_lock spinlock held.
603 */
604static void core_release_port(struct se_device *dev, struct se_port *port)
Dan Carpenter5dd7ed22011-03-14 04:06:01 -0700605 __releases(&dev->se_port_lock) __acquires(&dev->se_port_lock)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800606{
607 /*
608 * Wait for any port reference for PR ALL_TG_PT=1 operation
609 * to complete in __core_scsi3_alloc_registration()
610 */
611 spin_unlock(&dev->se_port_lock);
612 if (atomic_read(&port->sep_tg_pt_ref_cnt))
613 cpu_relax();
614 spin_lock(&dev->se_port_lock);
615
616 core_alua_free_tg_pt_gp_mem(port);
617
618 list_del(&port->sep_list);
619 dev->dev_port_count--;
620 kfree(port);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800621}
622
623int core_dev_export(
624 struct se_device *dev,
625 struct se_portal_group *tpg,
626 struct se_lun *lun)
627{
628 struct se_port *port;
629
630 port = core_alloc_port(dev);
Andy Grovere3d6f902011-07-19 08:55:10 +0000631 if (IS_ERR(port))
632 return PTR_ERR(port);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800633
634 lun->lun_se_dev = dev;
635 se_dev_start(dev);
636
637 atomic_inc(&dev->dev_export_obj.obj_access_count);
638 core_export_port(dev, tpg, port, lun);
639 return 0;
640}
641
642void core_dev_unexport(
643 struct se_device *dev,
644 struct se_portal_group *tpg,
645 struct se_lun *lun)
646{
647 struct se_port *port = lun->lun_sep;
648
649 spin_lock(&lun->lun_sep_lock);
650 if (lun->lun_se_dev == NULL) {
651 spin_unlock(&lun->lun_sep_lock);
652 return;
653 }
654 spin_unlock(&lun->lun_sep_lock);
655
656 spin_lock(&dev->se_port_lock);
657 atomic_dec(&dev->dev_export_obj.obj_access_count);
658 core_release_port(dev, port);
659 spin_unlock(&dev->se_port_lock);
660
661 se_dev_stop(dev);
662 lun->lun_se_dev = NULL;
663}
664
Christoph Hellwig6bb35e02012-04-23 11:35:33 -0400665int target_report_luns(struct se_cmd *se_cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800666{
667 struct se_dev_entry *deve;
Andy Grovere3d6f902011-07-19 08:55:10 +0000668 struct se_session *se_sess = se_cmd->se_sess;
Andy Grover05d1c7c2011-07-20 19:13:28 +0000669 unsigned char *buf;
Jörn Engel99f730d2012-02-16 11:14:27 -0500670 u32 lun_count = 0, offset = 8, i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800671
Jörn Engel47f1b882012-02-15 16:52:11 -0500672 buf = transport_kmap_data_sg(se_cmd);
673 if (!buf)
674 return -ENOMEM;
Andy Grover05d1c7c2011-07-20 19:13:28 +0000675
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800676 /*
677 * If no struct se_session pointer is present, this struct se_cmd is
678 * coming via a target_core_mod PASSTHROUGH op, and not through
679 * a $FABRIC_MOD. In that case, report LUN=0 only.
680 */
Andy Grover6708bb22011-06-08 10:36:43 -0700681 if (!se_sess) {
Nicholas Bellinger1078da12011-05-19 20:19:13 -0700682 int_to_scsilun(0, (struct scsi_lun *)&buf[offset]);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800683 lun_count = 1;
684 goto done;
685 }
686
Andy Grovere3d6f902011-07-19 08:55:10 +0000687 spin_lock_irq(&se_sess->se_node_acl->device_list_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800688 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
Jörn Engelf2083242012-03-15 15:05:40 -0400689 deve = se_sess->se_node_acl->device_list[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800690 if (!(deve->lun_flags & TRANSPORT_LUNFLAGS_INITIATOR_ACCESS))
691 continue;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800692 /*
693 * We determine the correct LUN LIST LENGTH even once we
694 * have reached the initial allocation length.
695 * See SPC2-R20 7.19.
696 */
697 lun_count++;
Jörn Engel99f730d2012-02-16 11:14:27 -0500698 if ((offset + 8) > se_cmd->data_length)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800699 continue;
700
Nicholas Bellinger1078da12011-05-19 20:19:13 -0700701 int_to_scsilun(deve->mapped_lun, (struct scsi_lun *)&buf[offset]);
702 offset += 8;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800703 }
Andy Grovere3d6f902011-07-19 08:55:10 +0000704 spin_unlock_irq(&se_sess->se_node_acl->device_list_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800705
706 /*
707 * See SPC3 r07, page 159.
708 */
709done:
710 lun_count *= 8;
711 buf[0] = ((lun_count >> 24) & 0xff);
712 buf[1] = ((lun_count >> 16) & 0xff);
713 buf[2] = ((lun_count >> 8) & 0xff);
714 buf[3] = (lun_count & 0xff);
Jörn Engel382436f2012-02-15 16:51:32 -0500715 transport_kunmap_data_sg(se_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800716
Christoph Hellwig6bb35e02012-04-23 11:35:33 -0400717 target_complete_cmd(se_cmd, GOOD);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -0700718 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800719}
720
721/* se_release_device_for_hba():
722 *
723 *
724 */
725void se_release_device_for_hba(struct se_device *dev)
726{
727 struct se_hba *hba = dev->se_hba;
728
729 if ((dev->dev_status & TRANSPORT_DEVICE_ACTIVATED) ||
730 (dev->dev_status & TRANSPORT_DEVICE_DEACTIVATED) ||
731 (dev->dev_status & TRANSPORT_DEVICE_SHUTDOWN) ||
732 (dev->dev_status & TRANSPORT_DEVICE_OFFLINE_ACTIVATED) ||
733 (dev->dev_status & TRANSPORT_DEVICE_OFFLINE_DEACTIVATED))
734 se_dev_stop(dev);
735
736 if (dev->dev_ptr) {
Christoph Hellwigaf877292012-07-08 15:58:49 -0400737 destroy_workqueue(dev->tmr_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800738 if (dev->transport->free_device)
739 dev->transport->free_device(dev->dev_ptr);
740 }
741
742 spin_lock(&hba->device_lock);
743 list_del(&dev->dev_list);
744 hba->dev_count--;
745 spin_unlock(&hba->device_lock);
746
747 core_scsi3_free_all_registrations(dev);
748 se_release_vpd_for_dev(dev);
749
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800750 kfree(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800751}
752
753void se_release_vpd_for_dev(struct se_device *dev)
754{
755 struct t10_vpd *vpd, *vpd_tmp;
756
Andy Grovere3d6f902011-07-19 08:55:10 +0000757 spin_lock(&dev->se_sub_dev->t10_wwn.t10_vpd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800758 list_for_each_entry_safe(vpd, vpd_tmp,
Andy Grovere3d6f902011-07-19 08:55:10 +0000759 &dev->se_sub_dev->t10_wwn.t10_vpd_list, vpd_list) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800760 list_del(&vpd->vpd_list);
761 kfree(vpd);
762 }
Andy Grovere3d6f902011-07-19 08:55:10 +0000763 spin_unlock(&dev->se_sub_dev->t10_wwn.t10_vpd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800764}
765
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800766/* se_free_virtual_device():
767 *
768 * Used for IBLOCK, RAMDISK, and FILEIO Transport Drivers.
769 */
770int se_free_virtual_device(struct se_device *dev, struct se_hba *hba)
771{
Fubo Chen05aea6e2011-03-14 04:06:00 -0700772 if (!list_empty(&dev->dev_sep_list))
773 dump_stack();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800774
775 core_alua_free_lu_gp_mem(dev);
776 se_release_device_for_hba(dev);
777
778 return 0;
779}
780
781static void se_dev_start(struct se_device *dev)
782{
783 struct se_hba *hba = dev->se_hba;
784
785 spin_lock(&hba->device_lock);
786 atomic_inc(&dev->dev_obj.obj_access_count);
787 if (atomic_read(&dev->dev_obj.obj_access_count) == 1) {
788 if (dev->dev_status & TRANSPORT_DEVICE_DEACTIVATED) {
789 dev->dev_status &= ~TRANSPORT_DEVICE_DEACTIVATED;
790 dev->dev_status |= TRANSPORT_DEVICE_ACTIVATED;
791 } else if (dev->dev_status &
792 TRANSPORT_DEVICE_OFFLINE_DEACTIVATED) {
793 dev->dev_status &=
794 ~TRANSPORT_DEVICE_OFFLINE_DEACTIVATED;
795 dev->dev_status |= TRANSPORT_DEVICE_OFFLINE_ACTIVATED;
796 }
797 }
798 spin_unlock(&hba->device_lock);
799}
800
801static void se_dev_stop(struct se_device *dev)
802{
803 struct se_hba *hba = dev->se_hba;
804
805 spin_lock(&hba->device_lock);
806 atomic_dec(&dev->dev_obj.obj_access_count);
807 if (atomic_read(&dev->dev_obj.obj_access_count) == 0) {
808 if (dev->dev_status & TRANSPORT_DEVICE_ACTIVATED) {
809 dev->dev_status &= ~TRANSPORT_DEVICE_ACTIVATED;
810 dev->dev_status |= TRANSPORT_DEVICE_DEACTIVATED;
811 } else if (dev->dev_status &
812 TRANSPORT_DEVICE_OFFLINE_ACTIVATED) {
813 dev->dev_status &= ~TRANSPORT_DEVICE_OFFLINE_ACTIVATED;
814 dev->dev_status |= TRANSPORT_DEVICE_OFFLINE_DEACTIVATED;
815 }
816 }
817 spin_unlock(&hba->device_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800818}
819
820int se_dev_check_online(struct se_device *dev)
821{
Roland Dreier56e34ee2011-06-13 20:55:06 -0700822 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800823 int ret;
824
Roland Dreier56e34ee2011-06-13 20:55:06 -0700825 spin_lock_irqsave(&dev->dev_status_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800826 ret = ((dev->dev_status & TRANSPORT_DEVICE_ACTIVATED) ||
827 (dev->dev_status & TRANSPORT_DEVICE_DEACTIVATED)) ? 0 : 1;
Roland Dreier56e34ee2011-06-13 20:55:06 -0700828 spin_unlock_irqrestore(&dev->dev_status_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800829
830 return ret;
831}
832
833int se_dev_check_shutdown(struct se_device *dev)
834{
835 int ret;
836
837 spin_lock_irq(&dev->dev_status_lock);
838 ret = (dev->dev_status & TRANSPORT_DEVICE_SHUTDOWN);
839 spin_unlock_irq(&dev->dev_status_lock);
840
841 return ret;
842}
843
Nicholas Bellinger525a48a2011-08-13 02:11:38 -0700844u32 se_dev_align_max_sectors(u32 max_sectors, u32 block_size)
845{
846 u32 tmp, aligned_max_sectors;
847 /*
848 * Limit max_sectors to a PAGE_SIZE aligned value for modern
849 * transport_allocate_data_tasks() operation.
850 */
851 tmp = rounddown((max_sectors * block_size), PAGE_SIZE);
852 aligned_max_sectors = (tmp / block_size);
853 if (max_sectors != aligned_max_sectors) {
854 printk(KERN_INFO "Rounding down aligned max_sectors from %u"
855 " to %u\n", max_sectors, aligned_max_sectors);
856 return aligned_max_sectors;
857 }
858
859 return max_sectors;
860}
861
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800862void se_dev_set_default_attribs(
863 struct se_device *dev,
864 struct se_dev_limits *dev_limits)
865{
866 struct queue_limits *limits = &dev_limits->limits;
867
Andy Grovere3d6f902011-07-19 08:55:10 +0000868 dev->se_sub_dev->se_dev_attrib.emulate_dpo = DA_EMULATE_DPO;
869 dev->se_sub_dev->se_dev_attrib.emulate_fua_write = DA_EMULATE_FUA_WRITE;
870 dev->se_sub_dev->se_dev_attrib.emulate_fua_read = DA_EMULATE_FUA_READ;
871 dev->se_sub_dev->se_dev_attrib.emulate_write_cache = DA_EMULATE_WRITE_CACHE;
872 dev->se_sub_dev->se_dev_attrib.emulate_ua_intlck_ctrl = DA_EMULATE_UA_INTLLCK_CTRL;
873 dev->se_sub_dev->se_dev_attrib.emulate_tas = DA_EMULATE_TAS;
874 dev->se_sub_dev->se_dev_attrib.emulate_tpu = DA_EMULATE_TPU;
875 dev->se_sub_dev->se_dev_attrib.emulate_tpws = DA_EMULATE_TPWS;
876 dev->se_sub_dev->se_dev_attrib.emulate_reservations = DA_EMULATE_RESERVATIONS;
877 dev->se_sub_dev->se_dev_attrib.emulate_alua = DA_EMULATE_ALUA;
878 dev->se_sub_dev->se_dev_attrib.enforce_pr_isids = DA_ENFORCE_PR_ISIDS;
Roland Dreiere22a7f02011-07-05 13:34:52 -0700879 dev->se_sub_dev->se_dev_attrib.is_nonrot = DA_IS_NONROT;
Nicholas Bellinger5de619a2011-07-17 02:57:58 -0700880 dev->se_sub_dev->se_dev_attrib.emulate_rest_reord = DA_EMULATE_REST_REORD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800881 /*
882 * The TPU=1 and TPWS=1 settings will be set in TCM/IBLOCK
883 * iblock_create_virtdevice() from struct queue_limits values
884 * if blk_queue_discard()==1
885 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000886 dev->se_sub_dev->se_dev_attrib.max_unmap_lba_count = DA_MAX_UNMAP_LBA_COUNT;
887 dev->se_sub_dev->se_dev_attrib.max_unmap_block_desc_count =
888 DA_MAX_UNMAP_BLOCK_DESC_COUNT;
889 dev->se_sub_dev->se_dev_attrib.unmap_granularity = DA_UNMAP_GRANULARITY_DEFAULT;
890 dev->se_sub_dev->se_dev_attrib.unmap_granularity_alignment =
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800891 DA_UNMAP_GRANULARITY_ALIGNMENT_DEFAULT;
892 /*
893 * block_size is based on subsystem plugin dependent requirements.
894 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000895 dev->se_sub_dev->se_dev_attrib.hw_block_size = limits->logical_block_size;
896 dev->se_sub_dev->se_dev_attrib.block_size = limits->logical_block_size;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800897 /*
Nicholas Bellinger11e764b2012-05-09 12:42:09 -0700898 * Align max_hw_sectors down to PAGE_SIZE I/O transfers
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800899 */
Nicholas Bellinger11e764b2012-05-09 12:42:09 -0700900 limits->max_hw_sectors = se_dev_align_max_sectors(limits->max_hw_sectors,
Nicholas Bellinger525a48a2011-08-13 02:11:38 -0700901 limits->logical_block_size);
Nicholas Bellinger11e764b2012-05-09 12:42:09 -0700902 dev->se_sub_dev->se_dev_attrib.hw_max_sectors = limits->max_hw_sectors;
903
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800904 /*
Roland Dreier015487b2012-02-13 16:18:17 -0800905 * Set fabric_max_sectors, which is reported in block limits
906 * VPD page (B0h).
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800907 */
Roland Dreier015487b2012-02-13 16:18:17 -0800908 dev->se_sub_dev->se_dev_attrib.fabric_max_sectors = DA_FABRIC_MAX_SECTORS;
909 /*
910 * Set optimal_sectors from fabric_max_sectors, which can be
911 * lowered via configfs.
912 */
913 dev->se_sub_dev->se_dev_attrib.optimal_sectors = DA_FABRIC_MAX_SECTORS;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800914 /*
915 * queue_depth is based on subsystem plugin dependent requirements.
916 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000917 dev->se_sub_dev->se_dev_attrib.hw_queue_depth = dev_limits->hw_queue_depth;
918 dev->se_sub_dev->se_dev_attrib.queue_depth = dev_limits->queue_depth;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800919}
920
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800921int se_dev_set_max_unmap_lba_count(
922 struct se_device *dev,
923 u32 max_unmap_lba_count)
924{
Andy Grovere3d6f902011-07-19 08:55:10 +0000925 dev->se_sub_dev->se_dev_attrib.max_unmap_lba_count = max_unmap_lba_count;
Andy Grover6708bb22011-06-08 10:36:43 -0700926 pr_debug("dev[%p]: Set max_unmap_lba_count: %u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000927 dev, dev->se_sub_dev->se_dev_attrib.max_unmap_lba_count);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800928 return 0;
929}
930
931int se_dev_set_max_unmap_block_desc_count(
932 struct se_device *dev,
933 u32 max_unmap_block_desc_count)
934{
Andy Grovere3d6f902011-07-19 08:55:10 +0000935 dev->se_sub_dev->se_dev_attrib.max_unmap_block_desc_count =
936 max_unmap_block_desc_count;
Andy Grover6708bb22011-06-08 10:36:43 -0700937 pr_debug("dev[%p]: Set max_unmap_block_desc_count: %u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000938 dev, dev->se_sub_dev->se_dev_attrib.max_unmap_block_desc_count);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800939 return 0;
940}
941
942int se_dev_set_unmap_granularity(
943 struct se_device *dev,
944 u32 unmap_granularity)
945{
Andy Grovere3d6f902011-07-19 08:55:10 +0000946 dev->se_sub_dev->se_dev_attrib.unmap_granularity = unmap_granularity;
Andy Grover6708bb22011-06-08 10:36:43 -0700947 pr_debug("dev[%p]: Set unmap_granularity: %u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000948 dev, dev->se_sub_dev->se_dev_attrib.unmap_granularity);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800949 return 0;
950}
951
952int se_dev_set_unmap_granularity_alignment(
953 struct se_device *dev,
954 u32 unmap_granularity_alignment)
955{
Andy Grovere3d6f902011-07-19 08:55:10 +0000956 dev->se_sub_dev->se_dev_attrib.unmap_granularity_alignment = unmap_granularity_alignment;
Andy Grover6708bb22011-06-08 10:36:43 -0700957 pr_debug("dev[%p]: Set unmap_granularity_alignment: %u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000958 dev, dev->se_sub_dev->se_dev_attrib.unmap_granularity_alignment);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800959 return 0;
960}
961
962int se_dev_set_emulate_dpo(struct se_device *dev, int flag)
963{
Christoph Hellwigf55918f2011-10-14 07:30:17 -0400964 if (flag != 0 && flag != 1) {
Andy Grover6708bb22011-06-08 10:36:43 -0700965 pr_err("Illegal value %d\n", flag);
Andy Grovere3d6f902011-07-19 08:55:10 +0000966 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800967 }
Christoph Hellwigf55918f2011-10-14 07:30:17 -0400968
Andy Groverc6388302011-11-30 12:11:50 -0800969 if (flag) {
970 pr_err("dpo_emulated not supported\n");
971 return -EINVAL;
972 }
973
974 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800975}
976
977int se_dev_set_emulate_fua_write(struct se_device *dev, int flag)
978{
Christoph Hellwigf55918f2011-10-14 07:30:17 -0400979 if (flag != 0 && flag != 1) {
Andy Grover6708bb22011-06-08 10:36:43 -0700980 pr_err("Illegal value %d\n", flag);
Andy Grovere3d6f902011-07-19 08:55:10 +0000981 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800982 }
Christoph Hellwigf55918f2011-10-14 07:30:17 -0400983
Andy Groverc6388302011-11-30 12:11:50 -0800984 if (flag && dev->transport->fua_write_emulated == 0) {
Christoph Hellwigf55918f2011-10-14 07:30:17 -0400985 pr_err("fua_write_emulated not supported\n");
Andy Grovere3d6f902011-07-19 08:55:10 +0000986 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800987 }
Andy Grovere3d6f902011-07-19 08:55:10 +0000988 dev->se_sub_dev->se_dev_attrib.emulate_fua_write = flag;
Andy Grover6708bb22011-06-08 10:36:43 -0700989 pr_debug("dev[%p]: SE Device Forced Unit Access WRITEs: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000990 dev, dev->se_sub_dev->se_dev_attrib.emulate_fua_write);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800991 return 0;
992}
993
994int se_dev_set_emulate_fua_read(struct se_device *dev, int flag)
995{
Christoph Hellwigf55918f2011-10-14 07:30:17 -0400996 if (flag != 0 && flag != 1) {
Andy Grover6708bb22011-06-08 10:36:43 -0700997 pr_err("Illegal value %d\n", flag);
Andy Grovere3d6f902011-07-19 08:55:10 +0000998 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800999 }
Christoph Hellwigf55918f2011-10-14 07:30:17 -04001000
Andy Groverc6388302011-11-30 12:11:50 -08001001 if (flag) {
1002 pr_err("ua read emulated not supported\n");
1003 return -EINVAL;
1004 }
1005
1006 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001007}
1008
1009int se_dev_set_emulate_write_cache(struct se_device *dev, int flag)
1010{
Christoph Hellwigf55918f2011-10-14 07:30:17 -04001011 if (flag != 0 && flag != 1) {
Andy Grover6708bb22011-06-08 10:36:43 -07001012 pr_err("Illegal value %d\n", flag);
Andy Grovere3d6f902011-07-19 08:55:10 +00001013 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001014 }
Andy Groverc6388302011-11-30 12:11:50 -08001015 if (flag && dev->transport->write_cache_emulated == 0) {
Christoph Hellwigf55918f2011-10-14 07:30:17 -04001016 pr_err("write_cache_emulated not supported\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00001017 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001018 }
Andy Grovere3d6f902011-07-19 08:55:10 +00001019 dev->se_sub_dev->se_dev_attrib.emulate_write_cache = flag;
Andy Grover6708bb22011-06-08 10:36:43 -07001020 pr_debug("dev[%p]: SE Device WRITE_CACHE_EMULATION flag: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001021 dev, dev->se_sub_dev->se_dev_attrib.emulate_write_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001022 return 0;
1023}
1024
1025int se_dev_set_emulate_ua_intlck_ctrl(struct se_device *dev, int flag)
1026{
1027 if ((flag != 0) && (flag != 1) && (flag != 2)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001028 pr_err("Illegal value %d\n", flag);
Andy Grovere3d6f902011-07-19 08:55:10 +00001029 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001030 }
1031
1032 if (atomic_read(&dev->dev_export_obj.obj_access_count)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001033 pr_err("dev[%p]: Unable to change SE Device"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001034 " UA_INTRLCK_CTRL while dev_export_obj: %d count"
1035 " exists\n", dev,
1036 atomic_read(&dev->dev_export_obj.obj_access_count));
Andy Grovere3d6f902011-07-19 08:55:10 +00001037 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001038 }
Andy Grovere3d6f902011-07-19 08:55:10 +00001039 dev->se_sub_dev->se_dev_attrib.emulate_ua_intlck_ctrl = flag;
Andy Grover6708bb22011-06-08 10:36:43 -07001040 pr_debug("dev[%p]: SE Device UA_INTRLCK_CTRL flag: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001041 dev, dev->se_sub_dev->se_dev_attrib.emulate_ua_intlck_ctrl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001042
1043 return 0;
1044}
1045
1046int se_dev_set_emulate_tas(struct se_device *dev, int flag)
1047{
1048 if ((flag != 0) && (flag != 1)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001049 pr_err("Illegal value %d\n", flag);
Andy Grovere3d6f902011-07-19 08:55:10 +00001050 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001051 }
1052
1053 if (atomic_read(&dev->dev_export_obj.obj_access_count)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001054 pr_err("dev[%p]: Unable to change SE Device TAS while"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001055 " dev_export_obj: %d count exists\n", dev,
1056 atomic_read(&dev->dev_export_obj.obj_access_count));
Andy Grovere3d6f902011-07-19 08:55:10 +00001057 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001058 }
Andy Grovere3d6f902011-07-19 08:55:10 +00001059 dev->se_sub_dev->se_dev_attrib.emulate_tas = flag;
Andy Grover6708bb22011-06-08 10:36:43 -07001060 pr_debug("dev[%p]: SE Device TASK_ABORTED status bit: %s\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001061 dev, (dev->se_sub_dev->se_dev_attrib.emulate_tas) ? "Enabled" : "Disabled");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001062
1063 return 0;
1064}
1065
1066int se_dev_set_emulate_tpu(struct se_device *dev, int flag)
1067{
1068 if ((flag != 0) && (flag != 1)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001069 pr_err("Illegal value %d\n", flag);
Andy Grovere3d6f902011-07-19 08:55:10 +00001070 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001071 }
1072 /*
1073 * We expect this value to be non-zero when generic Block Layer
1074 * Discard supported is detected iblock_create_virtdevice().
1075 */
Andy Groverc6388302011-11-30 12:11:50 -08001076 if (flag && !dev->se_sub_dev->se_dev_attrib.max_unmap_block_desc_count) {
Andy Grover6708bb22011-06-08 10:36:43 -07001077 pr_err("Generic Block Discard not supported\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001078 return -ENOSYS;
1079 }
1080
Andy Grovere3d6f902011-07-19 08:55:10 +00001081 dev->se_sub_dev->se_dev_attrib.emulate_tpu = flag;
Andy Grover6708bb22011-06-08 10:36:43 -07001082 pr_debug("dev[%p]: SE Device Thin Provisioning UNMAP bit: %d\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001083 dev, flag);
1084 return 0;
1085}
1086
1087int se_dev_set_emulate_tpws(struct se_device *dev, int flag)
1088{
1089 if ((flag != 0) && (flag != 1)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001090 pr_err("Illegal value %d\n", flag);
Andy Grovere3d6f902011-07-19 08:55:10 +00001091 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001092 }
1093 /*
1094 * We expect this value to be non-zero when generic Block Layer
1095 * Discard supported is detected iblock_create_virtdevice().
1096 */
Andy Groverc6388302011-11-30 12:11:50 -08001097 if (flag && !dev->se_sub_dev->se_dev_attrib.max_unmap_block_desc_count) {
Andy Grover6708bb22011-06-08 10:36:43 -07001098 pr_err("Generic Block Discard not supported\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001099 return -ENOSYS;
1100 }
1101
Andy Grovere3d6f902011-07-19 08:55:10 +00001102 dev->se_sub_dev->se_dev_attrib.emulate_tpws = flag;
Andy Grover6708bb22011-06-08 10:36:43 -07001103 pr_debug("dev[%p]: SE Device Thin Provisioning WRITE_SAME: %d\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001104 dev, flag);
1105 return 0;
1106}
1107
1108int se_dev_set_enforce_pr_isids(struct se_device *dev, int flag)
1109{
1110 if ((flag != 0) && (flag != 1)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001111 pr_err("Illegal value %d\n", flag);
Andy Grovere3d6f902011-07-19 08:55:10 +00001112 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001113 }
Andy Grovere3d6f902011-07-19 08:55:10 +00001114 dev->se_sub_dev->se_dev_attrib.enforce_pr_isids = flag;
Andy Grover6708bb22011-06-08 10:36:43 -07001115 pr_debug("dev[%p]: SE Device enforce_pr_isids bit: %s\n", dev,
Andy Grovere3d6f902011-07-19 08:55:10 +00001116 (dev->se_sub_dev->se_dev_attrib.enforce_pr_isids) ? "Enabled" : "Disabled");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001117 return 0;
1118}
1119
Roland Dreiere22a7f02011-07-05 13:34:52 -07001120int se_dev_set_is_nonrot(struct se_device *dev, int flag)
1121{
1122 if ((flag != 0) && (flag != 1)) {
1123 printk(KERN_ERR "Illegal value %d\n", flag);
1124 return -EINVAL;
1125 }
1126 dev->se_sub_dev->se_dev_attrib.is_nonrot = flag;
Nicholas Bellinger5de619a2011-07-17 02:57:58 -07001127 pr_debug("dev[%p]: SE Device is_nonrot bit: %d\n",
Roland Dreiere22a7f02011-07-05 13:34:52 -07001128 dev, flag);
1129 return 0;
1130}
1131
Nicholas Bellinger5de619a2011-07-17 02:57:58 -07001132int se_dev_set_emulate_rest_reord(struct se_device *dev, int flag)
1133{
1134 if (flag != 0) {
1135 printk(KERN_ERR "dev[%p]: SE Device emulatation of restricted"
1136 " reordering not implemented\n", dev);
1137 return -ENOSYS;
1138 }
1139 dev->se_sub_dev->se_dev_attrib.emulate_rest_reord = flag;
1140 pr_debug("dev[%p]: SE Device emulate_rest_reord: %d\n", dev, flag);
1141 return 0;
1142}
1143
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001144/*
1145 * Note, this can only be called on unexported SE Device Object.
1146 */
1147int se_dev_set_queue_depth(struct se_device *dev, u32 queue_depth)
1148{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001149 if (atomic_read(&dev->dev_export_obj.obj_access_count)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001150 pr_err("dev[%p]: Unable to change SE Device TCQ while"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001151 " dev_export_obj: %d count exists\n", dev,
1152 atomic_read(&dev->dev_export_obj.obj_access_count));
Andy Grovere3d6f902011-07-19 08:55:10 +00001153 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001154 }
Andy Grover6708bb22011-06-08 10:36:43 -07001155 if (!queue_depth) {
1156 pr_err("dev[%p]: Illegal ZERO value for queue"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001157 "_depth\n", dev);
Andy Grovere3d6f902011-07-19 08:55:10 +00001158 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001159 }
1160
Andy Grovere3d6f902011-07-19 08:55:10 +00001161 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV) {
1162 if (queue_depth > dev->se_sub_dev->se_dev_attrib.hw_queue_depth) {
Andy Grover6708bb22011-06-08 10:36:43 -07001163 pr_err("dev[%p]: Passed queue_depth: %u"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001164 " exceeds TCM/SE_Device TCQ: %u\n",
1165 dev, queue_depth,
Andy Grovere3d6f902011-07-19 08:55:10 +00001166 dev->se_sub_dev->se_dev_attrib.hw_queue_depth);
1167 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001168 }
1169 } else {
Andy Grovere3d6f902011-07-19 08:55:10 +00001170 if (queue_depth > dev->se_sub_dev->se_dev_attrib.queue_depth) {
1171 if (queue_depth > dev->se_sub_dev->se_dev_attrib.hw_queue_depth) {
Andy Grover6708bb22011-06-08 10:36:43 -07001172 pr_err("dev[%p]: Passed queue_depth:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001173 " %u exceeds TCM/SE_Device MAX"
1174 " TCQ: %u\n", dev, queue_depth,
Andy Grovere3d6f902011-07-19 08:55:10 +00001175 dev->se_sub_dev->se_dev_attrib.hw_queue_depth);
1176 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001177 }
1178 }
1179 }
1180
Andy Grovere3d6f902011-07-19 08:55:10 +00001181 dev->se_sub_dev->se_dev_attrib.queue_depth = dev->queue_depth = queue_depth;
Andy Grover6708bb22011-06-08 10:36:43 -07001182 pr_debug("dev[%p]: SE Device TCQ Depth changed to: %u\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001183 dev, queue_depth);
1184 return 0;
1185}
1186
Roland Dreier015487b2012-02-13 16:18:17 -08001187int se_dev_set_fabric_max_sectors(struct se_device *dev, u32 fabric_max_sectors)
1188{
1189 if (atomic_read(&dev->dev_export_obj.obj_access_count)) {
1190 pr_err("dev[%p]: Unable to change SE Device"
1191 " fabric_max_sectors while dev_export_obj: %d count exists\n",
1192 dev, atomic_read(&dev->dev_export_obj.obj_access_count));
1193 return -EINVAL;
1194 }
1195 if (!fabric_max_sectors) {
1196 pr_err("dev[%p]: Illegal ZERO value for"
1197 " fabric_max_sectors\n", dev);
1198 return -EINVAL;
1199 }
1200 if (fabric_max_sectors < DA_STATUS_MAX_SECTORS_MIN) {
1201 pr_err("dev[%p]: Passed fabric_max_sectors: %u less than"
1202 " DA_STATUS_MAX_SECTORS_MIN: %u\n", dev, fabric_max_sectors,
1203 DA_STATUS_MAX_SECTORS_MIN);
1204 return -EINVAL;
1205 }
1206 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV) {
1207 if (fabric_max_sectors > dev->se_sub_dev->se_dev_attrib.hw_max_sectors) {
1208 pr_err("dev[%p]: Passed fabric_max_sectors: %u"
1209 " greater than TCM/SE_Device max_sectors:"
1210 " %u\n", dev, fabric_max_sectors,
1211 dev->se_sub_dev->se_dev_attrib.hw_max_sectors);
1212 return -EINVAL;
1213 }
1214 } else {
1215 if (fabric_max_sectors > DA_STATUS_MAX_SECTORS_MAX) {
1216 pr_err("dev[%p]: Passed fabric_max_sectors: %u"
1217 " greater than DA_STATUS_MAX_SECTORS_MAX:"
1218 " %u\n", dev, fabric_max_sectors,
1219 DA_STATUS_MAX_SECTORS_MAX);
1220 return -EINVAL;
1221 }
1222 }
1223 /*
1224 * Align max_sectors down to PAGE_SIZE to follow transport_allocate_data_tasks()
1225 */
1226 fabric_max_sectors = se_dev_align_max_sectors(fabric_max_sectors,
1227 dev->se_sub_dev->se_dev_attrib.block_size);
1228
1229 dev->se_sub_dev->se_dev_attrib.fabric_max_sectors = fabric_max_sectors;
1230 pr_debug("dev[%p]: SE Device max_sectors changed to %u\n",
1231 dev, fabric_max_sectors);
1232 return 0;
1233}
1234
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001235int se_dev_set_optimal_sectors(struct se_device *dev, u32 optimal_sectors)
1236{
1237 if (atomic_read(&dev->dev_export_obj.obj_access_count)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001238 pr_err("dev[%p]: Unable to change SE Device"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001239 " optimal_sectors while dev_export_obj: %d count exists\n",
1240 dev, atomic_read(&dev->dev_export_obj.obj_access_count));
1241 return -EINVAL;
1242 }
Andy Grovere3d6f902011-07-19 08:55:10 +00001243 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV) {
Andy Grover6708bb22011-06-08 10:36:43 -07001244 pr_err("dev[%p]: Passed optimal_sectors cannot be"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001245 " changed for TCM/pSCSI\n", dev);
1246 return -EINVAL;
1247 }
Roland Dreier015487b2012-02-13 16:18:17 -08001248 if (optimal_sectors > dev->se_sub_dev->se_dev_attrib.fabric_max_sectors) {
Andy Grover6708bb22011-06-08 10:36:43 -07001249 pr_err("dev[%p]: Passed optimal_sectors %u cannot be"
Roland Dreier015487b2012-02-13 16:18:17 -08001250 " greater than fabric_max_sectors: %u\n", dev,
1251 optimal_sectors, dev->se_sub_dev->se_dev_attrib.fabric_max_sectors);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001252 return -EINVAL;
1253 }
1254
Andy Grovere3d6f902011-07-19 08:55:10 +00001255 dev->se_sub_dev->se_dev_attrib.optimal_sectors = optimal_sectors;
Andy Grover6708bb22011-06-08 10:36:43 -07001256 pr_debug("dev[%p]: SE Device optimal_sectors changed to %u\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001257 dev, optimal_sectors);
1258 return 0;
1259}
1260
1261int se_dev_set_block_size(struct se_device *dev, u32 block_size)
1262{
1263 if (atomic_read(&dev->dev_export_obj.obj_access_count)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001264 pr_err("dev[%p]: Unable to change SE Device block_size"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001265 " while dev_export_obj: %d count exists\n", dev,
1266 atomic_read(&dev->dev_export_obj.obj_access_count));
Andy Grovere3d6f902011-07-19 08:55:10 +00001267 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001268 }
1269
1270 if ((block_size != 512) &&
1271 (block_size != 1024) &&
1272 (block_size != 2048) &&
1273 (block_size != 4096)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001274 pr_err("dev[%p]: Illegal value for block_device: %u"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001275 " for SE device, must be 512, 1024, 2048 or 4096\n",
1276 dev, block_size);
Andy Grovere3d6f902011-07-19 08:55:10 +00001277 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001278 }
1279
Andy Grovere3d6f902011-07-19 08:55:10 +00001280 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV) {
Andy Grover6708bb22011-06-08 10:36:43 -07001281 pr_err("dev[%p]: Not allowed to change block_size for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001282 " Physical Device, use for Linux/SCSI to change"
1283 " block_size for underlying hardware\n", dev);
Andy Grovere3d6f902011-07-19 08:55:10 +00001284 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001285 }
1286
Andy Grovere3d6f902011-07-19 08:55:10 +00001287 dev->se_sub_dev->se_dev_attrib.block_size = block_size;
Andy Grover6708bb22011-06-08 10:36:43 -07001288 pr_debug("dev[%p]: SE Device block_size changed to %u\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001289 dev, block_size);
1290 return 0;
1291}
1292
1293struct se_lun *core_dev_add_lun(
1294 struct se_portal_group *tpg,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001295 struct se_device *dev,
1296 u32 lun)
1297{
1298 struct se_lun *lun_p;
Sebastian Andrzej Siewior8d9efe52012-01-11 21:43:38 +01001299 int rc;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001300
1301 if (atomic_read(&dev->dev_access_obj.obj_access_count) != 0) {
Andy Grover6708bb22011-06-08 10:36:43 -07001302 pr_err("Unable to export struct se_device while dev_access_obj: %d\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001303 atomic_read(&dev->dev_access_obj.obj_access_count));
Sebastian Andrzej Siewior8d9efe52012-01-11 21:43:38 +01001304 return ERR_PTR(-EACCES);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001305 }
1306
1307 lun_p = core_tpg_pre_addlun(tpg, lun);
Sebastian Andrzej Siewior8d9efe52012-01-11 21:43:38 +01001308 if (IS_ERR(lun_p))
1309 return lun_p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001310
Nicholas Bellinger58d92612012-03-20 21:26:48 -07001311 rc = core_tpg_post_addlun(tpg, lun_p,
1312 TRANSPORT_LUNFLAGS_READ_WRITE, dev);
Sebastian Andrzej Siewior8d9efe52012-01-11 21:43:38 +01001313 if (rc < 0)
1314 return ERR_PTR(rc);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001315
Andy Grover6708bb22011-06-08 10:36:43 -07001316 pr_debug("%s_TPG[%u]_LUN[%u] - Activated %s Logical Unit from"
Andy Grovere3d6f902011-07-19 08:55:10 +00001317 " CORE HBA: %u\n", tpg->se_tpg_tfo->get_fabric_name(),
1318 tpg->se_tpg_tfo->tpg_get_tag(tpg), lun_p->unpacked_lun,
Andy Grover2dca6732012-07-12 17:34:55 -07001319 tpg->se_tpg_tfo->get_fabric_name(), dev->se_hba->hba_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001320 /*
1321 * Update LUN maps for dynamically added initiators when
1322 * generate_node_acl is enabled.
1323 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001324 if (tpg->se_tpg_tfo->tpg_check_demo_mode(tpg)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001325 struct se_node_acl *acl;
Roland Dreier28638882011-08-16 09:40:01 -07001326 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001327 list_for_each_entry(acl, &tpg->acl_node_list, acl_list) {
Nicholas Bellinger052605c2011-07-26 17:48:43 -07001328 if (acl->dynamic_node_acl &&
1329 (!tpg->se_tpg_tfo->tpg_check_demo_mode_login_only ||
1330 !tpg->se_tpg_tfo->tpg_check_demo_mode_login_only(tpg))) {
Roland Dreier28638882011-08-16 09:40:01 -07001331 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001332 core_tpg_add_node_to_devs(acl, tpg);
Roland Dreier28638882011-08-16 09:40:01 -07001333 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001334 }
1335 }
Roland Dreier28638882011-08-16 09:40:01 -07001336 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001337 }
1338
1339 return lun_p;
1340}
1341
1342/* core_dev_del_lun():
1343 *
1344 *
1345 */
1346int core_dev_del_lun(
1347 struct se_portal_group *tpg,
1348 u32 unpacked_lun)
1349{
1350 struct se_lun *lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001351
Sebastian Andrzej Siewior8d9efe52012-01-11 21:43:38 +01001352 lun = core_tpg_pre_dellun(tpg, unpacked_lun);
1353 if (IS_ERR(lun))
1354 return PTR_ERR(lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001355
1356 core_tpg_post_dellun(tpg, lun);
1357
Andy Grover6708bb22011-06-08 10:36:43 -07001358 pr_debug("%s_TPG[%u]_LUN[%u] - Deactivated %s Logical Unit from"
Andy Grovere3d6f902011-07-19 08:55:10 +00001359 " device object\n", tpg->se_tpg_tfo->get_fabric_name(),
1360 tpg->se_tpg_tfo->tpg_get_tag(tpg), unpacked_lun,
1361 tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001362
1363 return 0;
1364}
1365
1366struct se_lun *core_get_lun_from_tpg(struct se_portal_group *tpg, u32 unpacked_lun)
1367{
1368 struct se_lun *lun;
1369
1370 spin_lock(&tpg->tpg_lun_lock);
1371 if (unpacked_lun > (TRANSPORT_MAX_LUNS_PER_TPG-1)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001372 pr_err("%s LUN: %u exceeds TRANSPORT_MAX_LUNS"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001373 "_PER_TPG-1: %u for Target Portal Group: %hu\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001374 tpg->se_tpg_tfo->get_fabric_name(), unpacked_lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001375 TRANSPORT_MAX_LUNS_PER_TPG-1,
Andy Grovere3d6f902011-07-19 08:55:10 +00001376 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001377 spin_unlock(&tpg->tpg_lun_lock);
1378 return NULL;
1379 }
Jörn Engel4a5a75f2012-03-15 15:05:12 -04001380 lun = tpg->tpg_lun_list[unpacked_lun];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001381
1382 if (lun->lun_status != TRANSPORT_LUN_STATUS_FREE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001383 pr_err("%s Logical Unit Number: %u is not free on"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001384 " Target Portal Group: %hu, ignoring request.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001385 tpg->se_tpg_tfo->get_fabric_name(), unpacked_lun,
1386 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001387 spin_unlock(&tpg->tpg_lun_lock);
1388 return NULL;
1389 }
1390 spin_unlock(&tpg->tpg_lun_lock);
1391
1392 return lun;
1393}
1394
1395/* core_dev_get_lun():
1396 *
1397 *
1398 */
1399static struct se_lun *core_dev_get_lun(struct se_portal_group *tpg, u32 unpacked_lun)
1400{
1401 struct se_lun *lun;
1402
1403 spin_lock(&tpg->tpg_lun_lock);
1404 if (unpacked_lun > (TRANSPORT_MAX_LUNS_PER_TPG-1)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001405 pr_err("%s LUN: %u exceeds TRANSPORT_MAX_LUNS_PER"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001406 "_TPG-1: %u for Target Portal Group: %hu\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001407 tpg->se_tpg_tfo->get_fabric_name(), unpacked_lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001408 TRANSPORT_MAX_LUNS_PER_TPG-1,
Andy Grovere3d6f902011-07-19 08:55:10 +00001409 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001410 spin_unlock(&tpg->tpg_lun_lock);
1411 return NULL;
1412 }
Jörn Engel4a5a75f2012-03-15 15:05:12 -04001413 lun = tpg->tpg_lun_list[unpacked_lun];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001414
1415 if (lun->lun_status != TRANSPORT_LUN_STATUS_ACTIVE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001416 pr_err("%s Logical Unit Number: %u is not active on"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001417 " Target Portal Group: %hu, ignoring request.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001418 tpg->se_tpg_tfo->get_fabric_name(), unpacked_lun,
1419 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001420 spin_unlock(&tpg->tpg_lun_lock);
1421 return NULL;
1422 }
1423 spin_unlock(&tpg->tpg_lun_lock);
1424
1425 return lun;
1426}
1427
1428struct se_lun_acl *core_dev_init_initiator_node_lun_acl(
1429 struct se_portal_group *tpg,
1430 u32 mapped_lun,
1431 char *initiatorname,
1432 int *ret)
1433{
1434 struct se_lun_acl *lacl;
1435 struct se_node_acl *nacl;
1436
Dan Carpenter60d645a2011-06-15 10:03:05 -07001437 if (strlen(initiatorname) >= TRANSPORT_IQN_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -07001438 pr_err("%s InitiatorName exceeds maximum size.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001439 tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001440 *ret = -EOVERFLOW;
1441 return NULL;
1442 }
1443 nacl = core_tpg_get_initiator_node_acl(tpg, initiatorname);
Andy Grover6708bb22011-06-08 10:36:43 -07001444 if (!nacl) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001445 *ret = -EINVAL;
1446 return NULL;
1447 }
1448 lacl = kzalloc(sizeof(struct se_lun_acl), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001449 if (!lacl) {
1450 pr_err("Unable to allocate memory for struct se_lun_acl.\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001451 *ret = -ENOMEM;
1452 return NULL;
1453 }
1454
1455 INIT_LIST_HEAD(&lacl->lacl_list);
1456 lacl->mapped_lun = mapped_lun;
1457 lacl->se_lun_nacl = nacl;
1458 snprintf(lacl->initiatorname, TRANSPORT_IQN_LEN, "%s", initiatorname);
1459
1460 return lacl;
1461}
1462
1463int core_dev_add_initiator_node_lun_acl(
1464 struct se_portal_group *tpg,
1465 struct se_lun_acl *lacl,
1466 u32 unpacked_lun,
1467 u32 lun_access)
1468{
1469 struct se_lun *lun;
1470 struct se_node_acl *nacl;
1471
1472 lun = core_dev_get_lun(tpg, unpacked_lun);
Andy Grover6708bb22011-06-08 10:36:43 -07001473 if (!lun) {
1474 pr_err("%s Logical Unit Number: %u is not active on"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001475 " Target Portal Group: %hu, ignoring request.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001476 tpg->se_tpg_tfo->get_fabric_name(), unpacked_lun,
1477 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001478 return -EINVAL;
1479 }
1480
1481 nacl = lacl->se_lun_nacl;
Andy Grover6708bb22011-06-08 10:36:43 -07001482 if (!nacl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001483 return -EINVAL;
1484
1485 if ((lun->lun_access & TRANSPORT_LUNFLAGS_READ_ONLY) &&
1486 (lun_access & TRANSPORT_LUNFLAGS_READ_WRITE))
1487 lun_access = TRANSPORT_LUNFLAGS_READ_ONLY;
1488
1489 lacl->se_lun = lun;
1490
Andy Grovere80ac6c2012-07-12 17:34:58 -07001491 if (core_enable_device_list_for_node(lun, lacl, lacl->mapped_lun,
1492 lun_access, nacl, tpg) < 0)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001493 return -EINVAL;
1494
1495 spin_lock(&lun->lun_acl_lock);
1496 list_add_tail(&lacl->lacl_list, &lun->lun_acl_list);
1497 atomic_inc(&lun->lun_acl_count);
1498 smp_mb__after_atomic_inc();
1499 spin_unlock(&lun->lun_acl_lock);
1500
Andy Grover6708bb22011-06-08 10:36:43 -07001501 pr_debug("%s_TPG[%hu]_LUN[%u->%u] - Added %s ACL for "
Andy Grovere3d6f902011-07-19 08:55:10 +00001502 " InitiatorNode: %s\n", tpg->se_tpg_tfo->get_fabric_name(),
1503 tpg->se_tpg_tfo->tpg_get_tag(tpg), unpacked_lun, lacl->mapped_lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001504 (lun_access & TRANSPORT_LUNFLAGS_READ_WRITE) ? "RW" : "RO",
1505 lacl->initiatorname);
1506 /*
1507 * Check to see if there are any existing persistent reservation APTPL
1508 * pre-registrations that need to be enabled for this LUN ACL..
1509 */
1510 core_scsi3_check_aptpl_registration(lun->lun_se_dev, tpg, lun, lacl);
1511 return 0;
1512}
1513
1514/* core_dev_del_initiator_node_lun_acl():
1515 *
1516 *
1517 */
1518int core_dev_del_initiator_node_lun_acl(
1519 struct se_portal_group *tpg,
1520 struct se_lun *lun,
1521 struct se_lun_acl *lacl)
1522{
1523 struct se_node_acl *nacl;
1524
1525 nacl = lacl->se_lun_nacl;
Andy Grover6708bb22011-06-08 10:36:43 -07001526 if (!nacl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001527 return -EINVAL;
1528
1529 spin_lock(&lun->lun_acl_lock);
1530 list_del(&lacl->lacl_list);
1531 atomic_dec(&lun->lun_acl_count);
1532 smp_mb__after_atomic_dec();
1533 spin_unlock(&lun->lun_acl_lock);
1534
Andy Grovere80ac6c2012-07-12 17:34:58 -07001535 core_disable_device_list_for_node(lun, NULL, lacl->mapped_lun,
1536 TRANSPORT_LUNFLAGS_NO_ACCESS, nacl, tpg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001537
1538 lacl->se_lun = NULL;
1539
Andy Grover6708bb22011-06-08 10:36:43 -07001540 pr_debug("%s_TPG[%hu]_LUN[%u] - Removed ACL for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001541 " InitiatorNode: %s Mapped LUN: %u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001542 tpg->se_tpg_tfo->get_fabric_name(),
1543 tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001544 lacl->initiatorname, lacl->mapped_lun);
1545
1546 return 0;
1547}
1548
1549void core_dev_free_initiator_node_lun_acl(
1550 struct se_portal_group *tpg,
1551 struct se_lun_acl *lacl)
1552{
Andy Grover6708bb22011-06-08 10:36:43 -07001553 pr_debug("%s_TPG[%hu] - Freeing ACL for %s InitiatorNode: %s"
Andy Grovere3d6f902011-07-19 08:55:10 +00001554 " Mapped LUN: %u\n", tpg->se_tpg_tfo->get_fabric_name(),
1555 tpg->se_tpg_tfo->tpg_get_tag(tpg),
1556 tpg->se_tpg_tfo->get_fabric_name(),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001557 lacl->initiatorname, lacl->mapped_lun);
1558
1559 kfree(lacl);
1560}
1561
1562int core_dev_setup_virtual_lun0(void)
1563{
1564 struct se_hba *hba;
1565 struct se_device *dev;
1566 struct se_subsystem_dev *se_dev = NULL;
1567 struct se_subsystem_api *t;
1568 char buf[16];
1569 int ret;
1570
Andy Grover6708bb22011-06-08 10:36:43 -07001571 hba = core_alloc_hba("rd_mcp", 0, HBA_FLAGS_INTERNAL_USE);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001572 if (IS_ERR(hba))
1573 return PTR_ERR(hba);
1574
Andy Grovere3d6f902011-07-19 08:55:10 +00001575 lun0_hba = hba;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001576 t = hba->transport;
1577
1578 se_dev = kzalloc(sizeof(struct se_subsystem_dev), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001579 if (!se_dev) {
1580 pr_err("Unable to allocate memory for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001581 " struct se_subsystem_dev\n");
1582 ret = -ENOMEM;
1583 goto out;
1584 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001585 INIT_LIST_HEAD(&se_dev->t10_wwn.t10_vpd_list);
1586 spin_lock_init(&se_dev->t10_wwn.t10_vpd_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001587 INIT_LIST_HEAD(&se_dev->t10_pr.registration_list);
1588 INIT_LIST_HEAD(&se_dev->t10_pr.aptpl_reg_list);
1589 spin_lock_init(&se_dev->t10_pr.registration_lock);
1590 spin_lock_init(&se_dev->t10_pr.aptpl_reg_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001591 INIT_LIST_HEAD(&se_dev->t10_alua.tg_pt_gps_list);
1592 spin_lock_init(&se_dev->t10_alua.tg_pt_gps_lock);
1593 spin_lock_init(&se_dev->se_dev_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001594 se_dev->t10_pr.pr_aptpl_buf_len = PR_APTPL_BUF_LEN;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001595 se_dev->t10_wwn.t10_sub_dev = se_dev;
1596 se_dev->t10_alua.t10_sub_dev = se_dev;
1597 se_dev->se_dev_attrib.da_sub_dev = se_dev;
1598 se_dev->se_dev_hba = hba;
1599
1600 se_dev->se_dev_su_ptr = t->allocate_virtdevice(hba, "virt_lun0");
Andy Grover6708bb22011-06-08 10:36:43 -07001601 if (!se_dev->se_dev_su_ptr) {
1602 pr_err("Unable to locate subsystem dependent pointer"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001603 " from allocate_virtdevice()\n");
1604 ret = -ENOMEM;
1605 goto out;
1606 }
Andy Grovere3d6f902011-07-19 08:55:10 +00001607 lun0_su_dev = se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001608
1609 memset(buf, 0, 16);
1610 sprintf(buf, "rd_pages=8");
1611 t->set_configfs_dev_params(hba, se_dev, buf, sizeof(buf));
1612
1613 dev = t->create_virtdevice(hba, se_dev, se_dev->se_dev_su_ptr);
Andy Grovere3d6f902011-07-19 08:55:10 +00001614 if (IS_ERR(dev)) {
1615 ret = PTR_ERR(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001616 goto out;
1617 }
1618 se_dev->se_dev_ptr = dev;
Andy Grovere3d6f902011-07-19 08:55:10 +00001619 g_lun0_dev = dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001620
1621 return 0;
1622out:
Andy Grovere3d6f902011-07-19 08:55:10 +00001623 lun0_su_dev = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001624 kfree(se_dev);
Andy Grovere3d6f902011-07-19 08:55:10 +00001625 if (lun0_hba) {
1626 core_delete_hba(lun0_hba);
1627 lun0_hba = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001628 }
1629 return ret;
1630}
1631
1632
1633void core_dev_release_virtual_lun0(void)
1634{
Andy Grovere3d6f902011-07-19 08:55:10 +00001635 struct se_hba *hba = lun0_hba;
1636 struct se_subsystem_dev *su_dev = lun0_su_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001637
Andy Grover6708bb22011-06-08 10:36:43 -07001638 if (!hba)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001639 return;
1640
Andy Grovere3d6f902011-07-19 08:55:10 +00001641 if (g_lun0_dev)
1642 se_free_virtual_device(g_lun0_dev, hba);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001643
1644 kfree(su_dev);
1645 core_delete_hba(hba);
1646}