]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.sbin/ctld/ctld.c
MFC r288486, r288488: Set default block size for CD to expected 2048 bytes.
[FreeBSD/stable/10.git] / usr.sbin / ctld / ctld.c
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  */
30
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33
34 #include <sys/types.h>
35 #include <sys/time.h>
36 #include <sys/socket.h>
37 #include <sys/wait.h>
38 #include <netinet/in.h>
39 #include <arpa/inet.h>
40 #include <assert.h>
41 #include <ctype.h>
42 #include <errno.h>
43 #include <netdb.h>
44 #include <signal.h>
45 #include <stdbool.h>
46 #include <stdio.h>
47 #include <stdint.h>
48 #include <stdlib.h>
49 #include <string.h>
50 #include <unistd.h>
51
52 #include "ctld.h"
53 #include "isns.h"
54
55 bool proxy_mode = false;
56
57 static volatile bool sighup_received = false;
58 static volatile bool sigterm_received = false;
59 static volatile bool sigalrm_received = false;
60
61 static int nchildren = 0;
62 static uint16_t last_portal_group_tag = 0xff;
63
64 static void
65 usage(void)
66 {
67
68         fprintf(stderr, "usage: ctld [-d][-f config-file]\n");
69         exit(1);
70 }
71
72 char *
73 checked_strdup(const char *s)
74 {
75         char *c;
76
77         c = strdup(s);
78         if (c == NULL)
79                 log_err(1, "strdup");
80         return (c);
81 }
82
83 struct conf *
84 conf_new(void)
85 {
86         struct conf *conf;
87
88         conf = calloc(1, sizeof(*conf));
89         if (conf == NULL)
90                 log_err(1, "calloc");
91         TAILQ_INIT(&conf->conf_luns);
92         TAILQ_INIT(&conf->conf_targets);
93         TAILQ_INIT(&conf->conf_auth_groups);
94         TAILQ_INIT(&conf->conf_ports);
95         TAILQ_INIT(&conf->conf_portal_groups);
96         TAILQ_INIT(&conf->conf_pports);
97         TAILQ_INIT(&conf->conf_isns);
98
99         conf->conf_isns_period = 900;
100         conf->conf_isns_timeout = 5;
101         conf->conf_debug = 0;
102         conf->conf_timeout = 60;
103         conf->conf_maxproc = 30;
104
105         return (conf);
106 }
107
108 void
109 conf_delete(struct conf *conf)
110 {
111         struct lun *lun, *ltmp;
112         struct target *targ, *tmp;
113         struct auth_group *ag, *cagtmp;
114         struct portal_group *pg, *cpgtmp;
115         struct pport *pp, *pptmp;
116         struct isns *is, *istmp;
117
118         assert(conf->conf_pidfh == NULL);
119
120         TAILQ_FOREACH_SAFE(lun, &conf->conf_luns, l_next, ltmp)
121                 lun_delete(lun);
122         TAILQ_FOREACH_SAFE(targ, &conf->conf_targets, t_next, tmp)
123                 target_delete(targ);
124         TAILQ_FOREACH_SAFE(ag, &conf->conf_auth_groups, ag_next, cagtmp)
125                 auth_group_delete(ag);
126         TAILQ_FOREACH_SAFE(pg, &conf->conf_portal_groups, pg_next, cpgtmp)
127                 portal_group_delete(pg);
128         TAILQ_FOREACH_SAFE(pp, &conf->conf_pports, pp_next, pptmp)
129                 pport_delete(pp);
130         TAILQ_FOREACH_SAFE(is, &conf->conf_isns, i_next, istmp)
131                 isns_delete(is);
132         assert(TAILQ_EMPTY(&conf->conf_ports));
133         free(conf->conf_pidfile_path);
134         free(conf);
135 }
136
137 static struct auth *
138 auth_new(struct auth_group *ag)
139 {
140         struct auth *auth;
141
142         auth = calloc(1, sizeof(*auth));
143         if (auth == NULL)
144                 log_err(1, "calloc");
145         auth->a_auth_group = ag;
146         TAILQ_INSERT_TAIL(&ag->ag_auths, auth, a_next);
147         return (auth);
148 }
149
150 static void
151 auth_delete(struct auth *auth)
152 {
153         TAILQ_REMOVE(&auth->a_auth_group->ag_auths, auth, a_next);
154
155         free(auth->a_user);
156         free(auth->a_secret);
157         free(auth->a_mutual_user);
158         free(auth->a_mutual_secret);
159         free(auth);
160 }
161
162 const struct auth *
163 auth_find(const struct auth_group *ag, const char *user)
164 {
165         const struct auth *auth;
166
167         TAILQ_FOREACH(auth, &ag->ag_auths, a_next) {
168                 if (strcmp(auth->a_user, user) == 0)
169                         return (auth);
170         }
171
172         return (NULL);
173 }
174
175 static void
176 auth_check_secret_length(struct auth *auth)
177 {
178         size_t len;
179
180         len = strlen(auth->a_secret);
181         if (len > 16) {
182                 if (auth->a_auth_group->ag_name != NULL)
183                         log_warnx("secret for user \"%s\", auth-group \"%s\", "
184                             "is too long; it should be at most 16 characters "
185                             "long", auth->a_user, auth->a_auth_group->ag_name);
186                 else
187                         log_warnx("secret for user \"%s\", target \"%s\", "
188                             "is too long; it should be at most 16 characters "
189                             "long", auth->a_user,
190                             auth->a_auth_group->ag_target->t_name);
191         }
192         if (len < 12) {
193                 if (auth->a_auth_group->ag_name != NULL)
194                         log_warnx("secret for user \"%s\", auth-group \"%s\", "
195                             "is too short; it should be at least 12 characters "
196                             "long", auth->a_user,
197                             auth->a_auth_group->ag_name);
198                 else
199                         log_warnx("secret for user \"%s\", target \"%s\", "
200                             "is too short; it should be at least 16 characters "
201                             "long", auth->a_user,
202                             auth->a_auth_group->ag_target->t_name);
203         }
204
205         if (auth->a_mutual_secret != NULL) {
206                 len = strlen(auth->a_mutual_secret);
207                 if (len > 16) {
208                         if (auth->a_auth_group->ag_name != NULL)
209                                 log_warnx("mutual secret for user \"%s\", "
210                                     "auth-group \"%s\", is too long; it should "
211                                     "be at most 16 characters long",
212                                     auth->a_user, auth->a_auth_group->ag_name);
213                         else
214                                 log_warnx("mutual secret for user \"%s\", "
215                                     "target \"%s\", is too long; it should "
216                                     "be at most 16 characters long",
217                                     auth->a_user,
218                                     auth->a_auth_group->ag_target->t_name);
219                 }
220                 if (len < 12) {
221                         if (auth->a_auth_group->ag_name != NULL)
222                                 log_warnx("mutual secret for user \"%s\", "
223                                     "auth-group \"%s\", is too short; it "
224                                     "should be at least 12 characters long",
225                                     auth->a_user, auth->a_auth_group->ag_name);
226                         else
227                                 log_warnx("mutual secret for user \"%s\", "
228                                     "target \"%s\", is too short; it should be "
229                                     "at least 16 characters long",
230                                     auth->a_user,
231                                     auth->a_auth_group->ag_target->t_name);
232                 }
233         }
234 }
235
236 const struct auth *
237 auth_new_chap(struct auth_group *ag, const char *user,
238     const char *secret)
239 {
240         struct auth *auth;
241
242         if (ag->ag_type == AG_TYPE_UNKNOWN)
243                 ag->ag_type = AG_TYPE_CHAP;
244         if (ag->ag_type != AG_TYPE_CHAP) {
245                 if (ag->ag_name != NULL)
246                         log_warnx("cannot mix \"chap\" authentication with "
247                             "other types for auth-group \"%s\"", ag->ag_name);
248                 else
249                         log_warnx("cannot mix \"chap\" authentication with "
250                             "other types for target \"%s\"",
251                             ag->ag_target->t_name);
252                 return (NULL);
253         }
254
255         auth = auth_new(ag);
256         auth->a_user = checked_strdup(user);
257         auth->a_secret = checked_strdup(secret);
258
259         auth_check_secret_length(auth);
260
261         return (auth);
262 }
263
264 const struct auth *
265 auth_new_chap_mutual(struct auth_group *ag, const char *user,
266     const char *secret, const char *user2, const char *secret2)
267 {
268         struct auth *auth;
269
270         if (ag->ag_type == AG_TYPE_UNKNOWN)
271                 ag->ag_type = AG_TYPE_CHAP_MUTUAL;
272         if (ag->ag_type != AG_TYPE_CHAP_MUTUAL) {
273                 if (ag->ag_name != NULL)
274                         log_warnx("cannot mix \"chap-mutual\" authentication "
275                             "with other types for auth-group \"%s\"",
276                             ag->ag_name);
277                 else
278                         log_warnx("cannot mix \"chap-mutual\" authentication "
279                             "with other types for target \"%s\"",
280                             ag->ag_target->t_name);
281                 return (NULL);
282         }
283
284         auth = auth_new(ag);
285         auth->a_user = checked_strdup(user);
286         auth->a_secret = checked_strdup(secret);
287         auth->a_mutual_user = checked_strdup(user2);
288         auth->a_mutual_secret = checked_strdup(secret2);
289
290         auth_check_secret_length(auth);
291
292         return (auth);
293 }
294
295 const struct auth_name *
296 auth_name_new(struct auth_group *ag, const char *name)
297 {
298         struct auth_name *an;
299
300         an = calloc(1, sizeof(*an));
301         if (an == NULL)
302                 log_err(1, "calloc");
303         an->an_auth_group = ag;
304         an->an_initator_name = checked_strdup(name);
305         TAILQ_INSERT_TAIL(&ag->ag_names, an, an_next);
306         return (an);
307 }
308
309 static void
310 auth_name_delete(struct auth_name *an)
311 {
312         TAILQ_REMOVE(&an->an_auth_group->ag_names, an, an_next);
313
314         free(an->an_initator_name);
315         free(an);
316 }
317
318 bool
319 auth_name_defined(const struct auth_group *ag)
320 {
321         if (TAILQ_EMPTY(&ag->ag_names))
322                 return (false);
323         return (true);
324 }
325
326 const struct auth_name *
327 auth_name_find(const struct auth_group *ag, const char *name)
328 {
329         const struct auth_name *auth_name;
330
331         TAILQ_FOREACH(auth_name, &ag->ag_names, an_next) {
332                 if (strcmp(auth_name->an_initator_name, name) == 0)
333                         return (auth_name);
334         }
335
336         return (NULL);
337 }
338
339 int
340 auth_name_check(const struct auth_group *ag, const char *initiator_name)
341 {
342         if (!auth_name_defined(ag))
343                 return (0);
344
345         if (auth_name_find(ag, initiator_name) == NULL)
346                 return (1);
347
348         return (0);
349 }
350
351 const struct auth_portal *
352 auth_portal_new(struct auth_group *ag, const char *portal)
353 {
354         struct auth_portal *ap;
355         char *net, *mask, *str, *tmp;
356         int len, dm, m;
357
358         ap = calloc(1, sizeof(*ap));
359         if (ap == NULL)
360                 log_err(1, "calloc");
361         ap->ap_auth_group = ag;
362         ap->ap_initator_portal = checked_strdup(portal);
363         mask = str = checked_strdup(portal);
364         net = strsep(&mask, "/");
365         if (net[0] == '[')
366                 net++;
367         len = strlen(net);
368         if (len == 0)
369                 goto error;
370         if (net[len - 1] == ']')
371                 net[len - 1] = 0;
372         if (strchr(net, ':') != NULL) {
373                 struct sockaddr_in6 *sin6 =
374                     (struct sockaddr_in6 *)&ap->ap_sa;
375
376                 sin6->sin6_len = sizeof(*sin6);
377                 sin6->sin6_family = AF_INET6;
378                 if (inet_pton(AF_INET6, net, &sin6->sin6_addr) <= 0)
379                         goto error;
380                 dm = 128;
381         } else {
382                 struct sockaddr_in *sin =
383                     (struct sockaddr_in *)&ap->ap_sa;
384
385                 sin->sin_len = sizeof(*sin);
386                 sin->sin_family = AF_INET;
387                 if (inet_pton(AF_INET, net, &sin->sin_addr) <= 0)
388                         goto error;
389                 dm = 32;
390         }
391         if (mask != NULL) {
392                 m = strtol(mask, &tmp, 0);
393                 if (m < 0 || m > dm || tmp[0] != 0)
394                         goto error;
395         } else
396                 m = dm;
397         ap->ap_mask = m;
398         free(str);
399         TAILQ_INSERT_TAIL(&ag->ag_portals, ap, ap_next);
400         return (ap);
401
402 error:
403         free(ap);
404         log_errx(1, "Incorrect initiator portal '%s'", portal);
405         return (NULL);
406 }
407
408 static void
409 auth_portal_delete(struct auth_portal *ap)
410 {
411         TAILQ_REMOVE(&ap->ap_auth_group->ag_portals, ap, ap_next);
412
413         free(ap->ap_initator_portal);
414         free(ap);
415 }
416
417 bool
418 auth_portal_defined(const struct auth_group *ag)
419 {
420         if (TAILQ_EMPTY(&ag->ag_portals))
421                 return (false);
422         return (true);
423 }
424
425 const struct auth_portal *
426 auth_portal_find(const struct auth_group *ag, const struct sockaddr_storage *ss)
427 {
428         const struct auth_portal *ap;
429         const uint8_t *a, *b;
430         int i;
431         uint8_t bmask;
432
433         TAILQ_FOREACH(ap, &ag->ag_portals, ap_next) {
434                 if (ap->ap_sa.ss_family != ss->ss_family)
435                         continue;
436                 if (ss->ss_family == AF_INET) {
437                         a = (const uint8_t *)
438                             &((const struct sockaddr_in *)ss)->sin_addr;
439                         b = (const uint8_t *)
440                             &((const struct sockaddr_in *)&ap->ap_sa)->sin_addr;
441                 } else {
442                         a = (const uint8_t *)
443                             &((const struct sockaddr_in6 *)ss)->sin6_addr;
444                         b = (const uint8_t *)
445                             &((const struct sockaddr_in6 *)&ap->ap_sa)->sin6_addr;
446                 }
447                 for (i = 0; i < ap->ap_mask / 8; i++) {
448                         if (a[i] != b[i])
449                                 goto next;
450                 }
451                 if (ap->ap_mask % 8) {
452                         bmask = 0xff << (8 - (ap->ap_mask % 8));
453                         if ((a[i] & bmask) != (b[i] & bmask))
454                                 goto next;
455                 }
456                 return (ap);
457 next:
458                 ;
459         }
460
461         return (NULL);
462 }
463
464 int
465 auth_portal_check(const struct auth_group *ag, const struct sockaddr_storage *sa)
466 {
467
468         if (!auth_portal_defined(ag))
469                 return (0);
470
471         if (auth_portal_find(ag, sa) == NULL)
472                 return (1);
473
474         return (0);
475 }
476
477 struct auth_group *
478 auth_group_new(struct conf *conf, const char *name)
479 {
480         struct auth_group *ag;
481
482         if (name != NULL) {
483                 ag = auth_group_find(conf, name);
484                 if (ag != NULL) {
485                         log_warnx("duplicated auth-group \"%s\"", name);
486                         return (NULL);
487                 }
488         }
489
490         ag = calloc(1, sizeof(*ag));
491         if (ag == NULL)
492                 log_err(1, "calloc");
493         if (name != NULL)
494                 ag->ag_name = checked_strdup(name);
495         TAILQ_INIT(&ag->ag_auths);
496         TAILQ_INIT(&ag->ag_names);
497         TAILQ_INIT(&ag->ag_portals);
498         ag->ag_conf = conf;
499         TAILQ_INSERT_TAIL(&conf->conf_auth_groups, ag, ag_next);
500
501         return (ag);
502 }
503
504 void
505 auth_group_delete(struct auth_group *ag)
506 {
507         struct auth *auth, *auth_tmp;
508         struct auth_name *auth_name, *auth_name_tmp;
509         struct auth_portal *auth_portal, *auth_portal_tmp;
510
511         TAILQ_REMOVE(&ag->ag_conf->conf_auth_groups, ag, ag_next);
512
513         TAILQ_FOREACH_SAFE(auth, &ag->ag_auths, a_next, auth_tmp)
514                 auth_delete(auth);
515         TAILQ_FOREACH_SAFE(auth_name, &ag->ag_names, an_next, auth_name_tmp)
516                 auth_name_delete(auth_name);
517         TAILQ_FOREACH_SAFE(auth_portal, &ag->ag_portals, ap_next,
518             auth_portal_tmp)
519                 auth_portal_delete(auth_portal);
520         free(ag->ag_name);
521         free(ag);
522 }
523
524 struct auth_group *
525 auth_group_find(const struct conf *conf, const char *name)
526 {
527         struct auth_group *ag;
528
529         TAILQ_FOREACH(ag, &conf->conf_auth_groups, ag_next) {
530                 if (ag->ag_name != NULL && strcmp(ag->ag_name, name) == 0)
531                         return (ag);
532         }
533
534         return (NULL);
535 }
536
537 int
538 auth_group_set_type(struct auth_group *ag, const char *str)
539 {
540         int type;
541
542         if (strcmp(str, "none") == 0) {
543                 type = AG_TYPE_NO_AUTHENTICATION;
544         } else if (strcmp(str, "deny") == 0) {
545                 type = AG_TYPE_DENY;
546         } else if (strcmp(str, "chap") == 0) {
547                 type = AG_TYPE_CHAP;
548         } else if (strcmp(str, "chap-mutual") == 0) {
549                 type = AG_TYPE_CHAP_MUTUAL;
550         } else {
551                 if (ag->ag_name != NULL)
552                         log_warnx("invalid auth-type \"%s\" for auth-group "
553                             "\"%s\"", str, ag->ag_name);
554                 else
555                         log_warnx("invalid auth-type \"%s\" for target "
556                             "\"%s\"", str, ag->ag_target->t_name);
557                 return (1);
558         }
559
560         if (ag->ag_type != AG_TYPE_UNKNOWN && ag->ag_type != type) {
561                 if (ag->ag_name != NULL) {
562                         log_warnx("cannot set auth-type to \"%s\" for "
563                             "auth-group \"%s\"; already has a different "
564                             "type", str, ag->ag_name);
565                 } else {
566                         log_warnx("cannot set auth-type to \"%s\" for target "
567                             "\"%s\"; already has a different type",
568                             str, ag->ag_target->t_name);
569                 }
570                 return (1);
571         }
572
573         ag->ag_type = type;
574
575         return (0);
576 }
577
578 static struct portal *
579 portal_new(struct portal_group *pg)
580 {
581         struct portal *portal;
582
583         portal = calloc(1, sizeof(*portal));
584         if (portal == NULL)
585                 log_err(1, "calloc");
586         TAILQ_INIT(&portal->p_targets);
587         portal->p_portal_group = pg;
588         TAILQ_INSERT_TAIL(&pg->pg_portals, portal, p_next);
589         return (portal);
590 }
591
592 static void
593 portal_delete(struct portal *portal)
594 {
595
596         TAILQ_REMOVE(&portal->p_portal_group->pg_portals, portal, p_next);
597         if (portal->p_ai != NULL)
598                 freeaddrinfo(portal->p_ai);
599         free(portal->p_listen);
600         free(portal);
601 }
602
603 struct portal_group *
604 portal_group_new(struct conf *conf, const char *name)
605 {
606         struct portal_group *pg;
607
608         pg = portal_group_find(conf, name);
609         if (pg != NULL) {
610                 log_warnx("duplicated portal-group \"%s\"", name);
611                 return (NULL);
612         }
613
614         pg = calloc(1, sizeof(*pg));
615         if (pg == NULL)
616                 log_err(1, "calloc");
617         pg->pg_name = checked_strdup(name);
618         TAILQ_INIT(&pg->pg_portals);
619         TAILQ_INIT(&pg->pg_ports);
620         pg->pg_conf = conf;
621         pg->pg_tag = 0;         /* Assigned later in conf_apply(). */
622         TAILQ_INSERT_TAIL(&conf->conf_portal_groups, pg, pg_next);
623
624         return (pg);
625 }
626
627 void
628 portal_group_delete(struct portal_group *pg)
629 {
630         struct portal *portal, *tmp;
631         struct port *port, *tport;
632
633         TAILQ_FOREACH_SAFE(port, &pg->pg_ports, p_pgs, tport)
634                 port_delete(port);
635         TAILQ_REMOVE(&pg->pg_conf->conf_portal_groups, pg, pg_next);
636
637         TAILQ_FOREACH_SAFE(portal, &pg->pg_portals, p_next, tmp)
638                 portal_delete(portal);
639         free(pg->pg_name);
640         free(pg->pg_redirection);
641         free(pg);
642 }
643
644 struct portal_group *
645 portal_group_find(const struct conf *conf, const char *name)
646 {
647         struct portal_group *pg;
648
649         TAILQ_FOREACH(pg, &conf->conf_portal_groups, pg_next) {
650                 if (strcmp(pg->pg_name, name) == 0)
651                         return (pg);
652         }
653
654         return (NULL);
655 }
656
657 static int
658 parse_addr_port(char *arg, const char *def_port, struct addrinfo **ai)
659 {
660         struct addrinfo hints;
661         char *str, *addr, *ch;
662         const char *port;
663         int error, colons = 0;
664
665         str = arg = strdup(arg);
666         if (arg[0] == '[') {
667                 /*
668                  * IPv6 address in square brackets, perhaps with port.
669                  */
670                 arg++;
671                 addr = strsep(&arg, "]");
672                 if (arg == NULL)
673                         return (1);
674                 if (arg[0] == '\0') {
675                         port = def_port;
676                 } else if (arg[0] == ':') {
677                         port = arg + 1;
678                 } else {
679                         free(str);
680                         return (1);
681                 }
682         } else {
683                 /*
684                  * Either IPv6 address without brackets - and without
685                  * a port - or IPv4 address.  Just count the colons.
686                  */
687                 for (ch = arg; *ch != '\0'; ch++) {
688                         if (*ch == ':')
689                                 colons++;
690                 }
691                 if (colons > 1) {
692                         addr = arg;
693                         port = def_port;
694                 } else {
695                         addr = strsep(&arg, ":");
696                         if (arg == NULL)
697                                 port = def_port;
698                         else
699                                 port = arg;
700                 }
701         }
702
703         memset(&hints, 0, sizeof(hints));
704         hints.ai_family = PF_UNSPEC;
705         hints.ai_socktype = SOCK_STREAM;
706         hints.ai_flags = AI_PASSIVE;
707         error = getaddrinfo(addr, port, &hints, ai);
708         free(str);
709         return ((error != 0) ? 1 : 0);
710 }
711
712 int
713 portal_group_add_listen(struct portal_group *pg, const char *value, bool iser)
714 {
715         struct portal *portal;
716
717         portal = portal_new(pg);
718         portal->p_listen = checked_strdup(value);
719         portal->p_iser = iser;
720
721         if (parse_addr_port(portal->p_listen, "3260", &portal->p_ai)) {
722                 log_warnx("invalid listen address %s", portal->p_listen);
723                 portal_delete(portal);
724                 return (1);
725         }
726
727         /*
728          * XXX: getaddrinfo(3) may return multiple addresses; we should turn
729          *      those into multiple portals.
730          */
731
732         return (0);
733 }
734
735 int
736 isns_new(struct conf *conf, const char *addr)
737 {
738         struct isns *isns;
739
740         isns = calloc(1, sizeof(*isns));
741         if (isns == NULL)
742                 log_err(1, "calloc");
743         isns->i_conf = conf;
744         TAILQ_INSERT_TAIL(&conf->conf_isns, isns, i_next);
745         isns->i_addr = checked_strdup(addr);
746
747         if (parse_addr_port(isns->i_addr, "3205", &isns->i_ai)) {
748                 log_warnx("invalid iSNS address %s", isns->i_addr);
749                 isns_delete(isns);
750                 return (1);
751         }
752
753         /*
754          * XXX: getaddrinfo(3) may return multiple addresses; we should turn
755          *      those into multiple servers.
756          */
757
758         return (0);
759 }
760
761 void
762 isns_delete(struct isns *isns)
763 {
764
765         TAILQ_REMOVE(&isns->i_conf->conf_isns, isns, i_next);
766         free(isns->i_addr);
767         if (isns->i_ai != NULL)
768                 freeaddrinfo(isns->i_ai);
769         free(isns);
770 }
771
772 static int
773 isns_do_connect(struct isns *isns)
774 {
775         int s;
776
777         s = socket(isns->i_ai->ai_family, isns->i_ai->ai_socktype,
778             isns->i_ai->ai_protocol);
779         if (s < 0) {
780                 log_warn("socket(2) failed for %s", isns->i_addr);
781                 return (-1);
782         }
783         if (connect(s, isns->i_ai->ai_addr, isns->i_ai->ai_addrlen)) {
784                 log_warn("connect(2) failed for %s", isns->i_addr);
785                 close(s);
786                 return (-1);
787         }
788         return(s);
789 }
790
791 static int
792 isns_do_register(struct isns *isns, int s, const char *hostname)
793 {
794         struct conf *conf = isns->i_conf;
795         struct target *target;
796         struct portal *portal;
797         struct portal_group *pg;
798         struct port *port;
799         struct isns_req *req;
800         int res = 0;
801         uint32_t error;
802
803         req = isns_req_create(ISNS_FUNC_DEVATTRREG, ISNS_FLAG_CLIENT);
804         isns_req_add_str(req, 32, TAILQ_FIRST(&conf->conf_targets)->t_name);
805         isns_req_add_delim(req);
806         isns_req_add_str(req, 1, hostname);
807         isns_req_add_32(req, 2, 2); /* 2 -- iSCSI */
808         isns_req_add_32(req, 6, conf->conf_isns_period);
809         TAILQ_FOREACH(pg, &conf->conf_portal_groups, pg_next) {
810                 if (pg->pg_unassigned)
811                         continue;
812                 TAILQ_FOREACH(portal, &pg->pg_portals, p_next) {
813                         isns_req_add_addr(req, 16, portal->p_ai);
814                         isns_req_add_port(req, 17, portal->p_ai);
815                 }
816         }
817         TAILQ_FOREACH(target, &conf->conf_targets, t_next) {
818                 isns_req_add_str(req, 32, target->t_name);
819                 isns_req_add_32(req, 33, 1); /* 1 -- Target*/
820                 if (target->t_alias != NULL)
821                         isns_req_add_str(req, 34, target->t_alias);
822                 TAILQ_FOREACH(port, &target->t_ports, p_ts) {
823                         if ((pg = port->p_portal_group) == NULL)
824                                 continue;
825                         isns_req_add_32(req, 51, pg->pg_tag);
826                         TAILQ_FOREACH(portal, &pg->pg_portals, p_next) {
827                                 isns_req_add_addr(req, 49, portal->p_ai);
828                                 isns_req_add_port(req, 50, portal->p_ai);
829                         }
830                 }
831         }
832         res = isns_req_send(s, req);
833         if (res < 0) {
834                 log_warn("send(2) failed for %s", isns->i_addr);
835                 goto quit;
836         }
837         res = isns_req_receive(s, req);
838         if (res < 0) {
839                 log_warn("receive(2) failed for %s", isns->i_addr);
840                 goto quit;
841         }
842         error = isns_req_get_status(req);
843         if (error != 0) {
844                 log_warnx("iSNS register error %d for %s", error, isns->i_addr);
845                 res = -1;
846         }
847 quit:
848         isns_req_free(req);
849         return (res);
850 }
851
852 static int
853 isns_do_check(struct isns *isns, int s, const char *hostname)
854 {
855         struct conf *conf = isns->i_conf;
856         struct isns_req *req;
857         int res = 0;
858         uint32_t error;
859
860         req = isns_req_create(ISNS_FUNC_DEVATTRQRY, ISNS_FLAG_CLIENT);
861         isns_req_add_str(req, 32, TAILQ_FIRST(&conf->conf_targets)->t_name);
862         isns_req_add_str(req, 1, hostname);
863         isns_req_add_delim(req);
864         isns_req_add(req, 2, 0, NULL);
865         res = isns_req_send(s, req);
866         if (res < 0) {
867                 log_warn("send(2) failed for %s", isns->i_addr);
868                 goto quit;
869         }
870         res = isns_req_receive(s, req);
871         if (res < 0) {
872                 log_warn("receive(2) failed for %s", isns->i_addr);
873                 goto quit;
874         }
875         error = isns_req_get_status(req);
876         if (error != 0) {
877                 log_warnx("iSNS check error %d for %s", error, isns->i_addr);
878                 res = -1;
879         }
880 quit:
881         isns_req_free(req);
882         return (res);
883 }
884
885 static int
886 isns_do_deregister(struct isns *isns, int s, const char *hostname)
887 {
888         struct conf *conf = isns->i_conf;
889         struct isns_req *req;
890         int res = 0;
891         uint32_t error;
892
893         req = isns_req_create(ISNS_FUNC_DEVDEREG, ISNS_FLAG_CLIENT);
894         isns_req_add_str(req, 32, TAILQ_FIRST(&conf->conf_targets)->t_name);
895         isns_req_add_delim(req);
896         isns_req_add_str(req, 1, hostname);
897         res = isns_req_send(s, req);
898         if (res < 0) {
899                 log_warn("send(2) failed for %s", isns->i_addr);
900                 goto quit;
901         }
902         res = isns_req_receive(s, req);
903         if (res < 0) {
904                 log_warn("receive(2) failed for %s", isns->i_addr);
905                 goto quit;
906         }
907         error = isns_req_get_status(req);
908         if (error != 0) {
909                 log_warnx("iSNS deregister error %d for %s", error, isns->i_addr);
910                 res = -1;
911         }
912 quit:
913         isns_req_free(req);
914         return (res);
915 }
916
917 void
918 isns_register(struct isns *isns, struct isns *oldisns)
919 {
920         struct conf *conf = isns->i_conf;
921         int s;
922         char hostname[256];
923
924         if (TAILQ_EMPTY(&conf->conf_targets) ||
925             TAILQ_EMPTY(&conf->conf_portal_groups))
926                 return;
927         set_timeout(conf->conf_isns_timeout, false);
928         s = isns_do_connect(isns);
929         if (s < 0) {
930                 set_timeout(0, false);
931                 return;
932         }
933         gethostname(hostname, sizeof(hostname));
934
935         if (oldisns == NULL || TAILQ_EMPTY(&oldisns->i_conf->conf_targets))
936                 oldisns = isns;
937         isns_do_deregister(oldisns, s, hostname);
938         isns_do_register(isns, s, hostname);
939         close(s);
940         set_timeout(0, false);
941 }
942
943 void
944 isns_check(struct isns *isns)
945 {
946         struct conf *conf = isns->i_conf;
947         int s, res;
948         char hostname[256];
949
950         if (TAILQ_EMPTY(&conf->conf_targets) ||
951             TAILQ_EMPTY(&conf->conf_portal_groups))
952                 return;
953         set_timeout(conf->conf_isns_timeout, false);
954         s = isns_do_connect(isns);
955         if (s < 0) {
956                 set_timeout(0, false);
957                 return;
958         }
959         gethostname(hostname, sizeof(hostname));
960
961         res = isns_do_check(isns, s, hostname);
962         if (res < 0) {
963                 isns_do_deregister(isns, s, hostname);
964                 isns_do_register(isns, s, hostname);
965         }
966         close(s);
967         set_timeout(0, false);
968 }
969
970 void
971 isns_deregister(struct isns *isns)
972 {
973         struct conf *conf = isns->i_conf;
974         int s;
975         char hostname[256];
976
977         if (TAILQ_EMPTY(&conf->conf_targets) ||
978             TAILQ_EMPTY(&conf->conf_portal_groups))
979                 return;
980         set_timeout(conf->conf_isns_timeout, false);
981         s = isns_do_connect(isns);
982         if (s < 0)
983                 return;
984         gethostname(hostname, sizeof(hostname));
985
986         isns_do_deregister(isns, s, hostname);
987         close(s);
988         set_timeout(0, false);
989 }
990
991 int
992 portal_group_set_filter(struct portal_group *pg, const char *str)
993 {
994         int filter;
995
996         if (strcmp(str, "none") == 0) {
997                 filter = PG_FILTER_NONE;
998         } else if (strcmp(str, "portal") == 0) {
999                 filter = PG_FILTER_PORTAL;
1000         } else if (strcmp(str, "portal-name") == 0) {
1001                 filter = PG_FILTER_PORTAL_NAME;
1002         } else if (strcmp(str, "portal-name-auth") == 0) {
1003                 filter = PG_FILTER_PORTAL_NAME_AUTH;
1004         } else {
1005                 log_warnx("invalid discovery-filter \"%s\" for portal-group "
1006                     "\"%s\"; valid values are \"none\", \"portal\", "
1007                     "\"portal-name\", and \"portal-name-auth\"",
1008                     str, pg->pg_name);
1009                 return (1);
1010         }
1011
1012         if (pg->pg_discovery_filter != PG_FILTER_UNKNOWN &&
1013             pg->pg_discovery_filter != filter) {
1014                 log_warnx("cannot set discovery-filter to \"%s\" for "
1015                     "portal-group \"%s\"; already has a different "
1016                     "value", str, pg->pg_name);
1017                 return (1);
1018         }
1019
1020         pg->pg_discovery_filter = filter;
1021
1022         return (0);
1023 }
1024
1025 int
1026 portal_group_set_redirection(struct portal_group *pg, const char *addr)
1027 {
1028
1029         if (pg->pg_redirection != NULL) {
1030                 log_warnx("cannot set redirection to \"%s\" for "
1031                     "portal-group \"%s\"; already defined",
1032                     addr, pg->pg_name);
1033                 return (1);
1034         }
1035
1036         pg->pg_redirection = checked_strdup(addr);
1037
1038         return (0);
1039 }
1040
1041 static bool
1042 valid_hex(const char ch)
1043 {
1044         switch (ch) {
1045         case '0':
1046         case '1':
1047         case '2':
1048         case '3':
1049         case '4':
1050         case '5':
1051         case '6':
1052         case '7':
1053         case '8':
1054         case '9':
1055         case 'a':
1056         case 'A':
1057         case 'b':
1058         case 'B':
1059         case 'c':
1060         case 'C':
1061         case 'd':
1062         case 'D':
1063         case 'e':
1064         case 'E':
1065         case 'f':
1066         case 'F':
1067                 return (true);
1068         default:
1069                 return (false);
1070         }
1071 }
1072
1073 bool
1074 valid_iscsi_name(const char *name)
1075 {
1076         int i;
1077
1078         if (strlen(name) >= MAX_NAME_LEN) {
1079                 log_warnx("overlong name for target \"%s\"; max length allowed "
1080                     "by iSCSI specification is %d characters",
1081                     name, MAX_NAME_LEN);
1082                 return (false);
1083         }
1084
1085         /*
1086          * In the cases below, we don't return an error, just in case the admin
1087          * was right, and we're wrong.
1088          */
1089         if (strncasecmp(name, "iqn.", strlen("iqn.")) == 0) {
1090                 for (i = strlen("iqn."); name[i] != '\0'; i++) {
1091                         /*
1092                          * XXX: We should verify UTF-8 normalisation, as defined
1093                          *      by 3.2.6.2: iSCSI Name Encoding.
1094                          */
1095                         if (isalnum(name[i]))
1096                                 continue;
1097                         if (name[i] == '-' || name[i] == '.' || name[i] == ':')
1098                                 continue;
1099                         log_warnx("invalid character \"%c\" in target name "
1100                             "\"%s\"; allowed characters are letters, digits, "
1101                             "'-', '.', and ':'", name[i], name);
1102                         break;
1103                 }
1104                 /*
1105                  * XXX: Check more stuff: valid date and a valid reversed domain.
1106                  */
1107         } else if (strncasecmp(name, "eui.", strlen("eui.")) == 0) {
1108                 if (strlen(name) != strlen("eui.") + 16)
1109                         log_warnx("invalid target name \"%s\"; the \"eui.\" "
1110                             "should be followed by exactly 16 hexadecimal "
1111                             "digits", name);
1112                 for (i = strlen("eui."); name[i] != '\0'; i++) {
1113                         if (!valid_hex(name[i])) {
1114                                 log_warnx("invalid character \"%c\" in target "
1115                                     "name \"%s\"; allowed characters are 1-9 "
1116                                     "and A-F", name[i], name);
1117                                 break;
1118                         }
1119                 }
1120         } else if (strncasecmp(name, "naa.", strlen("naa.")) == 0) {
1121                 if (strlen(name) > strlen("naa.") + 32)
1122                         log_warnx("invalid target name \"%s\"; the \"naa.\" "
1123                             "should be followed by at most 32 hexadecimal "
1124                             "digits", name);
1125                 for (i = strlen("naa."); name[i] != '\0'; i++) {
1126                         if (!valid_hex(name[i])) {
1127                                 log_warnx("invalid character \"%c\" in target "
1128                                     "name \"%s\"; allowed characters are 1-9 "
1129                                     "and A-F", name[i], name);
1130                                 break;
1131                         }
1132                 }
1133         } else {
1134                 log_warnx("invalid target name \"%s\"; should start with "
1135                     "either \"iqn.\", \"eui.\", or \"naa.\"",
1136                     name);
1137         }
1138         return (true);
1139 }
1140
1141 struct pport *
1142 pport_new(struct conf *conf, const char *name, uint32_t ctl_port)
1143 {
1144         struct pport *pp;
1145
1146         pp = calloc(1, sizeof(*pp));
1147         if (pp == NULL)
1148                 log_err(1, "calloc");
1149         pp->pp_conf = conf;
1150         pp->pp_name = checked_strdup(name);
1151         pp->pp_ctl_port = ctl_port;
1152         TAILQ_INIT(&pp->pp_ports);
1153         TAILQ_INSERT_TAIL(&conf->conf_pports, pp, pp_next);
1154         return (pp);
1155 }
1156
1157 struct pport *
1158 pport_find(const struct conf *conf, const char *name)
1159 {
1160         struct pport *pp;
1161
1162         TAILQ_FOREACH(pp, &conf->conf_pports, pp_next) {
1163                 if (strcasecmp(pp->pp_name, name) == 0)
1164                         return (pp);
1165         }
1166         return (NULL);
1167 }
1168
1169 struct pport *
1170 pport_copy(struct pport *pp, struct conf *conf)
1171 {
1172         struct pport *ppnew;
1173
1174         ppnew = pport_new(conf, pp->pp_name, pp->pp_ctl_port);
1175         return (ppnew);
1176 }
1177
1178 void
1179 pport_delete(struct pport *pp)
1180 {
1181         struct port *port, *tport;
1182
1183         TAILQ_FOREACH_SAFE(port, &pp->pp_ports, p_ts, tport)
1184                 port_delete(port);
1185         TAILQ_REMOVE(&pp->pp_conf->conf_pports, pp, pp_next);
1186         free(pp->pp_name);
1187         free(pp);
1188 }
1189
1190 struct port *
1191 port_new(struct conf *conf, struct target *target, struct portal_group *pg)
1192 {
1193         struct port *port;
1194         char *name;
1195         int ret;
1196
1197         ret = asprintf(&name, "%s-%s", pg->pg_name, target->t_name);
1198         if (ret <= 0)
1199                 log_err(1, "asprintf");
1200         if (port_find(conf, name) != NULL) {
1201                 log_warnx("duplicate port \"%s\"", name);
1202                 free(name);
1203                 return (NULL);
1204         }
1205         port = calloc(1, sizeof(*port));
1206         if (port == NULL)
1207                 log_err(1, "calloc");
1208         port->p_conf = conf;
1209         port->p_name = name;
1210         TAILQ_INSERT_TAIL(&conf->conf_ports, port, p_next);
1211         TAILQ_INSERT_TAIL(&target->t_ports, port, p_ts);
1212         port->p_target = target;
1213         TAILQ_INSERT_TAIL(&pg->pg_ports, port, p_pgs);
1214         port->p_portal_group = pg;
1215         port->p_foreign = pg->pg_foreign;
1216         return (port);
1217 }
1218
1219 struct port *
1220 port_new_pp(struct conf *conf, struct target *target, struct pport *pp)
1221 {
1222         struct port *port;
1223         char *name;
1224         int ret;
1225
1226         ret = asprintf(&name, "%s-%s", pp->pp_name, target->t_name);
1227         if (ret <= 0)
1228                 log_err(1, "asprintf");
1229         if (port_find(conf, name) != NULL) {
1230                 log_warnx("duplicate port \"%s\"", name);
1231                 free(name);
1232                 return (NULL);
1233         }
1234         port = calloc(1, sizeof(*port));
1235         if (port == NULL)
1236                 log_err(1, "calloc");
1237         port->p_conf = conf;
1238         port->p_name = name;
1239         TAILQ_INSERT_TAIL(&conf->conf_ports, port, p_next);
1240         TAILQ_INSERT_TAIL(&target->t_ports, port, p_ts);
1241         port->p_target = target;
1242         TAILQ_INSERT_TAIL(&pp->pp_ports, port, p_pps);
1243         port->p_pport = pp;
1244         return (port);
1245 }
1246
1247 struct port *
1248 port_find(const struct conf *conf, const char *name)
1249 {
1250         struct port *port;
1251
1252         TAILQ_FOREACH(port, &conf->conf_ports, p_next) {
1253                 if (strcasecmp(port->p_name, name) == 0)
1254                         return (port);
1255         }
1256
1257         return (NULL);
1258 }
1259
1260 struct port *
1261 port_find_in_pg(const struct portal_group *pg, const char *target)
1262 {
1263         struct port *port;
1264
1265         TAILQ_FOREACH(port, &pg->pg_ports, p_pgs) {
1266                 if (strcasecmp(port->p_target->t_name, target) == 0)
1267                         return (port);
1268         }
1269
1270         return (NULL);
1271 }
1272
1273 void
1274 port_delete(struct port *port)
1275 {
1276
1277         if (port->p_portal_group)
1278                 TAILQ_REMOVE(&port->p_portal_group->pg_ports, port, p_pgs);
1279         if (port->p_pport)
1280                 TAILQ_REMOVE(&port->p_pport->pp_ports, port, p_pps);
1281         if (port->p_target)
1282                 TAILQ_REMOVE(&port->p_target->t_ports, port, p_ts);
1283         TAILQ_REMOVE(&port->p_conf->conf_ports, port, p_next);
1284         free(port->p_name);
1285         free(port);
1286 }
1287
1288 struct target *
1289 target_new(struct conf *conf, const char *name)
1290 {
1291         struct target *targ;
1292         int i, len;
1293
1294         targ = target_find(conf, name);
1295         if (targ != NULL) {
1296                 log_warnx("duplicated target \"%s\"", name);
1297                 return (NULL);
1298         }
1299         if (valid_iscsi_name(name) == false) {
1300                 log_warnx("target name \"%s\" is invalid", name);
1301                 return (NULL);
1302         }
1303         targ = calloc(1, sizeof(*targ));
1304         if (targ == NULL)
1305                 log_err(1, "calloc");
1306         targ->t_name = checked_strdup(name);
1307
1308         /*
1309          * RFC 3722 requires us to normalize the name to lowercase.
1310          */
1311         len = strlen(name);
1312         for (i = 0; i < len; i++)
1313                 targ->t_name[i] = tolower(targ->t_name[i]);
1314
1315         targ->t_conf = conf;
1316         TAILQ_INIT(&targ->t_ports);
1317         TAILQ_INSERT_TAIL(&conf->conf_targets, targ, t_next);
1318
1319         return (targ);
1320 }
1321
1322 void
1323 target_delete(struct target *targ)
1324 {
1325         struct port *port, *tport;
1326
1327         TAILQ_FOREACH_SAFE(port, &targ->t_ports, p_ts, tport)
1328                 port_delete(port);
1329         TAILQ_REMOVE(&targ->t_conf->conf_targets, targ, t_next);
1330
1331         free(targ->t_name);
1332         free(targ->t_redirection);
1333         free(targ);
1334 }
1335
1336 struct target *
1337 target_find(struct conf *conf, const char *name)
1338 {
1339         struct target *targ;
1340
1341         TAILQ_FOREACH(targ, &conf->conf_targets, t_next) {
1342                 if (strcasecmp(targ->t_name, name) == 0)
1343                         return (targ);
1344         }
1345
1346         return (NULL);
1347 }
1348
1349 int
1350 target_set_redirection(struct target *target, const char *addr)
1351 {
1352
1353         if (target->t_redirection != NULL) {
1354                 log_warnx("cannot set redirection to \"%s\" for "
1355                     "target \"%s\"; already defined",
1356                     addr, target->t_name);
1357                 return (1);
1358         }
1359
1360         target->t_redirection = checked_strdup(addr);
1361
1362         return (0);
1363 }
1364
1365 struct lun *
1366 lun_new(struct conf *conf, const char *name)
1367 {
1368         struct lun *lun;
1369
1370         lun = lun_find(conf, name);
1371         if (lun != NULL) {
1372                 log_warnx("duplicated lun \"%s\"", name);
1373                 return (NULL);
1374         }
1375
1376         lun = calloc(1, sizeof(*lun));
1377         if (lun == NULL)
1378                 log_err(1, "calloc");
1379         lun->l_conf = conf;
1380         lun->l_name = checked_strdup(name);
1381         TAILQ_INIT(&lun->l_options);
1382         TAILQ_INSERT_TAIL(&conf->conf_luns, lun, l_next);
1383         lun->l_ctl_lun = -1;
1384
1385         return (lun);
1386 }
1387
1388 void
1389 lun_delete(struct lun *lun)
1390 {
1391         struct target *targ;
1392         struct lun_option *lo, *tmp;
1393         int i;
1394
1395         TAILQ_FOREACH(targ, &lun->l_conf->conf_targets, t_next) {
1396                 for (i = 0; i < MAX_LUNS; i++) {
1397                         if (targ->t_luns[i] == lun)
1398                                 targ->t_luns[i] = NULL;
1399                 }
1400         }
1401         TAILQ_REMOVE(&lun->l_conf->conf_luns, lun, l_next);
1402
1403         TAILQ_FOREACH_SAFE(lo, &lun->l_options, lo_next, tmp)
1404                 lun_option_delete(lo);
1405         free(lun->l_name);
1406         free(lun->l_backend);
1407         free(lun->l_device_id);
1408         free(lun->l_path);
1409         free(lun->l_scsiname);
1410         free(lun->l_serial);
1411         free(lun);
1412 }
1413
1414 struct lun *
1415 lun_find(const struct conf *conf, const char *name)
1416 {
1417         struct lun *lun;
1418
1419         TAILQ_FOREACH(lun, &conf->conf_luns, l_next) {
1420                 if (strcmp(lun->l_name, name) == 0)
1421                         return (lun);
1422         }
1423
1424         return (NULL);
1425 }
1426
1427 void
1428 lun_set_backend(struct lun *lun, const char *value)
1429 {
1430         free(lun->l_backend);
1431         lun->l_backend = checked_strdup(value);
1432 }
1433
1434 void
1435 lun_set_blocksize(struct lun *lun, size_t value)
1436 {
1437
1438         lun->l_blocksize = value;
1439 }
1440
1441 void
1442 lun_set_device_type(struct lun *lun, uint8_t value)
1443 {
1444
1445         lun->l_device_type = value;
1446 }
1447
1448 void
1449 lun_set_device_id(struct lun *lun, const char *value)
1450 {
1451         free(lun->l_device_id);
1452         lun->l_device_id = checked_strdup(value);
1453 }
1454
1455 void
1456 lun_set_path(struct lun *lun, const char *value)
1457 {
1458         free(lun->l_path);
1459         lun->l_path = checked_strdup(value);
1460 }
1461
1462 void
1463 lun_set_scsiname(struct lun *lun, const char *value)
1464 {
1465         free(lun->l_scsiname);
1466         lun->l_scsiname = checked_strdup(value);
1467 }
1468
1469 void
1470 lun_set_serial(struct lun *lun, const char *value)
1471 {
1472         free(lun->l_serial);
1473         lun->l_serial = checked_strdup(value);
1474 }
1475
1476 void
1477 lun_set_size(struct lun *lun, size_t value)
1478 {
1479
1480         lun->l_size = value;
1481 }
1482
1483 void
1484 lun_set_ctl_lun(struct lun *lun, uint32_t value)
1485 {
1486
1487         lun->l_ctl_lun = value;
1488 }
1489
1490 struct lun_option *
1491 lun_option_new(struct lun *lun, const char *name, const char *value)
1492 {
1493         struct lun_option *lo;
1494
1495         lo = lun_option_find(lun, name);
1496         if (lo != NULL) {
1497                 log_warnx("duplicated lun option \"%s\" for lun \"%s\"",
1498                     name, lun->l_name);
1499                 return (NULL);
1500         }
1501
1502         lo = calloc(1, sizeof(*lo));
1503         if (lo == NULL)
1504                 log_err(1, "calloc");
1505         lo->lo_name = checked_strdup(name);
1506         lo->lo_value = checked_strdup(value);
1507         lo->lo_lun = lun;
1508         TAILQ_INSERT_TAIL(&lun->l_options, lo, lo_next);
1509
1510         return (lo);
1511 }
1512
1513 void
1514 lun_option_delete(struct lun_option *lo)
1515 {
1516
1517         TAILQ_REMOVE(&lo->lo_lun->l_options, lo, lo_next);
1518
1519         free(lo->lo_name);
1520         free(lo->lo_value);
1521         free(lo);
1522 }
1523
1524 struct lun_option *
1525 lun_option_find(const struct lun *lun, const char *name)
1526 {
1527         struct lun_option *lo;
1528
1529         TAILQ_FOREACH(lo, &lun->l_options, lo_next) {
1530                 if (strcmp(lo->lo_name, name) == 0)
1531                         return (lo);
1532         }
1533
1534         return (NULL);
1535 }
1536
1537 void
1538 lun_option_set(struct lun_option *lo, const char *value)
1539 {
1540
1541         free(lo->lo_value);
1542         lo->lo_value = checked_strdup(value);
1543 }
1544
1545 static struct connection *
1546 connection_new(struct portal *portal, int fd, const char *host,
1547     const struct sockaddr *client_sa)
1548 {
1549         struct connection *conn;
1550
1551         conn = calloc(1, sizeof(*conn));
1552         if (conn == NULL)
1553                 log_err(1, "calloc");
1554         conn->conn_portal = portal;
1555         conn->conn_socket = fd;
1556         conn->conn_initiator_addr = checked_strdup(host);
1557         memcpy(&conn->conn_initiator_sa, client_sa, client_sa->sa_len);
1558
1559         /*
1560          * Default values, from RFC 3720, section 12.
1561          */
1562         conn->conn_max_data_segment_length = 8192;
1563         conn->conn_max_burst_length = 262144;
1564         conn->conn_immediate_data = true;
1565
1566         return (conn);
1567 }
1568
1569 #if 0
1570 static void
1571 conf_print(struct conf *conf)
1572 {
1573         struct auth_group *ag;
1574         struct auth *auth;
1575         struct auth_name *auth_name;
1576         struct auth_portal *auth_portal;
1577         struct portal_group *pg;
1578         struct portal *portal;
1579         struct target *targ;
1580         struct lun *lun;
1581         struct lun_option *lo;
1582
1583         TAILQ_FOREACH(ag, &conf->conf_auth_groups, ag_next) {
1584                 fprintf(stderr, "auth-group %s {\n", ag->ag_name);
1585                 TAILQ_FOREACH(auth, &ag->ag_auths, a_next)
1586                         fprintf(stderr, "\t chap-mutual %s %s %s %s\n",
1587                             auth->a_user, auth->a_secret,
1588                             auth->a_mutual_user, auth->a_mutual_secret);
1589                 TAILQ_FOREACH(auth_name, &ag->ag_names, an_next)
1590                         fprintf(stderr, "\t initiator-name %s\n",
1591                             auth_name->an_initator_name);
1592                 TAILQ_FOREACH(auth_portal, &ag->ag_portals, an_next)
1593                         fprintf(stderr, "\t initiator-portal %s\n",
1594                             auth_portal->an_initator_portal);
1595                 fprintf(stderr, "}\n");
1596         }
1597         TAILQ_FOREACH(pg, &conf->conf_portal_groups, pg_next) {
1598                 fprintf(stderr, "portal-group %s {\n", pg->pg_name);
1599                 TAILQ_FOREACH(portal, &pg->pg_portals, p_next)
1600                         fprintf(stderr, "\t listen %s\n", portal->p_listen);
1601                 fprintf(stderr, "}\n");
1602         }
1603         TAILQ_FOREACH(lun, &conf->conf_luns, l_next) {
1604                 fprintf(stderr, "\tlun %s {\n", lun->l_name);
1605                 fprintf(stderr, "\t\tpath %s\n", lun->l_path);
1606                 TAILQ_FOREACH(lo, &lun->l_options, lo_next)
1607                         fprintf(stderr, "\t\toption %s %s\n",
1608                             lo->lo_name, lo->lo_value);
1609                 fprintf(stderr, "\t}\n");
1610         }
1611         TAILQ_FOREACH(targ, &conf->conf_targets, t_next) {
1612                 fprintf(stderr, "target %s {\n", targ->t_name);
1613                 if (targ->t_alias != NULL)
1614                         fprintf(stderr, "\t alias %s\n", targ->t_alias);
1615                 fprintf(stderr, "}\n");
1616         }
1617 }
1618 #endif
1619
1620 static int
1621 conf_verify_lun(struct lun *lun)
1622 {
1623         const struct lun *lun2;
1624
1625         if (lun->l_backend == NULL)
1626                 lun_set_backend(lun, "block");
1627         if (strcmp(lun->l_backend, "block") == 0) {
1628                 if (lun->l_path == NULL) {
1629                         log_warnx("missing path for lun \"%s\"",
1630                             lun->l_name);
1631                         return (1);
1632                 }
1633         } else if (strcmp(lun->l_backend, "ramdisk") == 0) {
1634                 if (lun->l_size == 0) {
1635                         log_warnx("missing size for ramdisk-backed lun \"%s\"",
1636                             lun->l_name);
1637                         return (1);
1638                 }
1639                 if (lun->l_path != NULL) {
1640                         log_warnx("path must not be specified "
1641                             "for ramdisk-backed lun \"%s\"",
1642                             lun->l_name);
1643                         return (1);
1644                 }
1645         }
1646         if (lun->l_blocksize == 0) {
1647                 if (lun->l_device_type == 5)
1648                         lun_set_blocksize(lun, DEFAULT_CD_BLOCKSIZE);
1649                 else
1650                         lun_set_blocksize(lun, DEFAULT_BLOCKSIZE);
1651         } else if (lun->l_blocksize < 0) {
1652                 log_warnx("invalid blocksize for lun \"%s\"; "
1653                     "must be larger than 0", lun->l_name);
1654                 return (1);
1655         }
1656         if (lun->l_size != 0 && lun->l_size % lun->l_blocksize != 0) {
1657                 log_warnx("invalid size for lun \"%s\"; "
1658                     "must be multiple of blocksize", lun->l_name);
1659                 return (1);
1660         }
1661         TAILQ_FOREACH(lun2, &lun->l_conf->conf_luns, l_next) {
1662                 if (lun == lun2)
1663                         continue;
1664                 if (lun->l_path != NULL && lun2->l_path != NULL &&
1665                     strcmp(lun->l_path, lun2->l_path) == 0) {
1666                         log_debugx("WARNING: path \"%s\" duplicated "
1667                             "between lun \"%s\", and "
1668                             "lun \"%s\"", lun->l_path,
1669                             lun->l_name, lun2->l_name);
1670                 }
1671         }
1672
1673         return (0);
1674 }
1675
1676 int
1677 conf_verify(struct conf *conf)
1678 {
1679         struct auth_group *ag;
1680         struct portal_group *pg;
1681         struct port *port;
1682         struct target *targ;
1683         struct lun *lun;
1684         bool found;
1685         int error, i;
1686
1687         if (conf->conf_pidfile_path == NULL)
1688                 conf->conf_pidfile_path = checked_strdup(DEFAULT_PIDFILE);
1689
1690         TAILQ_FOREACH(lun, &conf->conf_luns, l_next) {
1691                 error = conf_verify_lun(lun);
1692                 if (error != 0)
1693                         return (error);
1694         }
1695         TAILQ_FOREACH(targ, &conf->conf_targets, t_next) {
1696                 if (targ->t_auth_group == NULL) {
1697                         targ->t_auth_group = auth_group_find(conf,
1698                             "default");
1699                         assert(targ->t_auth_group != NULL);
1700                 }
1701                 if (TAILQ_EMPTY(&targ->t_ports)) {
1702                         pg = portal_group_find(conf, "default");
1703                         assert(pg != NULL);
1704                         port_new(conf, targ, pg);
1705                 }
1706                 found = false;
1707                 for (i = 0; i < MAX_LUNS; i++) {
1708                         if (targ->t_luns[i] != NULL)
1709                                 found = true;
1710                 }
1711                 if (!found && targ->t_redirection == NULL) {
1712                         log_warnx("no LUNs defined for target \"%s\"",
1713                             targ->t_name);
1714                 }
1715                 if (found && targ->t_redirection != NULL) {
1716                         log_debugx("target \"%s\" contains luns, "
1717                             " but configured for redirection",
1718                             targ->t_name);
1719                 }
1720         }
1721         TAILQ_FOREACH(pg, &conf->conf_portal_groups, pg_next) {
1722                 assert(pg->pg_name != NULL);
1723                 if (pg->pg_discovery_auth_group == NULL) {
1724                         pg->pg_discovery_auth_group =
1725                             auth_group_find(conf, "default");
1726                         assert(pg->pg_discovery_auth_group != NULL);
1727                 }
1728
1729                 if (pg->pg_discovery_filter == PG_FILTER_UNKNOWN)
1730                         pg->pg_discovery_filter = PG_FILTER_NONE;
1731
1732                 if (pg->pg_redirection != NULL) {
1733                         if (!TAILQ_EMPTY(&pg->pg_ports)) {
1734                                 log_debugx("portal-group \"%s\" assigned "
1735                                     "to target, but configured "
1736                                     "for redirection",
1737                                     pg->pg_name);
1738                         }
1739                         pg->pg_unassigned = false;
1740                 } else if (!TAILQ_EMPTY(&pg->pg_ports)) {
1741                         pg->pg_unassigned = false;
1742                 } else {
1743                         if (strcmp(pg->pg_name, "default") != 0)
1744                                 log_warnx("portal-group \"%s\" not assigned "
1745                                     "to any target", pg->pg_name);
1746                         pg->pg_unassigned = true;
1747                 }
1748         }
1749         TAILQ_FOREACH(ag, &conf->conf_auth_groups, ag_next) {
1750                 if (ag->ag_name == NULL)
1751                         assert(ag->ag_target != NULL);
1752                 else
1753                         assert(ag->ag_target == NULL);
1754
1755                 found = false;
1756                 TAILQ_FOREACH(targ, &conf->conf_targets, t_next) {
1757                         if (targ->t_auth_group == ag) {
1758                                 found = true;
1759                                 break;
1760                         }
1761                 }
1762                 TAILQ_FOREACH(port, &conf->conf_ports, p_next) {
1763                         if (port->p_auth_group == ag) {
1764                                 found = true;
1765                                 break;
1766                         }
1767                 }
1768                 TAILQ_FOREACH(pg, &conf->conf_portal_groups, pg_next) {
1769                         if (pg->pg_discovery_auth_group == ag) {
1770                                 found = true;
1771                                 break;
1772                         }
1773                 }
1774                 if (!found && ag->ag_name != NULL &&
1775                     strcmp(ag->ag_name, "default") != 0 &&
1776                     strcmp(ag->ag_name, "no-authentication") != 0 &&
1777                     strcmp(ag->ag_name, "no-access") != 0) {
1778                         log_warnx("auth-group \"%s\" not assigned "
1779                             "to any target", ag->ag_name);
1780                 }
1781         }
1782
1783         return (0);
1784 }
1785
1786 static int
1787 conf_apply(struct conf *oldconf, struct conf *newconf)
1788 {
1789         struct lun *oldlun, *newlun, *tmplun;
1790         struct portal_group *oldpg, *newpg;
1791         struct portal *oldp, *newp;
1792         struct port *oldport, *newport, *tmpport;
1793         struct isns *oldns, *newns;
1794         pid_t otherpid;
1795         int changed, cumulated_error = 0, error, sockbuf;
1796         int one = 1;
1797
1798         if (oldconf->conf_debug != newconf->conf_debug) {
1799                 log_debugx("changing debug level to %d", newconf->conf_debug);
1800                 log_init(newconf->conf_debug);
1801         }
1802
1803         if (oldconf->conf_pidfh != NULL) {
1804                 assert(oldconf->conf_pidfile_path != NULL);
1805                 if (newconf->conf_pidfile_path != NULL &&
1806                     strcmp(oldconf->conf_pidfile_path,
1807                     newconf->conf_pidfile_path) == 0) {
1808                         newconf->conf_pidfh = oldconf->conf_pidfh;
1809                         oldconf->conf_pidfh = NULL;
1810                 } else {
1811                         log_debugx("removing pidfile %s",
1812                             oldconf->conf_pidfile_path);
1813                         pidfile_remove(oldconf->conf_pidfh);
1814                         oldconf->conf_pidfh = NULL;
1815                 }
1816         }
1817
1818         if (newconf->conf_pidfh == NULL && newconf->conf_pidfile_path != NULL) {
1819                 log_debugx("opening pidfile %s", newconf->conf_pidfile_path);
1820                 newconf->conf_pidfh =
1821                     pidfile_open(newconf->conf_pidfile_path, 0600, &otherpid);
1822                 if (newconf->conf_pidfh == NULL) {
1823                         if (errno == EEXIST)
1824                                 log_errx(1, "daemon already running, pid: %jd.",
1825                                     (intmax_t)otherpid);
1826                         log_err(1, "cannot open or create pidfile \"%s\"",
1827                             newconf->conf_pidfile_path);
1828                 }
1829         }
1830
1831         /*
1832          * Go through the new portal groups, assigning tags or preserving old.
1833          */
1834         TAILQ_FOREACH(newpg, &newconf->conf_portal_groups, pg_next) {
1835                 if (newpg->pg_tag != 0)
1836                         continue;
1837                 oldpg = portal_group_find(oldconf, newpg->pg_name);
1838                 if (oldpg != NULL)
1839                         newpg->pg_tag = oldpg->pg_tag;
1840                 else
1841                         newpg->pg_tag = ++last_portal_group_tag;
1842         }
1843
1844         /* Deregister on removed iSNS servers. */
1845         TAILQ_FOREACH(oldns, &oldconf->conf_isns, i_next) {
1846                 TAILQ_FOREACH(newns, &newconf->conf_isns, i_next) {
1847                         if (strcmp(oldns->i_addr, newns->i_addr) == 0)
1848                                 break;
1849                 }
1850                 if (newns == NULL)
1851                         isns_deregister(oldns);
1852         }
1853
1854         /*
1855          * XXX: If target or lun removal fails, we should somehow "move"
1856          *      the old lun or target into newconf, so that subsequent
1857          *      conf_apply() would try to remove them again.  That would
1858          *      be somewhat hairy, though, and lun deletion failures don't
1859          *      really happen, so leave it as it is for now.
1860          */
1861         /*
1862          * First, remove any ports present in the old configuration
1863          * and missing in the new one.
1864          */
1865         TAILQ_FOREACH_SAFE(oldport, &oldconf->conf_ports, p_next, tmpport) {
1866                 if (oldport->p_foreign)
1867                         continue;
1868                 newport = port_find(newconf, oldport->p_name);
1869                 if (newport != NULL && !newport->p_foreign)
1870                         continue;
1871                 log_debugx("removing port \"%s\"", oldport->p_name);
1872                 error = kernel_port_remove(oldport);
1873                 if (error != 0) {
1874                         log_warnx("failed to remove port %s",
1875                             oldport->p_name);
1876                         /*
1877                          * XXX: Uncomment after fixing the root cause.
1878                          *
1879                          * cumulated_error++;
1880                          */
1881                 }
1882         }
1883
1884         /*
1885          * Second, remove any LUNs present in the old configuration
1886          * and missing in the new one.
1887          */
1888         TAILQ_FOREACH_SAFE(oldlun, &oldconf->conf_luns, l_next, tmplun) {
1889                 newlun = lun_find(newconf, oldlun->l_name);
1890                 if (newlun == NULL) {
1891                         log_debugx("lun \"%s\", CTL lun %d "
1892                             "not found in new configuration; "
1893                             "removing", oldlun->l_name, oldlun->l_ctl_lun);
1894                         error = kernel_lun_remove(oldlun);
1895                         if (error != 0) {
1896                                 log_warnx("failed to remove lun \"%s\", "
1897                                     "CTL lun %d",
1898                                     oldlun->l_name, oldlun->l_ctl_lun);
1899                                 cumulated_error++;
1900                         }
1901                         continue;
1902                 }
1903
1904                 /*
1905                  * Also remove the LUNs changed by more than size.
1906                  */
1907                 changed = 0;
1908                 assert(oldlun->l_backend != NULL);
1909                 assert(newlun->l_backend != NULL);
1910                 if (strcmp(newlun->l_backend, oldlun->l_backend) != 0) {
1911                         log_debugx("backend for lun \"%s\", "
1912                             "CTL lun %d changed; removing",
1913                             oldlun->l_name, oldlun->l_ctl_lun);
1914                         changed = 1;
1915                 }
1916                 if (oldlun->l_blocksize != newlun->l_blocksize) {
1917                         log_debugx("blocksize for lun \"%s\", "
1918                             "CTL lun %d changed; removing",
1919                             oldlun->l_name, oldlun->l_ctl_lun);
1920                         changed = 1;
1921                 }
1922                 if (newlun->l_device_id != NULL &&
1923                     (oldlun->l_device_id == NULL ||
1924                      strcmp(oldlun->l_device_id, newlun->l_device_id) !=
1925                      0)) {
1926                         log_debugx("device-id for lun \"%s\", "
1927                             "CTL lun %d changed; removing",
1928                             oldlun->l_name, oldlun->l_ctl_lun);
1929                         changed = 1;
1930                 }
1931                 if (newlun->l_path != NULL &&
1932                     (oldlun->l_path == NULL ||
1933                      strcmp(oldlun->l_path, newlun->l_path) != 0)) {
1934                         log_debugx("path for lun \"%s\", "
1935                             "CTL lun %d, changed; removing",
1936                             oldlun->l_name, oldlun->l_ctl_lun);
1937                         changed = 1;
1938                 }
1939                 if (newlun->l_serial != NULL &&
1940                     (oldlun->l_serial == NULL ||
1941                      strcmp(oldlun->l_serial, newlun->l_serial) != 0)) {
1942                         log_debugx("serial for lun \"%s\", "
1943                             "CTL lun %d changed; removing",
1944                             oldlun->l_name, oldlun->l_ctl_lun);
1945                         changed = 1;
1946                 }
1947                 if (changed) {
1948                         error = kernel_lun_remove(oldlun);
1949                         if (error != 0) {
1950                                 log_warnx("failed to remove lun \"%s\", "
1951                                     "CTL lun %d",
1952                                     oldlun->l_name, oldlun->l_ctl_lun);
1953                                 cumulated_error++;
1954                         }
1955                         lun_delete(oldlun);
1956                         continue;
1957                 }
1958
1959                 lun_set_ctl_lun(newlun, oldlun->l_ctl_lun);
1960         }
1961
1962         TAILQ_FOREACH_SAFE(newlun, &newconf->conf_luns, l_next, tmplun) {
1963                 oldlun = lun_find(oldconf, newlun->l_name);
1964                 if (oldlun != NULL) {
1965                         log_debugx("modifying lun \"%s\", CTL lun %d",
1966                             newlun->l_name, newlun->l_ctl_lun);
1967                         error = kernel_lun_modify(newlun);
1968                         if (error != 0) {
1969                                 log_warnx("failed to "
1970                                     "modify lun \"%s\", CTL lun %d",
1971                                     newlun->l_name, newlun->l_ctl_lun);
1972                                 cumulated_error++;
1973                         }
1974                         continue;
1975                 }
1976                 log_debugx("adding lun \"%s\"", newlun->l_name);
1977                 error = kernel_lun_add(newlun);
1978                 if (error != 0) {
1979                         log_warnx("failed to add lun \"%s\"", newlun->l_name);
1980                         lun_delete(newlun);
1981                         cumulated_error++;
1982                 }
1983         }
1984
1985         /*
1986          * Now add new ports or modify existing ones.
1987          */
1988         TAILQ_FOREACH(newport, &newconf->conf_ports, p_next) {
1989                 if (newport->p_foreign)
1990                         continue;
1991                 oldport = port_find(oldconf, newport->p_name);
1992
1993                 if (oldport == NULL || oldport->p_foreign) {
1994                         log_debugx("adding port \"%s\"", newport->p_name);
1995                         error = kernel_port_add(newport);
1996                 } else {
1997                         log_debugx("updating port \"%s\"", newport->p_name);
1998                         newport->p_ctl_port = oldport->p_ctl_port;
1999                         error = kernel_port_update(newport, oldport);
2000                 }
2001                 if (error != 0) {
2002                         log_warnx("failed to %s port %s",
2003                             (oldport == NULL) ? "add" : "update",
2004                             newport->p_name);
2005                         /*
2006                          * XXX: Uncomment after fixing the root cause.
2007                          *
2008                          * cumulated_error++;
2009                          */
2010                 }
2011         }
2012
2013         /*
2014          * Go through the new portals, opening the sockets as neccessary.
2015          */
2016         TAILQ_FOREACH(newpg, &newconf->conf_portal_groups, pg_next) {
2017                 if (newpg->pg_foreign)
2018                         continue;
2019                 if (newpg->pg_unassigned) {
2020                         log_debugx("not listening on portal-group \"%s\", "
2021                             "not assigned to any target",
2022                             newpg->pg_name);
2023                         continue;
2024                 }
2025                 TAILQ_FOREACH(newp, &newpg->pg_portals, p_next) {
2026                         /*
2027                          * Try to find already open portal and reuse
2028                          * the listening socket.  We don't care about
2029                          * what portal or portal group that was, what
2030                          * matters is the listening address.
2031                          */
2032                         TAILQ_FOREACH(oldpg, &oldconf->conf_portal_groups,
2033                             pg_next) {
2034                                 TAILQ_FOREACH(oldp, &oldpg->pg_portals,
2035                                     p_next) {
2036                                         if (strcmp(newp->p_listen,
2037                                             oldp->p_listen) == 0 &&
2038                                             oldp->p_socket > 0) {
2039                                                 newp->p_socket =
2040                                                     oldp->p_socket;
2041                                                 oldp->p_socket = 0;
2042                                                 break;
2043                                         }
2044                                 }
2045                         }
2046                         if (newp->p_socket > 0) {
2047                                 /*
2048                                  * We're done with this portal.
2049                                  */
2050                                 continue;
2051                         }
2052
2053 #ifdef ICL_KERNEL_PROXY
2054                         if (proxy_mode) {
2055                                 newpg->pg_conf->conf_portal_id++;
2056                                 newp->p_id = newpg->pg_conf->conf_portal_id;
2057                                 log_debugx("listening on %s, portal-group "
2058                                     "\"%s\", portal id %d, using ICL proxy",
2059                                     newp->p_listen, newpg->pg_name, newp->p_id);
2060                                 kernel_listen(newp->p_ai, newp->p_iser,
2061                                     newp->p_id);
2062                                 continue;
2063                         }
2064 #endif
2065                         assert(proxy_mode == false);
2066                         assert(newp->p_iser == false);
2067
2068                         log_debugx("listening on %s, portal-group \"%s\"",
2069                             newp->p_listen, newpg->pg_name);
2070                         newp->p_socket = socket(newp->p_ai->ai_family,
2071                             newp->p_ai->ai_socktype,
2072                             newp->p_ai->ai_protocol);
2073                         if (newp->p_socket < 0) {
2074                                 log_warn("socket(2) failed for %s",
2075                                     newp->p_listen);
2076                                 cumulated_error++;
2077                                 continue;
2078                         }
2079                         sockbuf = SOCKBUF_SIZE;
2080                         if (setsockopt(newp->p_socket, SOL_SOCKET, SO_RCVBUF,
2081                             &sockbuf, sizeof(sockbuf)) == -1)
2082                                 log_warn("setsockopt(SO_RCVBUF) failed "
2083                                     "for %s", newp->p_listen);
2084                         sockbuf = SOCKBUF_SIZE;
2085                         if (setsockopt(newp->p_socket, SOL_SOCKET, SO_SNDBUF,
2086                             &sockbuf, sizeof(sockbuf)) == -1)
2087                                 log_warn("setsockopt(SO_SNDBUF) failed "
2088                                     "for %s", newp->p_listen);
2089                         error = setsockopt(newp->p_socket, SOL_SOCKET,
2090                             SO_REUSEADDR, &one, sizeof(one));
2091                         if (error != 0) {
2092                                 log_warn("setsockopt(SO_REUSEADDR) failed "
2093                                     "for %s", newp->p_listen);
2094                                 close(newp->p_socket);
2095                                 newp->p_socket = 0;
2096                                 cumulated_error++;
2097                                 continue;
2098                         }
2099                         error = bind(newp->p_socket, newp->p_ai->ai_addr,
2100                             newp->p_ai->ai_addrlen);
2101                         if (error != 0) {
2102                                 log_warn("bind(2) failed for %s",
2103                                     newp->p_listen);
2104                                 close(newp->p_socket);
2105                                 newp->p_socket = 0;
2106                                 cumulated_error++;
2107                                 continue;
2108                         }
2109                         error = listen(newp->p_socket, -1);
2110                         if (error != 0) {
2111                                 log_warn("listen(2) failed for %s",
2112                                     newp->p_listen);
2113                                 close(newp->p_socket);
2114                                 newp->p_socket = 0;
2115                                 cumulated_error++;
2116                                 continue;
2117                         }
2118                 }
2119         }
2120
2121         /*
2122          * Go through the no longer used sockets, closing them.
2123          */
2124         TAILQ_FOREACH(oldpg, &oldconf->conf_portal_groups, pg_next) {
2125                 TAILQ_FOREACH(oldp, &oldpg->pg_portals, p_next) {
2126                         if (oldp->p_socket <= 0)
2127                                 continue;
2128                         log_debugx("closing socket for %s, portal-group \"%s\"",
2129                             oldp->p_listen, oldpg->pg_name);
2130                         close(oldp->p_socket);
2131                         oldp->p_socket = 0;
2132                 }
2133         }
2134
2135         /* (Re-)Register on remaining/new iSNS servers. */
2136         TAILQ_FOREACH(newns, &newconf->conf_isns, i_next) {
2137                 TAILQ_FOREACH(oldns, &oldconf->conf_isns, i_next) {
2138                         if (strcmp(oldns->i_addr, newns->i_addr) == 0)
2139                                 break;
2140                 }
2141                 isns_register(newns, oldns);
2142         }
2143
2144         /* Schedule iSNS update */
2145         if (!TAILQ_EMPTY(&newconf->conf_isns))
2146                 set_timeout((newconf->conf_isns_period + 2) / 3, false);
2147
2148         return (cumulated_error);
2149 }
2150
2151 bool
2152 timed_out(void)
2153 {
2154
2155         return (sigalrm_received);
2156 }
2157
2158 static void
2159 sigalrm_handler_fatal(int dummy __unused)
2160 {
2161         /*
2162          * It would be easiest to just log an error and exit.  We can't
2163          * do this, though, because log_errx() is not signal safe, since
2164          * it calls syslog(3).  Instead, set a flag checked by pdu_send()
2165          * and pdu_receive(), to call log_errx() there.  Should they fail
2166          * to notice, we'll exit here one second later.
2167          */
2168         if (sigalrm_received) {
2169                 /*
2170                  * Oh well.  Just give up and quit.
2171                  */
2172                 _exit(2);
2173         }
2174
2175         sigalrm_received = true;
2176 }
2177
2178 static void
2179 sigalrm_handler(int dummy __unused)
2180 {
2181
2182         sigalrm_received = true;
2183 }
2184
2185 void
2186 set_timeout(int timeout, int fatal)
2187 {
2188         struct sigaction sa;
2189         struct itimerval itv;
2190         int error;
2191
2192         if (timeout <= 0) {
2193                 log_debugx("session timeout disabled");
2194                 bzero(&itv, sizeof(itv));
2195                 error = setitimer(ITIMER_REAL, &itv, NULL);
2196                 if (error != 0)
2197                         log_err(1, "setitimer");
2198                 sigalrm_received = false;
2199                 return;
2200         }
2201
2202         sigalrm_received = false;
2203         bzero(&sa, sizeof(sa));
2204         if (fatal)
2205                 sa.sa_handler = sigalrm_handler_fatal;
2206         else
2207                 sa.sa_handler = sigalrm_handler;
2208         sigfillset(&sa.sa_mask);
2209         error = sigaction(SIGALRM, &sa, NULL);
2210         if (error != 0)
2211                 log_err(1, "sigaction");
2212
2213         /*
2214          * First SIGALRM will arive after conf_timeout seconds.
2215          * If we do nothing, another one will arrive a second later.
2216          */
2217         log_debugx("setting session timeout to %d seconds", timeout);
2218         bzero(&itv, sizeof(itv));
2219         itv.it_interval.tv_sec = 1;
2220         itv.it_value.tv_sec = timeout;
2221         error = setitimer(ITIMER_REAL, &itv, NULL);
2222         if (error != 0)
2223                 log_err(1, "setitimer");
2224 }
2225
2226 static int
2227 wait_for_children(bool block)
2228 {
2229         pid_t pid;
2230         int status;
2231         int num = 0;
2232
2233         for (;;) {
2234                 /*
2235                  * If "block" is true, wait for at least one process.
2236                  */
2237                 if (block && num == 0)
2238                         pid = wait4(-1, &status, 0, NULL);
2239                 else
2240                         pid = wait4(-1, &status, WNOHANG, NULL);
2241                 if (pid <= 0)
2242                         break;
2243                 if (WIFSIGNALED(status)) {
2244                         log_warnx("child process %d terminated with signal %d",
2245                             pid, WTERMSIG(status));
2246                 } else if (WEXITSTATUS(status) != 0) {
2247                         log_warnx("child process %d terminated with exit status %d",
2248                             pid, WEXITSTATUS(status));
2249                 } else {
2250                         log_debugx("child process %d terminated gracefully", pid);
2251                 }
2252                 num++;
2253         }
2254
2255         return (num);
2256 }
2257
2258 static void
2259 handle_connection(struct portal *portal, int fd,
2260     const struct sockaddr *client_sa, bool dont_fork)
2261 {
2262         struct connection *conn;
2263         int error;
2264         pid_t pid;
2265         char host[NI_MAXHOST + 1];
2266         struct conf *conf;
2267
2268         conf = portal->p_portal_group->pg_conf;
2269
2270         if (dont_fork) {
2271                 log_debugx("incoming connection; not forking due to -d flag");
2272         } else {
2273                 nchildren -= wait_for_children(false);
2274                 assert(nchildren >= 0);
2275
2276                 while (conf->conf_maxproc > 0 && nchildren >= conf->conf_maxproc) {
2277                         log_debugx("maxproc limit of %d child processes hit; "
2278                             "waiting for child process to exit", conf->conf_maxproc);
2279                         nchildren -= wait_for_children(true);
2280                         assert(nchildren >= 0);
2281                 }
2282                 log_debugx("incoming connection; forking child process #%d",
2283                     nchildren);
2284                 nchildren++;
2285                 pid = fork();
2286                 if (pid < 0)
2287                         log_err(1, "fork");
2288                 if (pid > 0) {
2289                         close(fd);
2290                         return;
2291                 }
2292         }
2293         pidfile_close(conf->conf_pidfh);
2294
2295         error = getnameinfo(client_sa, client_sa->sa_len,
2296             host, sizeof(host), NULL, 0, NI_NUMERICHOST);
2297         if (error != 0)
2298                 log_errx(1, "getnameinfo: %s", gai_strerror(error));
2299
2300         log_debugx("accepted connection from %s; portal group \"%s\"",
2301             host, portal->p_portal_group->pg_name);
2302         log_set_peer_addr(host);
2303         setproctitle("%s", host);
2304
2305         conn = connection_new(portal, fd, host, client_sa);
2306         set_timeout(conf->conf_timeout, true);
2307         kernel_capsicate();
2308         login(conn);
2309         if (conn->conn_session_type == CONN_SESSION_TYPE_NORMAL) {
2310                 kernel_handoff(conn);
2311                 log_debugx("connection handed off to the kernel");
2312         } else {
2313                 assert(conn->conn_session_type == CONN_SESSION_TYPE_DISCOVERY);
2314                 discovery(conn);
2315         }
2316         log_debugx("nothing more to do; exiting");
2317         exit(0);
2318 }
2319
2320 static int
2321 fd_add(int fd, fd_set *fdset, int nfds)
2322 {
2323
2324         /*
2325          * Skip sockets which we failed to bind.
2326          */
2327         if (fd <= 0)
2328                 return (nfds);
2329
2330         FD_SET(fd, fdset);
2331         if (fd > nfds)
2332                 nfds = fd;
2333         return (nfds);
2334 }
2335
2336 static void
2337 main_loop(struct conf *conf, bool dont_fork)
2338 {
2339         struct portal_group *pg;
2340         struct portal *portal;
2341         struct sockaddr_storage client_sa;
2342         socklen_t client_salen;
2343 #ifdef ICL_KERNEL_PROXY
2344         int connection_id;
2345         int portal_id;
2346 #endif
2347         fd_set fdset;
2348         int error, nfds, client_fd;
2349
2350         pidfile_write(conf->conf_pidfh);
2351
2352         for (;;) {
2353                 if (sighup_received || sigterm_received || timed_out())
2354                         return;
2355
2356 #ifdef ICL_KERNEL_PROXY
2357                 if (proxy_mode) {
2358                         client_salen = sizeof(client_sa);
2359                         kernel_accept(&connection_id, &portal_id,
2360                             (struct sockaddr *)&client_sa, &client_salen);
2361                         assert(client_salen >= client_sa.ss_len);
2362
2363                         log_debugx("incoming connection, id %d, portal id %d",
2364                             connection_id, portal_id);
2365                         TAILQ_FOREACH(pg, &conf->conf_portal_groups, pg_next) {
2366                                 TAILQ_FOREACH(portal, &pg->pg_portals, p_next) {
2367                                         if (portal->p_id == portal_id) {
2368                                                 goto found;
2369                                         }
2370                                 }
2371                         }
2372
2373                         log_errx(1, "kernel returned invalid portal_id %d",
2374                             portal_id);
2375
2376 found:
2377                         handle_connection(portal, connection_id,
2378                             (struct sockaddr *)&client_sa, dont_fork);
2379                 } else {
2380 #endif
2381                         assert(proxy_mode == false);
2382
2383                         FD_ZERO(&fdset);
2384                         nfds = 0;
2385                         TAILQ_FOREACH(pg, &conf->conf_portal_groups, pg_next) {
2386                                 TAILQ_FOREACH(portal, &pg->pg_portals, p_next)
2387                                         nfds = fd_add(portal->p_socket, &fdset, nfds);
2388                         }
2389                         error = select(nfds + 1, &fdset, NULL, NULL, NULL);
2390                         if (error <= 0) {
2391                                 if (errno == EINTR)
2392                                         return;
2393                                 log_err(1, "select");
2394                         }
2395                         TAILQ_FOREACH(pg, &conf->conf_portal_groups, pg_next) {
2396                                 TAILQ_FOREACH(portal, &pg->pg_portals, p_next) {
2397                                         if (!FD_ISSET(portal->p_socket, &fdset))
2398                                                 continue;
2399                                         client_salen = sizeof(client_sa);
2400                                         client_fd = accept(portal->p_socket,
2401                                             (struct sockaddr *)&client_sa,
2402                                             &client_salen);
2403                                         if (client_fd < 0) {
2404                                                 if (errno == ECONNABORTED)
2405                                                         continue;
2406                                                 log_err(1, "accept");
2407                                         }
2408                                         assert(client_salen >= client_sa.ss_len);
2409
2410                                         handle_connection(portal, client_fd,
2411                                             (struct sockaddr *)&client_sa,
2412                                             dont_fork);
2413                                         break;
2414                                 }
2415                         }
2416 #ifdef ICL_KERNEL_PROXY
2417                 }
2418 #endif
2419         }
2420 }
2421
2422 static void
2423 sighup_handler(int dummy __unused)
2424 {
2425
2426         sighup_received = true;
2427 }
2428
2429 static void
2430 sigterm_handler(int dummy __unused)
2431 {
2432
2433         sigterm_received = true;
2434 }
2435
2436 static void
2437 sigchld_handler(int dummy __unused)
2438 {
2439
2440         /*
2441          * The only purpose of this handler is to make SIGCHLD
2442          * interrupt the ISCSIDWAIT ioctl(2), so we can call
2443          * wait_for_children().
2444          */
2445 }
2446
2447 static void
2448 register_signals(void)
2449 {
2450         struct sigaction sa;
2451         int error;
2452
2453         bzero(&sa, sizeof(sa));
2454         sa.sa_handler = sighup_handler;
2455         sigfillset(&sa.sa_mask);
2456         error = sigaction(SIGHUP, &sa, NULL);
2457         if (error != 0)
2458                 log_err(1, "sigaction");
2459
2460         sa.sa_handler = sigterm_handler;
2461         error = sigaction(SIGTERM, &sa, NULL);
2462         if (error != 0)
2463                 log_err(1, "sigaction");
2464
2465         sa.sa_handler = sigterm_handler;
2466         error = sigaction(SIGINT, &sa, NULL);
2467         if (error != 0)
2468                 log_err(1, "sigaction");
2469
2470         sa.sa_handler = sigchld_handler;
2471         error = sigaction(SIGCHLD, &sa, NULL);
2472         if (error != 0)
2473                 log_err(1, "sigaction");
2474 }
2475
2476 int
2477 main(int argc, char **argv)
2478 {
2479         struct conf *oldconf, *newconf, *tmpconf;
2480         struct isns *newns;
2481         const char *config_path = DEFAULT_CONFIG_PATH;
2482         int debug = 0, ch, error;
2483         bool dont_daemonize = false;
2484
2485         while ((ch = getopt(argc, argv, "df:R")) != -1) {
2486                 switch (ch) {
2487                 case 'd':
2488                         dont_daemonize = true;
2489                         debug++;
2490                         break;
2491                 case 'f':
2492                         config_path = optarg;
2493                         break;
2494                 case 'R':
2495 #ifndef ICL_KERNEL_PROXY
2496                         log_errx(1, "ctld(8) compiled without ICL_KERNEL_PROXY "
2497                             "does not support iSER protocol");
2498 #endif
2499                         proxy_mode = true;
2500                         break;
2501                 case '?':
2502                 default:
2503                         usage();
2504                 }
2505         }
2506         argc -= optind;
2507         if (argc != 0)
2508                 usage();
2509
2510         log_init(debug);
2511         kernel_init();
2512
2513         oldconf = conf_new_from_kernel();
2514         newconf = conf_new_from_file(config_path, oldconf);
2515         if (newconf == NULL)
2516                 log_errx(1, "configuration error; exiting");
2517         if (debug > 0) {
2518                 oldconf->conf_debug = debug;
2519                 newconf->conf_debug = debug;
2520         }
2521
2522         error = conf_apply(oldconf, newconf);
2523         if (error != 0)
2524                 log_errx(1, "failed to apply configuration; exiting");
2525
2526         conf_delete(oldconf);
2527         oldconf = NULL;
2528
2529         register_signals();
2530
2531         if (dont_daemonize == false) {
2532                 log_debugx("daemonizing");
2533                 if (daemon(0, 0) == -1) {
2534                         log_warn("cannot daemonize");
2535                         pidfile_remove(newconf->conf_pidfh);
2536                         exit(1);
2537                 }
2538         }
2539
2540         /* Schedule iSNS update */
2541         if (!TAILQ_EMPTY(&newconf->conf_isns))
2542                 set_timeout((newconf->conf_isns_period + 2) / 3, false);
2543
2544         for (;;) {
2545                 main_loop(newconf, dont_daemonize);
2546                 if (sighup_received) {
2547                         sighup_received = false;
2548                         log_debugx("received SIGHUP, reloading configuration");
2549                         tmpconf = conf_new_from_file(config_path, newconf);
2550                         if (tmpconf == NULL) {
2551                                 log_warnx("configuration error, "
2552                                     "continuing with old configuration");
2553                         } else {
2554                                 if (debug > 0)
2555                                         tmpconf->conf_debug = debug;
2556                                 oldconf = newconf;
2557                                 newconf = tmpconf;
2558                                 error = conf_apply(oldconf, newconf);
2559                                 if (error != 0)
2560                                         log_warnx("failed to reload "
2561                                             "configuration");
2562                                 conf_delete(oldconf);
2563                                 oldconf = NULL;
2564                         }
2565                 } else if (sigterm_received) {
2566                         log_debugx("exiting on signal; "
2567                             "reloading empty configuration");
2568
2569                         log_debugx("removing CTL iSCSI ports "
2570                             "and terminating all connections");
2571
2572                         oldconf = newconf;
2573                         newconf = conf_new();
2574                         if (debug > 0)
2575                                 newconf->conf_debug = debug;
2576                         error = conf_apply(oldconf, newconf);
2577                         if (error != 0)
2578                                 log_warnx("failed to apply configuration");
2579                         conf_delete(oldconf);
2580                         oldconf = NULL;
2581
2582                         log_warnx("exiting on signal");
2583                         exit(0);
2584                 } else {
2585                         nchildren -= wait_for_children(false);
2586                         assert(nchildren >= 0);
2587                         if (timed_out()) {
2588                                 set_timeout(0, false);
2589                                 TAILQ_FOREACH(newns, &newconf->conf_isns, i_next)
2590                                         isns_check(newns);
2591                                 /* Schedule iSNS update */
2592                                 if (!TAILQ_EMPTY(&newconf->conf_isns)) {
2593                                         set_timeout((newconf->conf_isns_period
2594                                             + 2) / 3,
2595                                             false);
2596                                 }
2597                         }
2598                 }
2599         }
2600         /* NOTREACHED */
2601 }