]> git.decadent.org.uk Git - odhcp6c.git/blob - src/script.c
Improve syslog-messages
[odhcp6c.git] / src / script.c
1 /**
2  * Copyright (C) 2012 Steven Barth <steven@midlink.org>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License v2 as published by
6  * the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  */
14
15 #include <stdio.h>
16 #include <resolv.h>
17 #include <stdlib.h>
18 #include <string.h>
19 #include <syslog.h>
20 #include <unistd.h>
21 #include <arpa/inet.h>
22 #include <netinet/in.h>
23
24 #include "odhcp6c.h"
25
26 static const char hexdigits[] = "0123456789abcdef";
27 static const char hexvals[] = {
28     -1, -1, -1, -1, -1, -1, -1, -1, -1, -2, -2, -1, -1, -2, -1, -1,
29     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
30     -2, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
31      0,  1,  2,  3,  4,  5,  6,  7,  8,  9, -1, -1, -1, -1, -1, -1,
32     -1, 10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1,
33     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
34     -1, 10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1,
35     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
36 };
37
38
39
40 static char *argv[4] = {NULL, NULL, NULL, NULL};
41
42
43 int script_init(const char *path, const char *ifname)
44 {
45         argv[0] = (char*)path;
46         argv[1] = (char*)ifname;
47         return 0;
48 }
49
50
51 ssize_t script_unhexlify(uint8_t *dst, size_t len, const char *src)
52 {
53         size_t c;
54         for (c = 0; c < len && src[0] && src[1]; ++c) {
55                 int8_t x = (int8_t)*src++;
56                 int8_t y = (int8_t)*src++;
57                 if (x < 0 || (x = hexvals[x]) < 0
58                                 || y < 0 || (y = hexvals[y]) < 0)
59                         return -1;
60                 dst[c] = x << 4 | y;
61                 while (*src < 0 || (*src && hexvals[(uint8_t)*src] < 0))
62                         src++;
63         }
64
65         return c;
66 }
67
68
69 void script_hexlify(char *dst, const uint8_t *src, size_t len) {
70         for (size_t i = 0; i < len; ++i) {
71                 *dst++ = hexdigits[src[i] >> 4];
72                 *dst++ = hexdigits[src[i] & 0x0f];
73         }
74         *dst = 0;
75 }
76
77
78 static void ipv6_to_env(const char *name,
79                 const struct in6_addr *addr, size_t cnt)
80 {
81         size_t buf_len = strlen(name);
82         char *buf = realloc(NULL, cnt * INET6_ADDRSTRLEN + buf_len + 2);
83         memcpy(buf, name, buf_len);
84         buf[buf_len++] = '=';
85         for (size_t i = 0; i < cnt; ++i) {
86                 inet_ntop(AF_INET6, &addr[i], &buf[buf_len], INET6_ADDRSTRLEN);
87                 buf_len += strlen(&buf[buf_len]);
88                 buf[buf_len++] = ' ';
89         }
90         buf[buf_len - 1] = '\0';
91         putenv(buf);
92 }
93
94
95 static void fqdn_to_env(const char *name, const uint8_t *fqdn, size_t len)
96 {
97         size_t buf_len = strlen(name);
98         const uint8_t *fqdn_end = fqdn + len;
99         char *buf = realloc(NULL, len + buf_len + 2);
100         memcpy(buf, name, buf_len);
101         buf[buf_len++] = '=';
102         int l = 1;
103         while (l > 0 && fqdn < fqdn_end) {
104                 l = dn_expand(fqdn, &fqdn[len], fqdn, &buf[buf_len], len);
105                 fqdn += l;
106                 buf_len += strlen(&buf[buf_len]);
107                 buf[buf_len++] = ' ';
108         }
109         buf[buf_len - 1] = '\0';
110         putenv(buf);
111 }
112
113
114 static void bin_to_env(uint8_t *opts, size_t len)
115 {
116         uint8_t *oend = opts + len, *odata;
117         uint16_t otype, olen;
118         dhcpv6_for_each_option(opts, oend, otype, olen, odata) {
119                 char *buf = realloc(NULL, 14 + (olen * 2));
120                 size_t buf_len = 0;
121
122                 snprintf(buf, 14, "OPTION_%hu=", otype);
123                 buf_len += strlen(buf);
124
125                 script_hexlify(&buf[buf_len], odata, olen);
126                 putenv(buf);
127         }
128 }
129
130
131 static void prefix_to_env(const char *name, const uint8_t *fqdn, size_t len)
132 {
133         size_t buf_len = strlen(name);
134         struct dhcpv6_ia_prefix *p = NULL;
135         char *buf = realloc(NULL, buf_len + 2 +
136                         (len / sizeof(*p)) * (INET6_ADDRSTRLEN + 32));
137         memcpy(buf, name, buf_len);
138         buf[buf_len++] = '=';
139
140         uint16_t otype, olen;
141         uint8_t *odata;
142         dhcpv6_for_each_option(fqdn, &fqdn[len], otype, olen, odata) {
143                 if (otype != DHCPV6_OPT_IA_PREFIX || olen + 4U < sizeof(*p))
144                         continue;
145
146                 p = (struct dhcpv6_ia_prefix*)&odata[-4];
147                 inet_ntop(AF_INET6, &p->addr, &buf[buf_len], INET6_ADDRSTRLEN);
148                 buf_len += strlen(&buf[buf_len]);
149                 buf_len += snprintf(&buf[buf_len], 32, "/%hhu,%u,%u ",
150                                 p->prefix, ntohl(p->preferred),
151                                 ntohl(p->valid));
152         }
153         buf[buf_len - 1] = '\0';
154         putenv(buf);
155 }
156
157
158 void script_call(const char *status)
159 {
160         syslog(LOG_WARNING, "State for %s changed to %s", argv[1], status);
161         size_t dns_len, search_len, custom_len;
162         struct in6_addr *dns = odhcp6c_get_state(STATE_DNS, &dns_len);
163         uint8_t *search = odhcp6c_get_state(STATE_SEARCH, &search_len);
164         uint8_t *custom = odhcp6c_get_state(STATE_CUSTOM_OPTS, &custom_len);
165
166         size_t prefix_len, lost_pd_len;
167         uint8_t *prefix = odhcp6c_get_state(STATE_IA_PD, &prefix_len);
168         uint8_t *lost_pd = odhcp6c_get_state(STATE_IA_PD_LOST, &lost_pd_len);
169
170         // Don't set environment before forking, because env is leaky.
171         if (fork() == 0) {
172                 ipv6_to_env("RDNSS", dns, dns_len / sizeof(*dns));
173                 fqdn_to_env("DOMAINS", search, search_len);
174                 bin_to_env(custom, custom_len);
175                 prefix_to_env("PREFIXES", prefix, prefix_len);
176                 prefix_to_env("PREFIXES_LOST", lost_pd, lost_pd_len);
177
178                 argv[2] = (char*)status;
179                 execv(argv[0], argv);
180                 _exit(128);
181         }
182
183         // Delete lost prefixes and user opts
184         odhcp6c_clear_state(STATE_IA_PD_LOST);
185         odhcp6c_clear_state(STATE_CUSTOM_OPTS);
186 }