tweak Config texts and some broken English elsewhere
[oweals/busybox.git] / networking / udhcp / script.c
index dc8ff7a1c907872d14a8a9106c55eae5a3a43fec..7ebef355394e3823b51c49c185b124269e6f4ab0 100644 (file)
@@ -9,17 +9,16 @@
  */
 
 #include "common.h"
-#include "dhcpd.h"
 #include "dhcpc.h"
 #include "options.h"
 
 
 /* get a rough idea of how long an option will be (rounding up...) */
-static const int max_option_length[] = {
+static const uint8_t max_option_length[] = {
        [OPTION_IP] =           sizeof("255.255.255.255 "),
        [OPTION_IP_PAIR] =      sizeof("255.255.255.255 ") * 2,
        [OPTION_STRING] =       1,
-#if ENABLE_FEATURE_RFC3397
+#if ENABLE_FEATURE_UDHCP_RFC3397
        [OPTION_STR1035] =      1,
 #endif
        [OPTION_BOOLEAN] =      sizeof("yes "),
@@ -34,30 +33,32 @@ static const int max_option_length[] = {
 static inline int upper_length(int length, int opt_index)
 {
        return max_option_length[opt_index] *
-               (length / option_lengths[opt_index]);
+               (length / dhcp_option_lengths[opt_index]);
 }
 
 
-static int sprintip(char *dest, const char *pre, const uint8_t *ip)
+/* note: ip is a pointer to an IP in network order, possibly misaliged */
+static int sprint_nip(char *dest, const char *pre, const uint8_t *ip)
 {
        return sprintf(dest, "%s%d.%d.%d.%d", pre, ip[0], ip[1], ip[2], ip[3]);
 }
 
 
 /* really simple implementation, just count the bits */
-static int mton(struct in_addr *mask)
+static int mton(uint32_t mask)
 {
-       int i;
-       unsigned long bits = ntohl(mask->s_addr);
-       /* too bad one can't check the carry bit, etc in c bit
-        * shifting */
-       for (i = 0; i < 32 && !((bits >> i) & 1); i++);
-       return 32 - i;
+       int i = 0;
+       mask = ntohl(mask); /* 111110000-like bit pattern */
+       while (mask) {
+               i++;
+               mask <<= 1;
+       }
+       return i;
 }
 
 
 /* Allocate and fill with the text of option 'option'. */
-static char *alloc_fill_opts(uint8_t *option, const struct dhcp_option *type_p)
+static char *alloc_fill_opts(uint8_t *option, const struct dhcp_option *type_p, const char *opt_name)
 {
        int len, type, optlen;
        uint16_t val_u16;
@@ -68,20 +69,20 @@ static char *alloc_fill_opts(uint8_t *option, const struct dhcp_option *type_p)
 
        len = option[OPT_LEN - 2];
        type = type_p->flags & TYPE_MASK;
-       optlen = option_lengths[type];
+       optlen = dhcp_option_lengths[type];
 
-       dest = ret = xmalloc(upper_length(len, type) + strlen(type_p->name) + 2);
-       dest += sprintf(ret, "%s=", type_p->name);
+       dest = ret = xmalloc(upper_length(len, type) + strlen(opt_name) + 2);
+       dest += sprintf(ret, "%s=", opt_name);
 
        for (;;) {
                switch (type) {
                case OPTION_IP_PAIR:
-                       dest += sprintip(dest, "", option);
-                       *(dest++) = '/';
+                       dest += sprint_nip(dest, "", option);
+                       *dest++ = '/';
                        option += 4;
                        optlen = 4;
                case OPTION_IP: /* Works regardless of host byte order. */
-                       dest += sprintip(dest, "", option);
+                       dest += sprint_nip(dest, "", option);
                        break;
                case OPTION_BOOLEAN:
                        dest += sprintf(dest, *option ? "yes" : "no");
@@ -90,26 +91,26 @@ static char *alloc_fill_opts(uint8_t *option, const struct dhcp_option *type_p)
                        dest += sprintf(dest, "%u", *option);
                        break;
                case OPTION_U16:
-                       memcpy(&val_u16, option, 2);
+                       move_from_unaligned16(val_u16, option);
                        dest += sprintf(dest, "%u", ntohs(val_u16));
                        break;
                case OPTION_S16:
-                       memcpy(&val_s16, option, 2);
+                       move_from_unaligned16(val_s16, option);
                        dest += sprintf(dest, "%d", ntohs(val_s16));
                        break;
                case OPTION_U32:
-                       memcpy(&val_u32, option, 4);
+                       move_from_unaligned32(val_u32, option);
                        dest += sprintf(dest, "%lu", (unsigned long) ntohl(val_u32));
                        break;
                case OPTION_S32:
-                       memcpy(&val_s32, option, 4);
+                       move_from_unaligned32(val_s32, option);
                        dest += sprintf(dest, "%ld", (long) ntohl(val_s32));
                        break;
                case OPTION_STRING:
                        memcpy(dest, option, len);
                        dest[len] = '\0';
                        return ret;      /* Short circuit this case */
-#if ENABLE_FEATURE_RFC3397
+#if ENABLE_FEATURE_UDHCP_RFC3397
                case OPTION_STR1035:
                        /* unpack option into dest; use ret for prefix (i.e., "optname=") */
                        dest = dname_dec(option, len, ret);
@@ -119,7 +120,8 @@ static char *alloc_fill_opts(uint8_t *option, const struct dhcp_option *type_p)
                }
                option += optlen;
                len -= optlen;
-               if (len <= 0) break;
+               if (len <= 0)
+                       break;
                dest += sprintf(dest, " ");
        }
        return ret;
@@ -127,98 +129,108 @@ static char *alloc_fill_opts(uint8_t *option, const struct dhcp_option *type_p)
 
 
 /* put all the parameters into an environment */
-static char **fill_envp(struct dhcpMessage *packet)
+static char **fill_envp(struct dhcp_packet *packet)
 {
        int num_options = 0;
-       int i, j;
-       char **envp;
+       int i;
+       char **envp, **curr;
+       const char *opt_name;
        uint8_t *temp;
-       struct in_addr subnet;
-       char over = 0;
+       uint8_t over = 0;
 
-       if (packet == NULL)
-               num_options = 0;
-       else {
-               for (i = 0; dhcp_options[i].code; i++)
+       if (packet) {
+               for (i = 0; dhcp_options[i].code; i++) {
                        if (get_option(packet, dhcp_options[i].code)) {
                                num_options++;
                                if (dhcp_options[i].code == DHCP_SUBNET)
                                        num_options++; /* for mton */
                        }
-               if (packet->siaddr) num_options++;
-               if ((temp = get_option(packet, DHCP_OPTION_OVER)))
+               }
+               if (packet->siaddr_nip)
+                       num_options++;
+               temp = get_option(packet, DHCP_OPTION_OVERLOAD);
+               if (temp)
                        over = *temp;
-               if (!(over & FILE_FIELD) && packet->file[0]) num_options++;
-               if (!(over & SNAME_FIELD) && packet->sname[0]) num_options++;
+               if (!(over & FILE_FIELD) && packet->file[0])
+                       num_options++;
+               if (!(over & SNAME_FIELD) && packet->sname[0])
+                       num_options++;
        }
 
-       envp = xzalloc(sizeof(char *) * (num_options + 5));
-       j = 0;
-       envp[j++] = xasprintf("interface=%s", client_config.interface);
-       envp[j++] = xasprintf("PATH=%s",
-               getenv("PATH") ? : "/bin:/usr/bin:/sbin:/usr/sbin");
-       envp[j++] = xasprintf("HOME=%s", getenv("HOME") ? : "/");
+       curr = envp = xzalloc(sizeof(char *) * (num_options + 3));
+       *curr = xasprintf("interface=%s", client_config.interface);
+       putenv(*curr++);
 
-       if (packet == NULL) return envp;
+       if (packet == NULL)
+               return envp;
 
-       envp[j] = xmalloc(sizeof("ip=255.255.255.255"));
-       sprintip(envp[j++], "ip=", (uint8_t *) &packet->yiaddr);
+       *curr = xmalloc(sizeof("ip=255.255.255.255"));
+       sprint_nip(*curr, "ip=", (uint8_t *) &packet->yiaddr);
+       putenv(*curr++);
 
-       for (i = 0; dhcp_options[i].code; i++) {
+       opt_name = dhcp_option_strings;
+       i = 0;
+       while (*opt_name) {
                temp = get_option(packet, dhcp_options[i].code);
                if (!temp)
-                       continue;
-               envp[j++] = alloc_fill_opts(temp, &dhcp_options[i]);
+                       goto next;
+               *curr = alloc_fill_opts(temp, &dhcp_options[i], opt_name);
+               putenv(*curr++);
 
                /* Fill in a subnet bits option for things like /24 */
                if (dhcp_options[i].code == DHCP_SUBNET) {
-                       memcpy(&subnet, temp, 4);
-                       envp[j++] = xasprintf("mask=%d", mton(&subnet));
+                       uint32_t subnet;
+                       move_from_unaligned32(subnet, temp);
+                       *curr = xasprintf("mask=%d", mton(subnet));
+                       putenv(*curr++);
                }
+ next:
+               opt_name += strlen(opt_name) + 1;
+               i++;
        }
-       if (packet->siaddr) {
-               envp[j] = xmalloc(sizeof("siaddr=255.255.255.255"));
-               sprintip(envp[j++], "siaddr=", (uint8_t *) &packet->siaddr);
+       if (packet->siaddr_nip) {
+               *curr = xmalloc(sizeof("siaddr=255.255.255.255"));
+               sprint_nip(*curr, "siaddr=", (uint8_t *) &packet->siaddr_nip);
+               putenv(*curr++);
        }
        if (!(over & FILE_FIELD) && packet->file[0]) {
                /* watch out for invalid packets */
                packet->file[sizeof(packet->file) - 1] = '\0';
-               envp[j++] = xasprintf("boot_file=%s", packet->file);
+               *curr = xasprintf("boot_file=%s", packet->file);
+               putenv(*curr++);
        }
        if (!(over & SNAME_FIELD) && packet->sname[0]) {
                /* watch out for invalid packets */
                packet->sname[sizeof(packet->sname) - 1] = '\0';
-               envp[j++] = xasprintf("sname=%s", packet->sname);
+               *curr = xasprintf("sname=%s", packet->sname);
+               putenv(*curr++);
        }
        return envp;
 }
 
 
 /* Call a script with a par file and env vars */
-void udhcp_run_script(struct dhcpMessage *packet, const char *name)
+void FAST_FUNC udhcp_run_script(struct dhcp_packet *packet, const char *name)
 {
-       int pid;
        char **envp, **curr;
+       char *argv[3];
 
        if (client_config.script == NULL)
                return;
 
-       DEBUG("vfork'ing and execle'ing %s", client_config.script);
-
        envp = fill_envp(packet);
+
        /* call script */
-       pid = vfork();
-       if (pid) {
-               waitpid(pid, NULL, 0);
-               for (curr = envp; *curr; curr++) free(*curr);
-               free(envp);
-               return;
-       } else if (pid == 0) {
-               /* close fd's? */
-               /* exec script */
-               execle(client_config.script, client_config.script,
-                      name, NULL, envp);
-               bb_perror_msg("script %s failed", client_config.script);
-               exit(1);
+       log1("Executing %s", client_config.script);
+       argv[0] = (char*) client_config.script;
+       argv[1] = (char*) name;
+       argv[2] = NULL;
+       wait4pid(spawn(argv));
+
+       for (curr = envp; *curr; curr++) {
+               log2(" %s", *curr);
+               bb_unsetenv(*curr);
+               free(*curr);
        }
+       free(envp);
 }