Initial public busybox upstream commit
[busybox4maemo] / networking / udhcp / script.c
1 /* vi: set sw=4 ts=4: */
2 /* script.c
3  *
4  * Functions to call the DHCP client notification scripts
5  *
6  * Russ Dill <Russ.Dill@asu.edu> July 2001
7  *
8  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
9  */
10
11 #include "common.h"
12 #include "dhcpc.h"
13 #include "options.h"
14
15
16 /* get a rough idea of how long an option will be (rounding up...) */
17 static const uint8_t max_option_length[] = {
18         [OPTION_IP] =           sizeof("255.255.255.255 "),
19         [OPTION_IP_PAIR] =      sizeof("255.255.255.255 ") * 2,
20         [OPTION_STRING] =       1,
21 #if ENABLE_FEATURE_RFC3397
22         [OPTION_STR1035] =      1,
23 #endif
24         [OPTION_BOOLEAN] =      sizeof("yes "),
25         [OPTION_U8] =           sizeof("255 "),
26         [OPTION_U16] =          sizeof("65535 "),
27         [OPTION_S16] =          sizeof("-32768 "),
28         [OPTION_U32] =          sizeof("4294967295 "),
29         [OPTION_S32] =          sizeof("-2147483684 "),
30 };
31
32
33 static inline int upper_length(int length, int opt_index)
34 {
35         return max_option_length[opt_index] *
36                 (length / dhcp_option_lengths[opt_index]);
37 }
38
39
40 static int sprintip(char *dest, const char *pre, const uint8_t *ip)
41 {
42         return sprintf(dest, "%s%d.%d.%d.%d", pre, ip[0], ip[1], ip[2], ip[3]);
43 }
44
45
46 /* really simple implementation, just count the bits */
47 static int mton(uint32_t mask)
48 {
49         int i = 0;
50         mask = ntohl(mask); /* 111110000-like bit pattern */
51         while (mask) {
52                 i++;
53                 mask <<= 1;
54         }
55         return i;
56 }
57
58
59 /* Allocate and fill with the text of option 'option'. */
60 static char *alloc_fill_opts(uint8_t *option, const struct dhcp_option *type_p, const char *opt_name)
61 {
62         int len, type, optlen;
63         uint16_t val_u16;
64         int16_t val_s16;
65         uint32_t val_u32;
66         int32_t val_s32;
67         char *dest, *ret;
68
69         len = option[OPT_LEN - 2];
70         type = type_p->flags & TYPE_MASK;
71         optlen = dhcp_option_lengths[type];
72
73         dest = ret = xmalloc(upper_length(len, type) + strlen(opt_name) + 2);
74         dest += sprintf(ret, "%s=", opt_name);
75
76         for (;;) {
77                 switch (type) {
78                 case OPTION_IP_PAIR:
79                         dest += sprintip(dest, "", option);
80                         *dest++ = '/';
81                         option += 4;
82                         optlen = 4;
83                 case OPTION_IP: /* Works regardless of host byte order. */
84                         dest += sprintip(dest, "", option);
85                         break;
86                 case OPTION_BOOLEAN:
87                         dest += sprintf(dest, *option ? "yes" : "no");
88                         break;
89                 case OPTION_U8:
90                         dest += sprintf(dest, "%u", *option);
91                         break;
92                 case OPTION_U16:
93                         memcpy(&val_u16, option, 2);
94                         dest += sprintf(dest, "%u", ntohs(val_u16));
95                         break;
96                 case OPTION_S16:
97                         memcpy(&val_s16, option, 2);
98                         dest += sprintf(dest, "%d", ntohs(val_s16));
99                         break;
100                 case OPTION_U32:
101                         memcpy(&val_u32, option, 4);
102                         dest += sprintf(dest, "%lu", (unsigned long) ntohl(val_u32));
103                         break;
104                 case OPTION_S32:
105                         memcpy(&val_s32, option, 4);
106                         dest += sprintf(dest, "%ld", (long) ntohl(val_s32));
107                         break;
108                 case OPTION_STRING:
109                         memcpy(dest, option, len);
110                         dest[len] = '\0';
111                         return ret;      /* Short circuit this case */
112 #if ENABLE_FEATURE_RFC3397
113                 case OPTION_STR1035:
114                         /* unpack option into dest; use ret for prefix (i.e., "optname=") */
115                         dest = dname_dec(option, len, ret);
116                         free(ret);
117                         return dest;
118 #endif
119                 }
120                 option += optlen;
121                 len -= optlen;
122                 if (len <= 0) break;
123                 dest += sprintf(dest, " ");
124         }
125         return ret;
126 }
127
128
129 /* put all the parameters into an environment */
130 static char **fill_envp(struct dhcpMessage *packet)
131 {
132         int num_options = 0;
133         int i, j;
134         char **envp;
135         char *var;
136         const char *opt_name;
137         uint8_t *temp;
138         char over = 0;
139
140         if (packet) {
141                 for (i = 0; dhcp_options[i].code; i++) {
142                         if (get_option(packet, dhcp_options[i].code)) {
143                                 num_options++;
144                                 if (dhcp_options[i].code == DHCP_SUBNET)
145                                         num_options++; /* for mton */
146                         }
147                 }
148                 if (packet->siaddr)
149                         num_options++;
150                 temp = get_option(packet, DHCP_OPTION_OVER);
151                 if (temp)
152                         over = *temp;
153                 if (!(over & FILE_FIELD) && packet->file[0])
154                         num_options++;
155                 if (!(over & SNAME_FIELD) && packet->sname[0])
156                         num_options++;
157         }
158
159         envp = xzalloc(sizeof(char *) * (num_options + 5));
160         j = 0;
161         envp[j++] = xasprintf("interface=%s", client_config.interface);
162         var = getenv("PATH");
163         if (var)
164                 envp[j++] = xasprintf("PATH=%s", var);
165         var = getenv("HOME");
166         if (var)
167                 envp[j++] = xasprintf("HOME=%s", var);
168
169         if (packet == NULL)
170                 return envp;
171
172         envp[j] = xmalloc(sizeof("ip=255.255.255.255"));
173         sprintip(envp[j++], "ip=", (uint8_t *) &packet->yiaddr);
174
175         opt_name = dhcp_option_strings;
176         i = 0;
177         while (*opt_name) {
178                 temp = get_option(packet, dhcp_options[i].code);
179                 if (!temp)
180                         goto next;
181                 envp[j++] = alloc_fill_opts(temp, &dhcp_options[i], opt_name);
182
183                 /* Fill in a subnet bits option for things like /24 */
184                 if (dhcp_options[i].code == DHCP_SUBNET) {
185                         uint32_t subnet;
186                         memcpy(&subnet, temp, 4);
187                         envp[j++] = xasprintf("mask=%d", mton(subnet));
188                 }
189  next:
190                 opt_name += strlen(opt_name) + 1;
191                 i++;
192         }
193         if (packet->siaddr) {
194                 envp[j] = xmalloc(sizeof("siaddr=255.255.255.255"));
195                 sprintip(envp[j++], "siaddr=", (uint8_t *) &packet->siaddr);
196         }
197         if (!(over & FILE_FIELD) && packet->file[0]) {
198                 /* watch out for invalid packets */
199                 packet->file[sizeof(packet->file) - 1] = '\0';
200                 envp[j++] = xasprintf("boot_file=%s", packet->file);
201         }
202         if (!(over & SNAME_FIELD) && packet->sname[0]) {
203                 /* watch out for invalid packets */
204                 packet->sname[sizeof(packet->sname) - 1] = '\0';
205                 envp[j++] = xasprintf("sname=%s", packet->sname);
206         }
207         return envp;
208 }
209
210
211 /* Call a script with a par file and env vars */
212 void udhcp_run_script(struct dhcpMessage *packet, const char *name)
213 {
214         int pid;
215         char **envp, **curr;
216
217         if (client_config.script == NULL)
218                 return;
219
220         DEBUG("vfork'ing and execle'ing %s", client_config.script);
221
222         envp = fill_envp(packet);
223
224         /* call script */
225 // can we use wait4pid(spawn(...)) here?
226         pid = vfork();
227         if (pid < 0) return;
228         if (pid == 0) {
229                 /* close fd's? */
230                 /* exec script */
231                 execle(client_config.script, client_config.script,
232                        name, NULL, envp);
233                 bb_perror_msg_and_die("script %s failed", client_config.script);
234         }
235         safe_waitpid(pid, NULL, 0);
236         for (curr = envp; *curr; curr++)
237                 free(*curr);
238         free(envp);
239 }