2002-12-07 08:04:36 +00:00
|
|
|
|
/*-
|
2003-04-21 04:00:01 +00:00
|
|
|
|
* Copyright (c) 2002-2003 M. Warner Losh.
|
2002-12-07 08:04:36 +00:00
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* DEVD control daemon.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// TODO list:
|
|
|
|
|
// o devd.conf and devd man pages need a lot of help:
|
2004-07-01 07:24:18 +00:00
|
|
|
|
// - devd needs to document the unix domain socket
|
2002-12-07 08:04:36 +00:00
|
|
|
|
// - devd.conf needs more details on the supported statements.
|
|
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
2004-07-01 07:24:18 +00:00
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
#include <sys/stat.h>
|
2003-04-21 04:30:12 +00:00
|
|
|
|
#include <sys/sysctl.h>
|
2004-07-01 07:24:18 +00:00
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/un.h>
|
2002-12-07 08:04:36 +00:00
|
|
|
|
|
2002-12-18 07:08:01 +00:00
|
|
|
|
#include <ctype.h>
|
2002-12-07 08:04:36 +00:00
|
|
|
|
#include <dirent.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <err.h>
|
|
|
|
|
#include <fcntl.h>
|
2006-01-30 22:50:13 +00:00
|
|
|
|
#include <libutil.h>
|
2002-12-18 07:08:01 +00:00
|
|
|
|
#include <regex.h>
|
2005-05-16 20:51:46 +00:00
|
|
|
|
#include <signal.h>
|
2002-12-07 08:04:36 +00:00
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
2003-01-06 08:09:41 +00:00
|
|
|
|
#include <algorithm>
|
2002-12-07 08:04:36 +00:00
|
|
|
|
#include <map>
|
|
|
|
|
#include <string>
|
2004-07-01 07:24:18 +00:00
|
|
|
|
#include <list>
|
2002-12-07 08:04:36 +00:00
|
|
|
|
#include <vector>
|
|
|
|
|
|
2003-04-26 20:59:04 +00:00
|
|
|
|
#include "devd.h" /* C compatible definitions */
|
|
|
|
|
#include "devd.hh" /* C++ class definitions */
|
2002-12-07 08:04:36 +00:00
|
|
|
|
|
2004-07-01 07:24:18 +00:00
|
|
|
|
#define PIPE "/var/run/devd.pipe"
|
2002-12-07 08:04:36 +00:00
|
|
|
|
#define CF "/etc/devd.conf"
|
2003-04-21 04:30:12 +00:00
|
|
|
|
#define SYSCTL "hw.bus.devctl_disable"
|
2002-12-07 08:04:36 +00:00
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
extern FILE *yyin;
|
|
|
|
|
extern int lineno;
|
|
|
|
|
|
2003-10-24 22:02:29 +00:00
|
|
|
|
static const char notify = '!';
|
2003-01-06 08:09:41 +00:00
|
|
|
|
static const char nomatch = '?';
|
|
|
|
|
static const char attach = '+';
|
|
|
|
|
static const char detach = '-';
|
|
|
|
|
|
2006-01-30 22:50:13 +00:00
|
|
|
|
static struct pidfh *pfh;
|
|
|
|
|
|
2003-04-21 06:26:08 +00:00
|
|
|
|
int Dflag;
|
2002-12-07 08:04:36 +00:00
|
|
|
|
int dflag;
|
2003-04-25 02:13:42 +00:00
|
|
|
|
int nflag;
|
2002-12-07 08:04:36 +00:00
|
|
|
|
int romeo_must_die = 0;
|
|
|
|
|
|
2005-11-24 14:39:41 +00:00
|
|
|
|
static const char *configfile = CF;
|
|
|
|
|
|
2002-12-07 08:04:36 +00:00
|
|
|
|
static void event_loop(void);
|
|
|
|
|
static void usage(void);
|
|
|
|
|
|
2003-01-06 08:09:41 +00:00
|
|
|
|
template <class T> void
|
|
|
|
|
delete_and_clear(vector<T *> &v)
|
|
|
|
|
{
|
|
|
|
|
typename vector<T *>::const_iterator i;
|
2002-12-07 08:04:36 +00:00
|
|
|
|
|
2003-01-06 08:09:41 +00:00
|
|
|
|
for (i = v.begin(); i != v.end(); i++)
|
|
|
|
|
delete *i;
|
|
|
|
|
v.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-07 08:04:36 +00:00
|
|
|
|
config cfg;
|
|
|
|
|
|
|
|
|
|
event_proc::event_proc() : _prio(-1)
|
|
|
|
|
{
|
|
|
|
|
// nothing
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
event_proc::~event_proc()
|
|
|
|
|
{
|
2005-11-14 02:01:10 +00:00
|
|
|
|
delete_and_clear(_epsvec);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
event_proc::add(eps *eps)
|
|
|
|
|
{
|
|
|
|
|
_epsvec.push_back(eps);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
event_proc::matches(config &c)
|
|
|
|
|
{
|
|
|
|
|
vector<eps *>::const_iterator i;
|
|
|
|
|
|
|
|
|
|
for (i = _epsvec.begin(); i != _epsvec.end(); i++)
|
|
|
|
|
if (!(*i)->do_match(c))
|
|
|
|
|
return (false);
|
|
|
|
|
return (true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
event_proc::run(config &c)
|
|
|
|
|
{
|
|
|
|
|
vector<eps *>::const_iterator i;
|
|
|
|
|
|
|
|
|
|
for (i = _epsvec.begin(); i != _epsvec.end(); i++)
|
|
|
|
|
if (!(*i)->do_action(c))
|
|
|
|
|
return (false);
|
|
|
|
|
return (true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
action::action(const char *cmd)
|
|
|
|
|
: _cmd(cmd)
|
|
|
|
|
{
|
|
|
|
|
// nothing
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
action::~action()
|
|
|
|
|
{
|
|
|
|
|
// nothing
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
2002-12-18 07:08:01 +00:00
|
|
|
|
action::do_action(config &c)
|
2002-12-07 08:04:36 +00:00
|
|
|
|
{
|
2003-01-06 08:09:41 +00:00
|
|
|
|
string s = c.expand_string(_cmd);
|
2003-04-21 06:26:08 +00:00
|
|
|
|
if (Dflag)
|
2003-01-06 08:09:41 +00:00
|
|
|
|
fprintf(stderr, "Executing '%s'\n", s.c_str());
|
|
|
|
|
::system(s.c_str());
|
2002-12-07 08:04:36 +00:00
|
|
|
|
return (true);
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-18 07:08:01 +00:00
|
|
|
|
match::match(config &c, const char *var, const char *re)
|
2003-01-06 08:09:41 +00:00
|
|
|
|
: _var(var)
|
2002-12-07 08:04:36 +00:00
|
|
|
|
{
|
2003-01-06 08:09:41 +00:00
|
|
|
|
string pattern = re;
|
|
|
|
|
_re = "^";
|
|
|
|
|
_re.append(c.expand_string(string(re)));
|
|
|
|
|
_re.append("$");
|
2006-01-08 05:18:36 +00:00
|
|
|
|
regcomp(&_regex, _re.c_str(), REG_EXTENDED | REG_NOSUB | REG_ICASE);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
match::~match()
|
|
|
|
|
{
|
2002-12-18 07:08:01 +00:00
|
|
|
|
regfree(&_regex);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
2002-12-18 07:08:01 +00:00
|
|
|
|
match::do_match(config &c)
|
2002-12-07 08:04:36 +00:00
|
|
|
|
{
|
2002-12-18 07:08:01 +00:00
|
|
|
|
string value = c.get_variable(_var);
|
|
|
|
|
bool retval;
|
|
|
|
|
|
2003-04-21 06:26:08 +00:00
|
|
|
|
if (Dflag)
|
2003-01-06 08:09:41 +00:00
|
|
|
|
fprintf(stderr, "Testing %s=%s against %s\n", _var.c_str(),
|
|
|
|
|
value.c_str(), _re.c_str());
|
|
|
|
|
|
2002-12-18 07:08:01 +00:00
|
|
|
|
retval = (regexec(&_regex, value.c_str(), 0, NULL, 0) == 0);
|
|
|
|
|
return retval;
|
2002-12-07 08:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-07-10 03:37:15 +00:00
|
|
|
|
#include <sys/sockio.h>
|
|
|
|
|
#include <net/if.h>
|
|
|
|
|
#include <net/if_media.h>
|
|
|
|
|
|
2005-10-19 21:21:22 +00:00
|
|
|
|
media::media(config &, const char *var, const char *type)
|
2005-07-10 03:37:15 +00:00
|
|
|
|
: _var(var), _type(-1)
|
|
|
|
|
{
|
|
|
|
|
static struct ifmedia_description media_types[] = {
|
|
|
|
|
{ IFM_ETHER, "Ethernet" },
|
|
|
|
|
{ IFM_TOKEN, "Tokenring" },
|
|
|
|
|
{ IFM_FDDI, "FDDI" },
|
|
|
|
|
{ IFM_IEEE80211, "802.11" },
|
|
|
|
|
{ IFM_ATM, "ATM" },
|
|
|
|
|
{ IFM_CARP, "CARP" },
|
|
|
|
|
{ -1, "unknown" },
|
|
|
|
|
{ 0, NULL },
|
|
|
|
|
};
|
|
|
|
|
for (int i = 0; media_types[i].ifmt_string != NULL; i++)
|
|
|
|
|
if (strcasecmp(type, media_types[i].ifmt_string) == 0) {
|
|
|
|
|
_type = media_types[i].ifmt_word;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
media::~media()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
media::do_match(config &c)
|
|
|
|
|
{
|
2005-10-04 22:22:51 +00:00
|
|
|
|
string value;
|
2005-07-10 03:37:15 +00:00
|
|
|
|
struct ifmediareq ifmr;
|
|
|
|
|
bool retval;
|
|
|
|
|
int s;
|
|
|
|
|
|
2005-10-04 22:22:51 +00:00
|
|
|
|
// Since we can be called from both a device attach/detach
|
|
|
|
|
// context where device-name is defined and what we want,
|
|
|
|
|
// as well as from a link status context, where subsystem is
|
|
|
|
|
// the name of interest, first try device-name and fall back
|
|
|
|
|
// to subsystem if none exists.
|
|
|
|
|
value = c.get_variable("device-name");
|
|
|
|
|
if (value.length() == 0)
|
2005-10-19 18:10:34 +00:00
|
|
|
|
value = c.get_variable("subsystem");
|
2005-07-10 03:37:15 +00:00
|
|
|
|
if (Dflag)
|
|
|
|
|
fprintf(stderr, "Testing media type of %s against 0x%x\n",
|
|
|
|
|
value.c_str(), _type);
|
|
|
|
|
|
|
|
|
|
retval = false;
|
|
|
|
|
|
|
|
|
|
s = socket(PF_INET, SOCK_DGRAM, 0);
|
|
|
|
|
if (s >= 0) {
|
|
|
|
|
memset(&ifmr, 0, sizeof(ifmr));
|
|
|
|
|
strncpy(ifmr.ifm_name, value.c_str(), sizeof(ifmr.ifm_name));
|
|
|
|
|
|
|
|
|
|
if (ioctl(s, SIOCGIFMEDIA, (caddr_t)&ifmr) >= 0 &&
|
|
|
|
|
ifmr.ifm_status & IFM_AVALID) {
|
|
|
|
|
if (Dflag)
|
|
|
|
|
fprintf(stderr, "%s has media type 0x%x\n",
|
|
|
|
|
value.c_str(), IFM_TYPE(ifmr.ifm_active));
|
|
|
|
|
retval = (IFM_TYPE(ifmr.ifm_active) == _type);
|
|
|
|
|
} else if (_type == -1) {
|
|
|
|
|
if (Dflag)
|
|
|
|
|
fprintf(stderr, "%s has unknown media type\n",
|
|
|
|
|
value.c_str());
|
|
|
|
|
retval = true;
|
|
|
|
|
}
|
|
|
|
|
close(s);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-07 08:04:36 +00:00
|
|
|
|
const string var_list::bogus = "_$_$_$_$_B_O_G_U_S_$_$_$_$_";
|
|
|
|
|
const string var_list::nothing = "";
|
|
|
|
|
|
|
|
|
|
const string &
|
|
|
|
|
var_list::get_variable(const string &var) const
|
|
|
|
|
{
|
|
|
|
|
map<string, string>::const_iterator i;
|
|
|
|
|
|
|
|
|
|
i = _vars.find(var);
|
|
|
|
|
if (i == _vars.end())
|
2003-01-06 08:09:41 +00:00
|
|
|
|
return (var_list::bogus);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
return (i->second);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
var_list::is_set(const string &var) const
|
|
|
|
|
{
|
|
|
|
|
return (_vars.find(var) != _vars.end());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
var_list::set_variable(const string &var, const string &val)
|
|
|
|
|
{
|
2003-04-21 06:26:08 +00:00
|
|
|
|
if (Dflag)
|
2005-04-18 02:54:07 +00:00
|
|
|
|
fprintf(stderr, "setting %s=%s\n", var.c_str(), val.c_str());
|
2002-12-07 08:04:36 +00:00
|
|
|
|
_vars[var] = val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
config::reset(void)
|
|
|
|
|
{
|
|
|
|
|
_dir_list.clear();
|
2003-01-06 08:09:41 +00:00
|
|
|
|
delete_and_clear(_var_list_table);
|
|
|
|
|
delete_and_clear(_attach_list);
|
|
|
|
|
delete_and_clear(_detach_list);
|
|
|
|
|
delete_and_clear(_nomatch_list);
|
2003-10-24 22:02:29 +00:00
|
|
|
|
delete_and_clear(_notify_list);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
config::parse_one_file(const char *fn)
|
|
|
|
|
{
|
2003-04-21 06:26:08 +00:00
|
|
|
|
if (Dflag)
|
2008-12-14 11:48:51 +00:00
|
|
|
|
fprintf(stderr, "Parsing %s\n", fn);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
yyin = fopen(fn, "r");
|
|
|
|
|
if (yyin == NULL)
|
|
|
|
|
err(1, "Cannot open config file %s", fn);
|
2006-04-14 07:20:42 +00:00
|
|
|
|
lineno = 1;
|
2002-12-07 08:04:36 +00:00
|
|
|
|
if (yyparse() != 0)
|
|
|
|
|
errx(1, "Cannot parse %s at line %d", fn, lineno);
|
|
|
|
|
fclose(yyin);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
config::parse_files_in_dir(const char *dirname)
|
|
|
|
|
{
|
|
|
|
|
DIR *dirp;
|
|
|
|
|
struct dirent *dp;
|
|
|
|
|
char path[PATH_MAX];
|
|
|
|
|
|
2003-04-21 06:26:08 +00:00
|
|
|
|
if (Dflag)
|
2008-12-14 11:48:51 +00:00
|
|
|
|
fprintf(stderr, "Parsing files in %s\n", dirname);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
dirp = opendir(dirname);
|
|
|
|
|
if (dirp == NULL)
|
|
|
|
|
return;
|
|
|
|
|
readdir(dirp); /* Skip . */
|
|
|
|
|
readdir(dirp); /* Skip .. */
|
|
|
|
|
while ((dp = readdir(dirp)) != NULL) {
|
|
|
|
|
if (strcmp(dp->d_name + dp->d_namlen - 5, ".conf") == 0) {
|
|
|
|
|
snprintf(path, sizeof(path), "%s/%s",
|
|
|
|
|
dirname, dp->d_name);
|
|
|
|
|
parse_one_file(path);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-01-06 08:09:41 +00:00
|
|
|
|
class epv_greater {
|
|
|
|
|
public:
|
|
|
|
|
int operator()(event_proc *const&l1, event_proc *const&l2)
|
|
|
|
|
{
|
|
|
|
|
return (l1->get_priority() > l2->get_priority());
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
config::sort_vector(vector<event_proc *> &v)
|
|
|
|
|
{
|
|
|
|
|
sort(v.begin(), v.end(), epv_greater());
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-07 08:04:36 +00:00
|
|
|
|
void
|
|
|
|
|
config::parse(void)
|
|
|
|
|
{
|
|
|
|
|
vector<string>::const_iterator i;
|
|
|
|
|
|
2005-11-24 14:39:41 +00:00
|
|
|
|
parse_one_file(configfile);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
for (i = _dir_list.begin(); i != _dir_list.end(); i++)
|
|
|
|
|
parse_files_in_dir((*i).c_str());
|
2003-01-06 08:09:41 +00:00
|
|
|
|
sort_vector(_attach_list);
|
|
|
|
|
sort_vector(_detach_list);
|
|
|
|
|
sort_vector(_nomatch_list);
|
2003-10-24 22:02:29 +00:00
|
|
|
|
sort_vector(_notify_list);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2006-01-30 22:50:13 +00:00
|
|
|
|
config::open_pidfile()
|
2002-12-07 08:04:36 +00:00
|
|
|
|
{
|
2006-01-30 22:50:13 +00:00
|
|
|
|
pid_t otherpid;
|
2002-12-07 08:04:36 +00:00
|
|
|
|
|
|
|
|
|
if (_pidfile == "")
|
|
|
|
|
return;
|
2006-01-30 22:50:13 +00:00
|
|
|
|
pfh = pidfile_open(_pidfile.c_str(), 0600, &otherpid);
|
|
|
|
|
if (pfh == NULL) {
|
|
|
|
|
if (errno == EEXIST)
|
|
|
|
|
errx(1, "devd already running, pid: %d", (int)otherpid);
|
|
|
|
|
warn("cannot open pid file");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
config::write_pidfile()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
pidfile_write(pfh);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
config::remove_pidfile()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
pidfile_remove(pfh);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
config::add_attach(int prio, event_proc *p)
|
|
|
|
|
{
|
|
|
|
|
p->set_priority(prio);
|
|
|
|
|
_attach_list.push_back(p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
config::add_detach(int prio, event_proc *p)
|
|
|
|
|
{
|
|
|
|
|
p->set_priority(prio);
|
|
|
|
|
_detach_list.push_back(p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
config::add_directory(const char *dir)
|
|
|
|
|
{
|
|
|
|
|
_dir_list.push_back(string(dir));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
config::add_nomatch(int prio, event_proc *p)
|
|
|
|
|
{
|
|
|
|
|
p->set_priority(prio);
|
|
|
|
|
_nomatch_list.push_back(p);
|
|
|
|
|
}
|
|
|
|
|
|
2003-10-24 22:02:29 +00:00
|
|
|
|
void
|
|
|
|
|
config::add_notify(int prio, event_proc *p)
|
|
|
|
|
{
|
|
|
|
|
p->set_priority(prio);
|
|
|
|
|
_notify_list.push_back(p);
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-07 08:04:36 +00:00
|
|
|
|
void
|
|
|
|
|
config::set_pidfile(const char *fn)
|
|
|
|
|
{
|
|
|
|
|
_pidfile = string(fn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
config::push_var_table()
|
|
|
|
|
{
|
|
|
|
|
var_list *vl;
|
|
|
|
|
|
|
|
|
|
vl = new var_list();
|
|
|
|
|
_var_list_table.push_back(vl);
|
2003-04-21 06:26:08 +00:00
|
|
|
|
if (Dflag)
|
2003-01-06 08:09:41 +00:00
|
|
|
|
fprintf(stderr, "Pushing table\n");
|
2002-12-07 08:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
config::pop_var_table()
|
|
|
|
|
{
|
|
|
|
|
delete _var_list_table.back();
|
|
|
|
|
_var_list_table.pop_back();
|
2003-04-21 06:26:08 +00:00
|
|
|
|
if (Dflag)
|
2003-01-06 08:09:41 +00:00
|
|
|
|
fprintf(stderr, "Popping table\n");
|
2002-12-07 08:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
config::set_variable(const char *var, const char *val)
|
|
|
|
|
{
|
|
|
|
|
_var_list_table.back()->set_variable(var, val);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const string &
|
|
|
|
|
config::get_variable(const string &var)
|
|
|
|
|
{
|
|
|
|
|
vector<var_list *>::reverse_iterator i;
|
|
|
|
|
|
|
|
|
|
for (i = _var_list_table.rbegin(); i != _var_list_table.rend(); i++) {
|
|
|
|
|
if ((*i)->is_set(var))
|
2003-01-06 08:09:41 +00:00
|
|
|
|
return ((*i)->get_variable(var));
|
2002-12-07 08:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
return (var_list::nothing);
|
|
|
|
|
}
|
|
|
|
|
|
2003-01-06 08:09:41 +00:00
|
|
|
|
bool
|
|
|
|
|
config::is_id_char(char ch)
|
|
|
|
|
{
|
|
|
|
|
return (ch != '\0' && (isalpha(ch) || isdigit(ch) || ch == '_' ||
|
|
|
|
|
ch == '-'));
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-18 07:08:01 +00:00
|
|
|
|
void
|
2003-04-26 19:44:45 +00:00
|
|
|
|
config::expand_one(const char *&src, string &dst)
|
2002-12-07 08:04:36 +00:00
|
|
|
|
{
|
2002-12-18 07:08:01 +00:00
|
|
|
|
int count;
|
2003-04-26 19:44:45 +00:00
|
|
|
|
string buffer, varstr;
|
2002-12-18 07:08:01 +00:00
|
|
|
|
|
2003-01-06 08:09:41 +00:00
|
|
|
|
src++;
|
2002-12-18 07:08:01 +00:00
|
|
|
|
// $$ -> $
|
|
|
|
|
if (*src == '$') {
|
2003-04-26 19:44:45 +00:00
|
|
|
|
dst.append(src++, 1);
|
2002-12-18 07:08:01 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// $(foo) -> $(foo)
|
2003-01-06 08:09:41 +00:00
|
|
|
|
// Not sure if I want to support this or not, so for now we just pass
|
|
|
|
|
// it through.
|
2002-12-18 07:08:01 +00:00
|
|
|
|
if (*src == '(') {
|
2003-04-26 19:44:45 +00:00
|
|
|
|
dst.append("$");
|
2002-12-18 07:08:01 +00:00
|
|
|
|
count = 1;
|
2003-04-26 19:44:45 +00:00
|
|
|
|
/* If the string ends before ) is matched , return. */
|
|
|
|
|
while (count > 0 && *src) {
|
2002-12-18 07:08:01 +00:00
|
|
|
|
if (*src == ')')
|
|
|
|
|
count--;
|
|
|
|
|
else if (*src == '(')
|
|
|
|
|
count++;
|
2003-04-26 19:44:45 +00:00
|
|
|
|
dst.append(src++, 1);
|
2002-12-18 07:08:01 +00:00
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ${^A-Za-z] -> $\1
|
|
|
|
|
if (!isalpha(*src)) {
|
2003-04-26 19:44:45 +00:00
|
|
|
|
dst.append("$");
|
|
|
|
|
dst.append(src++, 1);
|
2002-12-18 07:08:01 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// $var -> replace with value
|
2003-04-26 19:44:45 +00:00
|
|
|
|
do {
|
|
|
|
|
buffer.append(src++, 1);
|
2003-04-26 20:25:40 +00:00
|
|
|
|
} while (is_id_char(*src));
|
2003-04-26 19:44:45 +00:00
|
|
|
|
buffer.append("", 1);
|
|
|
|
|
varstr = get_variable(buffer.c_str());
|
|
|
|
|
dst.append(varstr);
|
2002-12-18 07:08:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const string
|
|
|
|
|
config::expand_string(const string &s)
|
|
|
|
|
{
|
|
|
|
|
const char *src;
|
2003-04-26 19:44:45 +00:00
|
|
|
|
string dst;
|
2002-12-18 07:08:01 +00:00
|
|
|
|
|
|
|
|
|
src = s.c_str();
|
|
|
|
|
while (*src) {
|
|
|
|
|
if (*src == '$')
|
2003-04-26 19:44:45 +00:00
|
|
|
|
expand_one(src, dst);
|
2002-12-18 07:08:01 +00:00
|
|
|
|
else
|
2003-04-26 19:44:45 +00:00
|
|
|
|
dst.append(src++, 1);
|
2002-12-18 07:08:01 +00:00
|
|
|
|
}
|
2003-04-26 19:44:45 +00:00
|
|
|
|
dst.append("", 1);
|
2002-12-18 07:08:01 +00:00
|
|
|
|
|
2003-04-26 19:44:45 +00:00
|
|
|
|
return (dst);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-01-06 08:09:41 +00:00
|
|
|
|
bool
|
|
|
|
|
config::chop_var(char *&buffer, char *&lhs, char *&rhs)
|
|
|
|
|
{
|
|
|
|
|
char *walker;
|
|
|
|
|
|
|
|
|
|
if (*buffer == '\0')
|
|
|
|
|
return (false);
|
|
|
|
|
walker = lhs = buffer;
|
|
|
|
|
while (is_id_char(*walker))
|
|
|
|
|
walker++;
|
|
|
|
|
if (*walker != '=')
|
|
|
|
|
return (false);
|
|
|
|
|
walker++; // skip =
|
|
|
|
|
if (*walker == '"') {
|
|
|
|
|
walker++; // skip "
|
|
|
|
|
rhs = walker;
|
|
|
|
|
while (*walker && *walker != '"')
|
|
|
|
|
walker++;
|
|
|
|
|
if (*walker != '"')
|
|
|
|
|
return (false);
|
|
|
|
|
rhs[-2] = '\0';
|
|
|
|
|
*walker++ = '\0';
|
|
|
|
|
} else {
|
|
|
|
|
rhs = walker;
|
|
|
|
|
while (*walker && !isspace(*walker))
|
|
|
|
|
walker++;
|
|
|
|
|
if (*walker != '\0')
|
|
|
|
|
*walker++ = '\0';
|
|
|
|
|
rhs[-1] = '\0';
|
|
|
|
|
}
|
2003-04-21 04:00:01 +00:00
|
|
|
|
while (isspace(*walker))
|
|
|
|
|
walker++;
|
2003-01-06 08:09:41 +00:00
|
|
|
|
buffer = walker;
|
|
|
|
|
return (true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
config::set_vars(char *buffer)
|
|
|
|
|
{
|
|
|
|
|
char *lhs;
|
|
|
|
|
char *rhs;
|
|
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
|
if (!chop_var(buffer, lhs, rhs))
|
|
|
|
|
break;
|
|
|
|
|
set_variable(lhs, rhs);
|
|
|
|
|
}
|
|
|
|
|
return (buffer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
config::find_and_execute(char type)
|
|
|
|
|
{
|
|
|
|
|
vector<event_proc *> *l;
|
|
|
|
|
vector<event_proc *>::const_iterator i;
|
2005-10-19 21:21:22 +00:00
|
|
|
|
const char *s;
|
2003-01-06 08:09:41 +00:00
|
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
|
default:
|
|
|
|
|
return;
|
2003-10-24 22:02:29 +00:00
|
|
|
|
case notify:
|
|
|
|
|
l = &_notify_list;
|
|
|
|
|
s = "notify";
|
|
|
|
|
break;
|
2003-01-06 08:09:41 +00:00
|
|
|
|
case nomatch:
|
|
|
|
|
l = &_nomatch_list;
|
|
|
|
|
s = "nomatch";
|
|
|
|
|
break;
|
|
|
|
|
case attach:
|
|
|
|
|
l = &_attach_list;
|
|
|
|
|
s = "attach";
|
|
|
|
|
break;
|
|
|
|
|
case detach:
|
|
|
|
|
l = &_detach_list;
|
|
|
|
|
s = "detach";
|
|
|
|
|
break;
|
|
|
|
|
}
|
2003-04-21 06:26:08 +00:00
|
|
|
|
if (Dflag)
|
2003-01-06 08:09:41 +00:00
|
|
|
|
fprintf(stderr, "Processing %s event\n", s);
|
|
|
|
|
for (i = l->begin(); i != l->end(); i++) {
|
|
|
|
|
if ((*i)->matches(*this)) {
|
|
|
|
|
(*i)->run(*this);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-07 08:04:36 +00:00
|
|
|
|
|
|
|
|
|
static void
|
2003-01-06 08:09:41 +00:00
|
|
|
|
process_event(char *buffer)
|
2002-12-07 08:04:36 +00:00
|
|
|
|
{
|
|
|
|
|
char type;
|
|
|
|
|
char *sp;
|
|
|
|
|
|
2003-01-06 08:09:41 +00:00
|
|
|
|
sp = buffer + 1;
|
2003-04-21 06:26:08 +00:00
|
|
|
|
if (Dflag)
|
2003-01-06 08:09:41 +00:00
|
|
|
|
fprintf(stderr, "Processing event '%s'\n", buffer);
|
|
|
|
|
type = *buffer++;
|
|
|
|
|
cfg.push_var_table();
|
|
|
|
|
// No match doesn't have a device, and the format is a little
|
|
|
|
|
// different, so handle it separately.
|
2003-10-24 22:02:29 +00:00
|
|
|
|
switch (type) {
|
|
|
|
|
case notify:
|
|
|
|
|
sp = cfg.set_vars(sp);
|
|
|
|
|
break;
|
|
|
|
|
case nomatch:
|
2005-04-18 02:54:07 +00:00
|
|
|
|
//? at location pnp-info on bus
|
|
|
|
|
sp = strchr(sp, ' ');
|
|
|
|
|
if (sp == NULL)
|
|
|
|
|
return; /* Can't happen? */
|
|
|
|
|
*sp++ = '\0';
|
2003-04-21 04:00:01 +00:00
|
|
|
|
if (strncmp(sp, "at ", 3) == 0)
|
|
|
|
|
sp += 3;
|
|
|
|
|
sp = cfg.set_vars(sp);
|
|
|
|
|
if (strncmp(sp, "on ", 3) == 0)
|
|
|
|
|
cfg.set_variable("bus", sp + 3);
|
2003-10-24 22:02:29 +00:00
|
|
|
|
break;
|
|
|
|
|
case attach: /*FALLTHROUGH*/
|
|
|
|
|
case detach:
|
|
|
|
|
sp = strchr(sp, ' ');
|
|
|
|
|
if (sp == NULL)
|
|
|
|
|
return; /* Can't happen? */
|
|
|
|
|
*sp++ = '\0';
|
|
|
|
|
cfg.set_variable("device-name", buffer);
|
2003-04-21 04:00:01 +00:00
|
|
|
|
if (strncmp(sp, "at ", 3) == 0)
|
|
|
|
|
sp += 3;
|
|
|
|
|
sp = cfg.set_vars(sp);
|
|
|
|
|
if (strncmp(sp, "on ", 3) == 0)
|
|
|
|
|
cfg.set_variable("bus", sp + 3);
|
2003-10-24 22:02:29 +00:00
|
|
|
|
break;
|
2003-01-06 08:09:41 +00:00
|
|
|
|
}
|
2003-04-21 04:00:01 +00:00
|
|
|
|
|
2003-01-06 08:09:41 +00:00
|
|
|
|
cfg.find_and_execute(type);
|
|
|
|
|
cfg.pop_var_table();
|
2002-12-07 08:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-07-01 07:24:18 +00:00
|
|
|
|
int
|
|
|
|
|
create_socket(const char *name)
|
|
|
|
|
{
|
|
|
|
|
int fd, slen;
|
|
|
|
|
struct sockaddr_un sun;
|
|
|
|
|
|
|
|
|
|
if ((fd = socket(PF_LOCAL, SOCK_STREAM, 0)) < 0)
|
|
|
|
|
err(1, "socket");
|
|
|
|
|
bzero(&sun, sizeof(sun));
|
|
|
|
|
sun.sun_family = AF_UNIX;
|
|
|
|
|
strlcpy(sun.sun_path, name, sizeof(sun.sun_path));
|
|
|
|
|
slen = SUN_LEN(&sun);
|
|
|
|
|
unlink(name);
|
2005-07-13 17:28:11 +00:00
|
|
|
|
if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0)
|
|
|
|
|
err(1, "fcntl");
|
2004-07-01 07:24:18 +00:00
|
|
|
|
if (bind(fd, (struct sockaddr *) & sun, slen) < 0)
|
|
|
|
|
err(1, "bind");
|
|
|
|
|
listen(fd, 4);
|
2005-07-13 17:10:47 +00:00
|
|
|
|
chown(name, 0, 0); /* XXX - root.wheel */
|
2005-07-13 17:28:11 +00:00
|
|
|
|
chmod(name, 0666);
|
2004-07-01 07:24:18 +00:00
|
|
|
|
return (fd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
list<int> clients;
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
notify_clients(const char *data, int len)
|
|
|
|
|
{
|
|
|
|
|
list<int> bad;
|
|
|
|
|
list<int>::const_iterator i;
|
|
|
|
|
|
|
|
|
|
for (i = clients.begin(); i != clients.end(); i++) {
|
|
|
|
|
if (write(*i, data, len) <= 0) {
|
|
|
|
|
bad.push_back(*i);
|
|
|
|
|
close(*i);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = bad.begin(); i != bad.end(); i++)
|
|
|
|
|
clients.erase(find(clients.begin(), clients.end(), *i));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
new_client(int fd)
|
|
|
|
|
{
|
|
|
|
|
int s;
|
|
|
|
|
|
|
|
|
|
s = accept(fd, NULL, NULL);
|
|
|
|
|
if (s != -1)
|
|
|
|
|
clients.push_back(s);
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-07 08:04:36 +00:00
|
|
|
|
static void
|
|
|
|
|
event_loop(void)
|
|
|
|
|
{
|
|
|
|
|
int rv;
|
|
|
|
|
int fd;
|
|
|
|
|
char buffer[DEVCTL_MAXBUF];
|
2003-04-21 06:26:08 +00:00
|
|
|
|
int once = 0;
|
2004-07-01 07:24:18 +00:00
|
|
|
|
int server_fd, max_fd;
|
2003-04-21 06:26:08 +00:00
|
|
|
|
timeval tv;
|
|
|
|
|
fd_set fds;
|
2002-12-07 08:04:36 +00:00
|
|
|
|
|
|
|
|
|
fd = open(PATH_DEVCTL, O_RDONLY);
|
|
|
|
|
if (fd == -1)
|
2004-07-01 07:24:18 +00:00
|
|
|
|
err(1, "Can't open devctl device %s", PATH_DEVCTL);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
if (fcntl(fd, F_SETFD, FD_CLOEXEC) != 0)
|
2004-07-01 07:24:18 +00:00
|
|
|
|
err(1, "Can't set close-on-exec flag on devctl");
|
|
|
|
|
server_fd = create_socket(PIPE);
|
|
|
|
|
max_fd = max(fd, server_fd) + 1;
|
2002-12-07 08:04:36 +00:00
|
|
|
|
while (1) {
|
|
|
|
|
if (romeo_must_die)
|
|
|
|
|
break;
|
2003-04-21 06:26:08 +00:00
|
|
|
|
if (!once && !dflag && !nflag) {
|
|
|
|
|
// Check to see if we have any events pending.
|
|
|
|
|
tv.tv_sec = 0;
|
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
FD_ZERO(&fds);
|
|
|
|
|
FD_SET(fd, &fds);
|
|
|
|
|
rv = select(fd + 1, &fds, &fds, &fds, &tv);
|
|
|
|
|
// No events -> we've processed all pending events
|
2003-07-23 23:50:00 +00:00
|
|
|
|
if (rv == 0) {
|
2003-04-21 06:26:08 +00:00
|
|
|
|
if (Dflag)
|
|
|
|
|
fprintf(stderr, "Calling daemon\n");
|
2006-01-30 22:50:13 +00:00
|
|
|
|
cfg.remove_pidfile();
|
|
|
|
|
cfg.open_pidfile();
|
2003-04-21 06:26:08 +00:00
|
|
|
|
daemon(0, 0);
|
2006-01-30 22:50:13 +00:00
|
|
|
|
cfg.write_pidfile();
|
2003-04-21 06:26:08 +00:00
|
|
|
|
once++;
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-07-01 07:24:18 +00:00
|
|
|
|
FD_ZERO(&fds);
|
|
|
|
|
FD_SET(fd, &fds);
|
|
|
|
|
FD_SET(server_fd, &fds);
|
|
|
|
|
rv = select(max_fd, &fds, NULL, NULL, NULL);
|
|
|
|
|
if (rv == -1) {
|
|
|
|
|
if (errno == EINTR)
|
|
|
|
|
continue;
|
|
|
|
|
err(1, "select");
|
|
|
|
|
}
|
|
|
|
|
if (FD_ISSET(fd, &fds)) {
|
|
|
|
|
rv = read(fd, buffer, sizeof(buffer) - 1);
|
|
|
|
|
if (rv > 0) {
|
|
|
|
|
notify_clients(buffer, rv);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
buffer[rv] = '\0';
|
2004-07-01 07:24:18 +00:00
|
|
|
|
while (buffer[--rv] == '\n')
|
|
|
|
|
buffer[rv] = '\0';
|
|
|
|
|
process_event(buffer);
|
|
|
|
|
} else if (rv < 0) {
|
|
|
|
|
if (errno != EINTR)
|
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
/* EOF */
|
2002-12-07 08:04:36 +00:00
|
|
|
|
break;
|
2004-07-01 07:24:18 +00:00
|
|
|
|
}
|
2002-12-07 08:04:36 +00:00
|
|
|
|
}
|
2004-07-01 07:24:18 +00:00
|
|
|
|
if (FD_ISSET(server_fd, &fds))
|
|
|
|
|
new_client(server_fd);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
close(fd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* functions that the parser uses.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
add_attach(int prio, event_proc *p)
|
|
|
|
|
{
|
|
|
|
|
cfg.add_attach(prio, p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
add_detach(int prio, event_proc *p)
|
|
|
|
|
{
|
|
|
|
|
cfg.add_detach(prio, p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
add_directory(const char *dir)
|
|
|
|
|
{
|
|
|
|
|
cfg.add_directory(dir);
|
|
|
|
|
free(const_cast<char *>(dir));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
add_nomatch(int prio, event_proc *p)
|
|
|
|
|
{
|
|
|
|
|
cfg.add_nomatch(prio, p);
|
|
|
|
|
}
|
|
|
|
|
|
2003-10-24 22:02:29 +00:00
|
|
|
|
void
|
|
|
|
|
add_notify(int prio, event_proc *p)
|
|
|
|
|
{
|
|
|
|
|
cfg.add_notify(prio, p);
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-07 08:04:36 +00:00
|
|
|
|
event_proc *
|
|
|
|
|
add_to_event_proc(event_proc *ep, eps *eps)
|
|
|
|
|
{
|
|
|
|
|
if (ep == NULL)
|
|
|
|
|
ep = new event_proc();
|
|
|
|
|
ep->add(eps);
|
|
|
|
|
return (ep);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
eps *
|
|
|
|
|
new_action(const char *cmd)
|
|
|
|
|
{
|
|
|
|
|
eps *e = new action(cmd);
|
|
|
|
|
free(const_cast<char *>(cmd));
|
|
|
|
|
return (e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
eps *
|
|
|
|
|
new_match(const char *var, const char *re)
|
|
|
|
|
{
|
2002-12-18 07:08:01 +00:00
|
|
|
|
eps *e = new match(cfg, var, re);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
free(const_cast<char *>(var));
|
|
|
|
|
free(const_cast<char *>(re));
|
|
|
|
|
return (e);
|
|
|
|
|
}
|
|
|
|
|
|
2005-07-10 03:37:15 +00:00
|
|
|
|
eps *
|
|
|
|
|
new_media(const char *var, const char *re)
|
|
|
|
|
{
|
|
|
|
|
eps *e = new media(cfg, var, re);
|
|
|
|
|
free(const_cast<char *>(var));
|
|
|
|
|
free(const_cast<char *>(re));
|
|
|
|
|
return (e);
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-07 08:04:36 +00:00
|
|
|
|
void
|
|
|
|
|
set_pidfile(const char *name)
|
|
|
|
|
{
|
|
|
|
|
cfg.set_pidfile(name);
|
|
|
|
|
free(const_cast<char *>(name));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
set_variable(const char *var, const char *val)
|
|
|
|
|
{
|
|
|
|
|
cfg.set_variable(var, val);
|
|
|
|
|
free(const_cast<char *>(var));
|
|
|
|
|
free(const_cast<char *>(val));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gensighand(int)
|
|
|
|
|
{
|
|
|
|
|
romeo_must_die++;
|
|
|
|
|
_exit(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
usage()
|
|
|
|
|
{
|
2006-09-17 22:49:26 +00:00
|
|
|
|
fprintf(stderr, "usage: %s [-Ddn] [-f file]\n", getprogname());
|
2002-12-07 08:04:36 +00:00
|
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-21 04:30:12 +00:00
|
|
|
|
static void
|
|
|
|
|
check_devd_enabled()
|
|
|
|
|
{
|
|
|
|
|
int val = 0;
|
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
|
|
len = sizeof(val);
|
2003-05-02 17:38:08 +00:00
|
|
|
|
if (sysctlbyname(SYSCTL, &val, &len, NULL, 0) != 0)
|
2003-04-21 04:30:12 +00:00
|
|
|
|
errx(1, "devctl sysctl missing from kernel!");
|
|
|
|
|
if (val) {
|
|
|
|
|
warnx("Setting " SYSCTL " to 0");
|
|
|
|
|
val = 0;
|
|
|
|
|
sysctlbyname(SYSCTL, NULL, NULL, &val, sizeof(val));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-07 08:04:36 +00:00
|
|
|
|
/*
|
|
|
|
|
* main
|
|
|
|
|
*/
|
|
|
|
|
int
|
|
|
|
|
main(int argc, char **argv)
|
|
|
|
|
{
|
|
|
|
|
int ch;
|
|
|
|
|
|
2003-04-21 04:30:12 +00:00
|
|
|
|
check_devd_enabled();
|
2005-11-24 14:39:41 +00:00
|
|
|
|
while ((ch = getopt(argc, argv, "Ddf:n")) != -1) {
|
2002-12-07 08:04:36 +00:00
|
|
|
|
switch (ch) {
|
2003-04-21 06:26:08 +00:00
|
|
|
|
case 'D':
|
|
|
|
|
Dflag++;
|
|
|
|
|
break;
|
2002-12-07 08:04:36 +00:00
|
|
|
|
case 'd':
|
|
|
|
|
dflag++;
|
|
|
|
|
break;
|
2005-11-24 14:39:41 +00:00
|
|
|
|
case 'f':
|
|
|
|
|
configfile = optarg;
|
|
|
|
|
break;
|
2003-04-21 06:26:08 +00:00
|
|
|
|
case 'n':
|
|
|
|
|
nflag++;
|
|
|
|
|
break;
|
2002-12-07 08:04:36 +00:00
|
|
|
|
default:
|
|
|
|
|
usage();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cfg.parse();
|
2003-07-05 00:43:50 +00:00
|
|
|
|
if (!dflag && nflag) {
|
2006-01-30 22:50:13 +00:00
|
|
|
|
cfg.open_pidfile();
|
2002-12-07 08:04:36 +00:00
|
|
|
|
daemon(0, 0);
|
2006-01-30 22:50:13 +00:00
|
|
|
|
cfg.write_pidfile();
|
2003-07-05 00:43:50 +00:00
|
|
|
|
}
|
2005-05-16 20:51:46 +00:00
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
2002-12-07 08:04:36 +00:00
|
|
|
|
signal(SIGHUP, gensighand);
|
|
|
|
|
signal(SIGINT, gensighand);
|
|
|
|
|
signal(SIGTERM, gensighand);
|
|
|
|
|
event_loop();
|
|
|
|
|
return (0);
|
|
|
|
|
}
|