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 <cctype> 77 #include <cerrno> 78 #include <cstdlib> 79 #include <cstdio> 80 #include <csignal> 81 #include <cstring> 82 #include <cstdarg> 83 84 #include <dirent.h> 85 #include <err.h> 86 #include <fcntl.h> 87 #include <libutil.h> 88 #include <paths.h> 89 #include <poll.h> 90 #include <regex.h> 91 #include <syslog.h> 92 #include <unistd.h> 93 94 #include <algorithm> 95 #include <map> 96 #include <string> 97 #include <list> 98 #include <vector> 99 100 #include "devd.h" /* C compatible definitions */ 101 #include "devd.hh" /* C++ class definitions */ 102 103 #define STREAMPIPE "/var/run/devd.pipe" 104 #define SEQPACKETPIPE "/var/run/devd.seqpacket.pipe" 105 #define CF "/etc/devd.conf" 106 #define SYSCTL "hw.bus.devctl_queue" 107 108 /* 109 * Since the client socket is nonblocking, we must increase its send buffer to 110 * handle brief event storms. On FreeBSD, AF_UNIX sockets don't have a receive 111 * buffer, so the client can't increase the buffersize by itself. 112 * 113 * For example, when creating a ZFS pool, devd emits one 165 character 114 * resource.fs.zfs.statechange message for each vdev in the pool. The kernel 115 * allocates a 4608B mbuf for each message. Modern technology places a limit of 116 * roughly 450 drives/rack, and it's unlikely that a zpool will ever be larger 117 * than that. 118 * 119 * 450 drives * 165 bytes / drive = 74250B of data in the sockbuf 120 * 450 drives * 4608B / drive = 2073600B of mbufs in the sockbuf 121 * 122 * We can't directly set the sockbuf's mbuf limit, but we can do it indirectly. 123 * The kernel sets it to the minimum of a hard-coded maximum value and sbcc * 124 * kern.ipc.sockbuf_waste_factor, where sbcc is the socket buffer size set by 125 * the user. The default value of kern.ipc.sockbuf_waste_factor is 8. If we 126 * set the bufsize to 256k and use the kern.ipc.sockbuf_waste_factor, then the 127 * kernel will set the mbuf limit to 2MB, which is just large enough for 450 128 * drives. It also happens to be the same as the hardcoded maximum value. 129 */ 130 #define CLIENT_BUFSIZE 262144 131 132 using namespace std; 133 134 typedef struct client { 135 int fd; 136 int socktype; 137 } client_t; 138 139 extern FILE *yyin; 140 extern int lineno; 141 142 static const char notify = '!'; 143 static const char nomatch = '?'; 144 static const char attach = '+'; 145 static const char detach = '-'; 146 147 static struct pidfh *pfh; 148 149 static int no_daemon = 0; 150 static int daemonize_quick = 0; 151 static int quiet_mode = 0; 152 static unsigned total_events = 0; 153 static volatile sig_atomic_t got_siginfo = 0; 154 static volatile sig_atomic_t romeo_must_die = 0; 155 156 static const char *configfile = CF; 157 158 static void devdlog(int priority, const char* message, ...) 159 __printflike(2, 3); 160 static void event_loop(void); 161 static void usage(void); 162 163 template <class T> void 164 delete_and_clear(vector<T *> &v) 165 { 166 typename vector<T *>::const_iterator i; 167 168 for (i = v.begin(); i != v.end(); ++i) 169 delete *i; 170 v.clear(); 171 } 172 173 config cfg; 174 175 event_proc::event_proc() : _prio(-1) 176 { 177 _epsvec.reserve(4); 178 } 179 180 event_proc::~event_proc() 181 { 182 delete_and_clear(_epsvec); 183 } 184 185 void 186 event_proc::add(eps *eps) 187 { 188 _epsvec.push_back(eps); 189 } 190 191 bool 192 event_proc::matches(config &c) const 193 { 194 vector<eps *>::const_iterator i; 195 196 for (i = _epsvec.begin(); i != _epsvec.end(); ++i) 197 if (!(*i)->do_match(c)) 198 return (false); 199 return (true); 200 } 201 202 bool 203 event_proc::run(config &c) const 204 { 205 vector<eps *>::const_iterator i; 206 207 for (i = _epsvec.begin(); i != _epsvec.end(); ++i) 208 if (!(*i)->do_action(c)) 209 return (false); 210 return (true); 211 } 212 213 action::action(const char *cmd) 214 : _cmd(cmd) 215 { 216 // nothing 217 } 218 219 action::~action() 220 { 221 // nothing 222 } 223 224 static int 225 my_system(const char *command) 226 { 227 pid_t pid, savedpid; 228 int pstat; 229 struct sigaction ign, intact, quitact; 230 sigset_t newsigblock, oldsigblock; 231 232 if (!command) /* just checking... */ 233 return (1); 234 235 /* 236 * Ignore SIGINT and SIGQUIT, block SIGCHLD. Remember to save 237 * existing signal dispositions. 238 */ 239 ign.sa_handler = SIG_IGN; 240 ::sigemptyset(&ign.sa_mask); 241 ign.sa_flags = 0; 242 ::sigaction(SIGINT, &ign, &intact); 243 ::sigaction(SIGQUIT, &ign, &quitact); 244 ::sigemptyset(&newsigblock); 245 ::sigaddset(&newsigblock, SIGCHLD); 246 ::sigprocmask(SIG_BLOCK, &newsigblock, &oldsigblock); 247 switch (pid = ::fork()) { 248 case -1: /* error */ 249 break; 250 case 0: /* child */ 251 /* 252 * Restore original signal dispositions and exec the command. 253 */ 254 ::sigaction(SIGINT, &intact, NULL); 255 ::sigaction(SIGQUIT, &quitact, NULL); 256 ::sigprocmask(SIG_SETMASK, &oldsigblock, NULL); 257 /* 258 * Close the PID file, and all other open descriptors. 259 * Inherit std{in,out,err} only. 260 */ 261 cfg.close_pidfile(); 262 ::closefrom(3); 263 ::execl(_PATH_BSHELL, "sh", "-c", command, (char *)NULL); 264 ::_exit(127); 265 default: /* parent */ 266 savedpid = pid; 267 do { 268 pid = ::wait4(savedpid, &pstat, 0, (struct rusage *)0); 269 } while (pid == -1 && errno == EINTR); 270 break; 271 } 272 ::sigaction(SIGINT, &intact, NULL); 273 ::sigaction(SIGQUIT, &quitact, NULL); 274 ::sigprocmask(SIG_SETMASK, &oldsigblock, NULL); 275 return (pid == -1 ? -1 : pstat); 276 } 277 278 bool 279 action::do_action(config &c) 280 { 281 string s = c.expand_string(_cmd.c_str()); 282 devdlog(LOG_INFO, "Executing '%s'\n", s.c_str()); 283 my_system(s.c_str()); 284 return (true); 285 } 286 287 match::match(config &c, const char *var, const char *re) : 288 _inv(re[0] == '!'), 289 _var(var), 290 _re(c.expand_string(_inv ? re + 1 : re, "^", "$")) 291 { 292 regcomp(&_regex, _re.c_str(), REG_EXTENDED | REG_NOSUB | REG_ICASE); 293 } 294 295 match::~match() 296 { 297 regfree(&_regex); 298 } 299 300 bool 301 match::do_match(config &c) 302 { 303 const string &value = c.get_variable(_var); 304 bool retval; 305 306 /* 307 * This function gets called WAY too often to justify calling syslog() 308 * each time, even at LOG_DEBUG. Because if syslogd isn't running, it 309 * can consume excessive amounts of systime inside of connect(). Only 310 * log when we're in -d mode. 311 */ 312 if (no_daemon) { 313 devdlog(LOG_DEBUG, "Testing %s=%s against %s, invert=%d\n", 314 _var.c_str(), value.c_str(), _re.c_str(), _inv); 315 } 316 317 retval = (regexec(&_regex, value.c_str(), 0, NULL, 0) == 0); 318 if (_inv == 1) 319 retval = (retval == 0) ? 1 : 0; 320 321 return (retval); 322 } 323 324 #include <sys/sockio.h> 325 #include <net/if.h> 326 #include <net/if_media.h> 327 328 media::media(config &, const char *var, const char *type) 329 : _var(var), _type(-1) 330 { 331 static struct ifmedia_description media_types[] = { 332 { IFM_ETHER, "Ethernet" }, 333 { IFM_TOKEN, "Tokenring" }, 334 { IFM_FDDI, "FDDI" }, 335 { IFM_IEEE80211, "802.11" }, 336 { IFM_ATM, "ATM" }, 337 { -1, "unknown" }, 338 { 0, NULL }, 339 }; 340 for (int i = 0; media_types[i].ifmt_string != NULL; ++i) 341 if (strcasecmp(type, media_types[i].ifmt_string) == 0) { 342 _type = media_types[i].ifmt_word; 343 break; 344 } 345 } 346 347 media::~media() 348 { 349 } 350 351 bool 352 media::do_match(config &c) 353 { 354 string value; 355 struct ifmediareq ifmr; 356 bool retval; 357 int s; 358 359 // Since we can be called from both a device attach/detach 360 // context where device-name is defined and what we want, 361 // as well as from a link status context, where subsystem is 362 // the name of interest, first try device-name and fall back 363 // to subsystem if none exists. 364 value = c.get_variable("device-name"); 365 if (value.empty()) 366 value = c.get_variable("subsystem"); 367 devdlog(LOG_DEBUG, "Testing media type of %s against 0x%x\n", 368 value.c_str(), _type); 369 370 retval = false; 371 372 s = socket(PF_INET, SOCK_DGRAM, 0); 373 if (s >= 0) { 374 memset(&ifmr, 0, sizeof(ifmr)); 375 strncpy(ifmr.ifm_name, value.c_str(), sizeof(ifmr.ifm_name)); 376 377 if (ioctl(s, SIOCGIFMEDIA, (caddr_t)&ifmr) >= 0 && 378 ifmr.ifm_status & IFM_AVALID) { 379 devdlog(LOG_DEBUG, "%s has media type 0x%x\n", 380 value.c_str(), IFM_TYPE(ifmr.ifm_active)); 381 retval = (IFM_TYPE(ifmr.ifm_active) == _type); 382 } else if (_type == -1) { 383 devdlog(LOG_DEBUG, "%s has unknown media type\n", 384 value.c_str()); 385 retval = true; 386 } 387 close(s); 388 } 389 390 return (retval); 391 } 392 393 const string var_list::bogus = "_$_$_$_$_B_O_G_U_S_$_$_$_$_"; 394 const string var_list::nothing = ""; 395 396 const string & 397 var_list::get_variable(const string &var) const 398 { 399 map<string, string>::const_iterator i; 400 401 i = _vars.find(var); 402 if (i == _vars.end()) 403 return (var_list::bogus); 404 return (i->second); 405 } 406 407 bool 408 var_list::is_set(const string &var) const 409 { 410 return (_vars.find(var) != _vars.end()); 411 } 412 413 void 414 var_list::set_variable(const string &var, const string &val) 415 { 416 /* 417 * This function gets called WAY too often to justify calling syslog() 418 * each time, even at LOG_DEBUG. Because if syslogd isn't running, it 419 * can consume excessive amounts of systime inside of connect(). Only 420 * log when we're in -d mode. 421 */ 422 if (no_daemon) 423 devdlog(LOG_DEBUG, "setting %s=%s\n", var.c_str(), val.c_str()); 424 _vars[var] = val; 425 } 426 427 void 428 config::reset(void) 429 { 430 _dir_list.clear(); 431 delete_and_clear(_var_list_table); 432 delete_and_clear(_attach_list); 433 delete_and_clear(_detach_list); 434 delete_and_clear(_nomatch_list); 435 delete_and_clear(_notify_list); 436 } 437 438 void 439 config::parse_one_file(const char *fn) 440 { 441 devdlog(LOG_DEBUG, "Parsing %s\n", fn); 442 yyin = fopen(fn, "r"); 443 if (yyin == NULL) 444 err(1, "Cannot open config file %s", fn); 445 lineno = 1; 446 if (yyparse() != 0) 447 errx(1, "Cannot parse %s at line %d", fn, lineno); 448 fclose(yyin); 449 } 450 451 void 452 config::parse_files_in_dir(const char *dirname) 453 { 454 DIR *dirp; 455 struct dirent *dp; 456 char path[PATH_MAX]; 457 458 devdlog(LOG_DEBUG, "Parsing files in %s\n", dirname); 459 dirp = opendir(dirname); 460 if (dirp == NULL) 461 return; 462 readdir(dirp); /* Skip . */ 463 readdir(dirp); /* Skip .. */ 464 while ((dp = readdir(dirp)) != NULL) { 465 if (strcmp(dp->d_name + dp->d_namlen - 5, ".conf") == 0) { 466 snprintf(path, sizeof(path), "%s/%s", 467 dirname, dp->d_name); 468 parse_one_file(path); 469 } 470 } 471 closedir(dirp); 472 } 473 474 class epv_greater { 475 public: 476 int operator()(event_proc *const&l1, event_proc *const&l2) const 477 { 478 return (l1->get_priority() > l2->get_priority()); 479 } 480 }; 481 482 void 483 config::sort_vector(vector<event_proc *> &v) 484 { 485 stable_sort(v.begin(), v.end(), epv_greater()); 486 } 487 488 void 489 config::parse(void) 490 { 491 vector<string>::const_iterator i; 492 493 parse_one_file(configfile); 494 for (i = _dir_list.begin(); i != _dir_list.end(); ++i) 495 parse_files_in_dir((*i).c_str()); 496 sort_vector(_attach_list); 497 sort_vector(_detach_list); 498 sort_vector(_nomatch_list); 499 sort_vector(_notify_list); 500 } 501 502 void 503 config::open_pidfile() 504 { 505 pid_t otherpid; 506 507 if (_pidfile.empty()) 508 return; 509 pfh = pidfile_open(_pidfile.c_str(), 0600, &otherpid); 510 if (pfh == NULL) { 511 if (errno == EEXIST) 512 errx(1, "devd already running, pid: %d", (int)otherpid); 513 warn("cannot open pid file"); 514 } 515 } 516 517 void 518 config::write_pidfile() 519 { 520 521 pidfile_write(pfh); 522 } 523 524 void 525 config::close_pidfile() 526 { 527 528 pidfile_close(pfh); 529 } 530 531 void 532 config::remove_pidfile() 533 { 534 535 pidfile_remove(pfh); 536 } 537 538 void 539 config::add_attach(int prio, event_proc *p) 540 { 541 p->set_priority(prio); 542 _attach_list.push_back(p); 543 } 544 545 void 546 config::add_detach(int prio, event_proc *p) 547 { 548 p->set_priority(prio); 549 _detach_list.push_back(p); 550 } 551 552 void 553 config::add_directory(const char *dir) 554 { 555 _dir_list.push_back(string(dir)); 556 } 557 558 void 559 config::add_nomatch(int prio, event_proc *p) 560 { 561 p->set_priority(prio); 562 _nomatch_list.push_back(p); 563 } 564 565 void 566 config::add_notify(int prio, event_proc *p) 567 { 568 p->set_priority(prio); 569 _notify_list.push_back(p); 570 } 571 572 void 573 config::set_pidfile(const char *fn) 574 { 575 _pidfile = fn; 576 } 577 578 void 579 config::push_var_table() 580 { 581 var_list *vl; 582 583 vl = new var_list(); 584 _var_list_table.push_back(vl); 585 devdlog(LOG_DEBUG, "Pushing table\n"); 586 } 587 588 void 589 config::pop_var_table() 590 { 591 delete _var_list_table.back(); 592 _var_list_table.pop_back(); 593 devdlog(LOG_DEBUG, "Popping table\n"); 594 } 595 596 void 597 config::set_variable(const char *var, const char *val) 598 { 599 _var_list_table.back()->set_variable(var, val); 600 } 601 602 const string & 603 config::get_variable(const string &var) 604 { 605 vector<var_list *>::reverse_iterator i; 606 607 for (i = _var_list_table.rbegin(); i != _var_list_table.rend(); ++i) { 608 if ((*i)->is_set(var)) 609 return ((*i)->get_variable(var)); 610 } 611 return (var_list::nothing); 612 } 613 614 bool 615 config::is_id_char(char ch) const 616 { 617 return (ch != '\0' && (isalpha(ch) || isdigit(ch) || ch == '_' || 618 ch == '-')); 619 } 620 621 void 622 config::expand_one(const char *&src, string &dst) 623 { 624 int count; 625 string buffer; 626 627 src++; 628 // $$ -> $ 629 if (*src == '$') { 630 dst += *src++; 631 return; 632 } 633 634 // $(foo) -> $(foo) 635 // Not sure if I want to support this or not, so for now we just pass 636 // it through. 637 if (*src == '(') { 638 dst += '$'; 639 count = 1; 640 /* If the string ends before ) is matched , return. */ 641 while (count > 0 && *src) { 642 if (*src == ')') 643 count--; 644 else if (*src == '(') 645 count++; 646 dst += *src++; 647 } 648 return; 649 } 650 651 // $[^-A-Za-z_*] -> $\1 652 if (!isalpha(*src) && *src != '_' && *src != '-' && *src != '*') { 653 dst += '$'; 654 dst += *src++; 655 return; 656 } 657 658 // $var -> replace with value 659 do { 660 buffer += *src++; 661 } while (is_id_char(*src)); 662 dst.append(get_variable(buffer)); 663 } 664 665 const string 666 config::expand_string(const char *src, const char *prepend, const char *append) 667 { 668 const char *var_at; 669 string dst; 670 671 /* 672 * 128 bytes is enough for 2427 of 2438 expansions that happen 673 * while parsing config files, as tested on 2013-01-30. 674 */ 675 dst.reserve(128); 676 677 if (prepend != NULL) 678 dst = prepend; 679 680 for (;;) { 681 var_at = strchr(src, '$'); 682 if (var_at == NULL) { 683 dst.append(src); 684 break; 685 } 686 dst.append(src, var_at - src); 687 src = var_at; 688 expand_one(src, dst); 689 } 690 691 if (append != NULL) 692 dst.append(append); 693 694 return (dst); 695 } 696 697 bool 698 config::chop_var(char *&buffer, char *&lhs, char *&rhs) const 699 { 700 char *walker; 701 702 if (*buffer == '\0') 703 return (false); 704 walker = lhs = buffer; 705 while (is_id_char(*walker)) 706 walker++; 707 if (*walker != '=') 708 return (false); 709 walker++; // skip = 710 if (*walker == '"') { 711 walker++; // skip " 712 rhs = walker; 713 while (*walker && *walker != '"') 714 walker++; 715 if (*walker != '"') 716 return (false); 717 rhs[-2] = '\0'; 718 *walker++ = '\0'; 719 } else { 720 rhs = walker; 721 while (*walker && !isspace(*walker)) 722 walker++; 723 if (*walker != '\0') 724 *walker++ = '\0'; 725 rhs[-1] = '\0'; 726 } 727 while (isspace(*walker)) 728 walker++; 729 buffer = walker; 730 return (true); 731 } 732 733 734 char * 735 config::set_vars(char *buffer) 736 { 737 char *lhs; 738 char *rhs; 739 740 while (1) { 741 if (!chop_var(buffer, lhs, rhs)) 742 break; 743 set_variable(lhs, rhs); 744 } 745 return (buffer); 746 } 747 748 void 749 config::find_and_execute(char type) 750 { 751 vector<event_proc *> *l; 752 vector<event_proc *>::const_iterator i; 753 const char *s; 754 755 switch (type) { 756 default: 757 return; 758 case notify: 759 l = &_notify_list; 760 s = "notify"; 761 break; 762 case nomatch: 763 l = &_nomatch_list; 764 s = "nomatch"; 765 break; 766 case attach: 767 l = &_attach_list; 768 s = "attach"; 769 break; 770 case detach: 771 l = &_detach_list; 772 s = "detach"; 773 break; 774 } 775 devdlog(LOG_DEBUG, "Processing %s event\n", s); 776 for (i = l->begin(); i != l->end(); ++i) { 777 if ((*i)->matches(*this)) { 778 (*i)->run(*this); 779 break; 780 } 781 } 782 783 } 784 785 786 static void 787 process_event(char *buffer) 788 { 789 char type; 790 char *sp; 791 792 sp = buffer + 1; 793 devdlog(LOG_INFO, "Processing event '%s'\n", buffer); 794 type = *buffer++; 795 cfg.push_var_table(); 796 // $* is the entire line 797 cfg.set_variable("*", buffer - 1); 798 // $_ is the entire line without the initial character 799 cfg.set_variable("_", buffer - 1); 800 // No match doesn't have a device, and the format is a little 801 // different, so handle it separately. 802 switch (type) { 803 case notify: 804 //! (k=v)* 805 sp = cfg.set_vars(sp); 806 break; 807 case nomatch: 808 //? at location pnp-info on bus 809 sp = strchr(sp, ' '); 810 if (sp == NULL) 811 return; /* Can't happen? */ 812 *sp++ = '\0'; 813 while (isspace(*sp)) 814 sp++; 815 if (strncmp(sp, "at ", 3) == 0) 816 sp += 3; 817 sp = cfg.set_vars(sp); 818 while (isspace(*sp)) 819 sp++; 820 if (strncmp(sp, "on ", 3) == 0) 821 cfg.set_variable("bus", sp + 3); 822 break; 823 case attach: /*FALLTHROUGH*/ 824 case detach: 825 sp = strchr(sp, ' '); 826 if (sp == NULL) 827 return; /* Can't happen? */ 828 *sp++ = '\0'; 829 cfg.set_variable("device-name", buffer); 830 while (isspace(*sp)) 831 sp++; 832 if (strncmp(sp, "at ", 3) == 0) 833 sp += 3; 834 sp = cfg.set_vars(sp); 835 while (isspace(*sp)) 836 sp++; 837 if (strncmp(sp, "on ", 3) == 0) 838 cfg.set_variable("bus", sp + 3); 839 break; 840 } 841 842 cfg.find_and_execute(type); 843 cfg.pop_var_table(); 844 } 845 846 int 847 create_socket(const char *name, int socktype) 848 { 849 int fd, slen; 850 struct sockaddr_un sun; 851 852 if ((fd = socket(PF_LOCAL, socktype, 0)) < 0) 853 err(1, "socket"); 854 bzero(&sun, sizeof(sun)); 855 sun.sun_family = AF_UNIX; 856 strlcpy(sun.sun_path, name, sizeof(sun.sun_path)); 857 slen = SUN_LEN(&sun); 858 unlink(name); 859 if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0) 860 err(1, "fcntl"); 861 if (::bind(fd, (struct sockaddr *) & sun, slen) < 0) 862 err(1, "bind"); 863 listen(fd, 4); 864 chown(name, 0, 0); /* XXX - root.wheel */ 865 chmod(name, 0666); 866 return (fd); 867 } 868 869 unsigned int max_clients = 10; /* Default, can be overridden on cmdline. */ 870 unsigned int num_clients; 871 872 list<client_t> clients; 873 874 void 875 notify_clients(const char *data, int len) 876 { 877 list<client_t>::iterator i; 878 879 /* 880 * Deliver the data to all clients. Throw clients overboard at the 881 * first sign of trouble. This reaps clients who've died or closed 882 * their sockets, and also clients who are alive but failing to keep up 883 * (or who are maliciously not reading, to consume buffer space in 884 * kernel memory or tie up the limited number of available connections). 885 */ 886 for (i = clients.begin(); i != clients.end(); ) { 887 int flags; 888 if (i->socktype == SOCK_SEQPACKET) 889 flags = MSG_EOR; 890 else 891 flags = 0; 892 893 if (send(i->fd, data, len, flags) != len) { 894 --num_clients; 895 close(i->fd); 896 i = clients.erase(i); 897 devdlog(LOG_WARNING, "notify_clients: send() failed; " 898 "dropping unresponsive client\n"); 899 } else 900 ++i; 901 } 902 } 903 904 void 905 check_clients(void) 906 { 907 int s; 908 struct pollfd pfd; 909 list<client_t>::iterator i; 910 911 /* 912 * Check all existing clients to see if any of them have disappeared. 913 * Normally we reap clients when we get an error trying to send them an 914 * event. This check eliminates the problem of an ever-growing list of 915 * zombie clients because we're never writing to them on a system 916 * without frequent device-change activity. 917 */ 918 pfd.events = 0; 919 for (i = clients.begin(); i != clients.end(); ) { 920 pfd.fd = i->fd; 921 s = poll(&pfd, 1, 0); 922 if ((s < 0 && s != EINTR ) || 923 (s > 0 && (pfd.revents & POLLHUP))) { 924 --num_clients; 925 close(i->fd); 926 i = clients.erase(i); 927 devdlog(LOG_NOTICE, "check_clients: " 928 "dropping disconnected client\n"); 929 } else 930 ++i; 931 } 932 } 933 934 void 935 new_client(int fd, int socktype) 936 { 937 client_t s; 938 int sndbuf_size; 939 940 /* 941 * First go reap any zombie clients, then accept the connection, and 942 * shut down the read side to stop clients from consuming kernel memory 943 * by sending large buffers full of data we'll never read. 944 */ 945 check_clients(); 946 s.socktype = socktype; 947 s.fd = accept(fd, NULL, NULL); 948 if (s.fd != -1) { 949 sndbuf_size = CLIENT_BUFSIZE; 950 if (setsockopt(s.fd, SOL_SOCKET, SO_SNDBUF, &sndbuf_size, 951 sizeof(sndbuf_size))) 952 err(1, "setsockopt"); 953 shutdown(s.fd, SHUT_RD); 954 clients.push_back(s); 955 ++num_clients; 956 } else 957 err(1, "accept"); 958 } 959 960 static void 961 event_loop(void) 962 { 963 int rv; 964 int fd; 965 char buffer[DEVCTL_MAXBUF]; 966 int once = 0; 967 int stream_fd, seqpacket_fd, max_fd; 968 int accepting; 969 timeval tv; 970 fd_set fds; 971 972 fd = open(PATH_DEVCTL, O_RDONLY | O_CLOEXEC); 973 if (fd == -1) 974 err(1, "Can't open devctl device %s", PATH_DEVCTL); 975 stream_fd = create_socket(STREAMPIPE, SOCK_STREAM); 976 seqpacket_fd = create_socket(SEQPACKETPIPE, SOCK_SEQPACKET); 977 accepting = 1; 978 max_fd = max(fd, max(stream_fd, seqpacket_fd)) + 1; 979 while (!romeo_must_die) { 980 if (!once && !no_daemon && !daemonize_quick) { 981 // Check to see if we have any events pending. 982 tv.tv_sec = 0; 983 tv.tv_usec = 0; 984 FD_ZERO(&fds); 985 FD_SET(fd, &fds); 986 rv = select(fd + 1, &fds, &fds, &fds, &tv); 987 // No events -> we've processed all pending events 988 if (rv == 0) { 989 devdlog(LOG_DEBUG, "Calling daemon\n"); 990 cfg.remove_pidfile(); 991 cfg.open_pidfile(); 992 daemon(0, 0); 993 cfg.write_pidfile(); 994 once++; 995 } 996 } 997 /* 998 * When we've already got the max number of clients, stop 999 * accepting new connections (don't put the listening sockets in 1000 * the set), shrink the accept() queue to reject connections 1001 * quickly, and poll the existing clients more often, so that we 1002 * notice more quickly when any of them disappear to free up 1003 * client slots. 1004 */ 1005 FD_ZERO(&fds); 1006 FD_SET(fd, &fds); 1007 if (num_clients < max_clients) { 1008 if (!accepting) { 1009 listen(stream_fd, max_clients); 1010 listen(seqpacket_fd, max_clients); 1011 accepting = 1; 1012 } 1013 FD_SET(stream_fd, &fds); 1014 FD_SET(seqpacket_fd, &fds); 1015 tv.tv_sec = 60; 1016 tv.tv_usec = 0; 1017 } else { 1018 if (accepting) { 1019 listen(stream_fd, 0); 1020 listen(seqpacket_fd, 0); 1021 accepting = 0; 1022 } 1023 tv.tv_sec = 2; 1024 tv.tv_usec = 0; 1025 } 1026 rv = select(max_fd, &fds, NULL, NULL, &tv); 1027 if (got_siginfo) { 1028 devdlog(LOG_NOTICE, "Events received so far=%u\n", 1029 total_events); 1030 got_siginfo = 0; 1031 } 1032 if (rv == -1) { 1033 if (errno == EINTR) 1034 continue; 1035 err(1, "select"); 1036 } else if (rv == 0) 1037 check_clients(); 1038 if (FD_ISSET(fd, &fds)) { 1039 rv = read(fd, buffer, sizeof(buffer) - 1); 1040 if (rv > 0) { 1041 total_events++; 1042 if (rv == sizeof(buffer) - 1) { 1043 devdlog(LOG_WARNING, "Warning: " 1044 "available event data exceeded " 1045 "buffer space\n"); 1046 } 1047 notify_clients(buffer, rv); 1048 buffer[rv] = '\0'; 1049 while (buffer[--rv] == '\n') 1050 buffer[rv] = '\0'; 1051 process_event(buffer); 1052 } else if (rv < 0) { 1053 if (errno != EINTR) 1054 break; 1055 } else { 1056 /* EOF */ 1057 break; 1058 } 1059 } 1060 if (FD_ISSET(stream_fd, &fds)) 1061 new_client(stream_fd, SOCK_STREAM); 1062 /* 1063 * Aside from the socket type, both sockets use the same 1064 * protocol, so we can process clients the same way. 1065 */ 1066 if (FD_ISSET(seqpacket_fd, &fds)) 1067 new_client(seqpacket_fd, SOCK_SEQPACKET); 1068 } 1069 close(fd); 1070 } 1071 1072 /* 1073 * functions that the parser uses. 1074 */ 1075 void 1076 add_attach(int prio, event_proc *p) 1077 { 1078 cfg.add_attach(prio, p); 1079 } 1080 1081 void 1082 add_detach(int prio, event_proc *p) 1083 { 1084 cfg.add_detach(prio, p); 1085 } 1086 1087 void 1088 add_directory(const char *dir) 1089 { 1090 cfg.add_directory(dir); 1091 free(const_cast<char *>(dir)); 1092 } 1093 1094 void 1095 add_nomatch(int prio, event_proc *p) 1096 { 1097 cfg.add_nomatch(prio, p); 1098 } 1099 1100 void 1101 add_notify(int prio, event_proc *p) 1102 { 1103 cfg.add_notify(prio, p); 1104 } 1105 1106 event_proc * 1107 add_to_event_proc(event_proc *ep, eps *eps) 1108 { 1109 if (ep == NULL) 1110 ep = new event_proc(); 1111 ep->add(eps); 1112 return (ep); 1113 } 1114 1115 eps * 1116 new_action(const char *cmd) 1117 { 1118 eps *e = new action(cmd); 1119 free(const_cast<char *>(cmd)); 1120 return (e); 1121 } 1122 1123 eps * 1124 new_match(const char *var, const char *re) 1125 { 1126 eps *e = new match(cfg, var, re); 1127 free(const_cast<char *>(var)); 1128 free(const_cast<char *>(re)); 1129 return (e); 1130 } 1131 1132 eps * 1133 new_media(const char *var, const char *re) 1134 { 1135 eps *e = new media(cfg, var, re); 1136 free(const_cast<char *>(var)); 1137 free(const_cast<char *>(re)); 1138 return (e); 1139 } 1140 1141 void 1142 set_pidfile(const char *name) 1143 { 1144 cfg.set_pidfile(name); 1145 free(const_cast<char *>(name)); 1146 } 1147 1148 void 1149 set_variable(const char *var, const char *val) 1150 { 1151 cfg.set_variable(var, val); 1152 free(const_cast<char *>(var)); 1153 free(const_cast<char *>(val)); 1154 } 1155 1156 1157 1158 static void 1159 gensighand(int) 1160 { 1161 romeo_must_die = 1; 1162 } 1163 1164 /* 1165 * SIGINFO handler. Will print useful statistics to the syslog or stderr 1166 * as appropriate 1167 */ 1168 static void 1169 siginfohand(int) 1170 { 1171 got_siginfo = 1; 1172 } 1173 1174 /* 1175 * Local logging function. Prints to syslog if we're daemonized; stderr 1176 * otherwise. 1177 */ 1178 static void 1179 devdlog(int priority, const char* fmt, ...) 1180 { 1181 va_list argp; 1182 1183 va_start(argp, fmt); 1184 if (no_daemon) 1185 vfprintf(stderr, fmt, argp); 1186 else if ((! quiet_mode) || (priority <= LOG_WARNING)) 1187 vsyslog(priority, fmt, argp); 1188 va_end(argp); 1189 } 1190 1191 static void 1192 usage() 1193 { 1194 fprintf(stderr, "usage: %s [-dnq] [-l connlimit] [-f file]\n", 1195 getprogname()); 1196 exit(1); 1197 } 1198 1199 static void 1200 check_devd_enabled() 1201 { 1202 int val = 0; 1203 size_t len; 1204 1205 len = sizeof(val); 1206 if (sysctlbyname(SYSCTL, &val, &len, NULL, 0) != 0) 1207 errx(1, "devctl sysctl missing from kernel!"); 1208 if (val == 0) { 1209 warnx("Setting " SYSCTL " to 1000"); 1210 val = 1000; 1211 sysctlbyname(SYSCTL, NULL, NULL, &val, sizeof(val)); 1212 } 1213 } 1214 1215 /* 1216 * main 1217 */ 1218 int 1219 main(int argc, char **argv) 1220 { 1221 int ch; 1222 1223 check_devd_enabled(); 1224 while ((ch = getopt(argc, argv, "df:l:nq")) != -1) { 1225 switch (ch) { 1226 case 'd': 1227 no_daemon = 1; 1228 break; 1229 case 'f': 1230 configfile = optarg; 1231 break; 1232 case 'l': 1233 max_clients = MAX(1, strtoul(optarg, NULL, 0)); 1234 break; 1235 case 'n': 1236 daemonize_quick = 1; 1237 break; 1238 case 'q': 1239 quiet_mode = 1; 1240 break; 1241 default: 1242 usage(); 1243 } 1244 } 1245 1246 cfg.parse(); 1247 if (!no_daemon && daemonize_quick) { 1248 cfg.open_pidfile(); 1249 daemon(0, 0); 1250 cfg.write_pidfile(); 1251 } 1252 signal(SIGPIPE, SIG_IGN); 1253 signal(SIGHUP, gensighand); 1254 signal(SIGINT, gensighand); 1255 signal(SIGTERM, gensighand); 1256 signal(SIGINFO, siginfohand); 1257 event_loop(); 1258 return (0); 1259 } 1260