1 /*******************************************************************************
2 * This file contains the main functions related to Initiator Node Attributes.
4 * (c) Copyright 2007-2013 Datera, Inc.
6 * Author: Nicholas A. Bellinger <nab@linux-iscsi.org>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 ******************************************************************************/
19 #include <target/target_core_base.h>
21 #include "iscsi_target_core.h"
22 #include "iscsi_target_device.h"
23 #include "iscsi_target_tpg.h"
24 #include "iscsi_target_util.h"
25 #include "iscsi_target_nodeattrib.h"
27 static inline char *iscsit_na_get_initiatorname(
28 struct iscsi_node_acl
*nacl
)
30 struct se_node_acl
*se_nacl
= &nacl
->se_node_acl
;
32 return &se_nacl
->initiatorname
[0];
35 void iscsit_set_default_node_attribues(
36 struct iscsi_node_acl
*acl
)
38 struct iscsi_node_attrib
*a
= &acl
->node_attrib
;
40 a
->dataout_timeout
= NA_DATAOUT_TIMEOUT
;
41 a
->dataout_timeout_retries
= NA_DATAOUT_TIMEOUT_RETRIES
;
42 a
->nopin_timeout
= NA_NOPIN_TIMEOUT
;
43 a
->nopin_response_timeout
= NA_NOPIN_RESPONSE_TIMEOUT
;
44 a
->random_datain_pdu_offsets
= NA_RANDOM_DATAIN_PDU_OFFSETS
;
45 a
->random_datain_seq_offsets
= NA_RANDOM_DATAIN_SEQ_OFFSETS
;
46 a
->random_r2t_offsets
= NA_RANDOM_R2T_OFFSETS
;
47 a
->default_erl
= NA_DEFAULT_ERL
;
50 int iscsit_na_dataout_timeout(
51 struct iscsi_node_acl
*acl
,
54 struct iscsi_node_attrib
*a
= &acl
->node_attrib
;
56 if (dataout_timeout
> NA_DATAOUT_TIMEOUT_MAX
) {
57 pr_err("Requested DataOut Timeout %u larger than"
58 " maximum %u\n", dataout_timeout
,
59 NA_DATAOUT_TIMEOUT_MAX
);
61 } else if (dataout_timeout
< NA_DATAOUT_TIMEOUT_MIX
) {
62 pr_err("Requested DataOut Timeout %u smaller than"
63 " minimum %u\n", dataout_timeout
,
64 NA_DATAOUT_TIMEOUT_MIX
);
68 a
->dataout_timeout
= dataout_timeout
;
69 pr_debug("Set DataOut Timeout to %u for Initiator Node"
70 " %s\n", a
->dataout_timeout
, iscsit_na_get_initiatorname(acl
));
75 int iscsit_na_dataout_timeout_retries(
76 struct iscsi_node_acl
*acl
,
77 u32 dataout_timeout_retries
)
79 struct iscsi_node_attrib
*a
= &acl
->node_attrib
;
81 if (dataout_timeout_retries
> NA_DATAOUT_TIMEOUT_RETRIES_MAX
) {
82 pr_err("Requested DataOut Timeout Retries %u larger"
83 " than maximum %u", dataout_timeout_retries
,
84 NA_DATAOUT_TIMEOUT_RETRIES_MAX
);
86 } else if (dataout_timeout_retries
< NA_DATAOUT_TIMEOUT_RETRIES_MIN
) {
87 pr_err("Requested DataOut Timeout Retries %u smaller"
88 " than minimum %u", dataout_timeout_retries
,
89 NA_DATAOUT_TIMEOUT_RETRIES_MIN
);
93 a
->dataout_timeout_retries
= dataout_timeout_retries
;
94 pr_debug("Set DataOut Timeout Retries to %u for"
95 " Initiator Node %s\n", a
->dataout_timeout_retries
,
96 iscsit_na_get_initiatorname(acl
));
101 int iscsit_na_nopin_timeout(
102 struct iscsi_node_acl
*acl
,
105 struct iscsi_node_attrib
*a
= &acl
->node_attrib
;
106 struct iscsi_session
*sess
;
107 struct iscsi_conn
*conn
;
108 struct se_node_acl
*se_nacl
= &a
->nacl
->se_node_acl
;
109 struct se_session
*se_sess
;
110 u32 orig_nopin_timeout
= a
->nopin_timeout
;
112 if (nopin_timeout
> NA_NOPIN_TIMEOUT_MAX
) {
113 pr_err("Requested NopIn Timeout %u larger than maximum"
114 " %u\n", nopin_timeout
, NA_NOPIN_TIMEOUT_MAX
);
116 } else if ((nopin_timeout
< NA_NOPIN_TIMEOUT_MIN
) &&
117 (nopin_timeout
!= 0)) {
118 pr_err("Requested NopIn Timeout %u smaller than"
119 " minimum %u and not 0\n", nopin_timeout
,
120 NA_NOPIN_TIMEOUT_MIN
);
124 a
->nopin_timeout
= nopin_timeout
;
125 pr_debug("Set NopIn Timeout to %u for Initiator"
126 " Node %s\n", a
->nopin_timeout
,
127 iscsit_na_get_initiatorname(acl
));
129 * Reenable disabled nopin_timeout timer for all iSCSI connections.
131 if (!orig_nopin_timeout
) {
132 spin_lock_bh(&se_nacl
->nacl_sess_lock
);
133 se_sess
= se_nacl
->nacl_sess
;
135 sess
= se_sess
->fabric_sess_ptr
;
137 spin_lock(&sess
->conn_lock
);
138 list_for_each_entry(conn
, &sess
->sess_conn_list
,
140 if (conn
->conn_state
!=
141 TARG_CONN_STATE_LOGGED_IN
)
144 spin_lock(&conn
->nopin_timer_lock
);
145 __iscsit_start_nopin_timer(conn
);
146 spin_unlock(&conn
->nopin_timer_lock
);
148 spin_unlock(&sess
->conn_lock
);
150 spin_unlock_bh(&se_nacl
->nacl_sess_lock
);
156 int iscsit_na_nopin_response_timeout(
157 struct iscsi_node_acl
*acl
,
158 u32 nopin_response_timeout
)
160 struct iscsi_node_attrib
*a
= &acl
->node_attrib
;
162 if (nopin_response_timeout
> NA_NOPIN_RESPONSE_TIMEOUT_MAX
) {
163 pr_err("Requested NopIn Response Timeout %u larger"
164 " than maximum %u\n", nopin_response_timeout
,
165 NA_NOPIN_RESPONSE_TIMEOUT_MAX
);
167 } else if (nopin_response_timeout
< NA_NOPIN_RESPONSE_TIMEOUT_MIN
) {
168 pr_err("Requested NopIn Response Timeout %u smaller"
169 " than minimum %u\n", nopin_response_timeout
,
170 NA_NOPIN_RESPONSE_TIMEOUT_MIN
);
174 a
->nopin_response_timeout
= nopin_response_timeout
;
175 pr_debug("Set NopIn Response Timeout to %u for"
176 " Initiator Node %s\n", a
->nopin_timeout
,
177 iscsit_na_get_initiatorname(acl
));
182 int iscsit_na_random_datain_pdu_offsets(
183 struct iscsi_node_acl
*acl
,
184 u32 random_datain_pdu_offsets
)
186 struct iscsi_node_attrib
*a
= &acl
->node_attrib
;
188 if (random_datain_pdu_offsets
!= 0 && random_datain_pdu_offsets
!= 1) {
189 pr_err("Requested Random DataIN PDU Offsets: %u not"
190 " 0 or 1\n", random_datain_pdu_offsets
);
194 a
->random_datain_pdu_offsets
= random_datain_pdu_offsets
;
195 pr_debug("Set Random DataIN PDU Offsets to %u for"
196 " Initiator Node %s\n", a
->random_datain_pdu_offsets
,
197 iscsit_na_get_initiatorname(acl
));
202 int iscsit_na_random_datain_seq_offsets(
203 struct iscsi_node_acl
*acl
,
204 u32 random_datain_seq_offsets
)
206 struct iscsi_node_attrib
*a
= &acl
->node_attrib
;
208 if (random_datain_seq_offsets
!= 0 && random_datain_seq_offsets
!= 1) {
209 pr_err("Requested Random DataIN Sequence Offsets: %u"
210 " not 0 or 1\n", random_datain_seq_offsets
);
214 a
->random_datain_seq_offsets
= random_datain_seq_offsets
;
215 pr_debug("Set Random DataIN Sequence Offsets to %u for"
216 " Initiator Node %s\n", a
->random_datain_seq_offsets
,
217 iscsit_na_get_initiatorname(acl
));
222 int iscsit_na_random_r2t_offsets(
223 struct iscsi_node_acl
*acl
,
224 u32 random_r2t_offsets
)
226 struct iscsi_node_attrib
*a
= &acl
->node_attrib
;
228 if (random_r2t_offsets
!= 0 && random_r2t_offsets
!= 1) {
229 pr_err("Requested Random R2T Offsets: %u not"
230 " 0 or 1\n", random_r2t_offsets
);
234 a
->random_r2t_offsets
= random_r2t_offsets
;
235 pr_debug("Set Random R2T Offsets to %u for"
236 " Initiator Node %s\n", a
->random_r2t_offsets
,
237 iscsit_na_get_initiatorname(acl
));
242 int iscsit_na_default_erl(
243 struct iscsi_node_acl
*acl
,
246 struct iscsi_node_attrib
*a
= &acl
->node_attrib
;
248 if (default_erl
!= 0 && default_erl
!= 1 && default_erl
!= 2) {
249 pr_err("Requested default ERL: %u not 0, 1, or 2\n",
254 a
->default_erl
= default_erl
;
255 pr_debug("Set use ERL0 flag to %u for Initiator"
256 " Node %s\n", a
->default_erl
,
257 iscsit_na_get_initiatorname(acl
));