Deleted Added
sdiff udiff text old ( 263719 ) new ( 263720 )
full compact
1/*-
2 * Copyright (c) 2012 The FreeBSD Foundation
3 * All rights reserved.
4 *
5 * This software was developed by Edward Tomasz Napierala under sponsorship
6 * from the FreeBSD Foundation.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $FreeBSD: stable/10/usr.sbin/ctld/ctld.c 263719 2014-03-25 12:00:05Z trasz $
30 */
31
32#include <sys/types.h>
33#include <sys/time.h>
34#include <sys/socket.h>
35#include <sys/wait.h>
36#include <netinet/in.h>
37#include <assert.h>
38#include <ctype.h>
39#include <errno.h>
40#include <netdb.h>
41#include <signal.h>
42#include <stdbool.h>
43#include <stdio.h>
44#include <stdint.h>
45#include <stdlib.h>
46#include <string.h>
47#include <unistd.h>
48
49#include "ctld.h"
50
51static volatile bool sighup_received = false;
52static volatile bool sigterm_received = false;
53static volatile bool sigalrm_received = false;
54
55static int nchildren = 0;
56
57static void
58usage(void)
59{
60
61 fprintf(stderr, "usage: ctld [-d][-f config-file]\n");
62 exit(1);
63}
64
65char *
66checked_strdup(const char *s)
67{
68 char *c;
69
70 c = strdup(s);
71 if (c == NULL)
72 log_err(1, "strdup");
73 return (c);
74}
75
76struct conf *
77conf_new(void)
78{
79 struct conf *conf;
80
81 conf = calloc(1, sizeof(*conf));
82 if (conf == NULL)
83 log_err(1, "calloc");
84 TAILQ_INIT(&conf->conf_targets);
85 TAILQ_INIT(&conf->conf_auth_groups);
86 TAILQ_INIT(&conf->conf_portal_groups);
87
88 conf->conf_debug = 0;
89 conf->conf_timeout = 60;
90 conf->conf_maxproc = 30;
91
92 return (conf);
93}
94
95void
96conf_delete(struct conf *conf)
97{
98 struct target *targ, *tmp;
99 struct auth_group *ag, *cagtmp;
100 struct portal_group *pg, *cpgtmp;
101
102 assert(conf->conf_pidfh == NULL);
103
104 TAILQ_FOREACH_SAFE(targ, &conf->conf_targets, t_next, tmp)
105 target_delete(targ);
106 TAILQ_FOREACH_SAFE(ag, &conf->conf_auth_groups, ag_next, cagtmp)
107 auth_group_delete(ag);
108 TAILQ_FOREACH_SAFE(pg, &conf->conf_portal_groups, pg_next, cpgtmp)
109 portal_group_delete(pg);
110 free(conf->conf_pidfile_path);
111 free(conf);
112}
113
114static struct auth *
115auth_new(struct auth_group *ag)
116{
117 struct auth *auth;
118
119 auth = calloc(1, sizeof(*auth));
120 if (auth == NULL)
121 log_err(1, "calloc");
122 auth->a_auth_group = ag;
123 TAILQ_INSERT_TAIL(&ag->ag_auths, auth, a_next);
124 return (auth);
125}
126
127static void
128auth_delete(struct auth *auth)
129{
130 TAILQ_REMOVE(&auth->a_auth_group->ag_auths, auth, a_next);
131
132 free(auth->a_user);
133 free(auth->a_secret);
134 free(auth->a_mutual_user);
135 free(auth->a_mutual_secret);
136 free(auth);
137}
138
139const struct auth *
140auth_find(struct auth_group *ag, const char *user)
141{
142 const struct auth *auth;
143
144 TAILQ_FOREACH(auth, &ag->ag_auths, a_next) {
145 if (strcmp(auth->a_user, user) == 0)
146 return (auth);
147 }
148
149 return (NULL);
150}
151
152struct auth_group *
153auth_group_new(struct conf *conf, const char *name)
154{
155 struct auth_group *ag;
156
157 if (name != NULL) {
158 ag = auth_group_find(conf, name);
159 if (ag != NULL) {
160 log_warnx("duplicated auth-group \"%s\"", name);
161 return (NULL);
162 }
163 }
164
165 ag = calloc(1, sizeof(*ag));
166 if (ag == NULL)
167 log_err(1, "calloc");
168 if (name != NULL)
169 ag->ag_name = checked_strdup(name);
170 TAILQ_INIT(&ag->ag_auths);
171 ag->ag_conf = conf;
172 TAILQ_INSERT_TAIL(&conf->conf_auth_groups, ag, ag_next);
173
174 return (ag);
175}
176
177void
178auth_group_delete(struct auth_group *ag)
179{
180 struct auth *auth, *tmp;
181
182 TAILQ_REMOVE(&ag->ag_conf->conf_auth_groups, ag, ag_next);
183
184 TAILQ_FOREACH_SAFE(auth, &ag->ag_auths, a_next, tmp)
185 auth_delete(auth);
186 free(ag->ag_name);
187 free(ag);
188}
189
190struct auth_group *
191auth_group_find(struct conf *conf, const char *name)
192{
193 struct auth_group *ag;
194
195 TAILQ_FOREACH(ag, &conf->conf_auth_groups, ag_next) {
196 if (ag->ag_name != NULL && strcmp(ag->ag_name, name) == 0)
197 return (ag);
198 }
199
200 return (NULL);
201}
202
203static void
204auth_check_secret_length(struct auth *auth)
205{
206 size_t len;
207
208 len = strlen(auth->a_secret);
209 if (len > 16) {
210 if (auth->a_auth_group->ag_name != NULL)
211 log_warnx("secret for user \"%s\", auth-group \"%s\", "
212 "is too long; it should be at most 16 characters "
213 "long", auth->a_user, auth->a_auth_group->ag_name);
214 else
215 log_warnx("secret for user \"%s\", target \"%s\", "
216 "is too long; it should be at most 16 characters "
217 "long", auth->a_user,
218 auth->a_auth_group->ag_target->t_iqn);
219 }
220 if (len < 12) {
221 if (auth->a_auth_group->ag_name != NULL)
222 log_warnx("secret for user \"%s\", auth-group \"%s\", "
223 "is too short; it should be at least 12 characters "
224 "long", auth->a_user,
225 auth->a_auth_group->ag_name);
226 else
227 log_warnx("secret for user \"%s\", target \"%s\", "
228 "is too short; it should be at least 16 characters "
229 "long", auth->a_user,
230 auth->a_auth_group->ag_target->t_iqn);
231 }
232
233 if (auth->a_mutual_secret != NULL) {
234 len = strlen(auth->a_secret);
235 if (len > 16) {
236 if (auth->a_auth_group->ag_name != NULL)
237 log_warnx("mutual secret for user \"%s\", "
238 "auth-group \"%s\", is too long; it should "
239 "be at most 16 characters long",
240 auth->a_user, auth->a_auth_group->ag_name);
241 else
242 log_warnx("mutual secret for user \"%s\", "
243 "target \"%s\", is too long; it should "
244 "be at most 16 characters long",
245 auth->a_user,
246 auth->a_auth_group->ag_target->t_iqn);
247 }
248 if (len < 12) {
249 if (auth->a_auth_group->ag_name != NULL)
250 log_warnx("mutual secret for user \"%s\", "
251 "auth-group \"%s\", is too short; it "
252 "should be at least 12 characters long",
253 auth->a_user, auth->a_auth_group->ag_name);
254 else
255 log_warnx("mutual secret for user \"%s\", "
256 "target \"%s\", is too short; it should be "
257 "at least 16 characters long",
258 auth->a_user,
259 auth->a_auth_group->ag_target->t_iqn);
260 }
261 }
262}
263
264const struct auth *
265auth_new_chap(struct auth_group *ag, const char *user,
266 const char *secret)
267{
268 struct auth *auth;
269
270 if (ag->ag_type == AG_TYPE_UNKNOWN)
271 ag->ag_type = AG_TYPE_CHAP;
272 if (ag->ag_type != AG_TYPE_CHAP) {
273 if (ag->ag_name != NULL)
274 log_warnx("cannot mix \"chap\" authentication with "
275 "other types for auth-group \"%s\"", ag->ag_name);
276 else
277 log_warnx("cannot mix \"chap\" authentication with "
278 "other types for target \"%s\"",
279 ag->ag_target->t_iqn);
280 return (NULL);
281 }
282
283 auth = auth_new(ag);
284 auth->a_user = checked_strdup(user);
285 auth->a_secret = checked_strdup(secret);
286
287 auth_check_secret_length(auth);
288
289 return (auth);
290}
291
292const struct auth *
293auth_new_chap_mutual(struct auth_group *ag, const char *user,
294 const char *secret, const char *user2, const char *secret2)
295{
296 struct auth *auth;
297
298 if (ag->ag_type == AG_TYPE_UNKNOWN)
299 ag->ag_type = AG_TYPE_CHAP_MUTUAL;
300 if (ag->ag_type != AG_TYPE_CHAP_MUTUAL) {
301 if (ag->ag_name != NULL)
302 log_warnx("cannot mix \"chap-mutual\" authentication "
303 "with other types for auth-group \"%s\"",
304 ag->ag_name);
305 else
306 log_warnx("cannot mix \"chap-mutual\" authentication "
307 "with other types for target \"%s\"",
308 ag->ag_target->t_iqn);
309 return (NULL);
310 }
311
312 auth = auth_new(ag);
313 auth->a_user = checked_strdup(user);
314 auth->a_secret = checked_strdup(secret);
315 auth->a_mutual_user = checked_strdup(user2);
316 auth->a_mutual_secret = checked_strdup(secret2);
317
318 auth_check_secret_length(auth);
319
320 return (auth);
321}
322
323static struct portal *
324portal_new(struct portal_group *pg)
325{
326 struct portal *portal;
327
328 portal = calloc(1, sizeof(*portal));
329 if (portal == NULL)
330 log_err(1, "calloc");
331 TAILQ_INIT(&portal->p_targets);
332 portal->p_portal_group = pg;
333 TAILQ_INSERT_TAIL(&pg->pg_portals, portal, p_next);
334 return (portal);
335}
336
337static void
338portal_delete(struct portal *portal)
339{
340 TAILQ_REMOVE(&portal->p_portal_group->pg_portals, portal, p_next);
341 freeaddrinfo(portal->p_ai);
342 free(portal->p_listen);
343 free(portal);
344}
345
346struct portal_group *
347portal_group_new(struct conf *conf, const char *name)
348{
349 struct portal_group *pg;
350
351 pg = portal_group_find(conf, name);
352 if (pg != NULL) {
353 log_warnx("duplicated portal-group \"%s\"", name);
354 return (NULL);
355 }
356
357 pg = calloc(1, sizeof(*pg));
358 if (pg == NULL)
359 log_err(1, "calloc");
360 pg->pg_name = checked_strdup(name);
361 TAILQ_INIT(&pg->pg_portals);
362 pg->pg_conf = conf;
363 conf->conf_last_portal_group_tag++;
364 pg->pg_tag = conf->conf_last_portal_group_tag;
365 TAILQ_INSERT_TAIL(&conf->conf_portal_groups, pg, pg_next);
366
367 return (pg);
368}
369
370void
371portal_group_delete(struct portal_group *pg)
372{
373 struct portal *portal, *tmp;
374
375 TAILQ_REMOVE(&pg->pg_conf->conf_portal_groups, pg, pg_next);
376
377 TAILQ_FOREACH_SAFE(portal, &pg->pg_portals, p_next, tmp)
378 portal_delete(portal);
379 free(pg->pg_name);
380 free(pg);
381}
382
383struct portal_group *
384portal_group_find(struct conf *conf, const char *name)
385{
386 struct portal_group *pg;
387
388 TAILQ_FOREACH(pg, &conf->conf_portal_groups, pg_next) {
389 if (strcmp(pg->pg_name, name) == 0)
390 return (pg);
391 }
392
393 return (NULL);
394}
395
396int
397portal_group_add_listen(struct portal_group *pg, const char *value, bool iser)
398{
399 struct addrinfo hints;
400 struct portal *portal;
401 char *addr, *ch, *arg;
402 const char *port;
403 int error, colons = 0;
404
405#ifndef ICL_KERNEL_PROXY
406 if (iser) {
407 log_warnx("ctld(8) compiled without ICL_KERNEL_PROXY "
408 "does not support iSER protocol");
409 return (-1);
410 }
411#endif
412
413 portal = portal_new(pg);
414 portal->p_listen = checked_strdup(value);
415 portal->p_iser = iser;
416
417 arg = portal->p_listen;
418 if (arg[0] == '\0') {
419 log_warnx("empty listen address");
420 free(portal->p_listen);
421 free(portal);
422 return (1);
423 }
424 if (arg[0] == '[') {
425 /*
426 * IPv6 address in square brackets, perhaps with port.
427 */
428 arg++;
429 addr = strsep(&arg, "]");
430 if (arg == NULL) {
431 log_warnx("invalid listen address %s",
432 portal->p_listen);
433 free(portal->p_listen);
434 free(portal);
435 return (1);
436 }
437 if (arg[0] == '\0') {
438 port = "3260";
439 } else if (arg[0] == ':') {
440 port = arg + 1;
441 } else {
442 log_warnx("invalid listen address %s",
443 portal->p_listen);
444 free(portal->p_listen);
445 free(portal);
446 return (1);
447 }
448 } else {
449 /*
450 * Either IPv6 address without brackets - and without
451 * a port - or IPv4 address. Just count the colons.
452 */
453 for (ch = arg; *ch != '\0'; ch++) {
454 if (*ch == ':')
455 colons++;
456 }
457 if (colons > 1) {
458 addr = arg;
459 port = "3260";
460 } else {
461 addr = strsep(&arg, ":");
462 if (arg == NULL)
463 port = "3260";
464 else
465 port = arg;
466 }
467 }
468
469 memset(&hints, 0, sizeof(hints));
470 hints.ai_family = PF_UNSPEC;
471 hints.ai_socktype = SOCK_STREAM;
472 hints.ai_flags = AI_PASSIVE;
473
474 error = getaddrinfo(addr, port, &hints, &portal->p_ai);
475 if (error != 0) {
476 log_warnx("getaddrinfo for %s failed: %s",
477 portal->p_listen, gai_strerror(error));
478 free(portal->p_listen);
479 free(portal);
480 return (1);
481 }
482
483 /*
484 * XXX: getaddrinfo(3) may return multiple addresses; we should turn
485 * those into multiple portals.
486 */
487
488 return (0);
489}
490
491static bool
492valid_hex(const char ch)
493{
494 switch (ch) {
495 case '0':
496 case '1':
497 case '2':
498 case '3':
499 case '4':
500 case '5':
501 case '6':
502 case '7':
503 case '8':
504 case '9':
505 case 'a':
506 case 'A':
507 case 'b':
508 case 'B':
509 case 'c':
510 case 'C':
511 case 'd':
512 case 'D':
513 case 'e':
514 case 'E':
515 case 'f':
516 case 'F':
517 return (true);
518 default:
519 return (false);
520 }
521}
522
523bool
524valid_iscsi_name(const char *name)
525{
526 int i;
527
528 if (strlen(name) >= MAX_NAME_LEN) {
529 log_warnx("overlong name for target \"%s\"; max length allowed "
530 "by iSCSI specification is %d characters",
531 name, MAX_NAME_LEN);
532 return (false);
533 }
534
535 /*
536 * In the cases below, we don't return an error, just in case the admin
537 * was right, and we're wrong.
538 */
539 if (strncasecmp(name, "iqn.", strlen("iqn.")) == 0) {
540 for (i = strlen("iqn."); name[i] != '\0'; i++) {
541 /*
542 * XXX: We should verify UTF-8 normalisation, as defined
543 * by 3.2.6.2: iSCSI Name Encoding.
544 */
545 if (isalnum(name[i]))
546 continue;
547 if (name[i] == '-' || name[i] == '.' || name[i] == ':')
548 continue;
549 log_warnx("invalid character \"%c\" in target name "
550 "\"%s\"; allowed characters are letters, digits, "
551 "'-', '.', and ':'", name[i], name);
552 break;
553 }
554 /*
555 * XXX: Check more stuff: valid date and a valid reversed domain.
556 */
557 } else if (strncasecmp(name, "eui.", strlen("eui.")) == 0) {
558 if (strlen(name) != strlen("eui.") + 16)
559 log_warnx("invalid target name \"%s\"; the \"eui.\" "
560 "should be followed by exactly 16 hexadecimal "
561 "digits", name);
562 for (i = strlen("eui."); name[i] != '\0'; i++) {
563 if (!valid_hex(name[i])) {
564 log_warnx("invalid character \"%c\" in target "
565 "name \"%s\"; allowed characters are 1-9 "
566 "and A-F", name[i], name);
567 break;
568 }
569 }
570 } else if (strncasecmp(name, "naa.", strlen("naa.")) == 0) {
571 if (strlen(name) > strlen("naa.") + 32)
572 log_warnx("invalid target name \"%s\"; the \"naa.\" "
573 "should be followed by at most 32 hexadecimal "
574 "digits", name);
575 for (i = strlen("naa."); name[i] != '\0'; i++) {
576 if (!valid_hex(name[i])) {
577 log_warnx("invalid character \"%c\" in target "
578 "name \"%s\"; allowed characters are 1-9 "
579 "and A-F", name[i], name);
580 break;
581 }
582 }
583 } else {
584 log_warnx("invalid target name \"%s\"; should start with "
585 "either \".iqn\", \"eui.\", or \"naa.\"",
586 name);
587 }
588 return (true);
589}
590
591struct target *
592target_new(struct conf *conf, const char *iqn)
593{
594 struct target *targ;
595 int i, len;
596
597 targ = target_find(conf, iqn);
598 if (targ != NULL) {
599 log_warnx("duplicated target \"%s\"", iqn);
600 return (NULL);
601 }
602 if (valid_iscsi_name(iqn) == false) {
603 log_warnx("target name \"%s\" is invalid", iqn);
604 return (NULL);
605 }
606 targ = calloc(1, sizeof(*targ));
607 if (targ == NULL)
608 log_err(1, "calloc");
609 targ->t_iqn = checked_strdup(iqn);
610
611 /*
612 * RFC 3722 requires us to normalize the name to lowercase.
613 */
614 len = strlen(iqn);
615 for (i = 0; i < len; i++)
616 targ->t_iqn[i] = tolower(targ->t_iqn[i]);
617
618 TAILQ_INIT(&targ->t_luns);
619 targ->t_conf = conf;
620 TAILQ_INSERT_TAIL(&conf->conf_targets, targ, t_next);
621
622 return (targ);
623}
624
625void
626target_delete(struct target *targ)
627{
628 struct lun *lun, *tmp;
629
630 TAILQ_REMOVE(&targ->t_conf->conf_targets, targ, t_next);
631
632 TAILQ_FOREACH_SAFE(lun, &targ->t_luns, l_next, tmp)
633 lun_delete(lun);
634 free(targ->t_iqn);
635 free(targ);
636}
637
638struct target *
639target_find(struct conf *conf, const char *iqn)
640{
641 struct target *targ;
642
643 TAILQ_FOREACH(targ, &conf->conf_targets, t_next) {
644 if (strcasecmp(targ->t_iqn, iqn) == 0)
645 return (targ);
646 }
647
648 return (NULL);
649}
650
651struct lun *
652lun_new(struct target *targ, int lun_id)
653{
654 struct lun *lun;
655
656 lun = lun_find(targ, lun_id);
657 if (lun != NULL) {
658 log_warnx("duplicated lun %d for target \"%s\"",
659 lun_id, targ->t_iqn);
660 return (NULL);
661 }
662
663 lun = calloc(1, sizeof(*lun));
664 if (lun == NULL)
665 log_err(1, "calloc");
666 lun->l_lun = lun_id;
667 TAILQ_INIT(&lun->l_options);
668 lun->l_target = targ;
669 TAILQ_INSERT_TAIL(&targ->t_luns, lun, l_next);
670
671 return (lun);
672}
673
674void
675lun_delete(struct lun *lun)
676{
677 struct lun_option *lo, *tmp;
678
679 TAILQ_REMOVE(&lun->l_target->t_luns, lun, l_next);
680
681 TAILQ_FOREACH_SAFE(lo, &lun->l_options, lo_next, tmp)
682 lun_option_delete(lo);
683 free(lun->l_backend);
684 free(lun->l_device_id);
685 free(lun->l_path);
686 free(lun->l_serial);
687 free(lun);
688}
689
690struct lun *
691lun_find(struct target *targ, int lun_id)
692{
693 struct lun *lun;
694
695 TAILQ_FOREACH(lun, &targ->t_luns, l_next) {
696 if (lun->l_lun == lun_id)
697 return (lun);
698 }
699
700 return (NULL);
701}
702
703void
704lun_set_backend(struct lun *lun, const char *value)
705{
706 free(lun->l_backend);
707 lun->l_backend = checked_strdup(value);
708}
709
710void
711lun_set_blocksize(struct lun *lun, size_t value)
712{
713
714 lun->l_blocksize = value;
715}
716
717void
718lun_set_device_id(struct lun *lun, const char *value)
719{
720 free(lun->l_device_id);
721 lun->l_device_id = checked_strdup(value);
722}
723
724void
725lun_set_path(struct lun *lun, const char *value)
726{
727 free(lun->l_path);
728 lun->l_path = checked_strdup(value);
729}
730
731void
732lun_set_serial(struct lun *lun, const char *value)
733{
734 free(lun->l_serial);
735 lun->l_serial = checked_strdup(value);
736}
737
738void
739lun_set_size(struct lun *lun, size_t value)
740{
741
742 lun->l_size = value;
743}
744
745void
746lun_set_ctl_lun(struct lun *lun, uint32_t value)
747{
748
749 lun->l_ctl_lun = value;
750}
751
752struct lun_option *
753lun_option_new(struct lun *lun, const char *name, const char *value)
754{
755 struct lun_option *lo;
756
757 lo = lun_option_find(lun, name);
758 if (lo != NULL) {
759 log_warnx("duplicated lun option %s for lun %d, target \"%s\"",
760 name, lun->l_lun, lun->l_target->t_iqn);
761 return (NULL);
762 }
763
764 lo = calloc(1, sizeof(*lo));
765 if (lo == NULL)
766 log_err(1, "calloc");
767 lo->lo_name = checked_strdup(name);
768 lo->lo_value = checked_strdup(value);
769 lo->lo_lun = lun;
770 TAILQ_INSERT_TAIL(&lun->l_options, lo, lo_next);
771
772 return (lo);
773}
774
775void
776lun_option_delete(struct lun_option *lo)
777{
778
779 TAILQ_REMOVE(&lo->lo_lun->l_options, lo, lo_next);
780
781 free(lo->lo_name);
782 free(lo->lo_value);
783 free(lo);
784}
785
786struct lun_option *
787lun_option_find(struct lun *lun, const char *name)
788{
789 struct lun_option *lo;
790
791 TAILQ_FOREACH(lo, &lun->l_options, lo_next) {
792 if (strcmp(lo->lo_name, name) == 0)
793 return (lo);
794 }
795
796 return (NULL);
797}
798
799void
800lun_option_set(struct lun_option *lo, const char *value)
801{
802
803 free(lo->lo_value);
804 lo->lo_value = checked_strdup(value);
805}
806
807static struct connection *
808connection_new(struct portal *portal, int fd, const char *host)
809{
810 struct connection *conn;
811
812 conn = calloc(1, sizeof(*conn));
813 if (conn == NULL)
814 log_err(1, "calloc");
815 conn->conn_portal = portal;
816 conn->conn_socket = fd;
817 conn->conn_initiator_addr = checked_strdup(host);
818
819 /*
820 * Default values, from RFC 3720, section 12.
821 */
822 conn->conn_max_data_segment_length = 8192;
823 conn->conn_max_burst_length = 262144;
824 conn->conn_immediate_data = true;
825
826 return (conn);
827}
828
829#if 0
830static void
831conf_print(struct conf *conf)
832{
833 struct auth_group *ag;
834 struct auth *auth;
835 struct portal_group *pg;
836 struct portal *portal;
837 struct target *targ;
838 struct lun *lun;
839 struct lun_option *lo;
840
841 TAILQ_FOREACH(ag, &conf->conf_auth_groups, ag_next) {
842 fprintf(stderr, "auth-group %s {\n", ag->ag_name);
843 TAILQ_FOREACH(auth, &ag->ag_auths, a_next)
844 fprintf(stderr, "\t chap-mutual %s %s %s %s\n",
845 auth->a_user, auth->a_secret,
846 auth->a_mutual_user, auth->a_mutual_secret);
847 fprintf(stderr, "}\n");
848 }
849 TAILQ_FOREACH(pg, &conf->conf_portal_groups, pg_next) {
850 fprintf(stderr, "portal-group %s {\n", pg->pg_name);
851 TAILQ_FOREACH(portal, &pg->pg_portals, p_next)
852 fprintf(stderr, "\t listen %s\n", portal->p_listen);
853 fprintf(stderr, "}\n");
854 }
855 TAILQ_FOREACH(targ, &conf->conf_targets, t_next) {
856 fprintf(stderr, "target %s {\n", targ->t_iqn);
857 if (targ->t_alias != NULL)
858 fprintf(stderr, "\t alias %s\n", targ->t_alias);
859 TAILQ_FOREACH(lun, &targ->t_luns, l_next) {
860 fprintf(stderr, "\tlun %d {\n", lun->l_lun);
861 fprintf(stderr, "\t\tpath %s\n", lun->l_path);
862 TAILQ_FOREACH(lo, &lun->l_options, lo_next)
863 fprintf(stderr, "\t\toption %s %s\n",
864 lo->lo_name, lo->lo_value);
865 fprintf(stderr, "\t}\n");
866 }
867 fprintf(stderr, "}\n");
868 }
869}
870#endif
871
872static int
873conf_verify_lun(struct lun *lun)
874{
875 const struct lun *lun2;
876 const struct target *targ2;
877
878 if (lun->l_backend == NULL)
879 lun_set_backend(lun, "block");
880 if (strcmp(lun->l_backend, "block") == 0) {
881 if (lun->l_path == NULL) {
882 log_warnx("missing path for lun %d, target \"%s\"",
883 lun->l_lun, lun->l_target->t_iqn);
884 return (1);
885 }
886 } else if (strcmp(lun->l_backend, "ramdisk") == 0) {
887 if (lun->l_size == 0) {
888 log_warnx("missing size for ramdisk-backed lun %d, "
889 "target \"%s\"", lun->l_lun, lun->l_target->t_iqn);
890 return (1);
891 }
892 if (lun->l_path != NULL) {
893 log_warnx("path must not be specified "
894 "for ramdisk-backed lun %d, target \"%s\"",
895 lun->l_lun, lun->l_target->t_iqn);
896 return (1);
897 }
898 }
899 if (lun->l_lun < 0 || lun->l_lun > 255) {
900 log_warnx("invalid lun number for lun %d, target \"%s\"; "
901 "must be between 0 and 255", lun->l_lun,
902 lun->l_target->t_iqn);
903 return (1);
904 }
905 if (lun->l_blocksize == 0) {
906 lun_set_blocksize(lun, DEFAULT_BLOCKSIZE);
907 } else if (lun->l_blocksize < 0) {
908 log_warnx("invalid blocksize for lun %d, target \"%s\"; "
909 "must be larger than 0", lun->l_lun, lun->l_target->t_iqn);
910 return (1);
911 }
912 if (lun->l_size != 0 && lun->l_size % lun->l_blocksize != 0) {
913 log_warnx("invalid size for lun %d, target \"%s\"; "
914 "must be multiple of blocksize", lun->l_lun,
915 lun->l_target->t_iqn);
916 return (1);
917 }
918 TAILQ_FOREACH(targ2, &lun->l_target->t_conf->conf_targets, t_next) {
919 TAILQ_FOREACH(lun2, &targ2->t_luns, l_next) {
920 if (lun == lun2)
921 continue;
922 if (lun->l_path != NULL && lun2->l_path != NULL &&
923 strcmp(lun->l_path, lun2->l_path) == 0) {
924 log_debugx("WARNING: path \"%s\" duplicated "
925 "between lun %d, target \"%s\", and "
926 "lun %d, target \"%s\"", lun->l_path,
927 lun->l_lun, lun->l_target->t_iqn,
928 lun2->l_lun, lun2->l_target->t_iqn);
929 }
930 }
931 }
932
933 return (0);
934}
935
936int
937conf_verify(struct conf *conf)
938{
939 struct auth_group *ag;
940 struct portal_group *pg;
941 struct target *targ;
942 struct lun *lun;
943 bool found_lun0;
944 int error;
945
946 if (conf->conf_pidfile_path == NULL)
947 conf->conf_pidfile_path = checked_strdup(DEFAULT_PIDFILE);
948
949 TAILQ_FOREACH(targ, &conf->conf_targets, t_next) {
950 if (targ->t_auth_group == NULL) {
951 log_warnx("missing authentication for target \"%s\"; "
952 "must specify either \"auth-group\", \"chap\", "
953 "or \"chap-mutual\"", targ->t_iqn);
954 return (1);
955 }
956 if (targ->t_portal_group == NULL) {
957 targ->t_portal_group = portal_group_find(conf,
958 "default");
959 assert(targ->t_portal_group != NULL);
960 }
961 found_lun0 = false;
962 TAILQ_FOREACH(lun, &targ->t_luns, l_next) {
963 error = conf_verify_lun(lun);
964 if (error != 0)
965 return (error);
966 if (lun->l_lun == 0)
967 found_lun0 = true;
968 }
969 if (!found_lun0) {
970 log_warnx("mandatory LUN 0 not configured "
971 "for target \"%s\"", targ->t_iqn);
972 return (1);
973 }
974 }
975 TAILQ_FOREACH(pg, &conf->conf_portal_groups, pg_next) {
976 assert(pg->pg_name != NULL);
977 if (pg->pg_discovery_auth_group == NULL) {
978 pg->pg_discovery_auth_group =
979 auth_group_find(conf, "no-access");
980 assert(pg->pg_discovery_auth_group != NULL);
981 }
982
983 TAILQ_FOREACH(targ, &conf->conf_targets, t_next) {
984 if (targ->t_portal_group == pg)
985 break;
986 }
987 if (targ == NULL) {
988 if (strcmp(pg->pg_name, "default") != 0)
989 log_warnx("portal-group \"%s\" not assigned "
990 "to any target", pg->pg_name);
991 pg->pg_unassigned = true;
992 } else
993 pg->pg_unassigned = false;
994 }
995 TAILQ_FOREACH(ag, &conf->conf_auth_groups, ag_next) {
996 if (ag->ag_name == NULL)
997 assert(ag->ag_target != NULL);
998 else
999 assert(ag->ag_target == NULL);
1000
1001 TAILQ_FOREACH(targ, &conf->conf_targets, t_next) {
1002 if (targ->t_auth_group == ag)
1003 break;
1004 }
1005 if (targ == NULL && ag->ag_name != NULL &&
1006 strcmp(ag->ag_name, "no-authentication") != 0 &&
1007 strcmp(ag->ag_name, "no-access") != 0) {
1008 log_warnx("auth-group \"%s\" not assigned "
1009 "to any target", ag->ag_name);
1010 }
1011 }
1012
1013 return (0);
1014}
1015
1016static int
1017conf_apply(struct conf *oldconf, struct conf *newconf)
1018{
1019 struct target *oldtarg, *newtarg, *tmptarg;
1020 struct lun *oldlun, *newlun, *tmplun;
1021 struct portal_group *oldpg, *newpg;
1022 struct portal *oldp, *newp;
1023 pid_t otherpid;
1024 int changed, cumulated_error = 0, error;
1025#ifndef ICL_KERNEL_PROXY
1026 int one = 1;
1027#endif
1028
1029 if (oldconf->conf_debug != newconf->conf_debug) {
1030 log_debugx("changing debug level to %d", newconf->conf_debug);
1031 log_init(newconf->conf_debug);
1032 }
1033
1034 if (oldconf->conf_pidfh != NULL) {
1035 assert(oldconf->conf_pidfile_path != NULL);
1036 if (newconf->conf_pidfile_path != NULL &&
1037 strcmp(oldconf->conf_pidfile_path,
1038 newconf->conf_pidfile_path) == 0) {
1039 newconf->conf_pidfh = oldconf->conf_pidfh;
1040 oldconf->conf_pidfh = NULL;
1041 } else {
1042 log_debugx("removing pidfile %s",
1043 oldconf->conf_pidfile_path);
1044 pidfile_remove(oldconf->conf_pidfh);
1045 oldconf->conf_pidfh = NULL;
1046 }
1047 }
1048
1049 if (newconf->conf_pidfh == NULL && newconf->conf_pidfile_path != NULL) {
1050 log_debugx("opening pidfile %s", newconf->conf_pidfile_path);
1051 newconf->conf_pidfh =
1052 pidfile_open(newconf->conf_pidfile_path, 0600, &otherpid);
1053 if (newconf->conf_pidfh == NULL) {
1054 if (errno == EEXIST)
1055 log_errx(1, "daemon already running, pid: %jd.",
1056 (intmax_t)otherpid);
1057 log_err(1, "cannot open or create pidfile \"%s\"",
1058 newconf->conf_pidfile_path);
1059 }
1060 }
1061
1062 TAILQ_FOREACH_SAFE(oldtarg, &oldconf->conf_targets, t_next, tmptarg) {
1063 /*
1064 * First, remove any targets present in the old configuration
1065 * and missing in the new one.
1066 */
1067 newtarg = target_find(newconf, oldtarg->t_iqn);
1068 if (newtarg == NULL) {
1069 TAILQ_FOREACH_SAFE(oldlun, &oldtarg->t_luns, l_next,
1070 tmplun) {
1071 log_debugx("target %s not found in new "
1072 "configuration; removing its lun %d, "
1073 "backed by CTL lun %d",
1074 oldtarg->t_iqn, oldlun->l_lun,
1075 oldlun->l_ctl_lun);
1076 error = kernel_lun_remove(oldlun);
1077 if (error != 0) {
1078 log_warnx("failed to remove lun %d, "
1079 "target %s, CTL lun %d",
1080 oldlun->l_lun, oldtarg->t_iqn,
1081 oldlun->l_ctl_lun);
1082 cumulated_error++;
1083 }
1084 lun_delete(oldlun);
1085 }
1086 target_delete(oldtarg);
1087 continue;
1088 }
1089
1090 /*
1091 * Second, remove any LUNs present in the old target
1092 * and missing in the new one.
1093 */
1094 TAILQ_FOREACH_SAFE(oldlun, &oldtarg->t_luns, l_next, tmplun) {
1095 newlun = lun_find(newtarg, oldlun->l_lun);
1096 if (newlun == NULL) {
1097 log_debugx("lun %d, target %s, CTL lun %d "
1098 "not found in new configuration; "
1099 "removing", oldlun->l_lun, oldtarg->t_iqn,
1100 oldlun->l_ctl_lun);
1101 error = kernel_lun_remove(oldlun);
1102 if (error != 0) {
1103 log_warnx("failed to remove lun %d, "
1104 "target %s, CTL lun %d",
1105 oldlun->l_lun, oldtarg->t_iqn,
1106 oldlun->l_ctl_lun);
1107 cumulated_error++;
1108 }
1109 lun_delete(oldlun);
1110 continue;
1111 }
1112
1113 /*
1114 * Also remove the LUNs changed by more than size.
1115 */
1116 changed = 0;
1117 assert(oldlun->l_backend != NULL);
1118 assert(newlun->l_backend != NULL);
1119 if (strcmp(newlun->l_backend, oldlun->l_backend) != 0) {
1120 log_debugx("backend for lun %d, target %s, "
1121 "CTL lun %d changed; removing",
1122 oldlun->l_lun, oldtarg->t_iqn,
1123 oldlun->l_ctl_lun);
1124 changed = 1;
1125 }
1126 if (oldlun->l_blocksize != newlun->l_blocksize) {
1127 log_debugx("blocksize for lun %d, target %s, "
1128 "CTL lun %d changed; removing",
1129 oldlun->l_lun, oldtarg->t_iqn,
1130 oldlun->l_ctl_lun);
1131 changed = 1;
1132 }
1133 if (newlun->l_device_id != NULL &&
1134 (oldlun->l_device_id == NULL ||
1135 strcmp(oldlun->l_device_id, newlun->l_device_id) !=
1136 0)) {
1137 log_debugx("device-id for lun %d, target %s, "
1138 "CTL lun %d changed; removing",
1139 oldlun->l_lun, oldtarg->t_iqn,
1140 oldlun->l_ctl_lun);
1141 changed = 1;
1142 }
1143 if (newlun->l_path != NULL &&
1144 (oldlun->l_path == NULL ||
1145 strcmp(oldlun->l_path, newlun->l_path) != 0)) {
1146 log_debugx("path for lun %d, target %s, "
1147 "CTL lun %d, changed; removing",
1148 oldlun->l_lun, oldtarg->t_iqn,
1149 oldlun->l_ctl_lun);
1150 changed = 1;
1151 }
1152 if (newlun->l_serial != NULL &&
1153 (oldlun->l_serial == NULL ||
1154 strcmp(oldlun->l_serial, newlun->l_serial) != 0)) {
1155 log_debugx("serial for lun %d, target %s, "
1156 "CTL lun %d changed; removing",
1157 oldlun->l_lun, oldtarg->t_iqn,
1158 oldlun->l_ctl_lun);
1159 changed = 1;
1160 }
1161 if (changed) {
1162 error = kernel_lun_remove(oldlun);
1163 if (error != 0) {
1164 log_warnx("failed to remove lun %d, "
1165 "target %s, CTL lun %d",
1166 oldlun->l_lun, oldtarg->t_iqn,
1167 oldlun->l_ctl_lun);
1168 cumulated_error++;
1169 }
1170 lun_delete(oldlun);
1171 continue;
1172 }
1173
1174 lun_set_ctl_lun(newlun, oldlun->l_ctl_lun);
1175 }
1176 }
1177
1178 /*
1179 * Now add new targets or modify existing ones.
1180 */
1181 TAILQ_FOREACH(newtarg, &newconf->conf_targets, t_next) {
1182 oldtarg = target_find(oldconf, newtarg->t_iqn);
1183
1184 TAILQ_FOREACH(newlun, &newtarg->t_luns, l_next) {
1185 if (oldtarg != NULL) {
1186 oldlun = lun_find(oldtarg, newlun->l_lun);
1187 if (oldlun != NULL) {
1188 if (newlun->l_size != oldlun->l_size) {
1189 log_debugx("resizing lun %d, "
1190 "target %s, CTL lun %d",
1191 newlun->l_lun,
1192 newtarg->t_iqn,
1193 newlun->l_ctl_lun);
1194 error =
1195 kernel_lun_resize(newlun);
1196 if (error != 0) {
1197 log_warnx("failed to "
1198 "resize lun %d, "
1199 "target %s, "
1200 "CTL lun %d",
1201 newlun->l_lun,
1202 newtarg->t_iqn,
1203 newlun->l_lun);
1204 cumulated_error++;
1205 }
1206 }
1207 continue;
1208 }
1209 }
1210 log_debugx("adding lun %d, target %s",
1211 newlun->l_lun, newtarg->t_iqn);
1212 error = kernel_lun_add(newlun);
1213 if (error != 0) {
1214 log_warnx("failed to add lun %d, target %s",
1215 newlun->l_lun, newtarg->t_iqn);
1216 cumulated_error++;
1217 }
1218 }
1219 }
1220
1221 /*
1222 * Go through the new portals, opening the sockets as neccessary.
1223 */
1224 TAILQ_FOREACH(newpg, &newconf->conf_portal_groups, pg_next) {
1225 if (newpg->pg_unassigned) {
1226 log_debugx("not listening on portal-group \"%s\", "
1227 "not assigned to any target",
1228 newpg->pg_name);
1229 continue;
1230 }
1231 TAILQ_FOREACH(newp, &newpg->pg_portals, p_next) {
1232 /*
1233 * Try to find already open portal and reuse
1234 * the listening socket. We don't care about
1235 * what portal or portal group that was, what
1236 * matters is the listening address.
1237 */
1238 TAILQ_FOREACH(oldpg, &oldconf->conf_portal_groups,
1239 pg_next) {
1240 TAILQ_FOREACH(oldp, &oldpg->pg_portals,
1241 p_next) {
1242 if (strcmp(newp->p_listen,
1243 oldp->p_listen) == 0 &&
1244 oldp->p_socket > 0) {
1245 newp->p_socket =
1246 oldp->p_socket;
1247 oldp->p_socket = 0;
1248 break;
1249 }
1250 }
1251 }
1252 if (newp->p_socket > 0) {
1253 /*
1254 * We're done with this portal.
1255 */
1256 continue;
1257 }
1258
1259#ifdef ICL_KERNEL_PROXY
1260 log_debugx("listening on %s, portal-group \"%s\" using ICL proxy",
1261 newp->p_listen, newpg->pg_name);
1262 kernel_listen(newp->p_ai, newp->p_iser);
1263#else
1264 assert(newp->p_iser == false);
1265
1266 log_debugx("listening on %s, portal-group \"%s\"",
1267 newp->p_listen, newpg->pg_name);
1268 newp->p_socket = socket(newp->p_ai->ai_family,
1269 newp->p_ai->ai_socktype,
1270 newp->p_ai->ai_protocol);
1271 if (newp->p_socket < 0) {
1272 log_warn("socket(2) failed for %s",
1273 newp->p_listen);
1274 cumulated_error++;
1275 continue;
1276 }
1277 error = setsockopt(newp->p_socket, SOL_SOCKET,
1278 SO_REUSEADDR, &one, sizeof(one));
1279 if (error != 0) {
1280 log_warn("setsockopt(SO_REUSEADDR) failed "
1281 "for %s", newp->p_listen);
1282 close(newp->p_socket);
1283 newp->p_socket = 0;
1284 cumulated_error++;
1285 continue;
1286 }
1287 error = bind(newp->p_socket, newp->p_ai->ai_addr,
1288 newp->p_ai->ai_addrlen);
1289 if (error != 0) {
1290 log_warn("bind(2) failed for %s",
1291 newp->p_listen);
1292 close(newp->p_socket);
1293 newp->p_socket = 0;
1294 cumulated_error++;
1295 continue;
1296 }
1297 error = listen(newp->p_socket, -1);
1298 if (error != 0) {
1299 log_warn("listen(2) failed for %s",
1300 newp->p_listen);
1301 close(newp->p_socket);
1302 newp->p_socket = 0;
1303 cumulated_error++;
1304 continue;
1305 }
1306#endif /* !ICL_KERNEL_PROXY */
1307 }
1308 }
1309
1310 /*
1311 * Go through the no longer used sockets, closing them.
1312 */
1313 TAILQ_FOREACH(oldpg, &oldconf->conf_portal_groups, pg_next) {
1314 TAILQ_FOREACH(oldp, &oldpg->pg_portals, p_next) {
1315 if (oldp->p_socket <= 0)
1316 continue;
1317 log_debugx("closing socket for %s, portal-group \"%s\"",
1318 oldp->p_listen, oldpg->pg_name);
1319 close(oldp->p_socket);
1320 oldp->p_socket = 0;
1321 }
1322 }
1323
1324 return (cumulated_error);
1325}
1326
1327bool
1328timed_out(void)
1329{
1330
1331 return (sigalrm_received);
1332}
1333
1334static void
1335sigalrm_handler(int dummy __unused)
1336{
1337 /*
1338 * It would be easiest to just log an error and exit. We can't
1339 * do this, though, because log_errx() is not signal safe, since
1340 * it calls syslog(3). Instead, set a flag checked by pdu_send()
1341 * and pdu_receive(), to call log_errx() there. Should they fail
1342 * to notice, we'll exit here one second later.
1343 */
1344 if (sigalrm_received) {
1345 /*
1346 * Oh well. Just give up and quit.
1347 */
1348 _exit(2);
1349 }
1350
1351 sigalrm_received = true;
1352}
1353
1354static void
1355set_timeout(const struct conf *conf)
1356{
1357 struct sigaction sa;
1358 struct itimerval itv;
1359 int error;
1360
1361 if (conf->conf_timeout <= 0) {
1362 log_debugx("session timeout disabled");
1363 return;
1364 }
1365
1366 bzero(&sa, sizeof(sa));
1367 sa.sa_handler = sigalrm_handler;
1368 sigfillset(&sa.sa_mask);
1369 error = sigaction(SIGALRM, &sa, NULL);
1370 if (error != 0)
1371 log_err(1, "sigaction");
1372
1373 /*
1374 * First SIGALRM will arive after conf_timeout seconds.
1375 * If we do nothing, another one will arrive a second later.
1376 */
1377 bzero(&itv, sizeof(itv));
1378 itv.it_interval.tv_sec = 1;
1379 itv.it_value.tv_sec = conf->conf_timeout;
1380
1381 log_debugx("setting session timeout to %d seconds",
1382 conf->conf_timeout);
1383 error = setitimer(ITIMER_REAL, &itv, NULL);
1384 if (error != 0)
1385 log_err(1, "setitimer");
1386}
1387
1388static int
1389wait_for_children(bool block)
1390{
1391 pid_t pid;
1392 int status;
1393 int num = 0;
1394
1395 for (;;) {
1396 /*
1397 * If "block" is true, wait for at least one process.
1398 */
1399 if (block && num == 0)
1400 pid = wait4(-1, &status, 0, NULL);
1401 else
1402 pid = wait4(-1, &status, WNOHANG, NULL);
1403 if (pid <= 0)
1404 break;
1405 if (WIFSIGNALED(status)) {
1406 log_warnx("child process %d terminated with signal %d",
1407 pid, WTERMSIG(status));
1408 } else if (WEXITSTATUS(status) != 0) {
1409 log_warnx("child process %d terminated with exit status %d",
1410 pid, WEXITSTATUS(status));
1411 } else {
1412 log_debugx("child process %d terminated gracefully", pid);
1413 }
1414 num++;
1415 }
1416
1417 return (num);
1418}
1419
1420static void
1421handle_connection(struct portal *portal, int fd, bool dont_fork)
1422{
1423 struct connection *conn;
1424#ifndef ICL_KERNEL_PROXY
1425 struct sockaddr_storage ss;
1426 socklen_t sslen = sizeof(ss);
1427 int error;
1428#endif
1429 pid_t pid;
1430 char host[NI_MAXHOST + 1];
1431 struct conf *conf;
1432
1433 conf = portal->p_portal_group->pg_conf;
1434
1435 if (dont_fork) {
1436 log_debugx("incoming connection; not forking due to -d flag");
1437 } else {
1438 nchildren -= wait_for_children(false);
1439 assert(nchildren >= 0);
1440
1441 while (conf->conf_maxproc > 0 && nchildren >= conf->conf_maxproc) {
1442 log_debugx("maxproc limit of %d child processes hit; "
1443 "waiting for child process to exit", conf->conf_maxproc);
1444 nchildren -= wait_for_children(true);
1445 assert(nchildren >= 0);
1446 }
1447 log_debugx("incoming connection; forking child process #%d",
1448 nchildren);
1449 nchildren++;
1450 pid = fork();
1451 if (pid < 0)
1452 log_err(1, "fork");
1453 if (pid > 0) {
1454 close(fd);
1455 return;
1456 }
1457 }
1458 pidfile_close(conf->conf_pidfh);
1459
1460#ifdef ICL_KERNEL_PROXY
1461 /*
1462 * XXX
1463 */
1464 log_set_peer_addr("XXX");
1465#else
1466 error = getpeername(fd, (struct sockaddr *)&ss, &sslen);
1467 if (error != 0)
1468 log_err(1, "getpeername");
1469 error = getnameinfo((struct sockaddr *)&ss, sslen,
1470 host, sizeof(host), NULL, 0, NI_NUMERICHOST);
1471 if (error != 0)
1472 log_errx(1, "getaddrinfo: %s", gai_strerror(error));
1473
1474 log_debugx("accepted connection from %s; portal group \"%s\"",
1475 host, portal->p_portal_group->pg_name);
1476 log_set_peer_addr(host);
1477 setproctitle("%s", host);
1478#endif
1479
1480 conn = connection_new(portal, fd, host);
1481 set_timeout(conf);
1482 kernel_capsicate();
1483 login(conn);
1484 if (conn->conn_session_type == CONN_SESSION_TYPE_NORMAL) {
1485 kernel_handoff(conn);
1486 log_debugx("connection handed off to the kernel");
1487 } else {
1488 assert(conn->conn_session_type == CONN_SESSION_TYPE_DISCOVERY);
1489 discovery(conn);
1490 }
1491 log_debugx("nothing more to do; exiting");
1492 exit(0);
1493}
1494
1495#ifndef ICL_KERNEL_PROXY
1496static int
1497fd_add(int fd, fd_set *fdset, int nfds)
1498{
1499
1500 /*
1501 * Skip sockets which we failed to bind.
1502 */
1503 if (fd <= 0)
1504 return (nfds);
1505
1506 FD_SET(fd, fdset);
1507 if (fd > nfds)
1508 nfds = fd;
1509 return (nfds);
1510}
1511#endif
1512
1513static void
1514main_loop(struct conf *conf, bool dont_fork)
1515{
1516 struct portal_group *pg;
1517 struct portal *portal;
1518#ifdef ICL_KERNEL_PROXY
1519 int connection_id;
1520#else
1521 fd_set fdset;
1522 int error, nfds, client_fd;
1523#endif
1524
1525 pidfile_write(conf->conf_pidfh);
1526
1527 for (;;) {
1528 if (sighup_received || sigterm_received)
1529 return;
1530
1531#ifdef ICL_KERNEL_PROXY
1532 connection_id = kernel_accept();
1533 if (connection_id == 0)
1534 continue;
1535
1536 /*
1537 * XXX: This is obviously temporary.
1538 */
1539 pg = TAILQ_FIRST(&conf->conf_portal_groups);
1540 portal = TAILQ_FIRST(&pg->pg_portals);
1541
1542 handle_connection(portal, connection_id, dont_fork);
1543#else
1544 FD_ZERO(&fdset);
1545 nfds = 0;
1546 TAILQ_FOREACH(pg, &conf->conf_portal_groups, pg_next) {
1547 TAILQ_FOREACH(portal, &pg->pg_portals, p_next)
1548 nfds = fd_add(portal->p_socket, &fdset, nfds);
1549 }
1550 error = select(nfds + 1, &fdset, NULL, NULL, NULL);
1551 if (error <= 0) {
1552 if (errno == EINTR)
1553 return;
1554 log_err(1, "select");
1555 }
1556 TAILQ_FOREACH(pg, &conf->conf_portal_groups, pg_next) {
1557 TAILQ_FOREACH(portal, &pg->pg_portals, p_next) {
1558 if (!FD_ISSET(portal->p_socket, &fdset))
1559 continue;
1560 client_fd = accept(portal->p_socket, NULL, 0);
1561 if (client_fd < 0)
1562 log_err(1, "accept");
1563 handle_connection(portal, client_fd, dont_fork);
1564 break;
1565 }
1566 }
1567#endif /* !ICL_KERNEL_PROXY */
1568 }
1569}
1570
1571static void
1572sighup_handler(int dummy __unused)
1573{
1574
1575 sighup_received = true;
1576}
1577
1578static void
1579sigterm_handler(int dummy __unused)
1580{
1581
1582 sigterm_received = true;
1583}
1584
1585static void
1586register_signals(void)
1587{
1588 struct sigaction sa;
1589 int error;
1590
1591 bzero(&sa, sizeof(sa));
1592 sa.sa_handler = sighup_handler;
1593 sigfillset(&sa.sa_mask);
1594 error = sigaction(SIGHUP, &sa, NULL);
1595 if (error != 0)
1596 log_err(1, "sigaction");
1597
1598 sa.sa_handler = sigterm_handler;
1599 error = sigaction(SIGTERM, &sa, NULL);
1600 if (error != 0)
1601 log_err(1, "sigaction");
1602
1603 sa.sa_handler = sigterm_handler;
1604 error = sigaction(SIGINT, &sa, NULL);
1605 if (error != 0)
1606 log_err(1, "sigaction");
1607}
1608
1609int
1610main(int argc, char **argv)
1611{
1612 struct conf *oldconf, *newconf, *tmpconf;
1613 const char *config_path = DEFAULT_CONFIG_PATH;
1614 int debug = 0, ch, error;
1615 bool dont_daemonize = false;
1616
1617 while ((ch = getopt(argc, argv, "df:")) != -1) {
1618 switch (ch) {
1619 case 'd':
1620 dont_daemonize = true;
1621 debug++;
1622 break;
1623 case 'f':
1624 config_path = optarg;
1625 break;
1626 case '?':
1627 default:
1628 usage();
1629 }
1630 }
1631 argc -= optind;
1632 if (argc != 0)
1633 usage();
1634
1635 log_init(debug);
1636 kernel_init();
1637
1638 oldconf = conf_new_from_kernel();
1639 newconf = conf_new_from_file(config_path);
1640 if (newconf == NULL)
1641 log_errx(1, "configuration error, exiting");
1642 if (debug > 0) {
1643 oldconf->conf_debug = debug;
1644 newconf->conf_debug = debug;
1645 }
1646
1647#ifdef ICL_KERNEL_PROXY
1648 log_debugx("enabling CTL iSCSI port");
1649 error = kernel_port_on();
1650 if (error != 0)
1651 log_errx(1, "failed to enable CTL iSCSI port, exiting");
1652#endif
1653
1654 error = conf_apply(oldconf, newconf);
1655 if (error != 0)
1656 log_errx(1, "failed to apply configuration, exiting");
1657 conf_delete(oldconf);
1658 oldconf = NULL;
1659
1660 register_signals();
1661
1662#ifndef ICL_KERNEL_PROXY
1663 log_debugx("enabling CTL iSCSI port");
1664 error = kernel_port_on();
1665 if (error != 0)
1666 log_errx(1, "failed to enable CTL iSCSI port, exiting");
1667#endif
1668
1669 if (dont_daemonize == false) {
1670 log_debugx("daemonizing");
1671 if (daemon(0, 0) == -1) {
1672 log_warn("cannot daemonize");
1673 pidfile_remove(newconf->conf_pidfh);
1674 exit(1);
1675 }
1676 }
1677
1678 for (;;) {
1679 main_loop(newconf, dont_daemonize);
1680 if (sighup_received) {
1681 sighup_received = false;
1682 log_debugx("received SIGHUP, reloading configuration");
1683 tmpconf = conf_new_from_file(config_path);
1684 if (tmpconf == NULL) {
1685 log_warnx("configuration error, "
1686 "continuing with old configuration");
1687 } else {
1688 if (debug > 0)
1689 tmpconf->conf_debug = debug;
1690 oldconf = newconf;
1691 newconf = tmpconf;
1692 error = conf_apply(oldconf, newconf);
1693 if (error != 0)
1694 log_warnx("failed to reload "
1695 "configuration");
1696 conf_delete(oldconf);
1697 oldconf = NULL;
1698 }
1699 } else if (sigterm_received) {
1700 log_debugx("exiting on signal; "
1701 "reloading empty configuration");
1702
1703 log_debugx("disabling CTL iSCSI port "
1704 "and terminating all connections");
1705 error = kernel_port_off();
1706 if (error != 0)
1707 log_warnx("failed to disable CTL iSCSI port");
1708
1709 oldconf = newconf;
1710 newconf = conf_new();
1711 if (debug > 0)
1712 newconf->conf_debug = debug;
1713 error = conf_apply(oldconf, newconf);
1714 if (error != 0)
1715 log_warnx("failed to apply configuration");
1716
1717 log_warnx("exiting on signal");
1718 exit(0);
1719 } else {
1720 nchildren -= wait_for_children(false);
1721 assert(nchildren >= 0);
1722 }
1723 }
1724 /* NOTREACHED */
1725}