2 * Copyright (c) 2010 Cisco Systems, Inc.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 /* XXX TBD some includes may be extraneous */
20 #include <linux/module.h>
21 #include <linux/moduleparam.h>
22 #include <linux/utsname.h>
23 #include <linux/init.h>
24 #include <linux/slab.h>
25 #include <linux/kthread.h>
26 #include <linux/types.h>
27 #include <linux/string.h>
28 #include <linux/configfs.h>
29 #include <linux/ctype.h>
30 #include <linux/hash.h>
31 #include <linux/rcupdate.h>
32 #include <linux/rculist.h>
33 #include <linux/kref.h>
34 #include <asm/unaligned.h>
35 #include <scsi/libfc.h>
37 #include <target/target_core_base.h>
38 #include <target/target_core_fabric.h>
42 static void ft_sess_delete_all(struct ft_tport *);
45 * Lookup or allocate target local port.
46 * Caller holds ft_lport_lock.
48 static struct ft_tport *ft_tport_get(struct fc_lport *lport)
51 struct ft_tport *tport;
54 tport = rcu_dereference_protected(lport->prov[FC_TYPE_FCP],
55 lockdep_is_held(&ft_lport_lock));
56 if (tport && tport->tpg)
59 tpg = ft_lport_find_tpg(lport);
69 tport = kzalloc(sizeof(*tport), GFP_KERNEL);
76 for (i = 0; i < FT_SESS_HASH_SIZE; i++)
77 INIT_HLIST_HEAD(&tport->hash[i]);
79 rcu_assign_pointer(lport->prov[FC_TYPE_FCP], tport);
84 * Delete a target local port.
85 * Caller holds ft_lport_lock.
87 static void ft_tport_delete(struct ft_tport *tport)
89 struct fc_lport *lport;
92 ft_sess_delete_all(tport);
94 lport->service_params &= ~FCP_SPPF_TARG_FCN;
95 BUG_ON(tport != lport->prov[FC_TYPE_FCP]);
96 RCU_INIT_POINTER(lport->prov[FC_TYPE_FCP], NULL);
103 kfree_rcu(tport, rcu);
108 * Called thru fc_lport_iterate().
110 void ft_lport_add(struct fc_lport *lport, void *arg)
112 mutex_lock(&ft_lport_lock);
114 lport->service_params |= FCP_SPPF_TARG_FCN;
115 mutex_unlock(&ft_lport_lock);
120 * Called thru fc_lport_iterate().
122 void ft_lport_del(struct fc_lport *lport, void *arg)
124 struct ft_tport *tport;
126 mutex_lock(&ft_lport_lock);
127 tport = lport->prov[FC_TYPE_FCP];
129 ft_tport_delete(tport);
130 mutex_unlock(&ft_lport_lock);
134 * Notification of local port change from libfc.
135 * Create or delete local port and associated tport.
137 int ft_lport_notify(struct notifier_block *nb, unsigned long event, void *arg)
139 struct fc_lport *lport = arg;
142 case FC_LPORT_EV_ADD:
143 ft_lport_add(lport, NULL);
145 case FC_LPORT_EV_DEL:
146 ft_lport_del(lport, NULL);
153 * Hash function for FC_IDs.
155 static u32 ft_sess_hash(u32 port_id)
157 return hash_32(port_id, FT_SESS_HASH_BITS);
161 * Find session in local port.
162 * Sessions and hash lists are RCU-protected.
163 * A reference is taken which must be eventually freed.
165 static struct ft_sess *ft_sess_get(struct fc_lport *lport, u32 port_id)
167 struct ft_tport *tport;
168 struct hlist_head *head;
169 struct ft_sess *sess;
172 tport = rcu_dereference(lport->prov[FC_TYPE_FCP]);
176 head = &tport->hash[ft_sess_hash(port_id)];
177 hlist_for_each_entry_rcu(sess, head, hash) {
178 if (sess->port_id == port_id) {
179 kref_get(&sess->kref);
181 pr_debug("port_id %x found %p\n", port_id, sess);
187 pr_debug("port_id %x not found\n", port_id);
191 static int ft_sess_alloc_cb(struct se_portal_group *se_tpg,
192 struct se_session *se_sess, void *p)
194 struct ft_sess *sess = p;
195 struct ft_tport *tport = sess->tport;
196 struct hlist_head *head = &tport->hash[ft_sess_hash(sess->port_id)];
198 pr_debug("port_id %x sess %p\n", sess->port_id, sess);
199 hlist_add_head_rcu(&sess->hash, head);
206 * Allocate session and enter it in the hash for the local port.
207 * Caller holds ft_lport_lock.
209 static struct ft_sess *ft_sess_create(struct ft_tport *tport, u32 port_id,
210 struct fc_rport_priv *rdata)
212 struct se_portal_group *se_tpg = &tport->tpg->se_tpg;
213 struct ft_sess *sess;
214 struct hlist_head *head;
215 unsigned char initiatorname[TRANSPORT_IQN_LEN];
217 ft_format_wwn(&initiatorname[0], TRANSPORT_IQN_LEN, rdata->ids.port_name);
219 head = &tport->hash[ft_sess_hash(port_id)];
220 hlist_for_each_entry_rcu(sess, head, hash)
221 if (sess->port_id == port_id)
224 sess = kzalloc(sizeof(*sess), GFP_KERNEL);
226 return ERR_PTR(-ENOMEM);
228 kref_init(&sess->kref); /* ref for table entry */
230 sess->port_id = port_id;
232 sess->se_sess = target_alloc_session(se_tpg, TCM_FC_DEFAULT_TAGS,
233 sizeof(struct ft_cmd),
234 TARGET_PROT_NORMAL, &initiatorname[0],
235 sess, ft_sess_alloc_cb);
236 if (IS_ERR(sess->se_sess)) {
237 int rc = PTR_ERR(sess->se_sess);
245 * Unhash the session.
246 * Caller holds ft_lport_lock.
248 static void ft_sess_unhash(struct ft_sess *sess)
250 struct ft_tport *tport = sess->tport;
252 hlist_del_rcu(&sess->hash);
253 BUG_ON(!tport->sess_count);
260 * Delete session from hash.
261 * Caller holds ft_lport_lock.
263 static struct ft_sess *ft_sess_delete(struct ft_tport *tport, u32 port_id)
265 struct hlist_head *head;
266 struct ft_sess *sess;
268 head = &tport->hash[ft_sess_hash(port_id)];
269 hlist_for_each_entry_rcu(sess, head, hash) {
270 if (sess->port_id == port_id) {
271 ft_sess_unhash(sess);
278 static void ft_close_sess(struct ft_sess *sess)
280 transport_deregister_session_configfs(sess->se_sess);
281 target_sess_cmd_list_set_waiting(sess->se_sess);
282 target_wait_for_sess_cmds(sess->se_sess);
287 * Delete all sessions from tport.
288 * Caller holds ft_lport_lock.
290 static void ft_sess_delete_all(struct ft_tport *tport)
292 struct hlist_head *head;
293 struct ft_sess *sess;
295 for (head = tport->hash;
296 head < &tport->hash[FT_SESS_HASH_SIZE]; head++) {
297 hlist_for_each_entry_rcu(sess, head, hash) {
298 ft_sess_unhash(sess);
299 ft_close_sess(sess); /* release from table */
305 * TCM ops for sessions.
309 * Remove session and send PRLO.
310 * This is called when the ACL is being deleted or queue depth is changing.
312 void ft_sess_close(struct se_session *se_sess)
314 struct ft_sess *sess = se_sess->fabric_sess_ptr;
317 mutex_lock(&ft_lport_lock);
318 port_id = sess->port_id;
320 mutex_unlock(&ft_lport_lock);
323 pr_debug("port_id %x\n", port_id);
324 ft_sess_unhash(sess);
325 mutex_unlock(&ft_lport_lock);
327 /* XXX Send LOGO or PRLO */
328 synchronize_rcu(); /* let transport deregister happen */
331 u32 ft_sess_get_index(struct se_session *se_sess)
333 struct ft_sess *sess = se_sess->fabric_sess_ptr;
335 return sess->port_id; /* XXX TBD probably not what is needed */
338 u32 ft_sess_get_port_name(struct se_session *se_sess,
339 unsigned char *buf, u32 len)
341 struct ft_sess *sess = se_sess->fabric_sess_ptr;
343 return ft_format_wwn(buf, len, sess->port_name);
347 * libfc ops involving sessions.
350 static int ft_prli_locked(struct fc_rport_priv *rdata, u32 spp_len,
351 const struct fc_els_spp *rspp, struct fc_els_spp *spp)
353 struct ft_tport *tport;
354 struct ft_sess *sess;
357 tport = ft_tport_get(rdata->local_port);
359 goto not_target; /* not a target for this local port */
364 if (rspp->spp_flags & (FC_SPP_OPA_VAL | FC_SPP_RPA_VAL))
365 return FC_SPP_RESP_NO_PA;
368 * If both target and initiator bits are off, the SPP is invalid.
370 fcp_parm = ntohl(rspp->spp_params);
371 if (!(fcp_parm & (FCP_SPPF_INIT_FCN | FCP_SPPF_TARG_FCN)))
372 return FC_SPP_RESP_INVL;
375 * Create session (image pair) only if requested by
376 * EST_IMG_PAIR flag and if the requestor is an initiator.
378 if (rspp->spp_flags & FC_SPP_EST_IMG_PAIR) {
379 spp->spp_flags |= FC_SPP_EST_IMG_PAIR;
380 if (!(fcp_parm & FCP_SPPF_INIT_FCN))
381 return FC_SPP_RESP_CONF;
382 sess = ft_sess_create(tport, rdata->ids.port_id, rdata);
384 return FC_SPP_RESP_RES;
387 sess->params = fcp_parm;
388 sess->port_name = rdata->ids.port_name;
389 sess->max_frame = rdata->maxframe_size;
391 /* XXX TBD - clearing actions. unit attn, see 4.10 */
395 * OR in our service parameters with other provider (initiator), if any.
398 fcp_parm = ntohl(spp->spp_params);
399 fcp_parm &= ~FCP_SPPF_RETRY;
400 spp->spp_params = htonl(fcp_parm | FCP_SPPF_TARG_FCN);
401 return FC_SPP_RESP_ACK;
404 fcp_parm = ntohl(spp->spp_params);
405 fcp_parm &= ~FCP_SPPF_TARG_FCN;
406 spp->spp_params = htonl(fcp_parm);
411 * tcm_fcp_prli() - Handle incoming or outgoing PRLI for the FCP target
412 * @rdata: remote port private
413 * @spp_len: service parameter page length
414 * @rspp: received service parameter page (NULL for outgoing PRLI)
415 * @spp: response service parameter page
417 * Returns spp response code.
419 static int ft_prli(struct fc_rport_priv *rdata, u32 spp_len,
420 const struct fc_els_spp *rspp, struct fc_els_spp *spp)
424 mutex_lock(&ft_lport_lock);
425 ret = ft_prli_locked(rdata, spp_len, rspp, spp);
426 mutex_unlock(&ft_lport_lock);
427 pr_debug("port_id %x flags %x ret %x\n",
428 rdata->ids.port_id, rspp ? rspp->spp_flags : 0, ret);
432 static void ft_sess_free(struct kref *kref)
434 struct ft_sess *sess = container_of(kref, struct ft_sess, kref);
436 transport_deregister_session(sess->se_sess);
437 kfree_rcu(sess, rcu);
440 void ft_sess_put(struct ft_sess *sess)
442 int sess_held = atomic_read(&sess->kref.refcount);
445 kref_put(&sess->kref, ft_sess_free);
448 static void ft_prlo(struct fc_rport_priv *rdata)
450 struct ft_sess *sess;
451 struct ft_tport *tport;
453 mutex_lock(&ft_lport_lock);
454 tport = rcu_dereference_protected(rdata->local_port->prov[FC_TYPE_FCP],
455 lockdep_is_held(&ft_lport_lock));
458 mutex_unlock(&ft_lport_lock);
461 sess = ft_sess_delete(tport, rdata->ids.port_id);
463 mutex_unlock(&ft_lport_lock);
466 mutex_unlock(&ft_lport_lock);
467 ft_close_sess(sess); /* release from table */
469 /* XXX TBD - clearing actions. unit attn, see 4.10 */
473 * Handle incoming FCP request.
474 * Caller has verified that the frame is type FCP.
476 static void ft_recv(struct fc_lport *lport, struct fc_frame *fp)
478 struct ft_sess *sess;
479 u32 sid = fc_frame_sid(fp);
481 pr_debug("sid %x\n", sid);
483 sess = ft_sess_get(lport, sid);
485 pr_debug("sid %x sess lookup failed\n", sid);
486 /* TBD XXX - if FCP_CMND, send PRLO */
490 ft_recv_req(sess, fp); /* must do ft_sess_put() */
494 * Provider ops for libfc.
496 struct fc4_prov ft_prov = {
500 .module = THIS_MODULE,