]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sbin/devd/devd.cc
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sbin / devd / devd.cc
1 /*-
2  * Copyright (c) 2002-2010 M. Warner Losh.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * my_system is a variation on lib/libc/stdlib/system.c:
27  *
28  * Copyright (c) 1988, 1993
29  *      The Regents of the University of California.  All rights reserved.
30  *
31  * Redistribution and use in source and binary forms, with or without
32  * modification, are permitted provided that the following conditions
33  * are met:
34  * 1. Redistributions of source code must retain the above copyright
35  *    notice, this list of conditions and the following disclaimer.
36  * 2. Redistributions in binary form must reproduce the above copyright
37  *    notice, this list of conditions and the following disclaimer in the
38  *    documentation and/or other materials provided with the distribution.
39  * 4. Neither the name of the University nor the names of its contributors
40  *    may be used to endorse or promote products derived from this software
41  *    without specific prior written permission.
42  *
43  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
44  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
46  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
47  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
48  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
49  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
50  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
51  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
52  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53  * SUCH DAMAGE.
54  */
55
56 /*
57  * DEVD control daemon.
58  */
59
60 // TODO list:
61 //      o devd.conf and devd man pages need a lot of help:
62 //        - devd needs to document the unix domain socket
63 //        - devd.conf needs more details on the supported statements.
64
65 #include <sys/cdefs.h>
66 __FBSDID("$FreeBSD$");
67
68 #include <sys/param.h>
69 #include <sys/socket.h>
70 #include <sys/stat.h>
71 #include <sys/sysctl.h>
72 #include <sys/types.h>
73 #include <sys/wait.h>
74 #include <sys/un.h>
75
76 #include <ctype.h>
77 #include <dirent.h>
78 #include <errno.h>
79 #include <err.h>
80 #include <fcntl.h>
81 #include <libutil.h>
82 #include <paths.h>
83 #include <poll.h>
84 #include <regex.h>
85 #include <signal.h>
86 #include <stdlib.h>
87 #include <stdio.h>
88 #include <string.h>
89 #include <unistd.h>
90
91 #include <algorithm>
92 #include <map>
93 #include <string>
94 #include <list>
95 #include <vector>
96
97 #include "devd.h"               /* C compatible definitions */
98 #include "devd.hh"              /* C++ class definitions */
99
100 #define PIPE "/var/run/devd.pipe"
101 #define CF "/etc/devd.conf"
102 #define SYSCTL "hw.bus.devctl_disable"
103
104 using namespace std;
105
106 extern FILE *yyin;
107 extern int lineno;
108
109 static const char notify = '!';
110 static const char nomatch = '?';
111 static const char attach = '+';
112 static const char detach = '-';
113
114 static struct pidfh *pfh;
115
116 int Dflag;
117 int dflag;
118 int nflag;
119 int romeo_must_die = 0;
120
121 static const char *configfile = CF;
122
123 static void event_loop(void);
124 static void usage(void);
125
126 template <class T> void
127 delete_and_clear(vector<T *> &v)
128 {
129         typename vector<T *>::const_iterator i;
130
131         for (i = v.begin(); i != v.end(); ++i)
132                 delete *i;
133         v.clear();
134 }
135
136 config cfg;
137
138 event_proc::event_proc() : _prio(-1)
139 {
140         _epsvec.reserve(4);
141 }
142
143 event_proc::~event_proc()
144 {
145         delete_and_clear(_epsvec);
146 }
147
148 void
149 event_proc::add(eps *eps)
150 {
151         _epsvec.push_back(eps);
152 }
153
154 bool
155 event_proc::matches(config &c) const
156 {
157         vector<eps *>::const_iterator i;
158
159         for (i = _epsvec.begin(); i != _epsvec.end(); ++i)
160                 if (!(*i)->do_match(c))
161                         return (false);
162         return (true);
163 }
164
165 bool
166 event_proc::run(config &c) const
167 {
168         vector<eps *>::const_iterator i;
169                 
170         for (i = _epsvec.begin(); i != _epsvec.end(); ++i)
171                 if (!(*i)->do_action(c))
172                         return (false);
173         return (true);
174 }
175
176 action::action(const char *cmd)
177         : _cmd(cmd) 
178 {
179         // nothing
180 }
181
182 action::~action()
183 {
184         // nothing
185 }
186
187 static int
188 my_system(const char *command)
189 {
190         pid_t pid, savedpid;
191         int pstat;
192         struct sigaction ign, intact, quitact;
193         sigset_t newsigblock, oldsigblock;
194
195         if (!command)           /* just checking... */
196                 return(1);
197
198         /*
199          * Ignore SIGINT and SIGQUIT, block SIGCHLD. Remember to save
200          * existing signal dispositions.
201          */
202         ign.sa_handler = SIG_IGN;
203         ::sigemptyset(&ign.sa_mask);
204         ign.sa_flags = 0;
205         ::sigaction(SIGINT, &ign, &intact);
206         ::sigaction(SIGQUIT, &ign, &quitact);
207         ::sigemptyset(&newsigblock);
208         ::sigaddset(&newsigblock, SIGCHLD);
209         ::sigprocmask(SIG_BLOCK, &newsigblock, &oldsigblock);
210         switch (pid = ::fork()) {
211         case -1:                        /* error */
212                 break;
213         case 0:                         /* child */
214                 /*
215                  * Restore original signal dispositions and exec the command.
216                  */
217                 ::sigaction(SIGINT, &intact, NULL);
218                 ::sigaction(SIGQUIT,  &quitact, NULL);
219                 ::sigprocmask(SIG_SETMASK, &oldsigblock, NULL);
220                 /*
221                  * Close the PID file, and all other open descriptors.
222                  * Inherit std{in,out,err} only.
223                  */
224                 cfg.close_pidfile();
225                 ::closefrom(3);
226                 ::execl(_PATH_BSHELL, "sh", "-c", command, (char *)NULL);
227                 ::_exit(127);
228         default:                        /* parent */
229                 savedpid = pid;
230                 do {
231                         pid = ::wait4(savedpid, &pstat, 0, (struct rusage *)0);
232                 } while (pid == -1 && errno == EINTR);
233                 break;
234         }
235         ::sigaction(SIGINT, &intact, NULL);
236         ::sigaction(SIGQUIT,  &quitact, NULL);
237         ::sigprocmask(SIG_SETMASK, &oldsigblock, NULL);
238         return (pid == -1 ? -1 : pstat);
239 }
240
241 bool
242 action::do_action(config &c)
243 {
244         string s = c.expand_string(_cmd.c_str());
245         if (Dflag)
246                 fprintf(stderr, "Executing '%s'\n", s.c_str());
247         my_system(s.c_str());
248         return (true);
249 }
250
251 match::match(config &c, const char *var, const char *re) :
252         _inv(re[0] == '!'),
253         _var(var),
254         _re(c.expand_string(_inv ? re + 1 : re, "^", "$"))
255 {
256         regcomp(&_regex, _re.c_str(), REG_EXTENDED | REG_NOSUB | REG_ICASE);
257 }
258
259 match::~match()
260 {
261         regfree(&_regex);
262 }
263
264 bool
265 match::do_match(config &c)
266 {
267         const string &value = c.get_variable(_var);
268         bool retval;
269
270         if (Dflag)
271                 fprintf(stderr, "Testing %s=%s against %s, invert=%d\n",
272                     _var.c_str(), value.c_str(), _re.c_str(), _inv);
273
274         retval = (regexec(&_regex, value.c_str(), 0, NULL, 0) == 0);
275         if (_inv == 1)
276                 retval = (retval == 0) ? 1 : 0;
277
278         return retval;
279 }
280
281 #include <sys/sockio.h>
282 #include <net/if.h>
283 #include <net/if_media.h>
284
285 media::media(config &, const char *var, const char *type)
286         : _var(var), _type(-1)
287 {
288         static struct ifmedia_description media_types[] = {
289                 { IFM_ETHER,            "Ethernet" },
290                 { IFM_TOKEN,            "Tokenring" },
291                 { IFM_FDDI,             "FDDI" },
292                 { IFM_IEEE80211,        "802.11" },
293                 { IFM_ATM,              "ATM" },
294                 { IFM_CARP,             "CARP" },
295                 { -1,                   "unknown" },
296                 { 0, NULL },
297         };
298         for (int i = 0; media_types[i].ifmt_string != NULL; ++i)
299                 if (strcasecmp(type, media_types[i].ifmt_string) == 0) {
300                         _type = media_types[i].ifmt_word;
301                         break;
302                 }
303 }
304
305 media::~media()
306 {
307 }
308
309 bool
310 media::do_match(config &c)
311 {
312         string value;
313         struct ifmediareq ifmr;
314         bool retval;
315         int s;
316
317         // Since we can be called from both a device attach/detach
318         // context where device-name is defined and what we want,
319         // as well as from a link status context, where subsystem is
320         // the name of interest, first try device-name and fall back
321         // to subsystem if none exists.
322         value = c.get_variable("device-name");
323         if (value.length() == 0)
324                 value = c.get_variable("subsystem");
325         if (Dflag)
326                 fprintf(stderr, "Testing media type of %s against 0x%x\n",
327                     value.c_str(), _type);
328
329         retval = false;
330
331         s = socket(PF_INET, SOCK_DGRAM, 0);
332         if (s >= 0) {
333                 memset(&ifmr, 0, sizeof(ifmr));
334                 strncpy(ifmr.ifm_name, value.c_str(), sizeof(ifmr.ifm_name));
335
336                 if (ioctl(s, SIOCGIFMEDIA, (caddr_t)&ifmr) >= 0 &&
337                     ifmr.ifm_status & IFM_AVALID) {
338                         if (Dflag)
339                                 fprintf(stderr, "%s has media type 0x%x\n", 
340                                     value.c_str(), IFM_TYPE(ifmr.ifm_active));
341                         retval = (IFM_TYPE(ifmr.ifm_active) == _type);
342                 } else if (_type == -1) {
343                         if (Dflag)
344                                 fprintf(stderr, "%s has unknown media type\n", 
345                                     value.c_str());
346                         retval = true;
347                 }
348                 close(s);
349         }
350
351         return retval;
352 }
353
354 const string var_list::bogus = "_$_$_$_$_B_O_G_U_S_$_$_$_$_";
355 const string var_list::nothing = "";
356
357 const string &
358 var_list::get_variable(const string &var) const
359 {
360         map<string, string>::const_iterator i;
361
362         i = _vars.find(var);
363         if (i == _vars.end())
364                 return (var_list::bogus);
365         return (i->second);
366 }
367
368 bool
369 var_list::is_set(const string &var) const
370 {
371         return (_vars.find(var) != _vars.end());
372 }
373
374 void
375 var_list::set_variable(const string &var, const string &val)
376 {
377         if (Dflag)
378                 fprintf(stderr, "setting %s=%s\n", var.c_str(), val.c_str());
379         _vars[var] = val;
380 }
381
382 void
383 config::reset(void)
384 {
385         _dir_list.clear();
386         delete_and_clear(_var_list_table);
387         delete_and_clear(_attach_list);
388         delete_and_clear(_detach_list);
389         delete_and_clear(_nomatch_list);
390         delete_and_clear(_notify_list);
391 }
392
393 void
394 config::parse_one_file(const char *fn)
395 {
396         if (Dflag)
397                 fprintf(stderr, "Parsing %s\n", fn);
398         yyin = fopen(fn, "r");
399         if (yyin == NULL)
400                 err(1, "Cannot open config file %s", fn);
401         lineno = 1;
402         if (yyparse() != 0)
403                 errx(1, "Cannot parse %s at line %d", fn, lineno);
404         fclose(yyin);
405 }
406
407 void
408 config::parse_files_in_dir(const char *dirname)
409 {
410         DIR *dirp;
411         struct dirent *dp;
412         char path[PATH_MAX];
413
414         if (Dflag)
415                 fprintf(stderr, "Parsing files in %s\n", dirname);
416         dirp = opendir(dirname);
417         if (dirp == NULL)
418                 return;
419         readdir(dirp);          /* Skip . */
420         readdir(dirp);          /* Skip .. */
421         while ((dp = readdir(dirp)) != NULL) {
422                 if (strcmp(dp->d_name + dp->d_namlen - 5, ".conf") == 0) {
423                         snprintf(path, sizeof(path), "%s/%s",
424                             dirname, dp->d_name);
425                         parse_one_file(path);
426                 }
427         }
428         closedir(dirp);
429 }
430
431 class epv_greater {
432 public:
433         int operator()(event_proc *const&l1, event_proc *const&l2) const
434         {
435                 return (l1->get_priority() > l2->get_priority());
436         }
437 };
438
439 void
440 config::sort_vector(vector<event_proc *> &v)
441 {
442         stable_sort(v.begin(), v.end(), epv_greater());
443 }
444
445 void
446 config::parse(void)
447 {
448         vector<string>::const_iterator i;
449
450         parse_one_file(configfile);
451         for (i = _dir_list.begin(); i != _dir_list.end(); ++i)
452                 parse_files_in_dir((*i).c_str());
453         sort_vector(_attach_list);
454         sort_vector(_detach_list);
455         sort_vector(_nomatch_list);
456         sort_vector(_notify_list);
457 }
458
459 void
460 config::open_pidfile()
461 {
462         pid_t otherpid;
463         
464         if (_pidfile == "")
465                 return;
466         pfh = pidfile_open(_pidfile.c_str(), 0600, &otherpid);
467         if (pfh == NULL) {
468                 if (errno == EEXIST)
469                         errx(1, "devd already running, pid: %d", (int)otherpid);
470                 warn("cannot open pid file");
471         }
472 }
473
474 void
475 config::write_pidfile()
476 {
477         
478         pidfile_write(pfh);
479 }
480
481 void
482 config::close_pidfile()
483 {
484         
485         pidfile_close(pfh);
486 }
487
488 void
489 config::remove_pidfile()
490 {
491         
492         pidfile_remove(pfh);
493 }
494
495 void
496 config::add_attach(int prio, event_proc *p)
497 {
498         p->set_priority(prio);
499         _attach_list.push_back(p);
500 }
501
502 void
503 config::add_detach(int prio, event_proc *p)
504 {
505         p->set_priority(prio);
506         _detach_list.push_back(p);
507 }
508
509 void
510 config::add_directory(const char *dir)
511 {
512         _dir_list.push_back(string(dir));
513 }
514
515 void
516 config::add_nomatch(int prio, event_proc *p)
517 {
518         p->set_priority(prio);
519         _nomatch_list.push_back(p);
520 }
521
522 void
523 config::add_notify(int prio, event_proc *p)
524 {
525         p->set_priority(prio);
526         _notify_list.push_back(p);
527 }
528
529 void
530 config::set_pidfile(const char *fn)
531 {
532         _pidfile = string(fn);
533 }
534
535 void
536 config::push_var_table()
537 {
538         var_list *vl;
539         
540         vl = new var_list();
541         _var_list_table.push_back(vl);
542         if (Dflag)
543                 fprintf(stderr, "Pushing table\n");
544 }
545
546 void
547 config::pop_var_table()
548 {
549         delete _var_list_table.back();
550         _var_list_table.pop_back();
551         if (Dflag)
552                 fprintf(stderr, "Popping table\n");
553 }
554
555 void
556 config::set_variable(const char *var, const char *val)
557 {
558         _var_list_table.back()->set_variable(var, val);
559 }
560
561 const string &
562 config::get_variable(const string &var)
563 {
564         vector<var_list *>::reverse_iterator i;
565
566         for (i = _var_list_table.rbegin(); i != _var_list_table.rend(); ++i) {
567                 if ((*i)->is_set(var))
568                         return ((*i)->get_variable(var));
569         }
570         return (var_list::nothing);
571 }
572
573 bool
574 config::is_id_char(char ch) const
575 {
576         return (ch != '\0' && (isalpha(ch) || isdigit(ch) || ch == '_' || 
577             ch == '-'));
578 }
579
580 void
581 config::expand_one(const char *&src, string &dst)
582 {
583         int count;
584         string buffer;
585
586         src++;
587         // $$ -> $
588         if (*src == '$') {
589                 dst.append(src++, 1);
590                 return;
591         }
592                 
593         // $(foo) -> $(foo)
594         // Not sure if I want to support this or not, so for now we just pass
595         // it through.
596         if (*src == '(') {
597                 dst.append("$");
598                 count = 1;
599                 /* If the string ends before ) is matched , return. */
600                 while (count > 0 && *src) {
601                         if (*src == ')')
602                                 count--;
603                         else if (*src == '(')
604                                 count++;
605                         dst.append(src++, 1);
606                 }
607                 return;
608         }
609         
610         // ${^A-Za-z] -> $\1
611         if (!isalpha(*src)) {
612                 dst.append("$");
613                 dst.append(src++, 1);
614                 return;
615         }
616
617         // $var -> replace with value
618         do {
619                 buffer.append(src++, 1);
620         } while (is_id_char(*src));
621         dst.append(get_variable(buffer.c_str()));
622 }
623
624 const string
625 config::expand_string(const char *src, const char *prepend, const char *append)
626 {
627         const char *var_at;
628         string dst;
629
630         /*
631          * 128 bytes is enough for 2427 of 2438 expansions that happen
632          * while parsing config files, as tested on 2013-01-30.
633          */
634         dst.reserve(128);
635
636         if (prepend != NULL)
637                 dst = prepend;
638
639         for (;;) {
640                 var_at = strchr(src, '$');
641                 if (var_at == NULL) {
642                         dst.append(src);
643                         break;
644                 }
645                 dst.append(src, var_at - src);
646                 src = var_at;
647                 expand_one(src, dst);
648         }
649
650         if (append != NULL)
651                 dst.append(append);
652
653         return (dst);
654 }
655
656 bool
657 config::chop_var(char *&buffer, char *&lhs, char *&rhs)
658 {
659         char *walker;
660         
661         if (*buffer == '\0')
662                 return (false);
663         walker = lhs = buffer;
664         while (is_id_char(*walker))
665                 walker++;
666         if (*walker != '=')
667                 return (false);
668         walker++;               // skip =
669         if (*walker == '"') {
670                 walker++;       // skip "
671                 rhs = walker;
672                 while (*walker && *walker != '"')
673                         walker++;
674                 if (*walker != '"')
675                         return (false);
676                 rhs[-2] = '\0';
677                 *walker++ = '\0';
678         } else {
679                 rhs = walker;
680                 while (*walker && !isspace(*walker))
681                         walker++;
682                 if (*walker != '\0')
683                         *walker++ = '\0';
684                 rhs[-1] = '\0';
685         }
686         while (isspace(*walker))
687                 walker++;
688         buffer = walker;
689         return (true);
690 }
691
692
693 char *
694 config::set_vars(char *buffer)
695 {
696         char *lhs;
697         char *rhs;
698
699         while (1) {
700                 if (!chop_var(buffer, lhs, rhs))
701                         break;
702                 set_variable(lhs, rhs);
703         }
704         return (buffer);
705 }
706
707 void
708 config::find_and_execute(char type)
709 {
710         vector<event_proc *> *l;
711         vector<event_proc *>::const_iterator i;
712         const char *s;
713
714         switch (type) {
715         default:
716                 return;
717         case notify:
718                 l = &_notify_list;
719                 s = "notify";
720                 break;
721         case nomatch:
722                 l = &_nomatch_list;
723                 s = "nomatch";
724                 break;
725         case attach:
726                 l = &_attach_list;
727                 s = "attach";
728                 break;
729         case detach:
730                 l = &_detach_list;
731                 s = "detach";
732                 break;
733         }
734         if (Dflag)
735                 fprintf(stderr, "Processing %s event\n", s);
736         for (i = l->begin(); i != l->end(); ++i) {
737                 if ((*i)->matches(*this)) {
738                         (*i)->run(*this);
739                         break;
740                 }
741         }
742
743 }
744
745 \f
746 static void
747 process_event(char *buffer)
748 {
749         char type;
750         char *sp;
751
752         sp = buffer + 1;
753         if (Dflag)
754                 fprintf(stderr, "Processing event '%s'\n", buffer);
755         type = *buffer++;
756         cfg.push_var_table();
757         // No match doesn't have a device, and the format is a little
758         // different, so handle it separately.
759         switch (type) {
760         case notify:
761                 sp = cfg.set_vars(sp);
762                 break;
763         case nomatch:
764                 //? at location pnp-info on bus
765                 sp = strchr(sp, ' ');
766                 if (sp == NULL)
767                         return; /* Can't happen? */
768                 *sp++ = '\0';
769                 while (isspace(*sp))
770                         sp++;
771                 if (strncmp(sp, "at ", 3) == 0)
772                         sp += 3;
773                 sp = cfg.set_vars(sp);
774                 while (isspace(*sp))
775                         sp++;
776                 if (strncmp(sp, "on ", 3) == 0)
777                         cfg.set_variable("bus", sp + 3);
778                 break;
779         case attach:    /*FALLTHROUGH*/
780         case detach:
781                 sp = strchr(sp, ' ');
782                 if (sp == NULL)
783                         return; /* Can't happen? */
784                 *sp++ = '\0';
785                 cfg.set_variable("device-name", buffer);
786                 while (isspace(*sp))
787                         sp++;
788                 if (strncmp(sp, "at ", 3) == 0)
789                         sp += 3;
790                 sp = cfg.set_vars(sp);
791                 while (isspace(*sp))
792                         sp++;
793                 if (strncmp(sp, "on ", 3) == 0)
794                         cfg.set_variable("bus", sp + 3);
795                 break;
796         }
797         
798         cfg.find_and_execute(type);
799         cfg.pop_var_table();
800 }
801
802 int
803 create_socket(const char *name)
804 {
805         int fd, slen;
806         struct sockaddr_un sun;
807
808         if ((fd = socket(PF_LOCAL, SOCK_STREAM, 0)) < 0)
809                 err(1, "socket");
810         bzero(&sun, sizeof(sun));
811         sun.sun_family = AF_UNIX;
812         strlcpy(sun.sun_path, name, sizeof(sun.sun_path));
813         slen = SUN_LEN(&sun);
814         unlink(name);
815         if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0)
816                 err(1, "fcntl");
817         if (::bind(fd, (struct sockaddr *) & sun, slen) < 0)
818                 err(1, "bind");
819         listen(fd, 4);
820         chown(name, 0, 0);      /* XXX - root.wheel */
821         chmod(name, 0666);
822         return (fd);
823 }
824
825 unsigned int max_clients = 10;  /* Default, can be overriden on cmdline. */
826 unsigned int num_clients;
827 list<int> clients;
828
829 void
830 notify_clients(const char *data, int len)
831 {
832         list<int>::iterator i;
833
834         /*
835          * Deliver the data to all clients.  Throw clients overboard at the
836          * first sign of trouble.  This reaps clients who've died or closed
837          * their sockets, and also clients who are alive but failing to keep up
838          * (or who are maliciously not reading, to consume buffer space in
839          * kernel memory or tie up the limited number of available connections).
840          */
841         for (i = clients.begin(); i != clients.end(); ) {
842                 if (write(*i, data, len) != len) {
843                         --num_clients;
844                         close(*i);
845                         i = clients.erase(i);
846                 } else
847                         ++i;
848         }
849 }
850
851 void
852 check_clients(void)
853 {
854         int s;
855         struct pollfd pfd;
856         list<int>::iterator i;
857
858         /*
859          * Check all existing clients to see if any of them have disappeared.
860          * Normally we reap clients when we get an error trying to send them an
861          * event.  This check eliminates the problem of an ever-growing list of
862          * zombie clients because we're never writing to them on a system
863          * without frequent device-change activity.
864          */
865         pfd.events = 0;
866         for (i = clients.begin(); i != clients.end(); ) {
867                 pfd.fd = *i;
868                 s = poll(&pfd, 1, 0);
869                 if ((s < 0 && s != EINTR ) ||
870                     (s > 0 && (pfd.revents & POLLHUP))) {
871                         --num_clients;
872                         close(*i);
873                         i = clients.erase(i);
874                 } else
875                         ++i;
876         }
877 }
878
879 void
880 new_client(int fd)
881 {
882         int s;
883
884         /*
885          * First go reap any zombie clients, then accept the connection, and
886          * shut down the read side to stop clients from consuming kernel memory
887          * by sending large buffers full of data we'll never read.
888          */
889         check_clients();
890         s = accept(fd, NULL, NULL);
891         if (s != -1) {
892                 shutdown(s, SHUT_RD);
893                 clients.push_back(s);
894                 ++num_clients;
895         }
896 }
897
898 static void
899 event_loop(void)
900 {
901         int rv;
902         int fd;
903         char buffer[DEVCTL_MAXBUF];
904         int once = 0;
905         int server_fd, max_fd;
906         int accepting;
907         timeval tv;
908         fd_set fds;
909
910         fd = open(PATH_DEVCTL, O_RDONLY);
911         if (fd == -1)
912                 err(1, "Can't open devctl device %s", PATH_DEVCTL);
913         if (fcntl(fd, F_SETFD, FD_CLOEXEC) != 0)
914                 err(1, "Can't set close-on-exec flag on devctl");
915         server_fd = create_socket(PIPE);
916         accepting = 1;
917         max_fd = max(fd, server_fd) + 1;
918         while (1) {
919                 if (romeo_must_die)
920                         break;
921                 if (!once && !dflag && !nflag) {
922                         // Check to see if we have any events pending.
923                         tv.tv_sec = 0;
924                         tv.tv_usec = 0;
925                         FD_ZERO(&fds);
926                         FD_SET(fd, &fds);
927                         rv = select(fd + 1, &fds, &fds, &fds, &tv);
928                         // No events -> we've processed all pending events
929                         if (rv == 0) {
930                                 if (Dflag)
931                                         fprintf(stderr, "Calling daemon\n");
932                                 cfg.remove_pidfile();
933                                 cfg.open_pidfile();
934                                 daemon(0, 0);
935                                 cfg.write_pidfile();
936                                 once++;
937                         }
938                 }
939                 /*
940                  * When we've already got the max number of clients, stop
941                  * accepting new connections (don't put server_fd in the set),
942                  * shrink the accept() queue to reject connections quickly, and
943                  * poll the existing clients more often, so that we notice more
944                  * quickly when any of them disappear to free up client slots.
945                  */
946                 FD_ZERO(&fds);
947                 FD_SET(fd, &fds);
948                 if (num_clients < max_clients) {
949                         if (!accepting) {
950                                 listen(server_fd, max_clients);
951                                 accepting = 1;
952                         }
953                         FD_SET(server_fd, &fds);
954                         tv.tv_sec = 60;
955                         tv.tv_usec = 0;
956                 } else {
957                         if (accepting) {
958                                 listen(server_fd, 0);
959                                 accepting = 0;
960                         }
961                         tv.tv_sec = 2;
962                         tv.tv_usec = 0;
963                 }
964                 rv = select(max_fd, &fds, NULL, NULL, &tv);
965                 if (rv == -1) {
966                         if (errno == EINTR)
967                                 continue;
968                         err(1, "select");
969                 } else if (rv == 0)
970                         check_clients();
971                 if (FD_ISSET(fd, &fds)) {
972                         rv = read(fd, buffer, sizeof(buffer) - 1);
973                         if (rv > 0) {
974                                 notify_clients(buffer, rv);
975                                 buffer[rv] = '\0';
976                                 while (buffer[--rv] == '\n')
977                                         buffer[rv] = '\0';
978                                 process_event(buffer);
979                         } else if (rv < 0) {
980                                 if (errno != EINTR)
981                                         break;
982                         } else {
983                                 /* EOF */
984                                 break;
985                         }
986                 }
987                 if (FD_ISSET(server_fd, &fds))
988                         new_client(server_fd);
989         }
990         close(fd);
991 }
992 \f
993 /*
994  * functions that the parser uses.
995  */
996 void
997 add_attach(int prio, event_proc *p)
998 {
999         cfg.add_attach(prio, p);
1000 }
1001
1002 void
1003 add_detach(int prio, event_proc *p)
1004 {
1005         cfg.add_detach(prio, p);
1006 }
1007
1008 void
1009 add_directory(const char *dir)
1010 {
1011         cfg.add_directory(dir);
1012         free(const_cast<char *>(dir));
1013 }
1014
1015 void
1016 add_nomatch(int prio, event_proc *p)
1017 {
1018         cfg.add_nomatch(prio, p);
1019 }
1020
1021 void
1022 add_notify(int prio, event_proc *p)
1023 {
1024         cfg.add_notify(prio, p);
1025 }
1026
1027 event_proc *
1028 add_to_event_proc(event_proc *ep, eps *eps)
1029 {
1030         if (ep == NULL)
1031                 ep = new event_proc();
1032         ep->add(eps);
1033         return (ep);
1034 }
1035
1036 eps *
1037 new_action(const char *cmd)
1038 {
1039         eps *e = new action(cmd);
1040         free(const_cast<char *>(cmd));
1041         return (e);
1042 }
1043
1044 eps *
1045 new_match(const char *var, const char *re)
1046 {
1047         eps *e = new match(cfg, var, re);
1048         free(const_cast<char *>(var));
1049         free(const_cast<char *>(re));
1050         return (e);
1051 }
1052
1053 eps *
1054 new_media(const char *var, const char *re)
1055 {
1056         eps *e = new media(cfg, var, re);
1057         free(const_cast<char *>(var));
1058         free(const_cast<char *>(re));
1059         return (e);
1060 }
1061
1062 void
1063 set_pidfile(const char *name)
1064 {
1065         cfg.set_pidfile(name);
1066         free(const_cast<char *>(name));
1067 }
1068
1069 void
1070 set_variable(const char *var, const char *val)
1071 {
1072         cfg.set_variable(var, val);
1073         free(const_cast<char *>(var));
1074         free(const_cast<char *>(val));
1075 }
1076
1077 \f
1078
1079 static void
1080 gensighand(int)
1081 {
1082         romeo_must_die++;
1083         _exit(0);
1084 }
1085
1086 static void
1087 usage()
1088 {
1089         fprintf(stderr, "usage: %s [-Ddn] [-l connlimit] [-f file]\n",
1090             getprogname());
1091         exit(1);
1092 }
1093
1094 static void
1095 check_devd_enabled()
1096 {
1097         int val = 0;
1098         size_t len;
1099
1100         len = sizeof(val);
1101         if (sysctlbyname(SYSCTL, &val, &len, NULL, 0) != 0)
1102                 errx(1, "devctl sysctl missing from kernel!");
1103         if (val) {
1104                 warnx("Setting " SYSCTL " to 0");
1105                 val = 0;
1106                 sysctlbyname(SYSCTL, NULL, NULL, &val, sizeof(val));
1107         }
1108 }
1109
1110 /*
1111  * main
1112  */
1113 int
1114 main(int argc, char **argv)
1115 {
1116         int ch;
1117
1118         check_devd_enabled();
1119         while ((ch = getopt(argc, argv, "Ddf:l:n")) != -1) {
1120                 switch (ch) {
1121                 case 'D':
1122                         Dflag++;
1123                         break;
1124                 case 'd':
1125                         dflag++;
1126                         break;
1127                 case 'f':
1128                         configfile = optarg;
1129                         break;
1130                 case 'l':
1131                         max_clients = MAX(1, strtoul(optarg, NULL, 0));
1132                         break;
1133                 case 'n':
1134                         nflag++;
1135                         break;
1136                 default:
1137                         usage();
1138                 }
1139         }
1140
1141         cfg.parse();
1142         if (!dflag && nflag) {
1143                 cfg.open_pidfile();
1144                 daemon(0, 0);
1145                 cfg.write_pidfile();
1146         }
1147         signal(SIGPIPE, SIG_IGN);
1148         signal(SIGHUP, gensighand);
1149         signal(SIGINT, gensighand);
1150         signal(SIGTERM, gensighand);
1151         event_loop();
1152         return (0);
1153 }