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.
20 #define FT_VERSION "0.3"
22 #define FT_NAMELEN 32 /* length of ASCII WWPNs including pad */
23 #define FT_TPG_NAMELEN 32 /* max length of TPG name */
24 #define FT_LUN_NAMELEN 32 /* max length of LUN name */
26 struct ft_transport_id
{
31 } __attribute__((__packed__
));
34 * Session (remote port).
37 u32 port_id
; /* for hash lookup use only */
39 u16 max_frame
; /* maximum frame size */
40 u64 port_name
; /* port name for transport ID */
41 struct ft_tport
*tport
;
42 struct se_session
*se_sess
;
43 struct hlist_node hash
; /* linkage in ft_sess_hash table */
45 struct kref kref
; /* ref for hash and outstanding I/Os */
49 * Hash table of sessions per local port.
50 * Hash lookup by remote port FC_ID.
52 #define FT_SESS_HASH_BITS 6
53 #define FT_SESS_HASH_SIZE (1 << FT_SESS_HASH_BITS)
56 * Per local port data.
57 * This is created only after a TPG exists that allows target function
58 * for the local port. If the TPG exists, this is allocated when
59 * we're notified that the local port has been created, or when
60 * the first PRLI provider callback is received.
63 struct fc_lport
*lport
;
64 struct ft_tpg
*tpg
; /* NULL if TPG deleted before tport */
65 u32 sess_count
; /* number of sessions in hash */
67 struct hlist_head hash
[FT_SESS_HASH_SIZE
]; /* list of sessions */
71 * Node ID and authentication.
79 * Node ACL for FC remote port session.
82 struct ft_node_auth node_auth
;
83 struct se_node_acl se_node_acl
;
88 char name
[FT_LUN_NAMELEN
];
92 * Target portal group (local port).
96 struct ft_lport_acl
*lport_acl
;
97 struct ft_tport
*tport
; /* active tport or NULL */
98 struct list_head list
; /* linkage in ft_lport_acl tpg_list */
99 struct list_head lun_list
; /* head of LUNs */
100 struct se_portal_group se_tpg
;
101 struct workqueue_struct
*workqueue
;
104 struct ft_lport_acl
{
106 char name
[FT_NAMELEN
];
107 struct list_head list
;
108 struct list_head tpg_list
;
109 struct se_wwn fc_lport_wwn
;
116 u32 lun
; /* LUN from request */
117 struct ft_sess
*sess
; /* session held for cmd */
118 struct fc_seq
*seq
; /* sequence in exchange mgr */
119 struct se_cmd se_cmd
; /* Local TCM I/O descriptor */
120 struct fc_frame
*req_frame
;
121 unsigned char *cdb
; /* pointer to CDB inside frame */
122 u32 write_data_len
; /* data received on writes */
123 struct work_struct work
;
124 /* Local sense buffer */
125 unsigned char ft_sense_buffer
[TRANSPORT_SENSE_BUFFER
];
126 u32 was_ddp_setup
:1; /* Set only if ddp is setup */
127 struct scatterlist
*sg
; /* Set only if DDP is setup */
128 u32 sg_cnt
; /* No. of item in scatterlist */
131 extern struct list_head ft_lport_list
;
132 extern struct mutex ft_lport_lock
;
133 extern struct fc4_prov ft_prov
;
134 extern struct target_fabric_configfs
*ft_configfs
;
143 void ft_sess_put(struct ft_sess
*);
144 int ft_sess_shutdown(struct se_session
*);
145 void ft_sess_close(struct se_session
*);
146 void ft_sess_stop(struct se_session
*, int, int);
147 int ft_sess_logged_in(struct se_session
*);
148 u32
ft_sess_get_index(struct se_session
*);
149 u32
ft_sess_get_port_name(struct se_session
*, unsigned char *, u32
);
150 void ft_sess_set_erl0(struct se_session
*);
152 void ft_lport_add(struct fc_lport
*, void *);
153 void ft_lport_del(struct fc_lport
*, void *);
154 int ft_lport_notify(struct notifier_block
*, unsigned long, void *);
159 int ft_check_stop_free(struct se_cmd
*);
160 void ft_release_cmd(struct se_cmd
*);
161 int ft_queue_status(struct se_cmd
*);
162 int ft_queue_data_in(struct se_cmd
*);
163 int ft_write_pending(struct se_cmd
*);
164 int ft_write_pending_status(struct se_cmd
*);
165 u32
ft_get_task_tag(struct se_cmd
*);
166 int ft_get_cmd_state(struct se_cmd
*);
167 int ft_queue_tm_resp(struct se_cmd
*);
168 int ft_is_state_remove(struct se_cmd
*);
171 * other internal functions.
173 void ft_recv_req(struct ft_sess
*, struct fc_frame
*);
174 struct ft_tpg
*ft_lport_find_tpg(struct fc_lport
*);
175 struct ft_node_acl
*ft_acl_get(struct ft_tpg
*, struct fc_rport_priv
*);
177 void ft_recv_write_data(struct ft_cmd
*, struct fc_frame
*);
178 void ft_dump_cmd(struct ft_cmd
*, const char *caller
);
180 ssize_t
ft_format_wwn(char *, size_t, u64
);
183 * Underlying HW specific helper function
185 void ft_invl_hw_context(struct ft_cmd
*);
187 #endif /* __TCM_FC_H__ */