aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 12:23:56 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 12:23:56 +0000
commit035aae584111cd92af37a124160dbcb9e810d84c (patch)
treee0293b09f2e455e94e11cd406eb4956a65956030 /networking
parent27af5a0dd34b1b392aa69b548e18935aafe66e5f (diff)
downloadbusybox-035aae584111cd92af37a124160dbcb9e810d84c.tar.gz
zcip: use xfunc() where appropriate
Diffstat (limited to 'networking')
-rw-r--r--networking/zcip.c52
1 files changed, 23 insertions, 29 deletions
diff --git a/networking/zcip.c b/networking/zcip.c
index e9dd05011..176bc0101 100644
--- a/networking/zcip.c
+++ b/networking/zcip.c
@@ -132,6 +132,7 @@ static int arp(int fd, struct sockaddr *saddr, int op,
/**
* Run a script.
+ * TODO: sort out stderr/syslog reporting.
*/
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 state = PROBE;
+ struct ifreq ifr;
+ unsigned short seed[3];
+
// parse commandline: prog [options] ifname script
while ((t = getopt(argc, argv, "fqr:v")) != EOF) {
switch (t) {
@@ -249,38 +253,28 @@ int zcip_main(int argc, char *argv[])
safe_strncpy(saddr.sa_data, intf, sizeof (saddr.sa_data));
// open an ARP socket
- if ((fd = socket(PF_PACKET, SOCK_PACKET, htons(ETH_P_ARP))) < 0) {
- why = "open";
-fail:
+ fd = xsocket(PF_PACKET, SOCK_PACKET, htons(ETH_P_ARP));
+ // bind to the interface's ARP socket
+ xbind(fd, &saddr, sizeof (saddr);
+
+ // get the interface's ethernet address
+ memset(&ifr, 0, sizeof (ifr));
+ strncpy(ifr.ifr_name, intf, sizeof (ifr.ifr_name));
+ if (ioctl(fd, SIOCGIFHWADDR, &ifr) < 0) {
foreground = 1;
+ why = "get ethernet address";
goto bad;
}
- // bind to the interface's ARP socket
- if (bind(fd, &saddr, sizeof (saddr)) < 0) {
- why = "bind";
- goto fail;
- } else {
- struct ifreq ifr;
- unsigned short seed[3];
-
- // get the interface's ethernet address
- memset(&ifr, 0, sizeof (ifr));
- strncpy(ifr.ifr_name, intf, sizeof (ifr.ifr_name));
- if (ioctl(fd, SIOCGIFHWADDR, &ifr) < 0) {
- why = "get ethernet address";
- goto fail;
- }
- memcpy(&addr, &ifr.ifr_hwaddr.sa_data, ETH_ALEN);
-
- // start with some stable ip address, either a function of
- // the hardware address or else the last address we used.
- // NOTE: the sequence of addresses we try changes only
- // depending on when we detect conflicts.
- memcpy(seed, &ifr.ifr_hwaddr.sa_data, ETH_ALEN);
- seed48(seed);
- if (ip.s_addr == 0)
- pick(&ip);
- }
+ memcpy(&addr, &ifr.ifr_hwaddr.sa_data, ETH_ALEN);
+
+ // start with some stable ip address, either a function of
+ // the hardware address or else the last address we used.
+ // NOTE: the sequence of addresses we try changes only
+ // depending on when we detect conflicts.
+ memcpy(seed, &ifr.ifr_hwaddr.sa_data, ETH_ALEN);
+ seed48(seed);
+ if (ip.s_addr == 0)
+ pick(&ip);
// FIXME cases to handle:
// - zcip already running!