]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - sbin/devd/devd.cc
MFC r243931:
[FreeBSD/stable/9.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 <regex.h>
84 #include <signal.h>
85 #include <stdlib.h>
86 #include <stdio.h>
87 #include <string.h>
88 #include <unistd.h>
89
90 #include <algorithm>
91 #include <map>
92 #include <string>
93 #include <list>
94 #include <vector>
95
96 #include "devd.h"               /* C compatible definitions */
97 #include "devd.hh"              /* C++ class definitions */
98
99 #define PIPE "/var/run/devd.pipe"
100 #define CF "/etc/devd.conf"
101 #define SYSCTL "hw.bus.devctl_disable"
102
103 using namespace std;
104
105 extern FILE *yyin;
106 extern int lineno;
107
108 static const char notify = '!';
109 static const char nomatch = '?';
110 static const char attach = '+';
111 static const char detach = '-';
112
113 static struct pidfh *pfh;
114
115 int Dflag;
116 int dflag;
117 int nflag;
118 int romeo_must_die = 0;
119
120 static const char *configfile = CF;
121
122 static void event_loop(void);
123 static void usage(void);
124
125 template <class T> void
126 delete_and_clear(vector<T *> &v)
127 {
128         typename vector<T *>::const_iterator i;
129
130         for (i = v.begin(); i != v.end(); ++i)
131                 delete *i;
132         v.clear();
133 }
134
135 config cfg;
136
137 event_proc::event_proc() : _prio(-1)
138 {
139         // nothing
140 }
141
142 event_proc::~event_proc()
143 {
144         delete_and_clear(_epsvec);
145 }
146
147 void
148 event_proc::add(eps *eps)
149 {
150         _epsvec.push_back(eps);
151 }
152
153 bool
154 event_proc::matches(config &c)
155 {
156         vector<eps *>::const_iterator i;
157
158         for (i = _epsvec.begin(); i != _epsvec.end(); ++i)
159                 if (!(*i)->do_match(c))
160                         return (false);
161         return (true);
162 }
163
164 bool
165 event_proc::run(config &c)
166 {
167         vector<eps *>::const_iterator i;
168                 
169         for (i = _epsvec.begin(); i != _epsvec.end(); ++i)
170                 if (!(*i)->do_action(c))
171                         return (false);
172         return (true);
173 }
174
175 action::action(const char *cmd)
176         : _cmd(cmd) 
177 {
178         // nothing
179 }
180
181 action::~action()
182 {
183         // nothing
184 }
185
186 static int
187 my_system(const char *command)
188 {
189         pid_t pid, savedpid;
190         int pstat;
191         struct sigaction ign, intact, quitact;
192         sigset_t newsigblock, oldsigblock;
193
194         if (!command)           /* just checking... */
195                 return(1);
196
197         /*
198          * Ignore SIGINT and SIGQUIT, block SIGCHLD. Remember to save
199          * existing signal dispositions.
200          */
201         ign.sa_handler = SIG_IGN;
202         ::sigemptyset(&ign.sa_mask);
203         ign.sa_flags = 0;
204         ::sigaction(SIGINT, &ign, &intact);
205         ::sigaction(SIGQUIT, &ign, &quitact);
206         ::sigemptyset(&newsigblock);
207         ::sigaddset(&newsigblock, SIGCHLD);
208         ::sigprocmask(SIG_BLOCK, &newsigblock, &oldsigblock);
209         switch (pid = ::fork()) {
210         case -1:                        /* error */
211                 break;
212         case 0:                         /* child */
213                 /*
214                  * Restore original signal dispositions and exec the command.
215                  */
216                 ::sigaction(SIGINT, &intact, NULL);
217                 ::sigaction(SIGQUIT,  &quitact, NULL);
218                 ::sigprocmask(SIG_SETMASK, &oldsigblock, NULL);
219                 /*
220                  * Close the PID file, and all other open descriptors.
221                  * Inherit std{in,out,err} only.
222                  */
223                 cfg.close_pidfile();
224                 ::closefrom(3);
225                 ::execl(_PATH_BSHELL, "sh", "-c", command, (char *)NULL);
226                 ::_exit(127);
227         default:                        /* parent */
228                 savedpid = pid;
229                 do {
230                         pid = ::wait4(savedpid, &pstat, 0, (struct rusage *)0);
231                 } while (pid == -1 && errno == EINTR);
232                 break;
233         }
234         ::sigaction(SIGINT, &intact, NULL);
235         ::sigaction(SIGQUIT,  &quitact, NULL);
236         ::sigprocmask(SIG_SETMASK, &oldsigblock, NULL);
237         return (pid == -1 ? -1 : pstat);
238 }
239
240 bool
241 action::do_action(config &c)
242 {
243         string s = c.expand_string(_cmd);
244         if (Dflag)
245                 fprintf(stderr, "Executing '%s'\n", s.c_str());
246         my_system(s.c_str());
247         return (true);
248 }
249
250 match::match(config &c, const char *var, const char *re)
251         : _var(var), _re("^")
252 {
253         _re.append(c.expand_string(string(re)));
254         _re.append("$");
255         regcomp(&_regex, _re.c_str(), REG_EXTENDED | REG_NOSUB | REG_ICASE);
256 }
257
258 match::~match()
259 {
260         regfree(&_regex);
261 }
262
263 bool
264 match::do_match(config &c)
265 {
266         const string &value = c.get_variable(_var);
267         bool retval;
268
269         if (Dflag)
270                 fprintf(stderr, "Testing %s=%s against %s\n", _var.c_str(),
271                     value.c_str(), _re.c_str());
272
273         retval = (regexec(&_regex, value.c_str(), 0, NULL, 0) == 0);
274         return retval;
275 }
276
277 #include <sys/sockio.h>
278 #include <net/if.h>
279 #include <net/if_media.h>
280
281 media::media(config &, const char *var, const char *type)
282         : _var(var), _type(-1)
283 {
284         static struct ifmedia_description media_types[] = {
285                 { IFM_ETHER,            "Ethernet" },
286                 { IFM_TOKEN,            "Tokenring" },
287                 { IFM_FDDI,             "FDDI" },
288                 { IFM_IEEE80211,        "802.11" },
289                 { IFM_ATM,              "ATM" },
290                 { IFM_CARP,             "CARP" },
291                 { -1,                   "unknown" },
292                 { 0, NULL },
293         };
294         for (int i = 0; media_types[i].ifmt_string != NULL; ++i)
295                 if (strcasecmp(type, media_types[i].ifmt_string) == 0) {
296                         _type = media_types[i].ifmt_word;
297                         break;
298                 }
299 }
300
301 media::~media()
302 {
303 }
304
305 bool
306 media::do_match(config &c)
307 {
308         string value;
309         struct ifmediareq ifmr;
310         bool retval;
311         int s;
312
313         // Since we can be called from both a device attach/detach
314         // context where device-name is defined and what we want,
315         // as well as from a link status context, where subsystem is
316         // the name of interest, first try device-name and fall back
317         // to subsystem if none exists.
318         value = c.get_variable("device-name");
319         if (value.length() == 0)
320                 value = c.get_variable("subsystem");
321         if (Dflag)
322                 fprintf(stderr, "Testing media type of %s against 0x%x\n",
323                     value.c_str(), _type);
324
325         retval = false;
326
327         s = socket(PF_INET, SOCK_DGRAM, 0);
328         if (s >= 0) {
329                 memset(&ifmr, 0, sizeof(ifmr));
330                 strncpy(ifmr.ifm_name, value.c_str(), sizeof(ifmr.ifm_name));
331
332                 if (ioctl(s, SIOCGIFMEDIA, (caddr_t)&ifmr) >= 0 &&
333                     ifmr.ifm_status & IFM_AVALID) {
334                         if (Dflag)
335                                 fprintf(stderr, "%s has media type 0x%x\n", 
336                                     value.c_str(), IFM_TYPE(ifmr.ifm_active));
337                         retval = (IFM_TYPE(ifmr.ifm_active) == _type);
338                 } else if (_type == -1) {
339                         if (Dflag)
340                                 fprintf(stderr, "%s has unknown media type\n", 
341                                     value.c_str());
342                         retval = true;
343                 }
344                 close(s);
345         }
346
347         return retval;
348 }
349
350 const string var_list::bogus = "_$_$_$_$_B_O_G_U_S_$_$_$_$_";
351 const string var_list::nothing = "";
352
353 const string &
354 var_list::get_variable(const string &var) const
355 {
356         map<string, string>::const_iterator i;
357
358         i = _vars.find(var);
359         if (i == _vars.end())
360                 return (var_list::bogus);
361         return (i->second);
362 }
363
364 bool
365 var_list::is_set(const string &var) const
366 {
367         return (_vars.find(var) != _vars.end());
368 }
369
370 void
371 var_list::set_variable(const string &var, const string &val)
372 {
373         if (Dflag)
374                 fprintf(stderr, "setting %s=%s\n", var.c_str(), val.c_str());
375         _vars[var] = val;
376 }
377
378 void
379 config::reset(void)
380 {
381         _dir_list.clear();
382         delete_and_clear(_var_list_table);
383         delete_and_clear(_attach_list);
384         delete_and_clear(_detach_list);
385         delete_and_clear(_nomatch_list);
386         delete_and_clear(_notify_list);
387 }
388
389 void
390 config::parse_one_file(const char *fn)
391 {
392         if (Dflag)
393                 fprintf(stderr, "Parsing %s\n", fn);
394         yyin = fopen(fn, "r");
395         if (yyin == NULL)
396                 err(1, "Cannot open config file %s", fn);
397         lineno = 1;
398         if (yyparse() != 0)
399                 errx(1, "Cannot parse %s at line %d", fn, lineno);
400         fclose(yyin);
401 }
402
403 void
404 config::parse_files_in_dir(const char *dirname)
405 {
406         DIR *dirp;
407         struct dirent *dp;
408         char path[PATH_MAX];
409
410         if (Dflag)
411                 fprintf(stderr, "Parsing files in %s\n", dirname);
412         dirp = opendir(dirname);
413         if (dirp == NULL)
414                 return;
415         readdir(dirp);          /* Skip . */
416         readdir(dirp);          /* Skip .. */
417         while ((dp = readdir(dirp)) != NULL) {
418                 if (strcmp(dp->d_name + dp->d_namlen - 5, ".conf") == 0) {
419                         snprintf(path, sizeof(path), "%s/%s",
420                             dirname, dp->d_name);
421                         parse_one_file(path);
422                 }
423         }
424         closedir(dirp);
425 }
426
427 class epv_greater {
428 public:
429         int operator()(event_proc *const&l1, event_proc *const&l2)
430         {
431                 return (l1->get_priority() > l2->get_priority());
432         }
433 };
434
435 void
436 config::sort_vector(vector<event_proc *> &v)
437 {
438         stable_sort(v.begin(), v.end(), epv_greater());
439 }
440
441 void
442 config::parse(void)
443 {
444         vector<string>::const_iterator i;
445
446         parse_one_file(configfile);
447         for (i = _dir_list.begin(); i != _dir_list.end(); ++i)
448                 parse_files_in_dir((*i).c_str());
449         sort_vector(_attach_list);
450         sort_vector(_detach_list);
451         sort_vector(_nomatch_list);
452         sort_vector(_notify_list);
453 }
454
455 void
456 config::open_pidfile()
457 {
458         pid_t otherpid;
459         
460         if (_pidfile == "")
461                 return;
462         pfh = pidfile_open(_pidfile.c_str(), 0600, &otherpid);
463         if (pfh == NULL) {
464                 if (errno == EEXIST)
465                         errx(1, "devd already running, pid: %d", (int)otherpid);
466                 warn("cannot open pid file");
467         }
468 }
469
470 void
471 config::write_pidfile()
472 {
473         
474         pidfile_write(pfh);
475 }
476
477 void
478 config::close_pidfile()
479 {
480         
481         pidfile_close(pfh);
482 }
483
484 void
485 config::remove_pidfile()
486 {
487         
488         pidfile_remove(pfh);
489 }
490
491 void
492 config::add_attach(int prio, event_proc *p)
493 {
494         p->set_priority(prio);
495         _attach_list.push_back(p);
496 }
497
498 void
499 config::add_detach(int prio, event_proc *p)
500 {
501         p->set_priority(prio);
502         _detach_list.push_back(p);
503 }
504
505 void
506 config::add_directory(const char *dir)
507 {
508         _dir_list.push_back(string(dir));
509 }
510
511 void
512 config::add_nomatch(int prio, event_proc *p)
513 {
514         p->set_priority(prio);
515         _nomatch_list.push_back(p);
516 }
517
518 void
519 config::add_notify(int prio, event_proc *p)
520 {
521         p->set_priority(prio);
522         _notify_list.push_back(p);
523 }
524
525 void
526 config::set_pidfile(const char *fn)
527 {
528         _pidfile = string(fn);
529 }
530
531 void
532 config::push_var_table()
533 {
534         var_list *vl;
535         
536         vl = new var_list();
537         _var_list_table.push_back(vl);
538         if (Dflag)
539                 fprintf(stderr, "Pushing table\n");
540 }
541
542 void
543 config::pop_var_table()
544 {
545         delete _var_list_table.back();
546         _var_list_table.pop_back();
547         if (Dflag)
548                 fprintf(stderr, "Popping table\n");
549 }
550
551 void
552 config::set_variable(const char *var, const char *val)
553 {
554         _var_list_table.back()->set_variable(var, val);
555 }
556
557 const string &
558 config::get_variable(const string &var)
559 {
560         vector<var_list *>::reverse_iterator i;
561
562         for (i = _var_list_table.rbegin(); i != _var_list_table.rend(); ++i) {
563                 if ((*i)->is_set(var))
564                         return ((*i)->get_variable(var));
565         }
566         return (var_list::nothing);
567 }
568
569 bool
570 config::is_id_char(char ch)
571 {
572         return (ch != '\0' && (isalpha(ch) || isdigit(ch) || ch == '_' || 
573             ch == '-'));
574 }
575
576 void
577 config::expand_one(const char *&src, string &dst)
578 {
579         int count;
580         string buffer;
581
582         src++;
583         // $$ -> $
584         if (*src == '$') {
585                 dst.append(src++, 1);
586                 return;
587         }
588                 
589         // $(foo) -> $(foo)
590         // Not sure if I want to support this or not, so for now we just pass
591         // it through.
592         if (*src == '(') {
593                 dst.append("$");
594                 count = 1;
595                 /* If the string ends before ) is matched , return. */
596                 while (count > 0 && *src) {
597                         if (*src == ')')
598                                 count--;
599                         else if (*src == '(')
600                                 count++;
601                         dst.append(src++, 1);
602                 }
603                 return;
604         }
605         
606         // ${^A-Za-z] -> $\1
607         if (!isalpha(*src)) {
608                 dst.append("$");
609                 dst.append(src++, 1);
610                 return;
611         }
612
613         // $var -> replace with value
614         do {
615                 buffer.append(src++, 1);
616         } while (is_id_char(*src));
617         buffer.append("", 1);
618         dst.append(get_variable(buffer.c_str()));
619 }
620
621 const string
622 config::expand_string(const string &s)
623 {
624         const char *src;
625         string dst;
626
627         src = s.c_str();
628         while (*src) {
629                 if (*src == '$')
630                         expand_one(src, dst);
631                 else
632                         dst.append(src++, 1);
633         }
634         dst.append("", 1);
635
636         return (dst);
637 }
638
639 bool
640 config::chop_var(char *&buffer, char *&lhs, char *&rhs)
641 {
642         char *walker;
643         
644         if (*buffer == '\0')
645                 return (false);
646         walker = lhs = buffer;
647         while (is_id_char(*walker))
648                 walker++;
649         if (*walker != '=')
650                 return (false);
651         walker++;               // skip =
652         if (*walker == '"') {
653                 walker++;       // skip "
654                 rhs = walker;
655                 while (*walker && *walker != '"')
656                         walker++;
657                 if (*walker != '"')
658                         return (false);
659                 rhs[-2] = '\0';
660                 *walker++ = '\0';
661         } else {
662                 rhs = walker;
663                 while (*walker && !isspace(*walker))
664                         walker++;
665                 if (*walker != '\0')
666                         *walker++ = '\0';
667                 rhs[-1] = '\0';
668         }
669         while (isspace(*walker))
670                 walker++;
671         buffer = walker;
672         return (true);
673 }
674
675
676 char *
677 config::set_vars(char *buffer)
678 {
679         char *lhs;
680         char *rhs;
681
682         while (1) {
683                 if (!chop_var(buffer, lhs, rhs))
684                         break;
685                 set_variable(lhs, rhs);
686         }
687         return (buffer);
688 }
689
690 void
691 config::find_and_execute(char type)
692 {
693         vector<event_proc *> *l;
694         vector<event_proc *>::const_iterator i;
695         const char *s;
696
697         switch (type) {
698         default:
699                 return;
700         case notify:
701                 l = &_notify_list;
702                 s = "notify";
703                 break;
704         case nomatch:
705                 l = &_nomatch_list;
706                 s = "nomatch";
707                 break;
708         case attach:
709                 l = &_attach_list;
710                 s = "attach";
711                 break;
712         case detach:
713                 l = &_detach_list;
714                 s = "detach";
715                 break;
716         }
717         if (Dflag)
718                 fprintf(stderr, "Processing %s event\n", s);
719         for (i = l->begin(); i != l->end(); ++i) {
720                 if ((*i)->matches(*this)) {
721                         (*i)->run(*this);
722                         break;
723                 }
724         }
725
726 }
727
728 \f
729 static void
730 process_event(char *buffer)
731 {
732         char type;
733         char *sp;
734
735         sp = buffer + 1;
736         if (Dflag)
737                 fprintf(stderr, "Processing event '%s'\n", buffer);
738         type = *buffer++;
739         cfg.push_var_table();
740         // No match doesn't have a device, and the format is a little
741         // different, so handle it separately.
742         switch (type) {
743         case notify:
744                 sp = cfg.set_vars(sp);
745                 break;
746         case nomatch:
747                 //? at location pnp-info on bus
748                 sp = strchr(sp, ' ');
749                 if (sp == NULL)
750                         return; /* Can't happen? */
751                 *sp++ = '\0';
752                 while (isspace(*sp))
753                         sp++;
754                 if (strncmp(sp, "at ", 3) == 0)
755                         sp += 3;
756                 sp = cfg.set_vars(sp);
757                 while (isspace(*sp))
758                         sp++;
759                 if (strncmp(sp, "on ", 3) == 0)
760                         cfg.set_variable("bus", sp + 3);
761                 break;
762         case attach:    /*FALLTHROUGH*/
763         case detach:
764                 sp = strchr(sp, ' ');
765                 if (sp == NULL)
766                         return; /* Can't happen? */
767                 *sp++ = '\0';
768                 cfg.set_variable("device-name", buffer);
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         }
780         
781         cfg.find_and_execute(type);
782         cfg.pop_var_table();
783 }
784
785 int
786 create_socket(const char *name)
787 {
788         int fd, slen;
789         struct sockaddr_un sun;
790
791         if ((fd = socket(PF_LOCAL, SOCK_STREAM, 0)) < 0)
792                 err(1, "socket");
793         bzero(&sun, sizeof(sun));
794         sun.sun_family = AF_UNIX;
795         strlcpy(sun.sun_path, name, sizeof(sun.sun_path));
796         slen = SUN_LEN(&sun);
797         unlink(name);
798         if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0)
799                 err(1, "fcntl");
800         if (::bind(fd, (struct sockaddr *) & sun, slen) < 0)
801                 err(1, "bind");
802         listen(fd, 4);
803         chown(name, 0, 0);      /* XXX - root.wheel */
804         chmod(name, 0666);
805         return (fd);
806 }
807
808 list<int> clients;
809
810 void
811 notify_clients(const char *data, int len)
812 {
813         list<int> bad;
814         list<int>::const_iterator i;
815
816         for (i = clients.begin(); i != clients.end(); ++i) {
817                 if (write(*i, data, len) <= 0) {
818                         bad.push_back(*i);
819                         close(*i);
820                 }
821         }
822
823         for (i = bad.begin(); i != bad.end(); ++i)
824                 clients.erase(find(clients.begin(), clients.end(), *i));
825 }
826
827 void
828 new_client(int fd)
829 {
830         int s;
831
832         s = accept(fd, NULL, NULL);
833         if (s != -1)
834                 clients.push_back(s);
835 }
836
837 static void
838 event_loop(void)
839 {
840         int rv;
841         int fd;
842         char buffer[DEVCTL_MAXBUF];
843         int once = 0;
844         int server_fd, max_fd;
845         timeval tv;
846         fd_set fds;
847
848         fd = open(PATH_DEVCTL, O_RDONLY);
849         if (fd == -1)
850                 err(1, "Can't open devctl device %s", PATH_DEVCTL);
851         if (fcntl(fd, F_SETFD, FD_CLOEXEC) != 0)
852                 err(1, "Can't set close-on-exec flag on devctl");
853         server_fd = create_socket(PIPE);
854         max_fd = max(fd, server_fd) + 1;
855         while (1) {
856                 if (romeo_must_die)
857                         break;
858                 if (!once && !dflag && !nflag) {
859                         // Check to see if we have any events pending.
860                         tv.tv_sec = 0;
861                         tv.tv_usec = 0;
862                         FD_ZERO(&fds);
863                         FD_SET(fd, &fds);
864                         rv = select(fd + 1, &fds, &fds, &fds, &tv);
865                         // No events -> we've processed all pending events
866                         if (rv == 0) {
867                                 if (Dflag)
868                                         fprintf(stderr, "Calling daemon\n");
869                                 cfg.remove_pidfile();
870                                 cfg.open_pidfile();
871                                 daemon(0, 0);
872                                 cfg.write_pidfile();
873                                 once++;
874                         }
875                 }
876                 FD_ZERO(&fds);
877                 FD_SET(fd, &fds);
878                 FD_SET(server_fd, &fds);
879                 rv = select(max_fd, &fds, NULL, NULL, NULL);
880                 if (rv == -1) {
881                         if (errno == EINTR)
882                                 continue;
883                         err(1, "select");
884                 }
885                 if (FD_ISSET(fd, &fds)) {
886                         rv = read(fd, buffer, sizeof(buffer) - 1);
887                         if (rv > 0) {
888                                 notify_clients(buffer, rv);
889                                 buffer[rv] = '\0';
890                                 while (buffer[--rv] == '\n')
891                                         buffer[rv] = '\0';
892                                 process_event(buffer);
893                         } else if (rv < 0) {
894                                 if (errno != EINTR)
895                                         break;
896                         } else {
897                                 /* EOF */
898                                 break;
899                         }
900                 }
901                 if (FD_ISSET(server_fd, &fds))
902                         new_client(server_fd);
903         }
904         close(fd);
905 }
906 \f
907 /*
908  * functions that the parser uses.
909  */
910 void
911 add_attach(int prio, event_proc *p)
912 {
913         cfg.add_attach(prio, p);
914 }
915
916 void
917 add_detach(int prio, event_proc *p)
918 {
919         cfg.add_detach(prio, p);
920 }
921
922 void
923 add_directory(const char *dir)
924 {
925         cfg.add_directory(dir);
926         free(const_cast<char *>(dir));
927 }
928
929 void
930 add_nomatch(int prio, event_proc *p)
931 {
932         cfg.add_nomatch(prio, p);
933 }
934
935 void
936 add_notify(int prio, event_proc *p)
937 {
938         cfg.add_notify(prio, p);
939 }
940
941 event_proc *
942 add_to_event_proc(event_proc *ep, eps *eps)
943 {
944         if (ep == NULL)
945                 ep = new event_proc();
946         ep->add(eps);
947         return (ep);
948 }
949
950 eps *
951 new_action(const char *cmd)
952 {
953         eps *e = new action(cmd);
954         free(const_cast<char *>(cmd));
955         return (e);
956 }
957
958 eps *
959 new_match(const char *var, const char *re)
960 {
961         eps *e = new match(cfg, var, re);
962         free(const_cast<char *>(var));
963         free(const_cast<char *>(re));
964         return (e);
965 }
966
967 eps *
968 new_media(const char *var, const char *re)
969 {
970         eps *e = new media(cfg, var, re);
971         free(const_cast<char *>(var));
972         free(const_cast<char *>(re));
973         return (e);
974 }
975
976 void
977 set_pidfile(const char *name)
978 {
979         cfg.set_pidfile(name);
980         free(const_cast<char *>(name));
981 }
982
983 void
984 set_variable(const char *var, const char *val)
985 {
986         cfg.set_variable(var, val);
987         free(const_cast<char *>(var));
988         free(const_cast<char *>(val));
989 }
990
991 \f
992
993 static void
994 gensighand(int)
995 {
996         romeo_must_die++;
997         _exit(0);
998 }
999
1000 static void
1001 usage()
1002 {
1003         fprintf(stderr, "usage: %s [-Ddn] [-f file]\n", getprogname());
1004         exit(1);
1005 }
1006
1007 static void
1008 check_devd_enabled()
1009 {
1010         int val = 0;
1011         size_t len;
1012
1013         len = sizeof(val);
1014         if (sysctlbyname(SYSCTL, &val, &len, NULL, 0) != 0)
1015                 errx(1, "devctl sysctl missing from kernel!");
1016         if (val) {
1017                 warnx("Setting " SYSCTL " to 0");
1018                 val = 0;
1019                 sysctlbyname(SYSCTL, NULL, NULL, &val, sizeof(val));
1020         }
1021 }
1022
1023 /*
1024  * main
1025  */
1026 int
1027 main(int argc, char **argv)
1028 {
1029         int ch;
1030
1031         check_devd_enabled();
1032         while ((ch = getopt(argc, argv, "Ddf:n")) != -1) {
1033                 switch (ch) {
1034                 case 'D':
1035                         Dflag++;
1036                         break;
1037                 case 'd':
1038                         dflag++;
1039                         break;
1040                 case 'f':
1041                         configfile = optarg;
1042                         break;
1043                 case 'n':
1044                         nflag++;
1045                         break;
1046                 default:
1047                         usage();
1048                 }
1049         }
1050
1051         cfg.parse();
1052         if (!dflag && nflag) {
1053                 cfg.open_pidfile();
1054                 daemon(0, 0);
1055                 cfg.write_pidfile();
1056         }
1057         signal(SIGPIPE, SIG_IGN);
1058         signal(SIGHUP, gensighand);
1059         signal(SIGINT, gensighand);
1060         signal(SIGTERM, gensighand);
1061         event_loop();
1062         return (0);
1063 }