zcip: use xfunc() where appropriate

This commit is contained in:
Denis Vlasenko 2006-09-03 12:23:56 +00:00
parent 27af5a0dd3
commit 035aae5841

View File

@ -132,6 +132,7 @@ static int arp(int fd, struct sockaddr *saddr, int op,
/** /**
* Run a script. * Run a script.
* TODO: sort out stderr/syslog reporting.
*/ */
static int run(char *script, char *arg, char *intf, struct in_addr *ip) static int run(char *script, char *arg, char *intf, struct in_addr *ip)
{ {
@ -207,6 +208,9 @@ int zcip_main(int argc, char *argv[])
int t; int t;
int state = PROBE; int state = PROBE;
struct ifreq ifr;
unsigned short seed[3];
// parse commandline: prog [options] ifname script // parse commandline: prog [options] ifname script
while ((t = getopt(argc, argv, "fqr:v")) != EOF) { while ((t = getopt(argc, argv, "fqr:v")) != EOF) {
switch (t) { switch (t) {
@ -249,26 +253,17 @@ int zcip_main(int argc, char *argv[])
safe_strncpy(saddr.sa_data, intf, sizeof (saddr.sa_data)); safe_strncpy(saddr.sa_data, intf, sizeof (saddr.sa_data));
// open an ARP socket // open an ARP socket
if ((fd = socket(PF_PACKET, SOCK_PACKET, htons(ETH_P_ARP))) < 0) { fd = xsocket(PF_PACKET, SOCK_PACKET, htons(ETH_P_ARP));
why = "open";
fail:
foreground = 1;
goto bad;
}
// bind to the interface's ARP socket // bind to the interface's ARP socket
if (bind(fd, &saddr, sizeof (saddr)) < 0) { xbind(fd, &saddr, sizeof (saddr);
why = "bind";
goto fail;
} else {
struct ifreq ifr;
unsigned short seed[3];
// get the interface's ethernet address // get the interface's ethernet address
memset(&ifr, 0, sizeof (ifr)); memset(&ifr, 0, sizeof (ifr));
strncpy(ifr.ifr_name, intf, sizeof (ifr.ifr_name)); strncpy(ifr.ifr_name, intf, sizeof (ifr.ifr_name));
if (ioctl(fd, SIOCGIFHWADDR, &ifr) < 0) { if (ioctl(fd, SIOCGIFHWADDR, &ifr) < 0) {
foreground = 1;
why = "get ethernet address"; why = "get ethernet address";
goto fail; goto bad;
} }
memcpy(&addr, &ifr.ifr_hwaddr.sa_data, ETH_ALEN); memcpy(&addr, &ifr.ifr_hwaddr.sa_data, ETH_ALEN);
@ -280,7 +275,6 @@ fail:
seed48(seed); seed48(seed);
if (ip.s_addr == 0) if (ip.s_addr == 0)
pick(&ip); pick(&ip);
}
// FIXME cases to handle: // FIXME cases to handle:
// - zcip already running! // - zcip already running!