Deleted Added
sdiff udiff text old ( 274866 ) new ( 274939 )
full compact
1/*-
2 * Copyright (c) 2012 The FreeBSD Foundation
3 * All rights reserved.
4 *
5 * This software was developed by Edward Tomasz Napierala under sponsorship
6 * from the FreeBSD Foundation.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $FreeBSD: stable/10/usr.sbin/ctld/ctld.h 274866 2014-11-22 17:39:39Z trasz $
30 */
31
32#ifndef CTLD_H
33#define CTLD_H
34
35#include <sys/queue.h>
36#ifdef ICL_KERNEL_PROXY
37#include <sys/types.h>
38#endif
39#include <sys/socket.h>
40#include <stdbool.h>
41#include <libutil.h>
42#include <openssl/md5.h>
43
44#define DEFAULT_CONFIG_PATH "/etc/ctl.conf"
45#define DEFAULT_PIDFILE "/var/run/ctld.pid"
46#define DEFAULT_BLOCKSIZE 512
47
48#define MAX_NAME_LEN 223
49#define MAX_DATA_SEGMENT_LENGTH (128 * 1024)
50#define MAX_BURST_LENGTH 16776192
51
52struct auth {
53 TAILQ_ENTRY(auth) a_next;
54 struct auth_group *a_auth_group;
55 char *a_user;
56 char *a_secret;
57 char *a_mutual_user;
58 char *a_mutual_secret;
59};
60
61struct auth_name {
62 TAILQ_ENTRY(auth_name) an_next;
63 struct auth_group *an_auth_group;
64 char *an_initator_name;
65};
66
67struct auth_portal {
68 TAILQ_ENTRY(auth_portal) ap_next;
69 struct auth_group *ap_auth_group;
70 char *ap_initator_portal;
71 struct sockaddr_storage ap_sa;
72 int ap_mask;
73};
74
75#define AG_TYPE_UNKNOWN 0
76#define AG_TYPE_DENY 1
77#define AG_TYPE_NO_AUTHENTICATION 2
78#define AG_TYPE_CHAP 3
79#define AG_TYPE_CHAP_MUTUAL 4
80
81struct auth_group {
82 TAILQ_ENTRY(auth_group) ag_next;
83 struct conf *ag_conf;
84 char *ag_name;
85 struct target *ag_target;
86 int ag_type;
87 TAILQ_HEAD(, auth) ag_auths;
88 TAILQ_HEAD(, auth_name) ag_names;
89 TAILQ_HEAD(, auth_portal) ag_portals;
90};
91
92struct portal {
93 TAILQ_ENTRY(portal) p_next;
94 struct portal_group *p_portal_group;
95 bool p_iser;
96 char *p_listen;
97 struct addrinfo *p_ai;
98#ifdef ICL_KERNEL_PROXY
99 int p_id;
100#endif
101
102 TAILQ_HEAD(, target) p_targets;
103 int p_socket;
104};
105
106struct portal_group {
107 TAILQ_ENTRY(portal_group) pg_next;
108 struct conf *pg_conf;
109 char *pg_name;
110 struct auth_group *pg_discovery_auth_group;
111 bool pg_unassigned;
112 TAILQ_HEAD(, portal) pg_portals;
113
114 uint16_t pg_tag;
115};
116
117struct lun_option {
118 TAILQ_ENTRY(lun_option) lo_next;
119 struct lun *lo_lun;
120 char *lo_name;
121 char *lo_value;
122};
123
124struct lun {
125 TAILQ_ENTRY(lun) l_next;
126 TAILQ_HEAD(, lun_option) l_options;
127 struct target *l_target;
128 int l_lun;
129 char *l_backend;
130 int l_blocksize;
131 char *l_device_id;
132 char *l_path;
133 char *l_serial;
134 int64_t l_size;
135
136 int l_ctl_lun;
137};
138
139struct target {
140 TAILQ_ENTRY(target) t_next;
141 TAILQ_HEAD(, lun) t_luns;
142 struct conf *t_conf;
143 struct auth_group *t_auth_group;
144 struct portal_group *t_portal_group;
145 char *t_name;
146 char *t_alias;
147};
148
149struct conf {
150 char *conf_pidfile_path;
151 TAILQ_HEAD(, target) conf_targets;
152 TAILQ_HEAD(, auth_group) conf_auth_groups;
153 TAILQ_HEAD(, portal_group) conf_portal_groups;
154 int conf_debug;
155 int conf_timeout;
156 int conf_maxproc;
157
158 uint16_t conf_last_portal_group_tag;
159#ifdef ICL_KERNEL_PROXY
160 int conf_portal_id;
161#endif
162 struct pidfh *conf_pidfh;
163
164 bool conf_default_pg_defined;
165 bool conf_default_ag_defined;
166 bool conf_kernel_port_on;
167};
168
169#define CONN_SESSION_TYPE_NONE 0
170#define CONN_SESSION_TYPE_DISCOVERY 1
171#define CONN_SESSION_TYPE_NORMAL 2
172
173#define CONN_DIGEST_NONE 0
174#define CONN_DIGEST_CRC32C 1
175
176struct connection {
177 struct portal *conn_portal;
178 struct target *conn_target;
179 int conn_socket;
180 int conn_session_type;
181 char *conn_initiator_name;
182 char *conn_initiator_addr;
183 char *conn_initiator_alias;
184 uint8_t conn_initiator_isid[6];
185 struct sockaddr_storage conn_initiator_sa;
186 uint32_t conn_cmdsn;
187 uint32_t conn_statsn;
188 size_t conn_max_data_segment_length;
189 size_t conn_max_burst_length;
190 int conn_immediate_data;
191 int conn_header_digest;
192 int conn_data_digest;
193};
194
195struct pdu {
196 struct connection *pdu_connection;
197 struct iscsi_bhs *pdu_bhs;
198 char *pdu_data;
199 size_t pdu_data_len;
200};
201
202#define KEYS_MAX 1024
203
204struct keys {
205 char *keys_names[KEYS_MAX];
206 char *keys_values[KEYS_MAX];
207 char *keys_data;
208 size_t keys_data_len;
209};
210
211#define CHAP_CHALLENGE_LEN 1024
212
213struct chap {
214 unsigned char chap_id;
215 char chap_challenge[CHAP_CHALLENGE_LEN];
216 char chap_response[MD5_DIGEST_LENGTH];
217};
218
219struct rchap {
220 char *rchap_secret;
221 unsigned char rchap_id;
222 void *rchap_challenge;
223 size_t rchap_challenge_len;
224};
225
226struct chap *chap_new(void);
227char *chap_get_id(const struct chap *chap);
228char *chap_get_challenge(const struct chap *chap);
229int chap_receive(struct chap *chap, const char *response);
230int chap_authenticate(struct chap *chap,
231 const char *secret);
232void chap_delete(struct chap *chap);
233
234struct rchap *rchap_new(const char *secret);
235int rchap_receive(struct rchap *rchap,
236 const char *id, const char *challenge);
237char *rchap_get_response(struct rchap *rchap);
238void rchap_delete(struct rchap *rchap);
239
240struct conf *conf_new(void);
241struct conf *conf_new_from_file(const char *path);
242struct conf *conf_new_from_kernel(void);
243void conf_delete(struct conf *conf);
244int conf_verify(struct conf *conf);
245
246struct auth_group *auth_group_new(struct conf *conf, const char *name);
247void auth_group_delete(struct auth_group *ag);
248struct auth_group *auth_group_find(const struct conf *conf,
249 const char *name);
250int auth_group_set_type_str(struct auth_group *ag,
251 const char *type);
252
253const struct auth *auth_new_chap(struct auth_group *ag,
254 const char *user, const char *secret);
255const struct auth *auth_new_chap_mutual(struct auth_group *ag,
256 const char *user, const char *secret,
257 const char *user2, const char *secret2);
258const struct auth *auth_find(const struct auth_group *ag,
259 const char *user);
260
261const struct auth_name *auth_name_new(struct auth_group *ag,
262 const char *initiator_name);
263bool auth_name_defined(const struct auth_group *ag);
264const struct auth_name *auth_name_find(const struct auth_group *ag,
265 const char *initiator_name);
266
267const struct auth_portal *auth_portal_new(struct auth_group *ag,
268 const char *initiator_portal);
269bool auth_portal_defined(const struct auth_group *ag);
270const struct auth_portal *auth_portal_find(const struct auth_group *ag,
271 const struct sockaddr_storage *sa);
272
273struct portal_group *portal_group_new(struct conf *conf, const char *name);
274void portal_group_delete(struct portal_group *pg);
275struct portal_group *portal_group_find(const struct conf *conf,
276 const char *name);
277int portal_group_add_listen(struct portal_group *pg,
278 const char *listen, bool iser);
279
280struct target *target_new(struct conf *conf, const char *name);
281void target_delete(struct target *target);
282struct target *target_find(struct conf *conf,
283 const char *name);
284
285struct lun *lun_new(struct target *target, int lun_id);
286void lun_delete(struct lun *lun);
287struct lun *lun_find(const struct target *target, int lun_id);
288void lun_set_backend(struct lun *lun, const char *value);
289void lun_set_blocksize(struct lun *lun, size_t value);
290void lun_set_device_id(struct lun *lun, const char *value);
291void lun_set_path(struct lun *lun, const char *value);
292void lun_set_serial(struct lun *lun, const char *value);
293void lun_set_size(struct lun *lun, size_t value);
294void lun_set_ctl_lun(struct lun *lun, uint32_t value);
295
296struct lun_option *lun_option_new(struct lun *lun,
297 const char *name, const char *value);
298void lun_option_delete(struct lun_option *clo);
299struct lun_option *lun_option_find(const struct lun *lun,
300 const char *name);
301void lun_option_set(struct lun_option *clo,
302 const char *value);
303
304void kernel_init(void);
305int kernel_lun_add(struct lun *lun);
306int kernel_lun_resize(struct lun *lun);
307int kernel_lun_remove(struct lun *lun);
308void kernel_handoff(struct connection *conn);
309int kernel_port_add(struct target *targ);
310int kernel_port_remove(struct target *targ);
311void kernel_capsicate(void);
312
313#ifdef ICL_KERNEL_PROXY
314void kernel_listen(struct addrinfo *ai, bool iser,
315 int portal_id);
316void kernel_accept(int *connection_id, int *portal_id,
317 struct sockaddr *client_sa,
318 socklen_t *client_salen);
319void kernel_send(struct pdu *pdu);
320void kernel_receive(struct pdu *pdu);
321#endif
322
323struct keys *keys_new(void);
324void keys_delete(struct keys *keys);
325void keys_load(struct keys *keys, const struct pdu *pdu);
326void keys_save(struct keys *keys, struct pdu *pdu);
327const char *keys_find(struct keys *keys, const char *name);
328int keys_find_int(struct keys *keys, const char *name);
329void keys_add(struct keys *keys,
330 const char *name, const char *value);
331void keys_add_int(struct keys *keys,
332 const char *name, int value);
333
334struct pdu *pdu_new(struct connection *conn);
335struct pdu *pdu_new_response(struct pdu *request);
336void pdu_delete(struct pdu *pdu);
337void pdu_receive(struct pdu *request);
338void pdu_send(struct pdu *response);
339
340void login(struct connection *conn);
341
342void discovery(struct connection *conn);
343
344void log_init(int level);
345void log_set_peer_name(const char *name);
346void log_set_peer_addr(const char *addr);
347void log_err(int, const char *, ...)
348 __dead2 __printflike(2, 3);
349void log_errx(int, const char *, ...)
350 __dead2 __printflike(2, 3);
351void log_warn(const char *, ...) __printflike(1, 2);
352void log_warnx(const char *, ...) __printflike(1, 2);
353void log_debugx(const char *, ...) __printflike(1, 2);
354
355char *checked_strdup(const char *);
356bool valid_iscsi_name(const char *name);
357bool timed_out(void);
358
359#endif /* !CTLD_H */