blob: ee7989a136d350f94f448cc62d820a90087cb4db [file] [log] [blame]
Simon Kelley59546082012-01-06 20:02:04 +00001/* dnsmasq is Copyright (c) 2000-2012 Simon Kelley
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
Simon Kelley824af852008-02-12 20:43:05 +00005 the Free Software Foundation; version 2 dated June, 1991, or
6 (at your option) version 3 dated 29 June, 2007.
7
Simon Kelley9e4abcb2004-01-22 19:47:41 +00008 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.
Simon Kelley824af852008-02-12 20:43:05 +000012
Simon Kelley73a08a22009-02-05 20:28:08 +000013 You should have received a copy of the GNU General Public License
14 along with this program. If not, see <http://www.gnu.org/licenses/>.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000015*/
16
Simon Kelley849a8352006-06-09 21:02:31 +010017/* define this to get facilitynames */
18#define SYSLOG_NAMES
Simon Kelley9e4abcb2004-01-22 19:47:41 +000019#include "dnsmasq.h"
Simon Kelley824af852008-02-12 20:43:05 +000020#include <setjmp.h>
21
Simon Kelley7622fc02009-06-04 20:32:05 +010022static volatile int mem_recover = 0;
23static jmp_buf mem_jmp;
Simon Kelley28866e92011-02-14 20:19:14 +000024static void one_file(char *file, int hard_opt);
Simon Kelley7622fc02009-06-04 20:32:05 +010025
Simon Kelley824af852008-02-12 20:43:05 +000026/* Solaris headers don't have facility names. */
27#ifdef HAVE_SOLARIS_NETWORK
28static const struct {
29 char *c_name;
30 unsigned int c_val;
31} facilitynames[] = {
32 { "kern", LOG_KERN },
33 { "user", LOG_USER },
34 { "mail", LOG_MAIL },
35 { "daemon", LOG_DAEMON },
36 { "auth", LOG_AUTH },
37 { "syslog", LOG_SYSLOG },
38 { "lpr", LOG_LPR },
39 { "news", LOG_NEWS },
40 { "uucp", LOG_UUCP },
Simon Kelley824af852008-02-12 20:43:05 +000041 { "audit", LOG_AUDIT },
Simon Kelley824af852008-02-12 20:43:05 +000042 { "cron", LOG_CRON },
43 { "local0", LOG_LOCAL0 },
44 { "local1", LOG_LOCAL1 },
45 { "local2", LOG_LOCAL2 },
46 { "local3", LOG_LOCAL3 },
47 { "local4", LOG_LOCAL4 },
48 { "local5", LOG_LOCAL5 },
49 { "local6", LOG_LOCAL6 },
50 { "local7", LOG_LOCAL7 },
51 { NULL, 0 }
52};
53#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +000054
Simon Kelley849a8352006-06-09 21:02:31 +010055#ifndef HAVE_GETOPT_LONG
Simon Kelley9e4abcb2004-01-22 19:47:41 +000056struct myoption {
57 const char *name;
58 int has_arg;
59 int *flag;
60 int val;
61};
Simon Kelley849a8352006-06-09 21:02:31 +010062#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +000063
Simon Kelley9009d742008-11-14 20:04:27 +000064#define OPTSTRING "951yZDNLERKzowefnbvhdkqr:m:p:c:l:s:i:t:u:g:a:x:S:C:A:T:H:Q:I:B:F:G:O:M:X:V:U:j:P:J:W:Y:2:4:6:7:8:0:3:"
Simon Kelley9e4abcb2004-01-22 19:47:41 +000065
Simon Kelley16972692006-10-16 20:04:18 +010066/* options which don't have a one-char version */
Simon Kelley832af0b2007-01-21 20:01:28 +000067#define LOPT_RELOAD 256
68#define LOPT_NO_NAMES 257
69#define LOPT_TFTP 258
70#define LOPT_SECURE 259
71#define LOPT_PREFIX 260
72#define LOPT_PTR 261
73#define LOPT_BRIDGE 262
74#define LOPT_TFTP_MAX 263
Simon Kelley6b010842007-02-12 20:32:07 +000075#define LOPT_FORCE 264
76#define LOPT_NOBLOCK 265
Simon Kelleyf2621c72007-04-29 19:47:21 +010077#define LOPT_LOG_OPTS 266
78#define LOPT_MAX_LOGS 267
79#define LOPT_CIRCUIT 268
80#define LOPT_REMOTE 269
81#define LOPT_SUBSCR 270
82#define LOPT_INTNAME 271
Simon Kelley5aabfc72007-08-29 11:24:47 +010083#define LOPT_BANK 272
84#define LOPT_DHCP_HOST 273
85#define LOPT_APREF 274
Simon Kelley824af852008-02-12 20:43:05 +000086#define LOPT_OVERRIDE 275
87#define LOPT_TFTPPORTS 276
88#define LOPT_REBIND 277
89#define LOPT_NOLAST 278
90#define LOPT_OPTS 279
91#define LOPT_DHCP_OPTS 280
92#define LOPT_MATCH 281
93#define LOPT_BROADCAST 282
94#define LOPT_NEGTTL 283
Simon Kelley9e038942008-05-30 20:06:34 +010095#define LOPT_ALTPORT 284
96#define LOPT_SCRIPTUSR 285
Simon Kelley1a6bca82008-07-11 11:11:42 +010097#define LOPT_LOCAL 286
98#define LOPT_NAPTR 287
99#define LOPT_MINPORT 288
Simon Kelley9009d742008-11-14 20:04:27 +0000100#define LOPT_DHCP_FQDN 289
101#define LOPT_CNAME 290
Simon Kelley7622fc02009-06-04 20:32:05 +0100102#define LOPT_PXE_PROMT 291
103#define LOPT_PXE_SERV 292
104#define LOPT_TEST 293
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100105#define LOPT_TAG_IF 294
106#define LOPT_PROXY 295
107#define LOPT_GEN_NAMES 296
108#define LOPT_MAXTTL 297
109#define LOPT_NO_REBIND 298
110#define LOPT_LOC_REBND 299
Simon Kelley28866e92011-02-14 20:19:14 +0000111#define LOPT_ADD_MAC 300
112#define LOPT_DNSSEC 301
Simon Kelley7de060b2011-08-26 17:24:52 +0100113#define LOPT_INCR_ADDR 302
114#define LOPT_CONNTRACK 303
Simon Kelleyc72daea2012-01-05 21:33:27 +0000115#define LOPT_FQDN 304
116#define LOPT_LUASCRIPT 305
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000117#define LOPT_RA 306
Simon Kelley16972692006-10-16 20:04:18 +0100118
Simon Kelley849a8352006-06-09 21:02:31 +0100119#ifdef HAVE_GETOPT_LONG
120static const struct option opts[] =
121#else
122static const struct myoption opts[] =
123#endif
124 {
Simon Kelley7622fc02009-06-04 20:32:05 +0100125 { "version", 0, 0, 'v' },
126 { "no-hosts", 0, 0, 'h' },
127 { "no-poll", 0, 0, 'n' },
128 { "help", 0, 0, 'w' },
129 { "no-daemon", 0, 0, 'd' },
130 { "log-queries", 0, 0, 'q' },
131 { "user", 2, 0, 'u' },
132 { "group", 2, 0, 'g' },
133 { "resolv-file", 2, 0, 'r' },
134 { "mx-host", 1, 0, 'm' },
135 { "mx-target", 1, 0, 't' },
136 { "cache-size", 2, 0, 'c' },
137 { "port", 1, 0, 'p' },
138 { "dhcp-leasefile", 2, 0, 'l' },
139 { "dhcp-lease", 1, 0, 'l' },
140 { "dhcp-host", 1, 0, 'G' },
141 { "dhcp-range", 1, 0, 'F' },
142 { "dhcp-option", 1, 0, 'O' },
143 { "dhcp-boot", 1, 0, 'M' },
144 { "domain", 1, 0, 's' },
145 { "domain-suffix", 1, 0, 's' },
146 { "interface", 1, 0, 'i' },
147 { "listen-address", 1, 0, 'a' },
148 { "bogus-priv", 0, 0, 'b' },
149 { "bogus-nxdomain", 1, 0, 'B' },
150 { "selfmx", 0, 0, 'e' },
151 { "filterwin2k", 0, 0, 'f' },
152 { "pid-file", 2, 0, 'x' },
153 { "strict-order", 0, 0, 'o' },
154 { "server", 1, 0, 'S' },
155 { "local", 1, 0, LOPT_LOCAL },
156 { "address", 1, 0, 'A' },
157 { "conf-file", 2, 0, 'C' },
158 { "no-resolv", 0, 0, 'R' },
159 { "expand-hosts", 0, 0, 'E' },
160 { "localmx", 0, 0, 'L' },
161 { "local-ttl", 1, 0, 'T' },
162 { "no-negcache", 0, 0, 'N' },
163 { "addn-hosts", 1, 0, 'H' },
164 { "query-port", 1, 0, 'Q' },
165 { "except-interface", 1, 0, 'I' },
166 { "no-dhcp-interface", 1, 0, '2' },
167 { "domain-needed", 0, 0, 'D' },
168 { "dhcp-lease-max", 1, 0, 'X' },
169 { "bind-interfaces", 0, 0, 'z' },
170 { "read-ethers", 0, 0, 'Z' },
171 { "alias", 1, 0, 'V' },
172 { "dhcp-vendorclass", 1, 0, 'U' },
173 { "dhcp-userclass", 1, 0, 'j' },
174 { "dhcp-ignore", 1, 0, 'J' },
175 { "edns-packet-max", 1, 0, 'P' },
176 { "keep-in-foreground", 0, 0, 'k' },
177 { "dhcp-authoritative", 0, 0, 'K' },
178 { "srv-host", 1, 0, 'W' },
179 { "localise-queries", 0, 0, 'y' },
180 { "txt-record", 1, 0, 'Y' },
181 { "enable-dbus", 0, 0, '1' },
182 { "bootp-dynamic", 2, 0, '3' },
183 { "dhcp-mac", 1, 0, '4' },
184 { "no-ping", 0, 0, '5' },
185 { "dhcp-script", 1, 0, '6' },
186 { "conf-dir", 1, 0, '7' },
187 { "log-facility", 1, 0 ,'8' },
188 { "leasefile-ro", 0, 0, '9' },
189 { "dns-forward-max", 1, 0, '0' },
190 { "clear-on-reload", 0, 0, LOPT_RELOAD },
191 { "dhcp-ignore-names", 2, 0, LOPT_NO_NAMES },
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100192 { "enable-tftp", 2, 0, LOPT_TFTP },
Simon Kelley7622fc02009-06-04 20:32:05 +0100193 { "tftp-secure", 0, 0, LOPT_SECURE },
194 { "tftp-unique-root", 0, 0, LOPT_APREF },
195 { "tftp-root", 1, 0, LOPT_PREFIX },
196 { "tftp-max", 1, 0, LOPT_TFTP_MAX },
197 { "ptr-record", 1, 0, LOPT_PTR },
198 { "naptr-record", 1, 0, LOPT_NAPTR },
199 { "bridge-interface", 1, 0 , LOPT_BRIDGE },
200 { "dhcp-option-force", 1, 0, LOPT_FORCE },
201 { "tftp-no-blocksize", 0, 0, LOPT_NOBLOCK },
202 { "log-dhcp", 0, 0, LOPT_LOG_OPTS },
203 { "log-async", 2, 0, LOPT_MAX_LOGS },
204 { "dhcp-circuitid", 1, 0, LOPT_CIRCUIT },
205 { "dhcp-remoteid", 1, 0, LOPT_REMOTE },
206 { "dhcp-subscrid", 1, 0, LOPT_SUBSCR },
207 { "interface-name", 1, 0, LOPT_INTNAME },
208 { "dhcp-hostsfile", 1, 0, LOPT_DHCP_HOST },
209 { "dhcp-optsfile", 1, 0, LOPT_DHCP_OPTS },
210 { "dhcp-no-override", 0, 0, LOPT_OVERRIDE },
211 { "tftp-port-range", 1, 0, LOPT_TFTPPORTS },
212 { "stop-dns-rebind", 0, 0, LOPT_REBIND },
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100213 { "rebind-domain-ok", 1, 0, LOPT_NO_REBIND },
Simon Kelley7622fc02009-06-04 20:32:05 +0100214 { "all-servers", 0, 0, LOPT_NOLAST },
215 { "dhcp-match", 1, 0, LOPT_MATCH },
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100216 { "dhcp-broadcast", 2, 0, LOPT_BROADCAST },
Simon Kelley7622fc02009-06-04 20:32:05 +0100217 { "neg-ttl", 1, 0, LOPT_NEGTTL },
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100218 { "max-ttl", 1, 0, LOPT_MAXTTL },
Simon Kelley7622fc02009-06-04 20:32:05 +0100219 { "dhcp-alternate-port", 2, 0, LOPT_ALTPORT },
220 { "dhcp-scriptuser", 1, 0, LOPT_SCRIPTUSR },
221 { "min-port", 1, 0, LOPT_MINPORT },
222 { "dhcp-fqdn", 0, 0, LOPT_DHCP_FQDN },
223 { "cname", 1, 0, LOPT_CNAME },
224 { "pxe-prompt", 1, 0, LOPT_PXE_PROMT },
225 { "pxe-service", 1, 0, LOPT_PXE_SERV },
226 { "test", 0, 0, LOPT_TEST },
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100227 { "tag-if", 1, 0, LOPT_TAG_IF },
228 { "dhcp-proxy", 2, 0, LOPT_PROXY },
229 { "dhcp-generate-names", 2, 0, LOPT_GEN_NAMES },
230 { "rebind-localhost-ok", 0, 0, LOPT_LOC_REBND },
Simon Kelley28866e92011-02-14 20:19:14 +0000231 { "add-mac", 0, 0, LOPT_ADD_MAC },
232 { "proxy-dnssec", 0, 0, LOPT_DNSSEC },
Simon Kelley7de060b2011-08-26 17:24:52 +0100233 { "dhcp-sequential-ip", 0, 0, LOPT_INCR_ADDR },
234 { "conntrack", 0, 0, LOPT_CONNTRACK },
Simon Kelleyc72daea2012-01-05 21:33:27 +0000235 { "dhcp-client-update", 0, 0, LOPT_FQDN },
236 { "dhcp-luascript", 1, 0, LOPT_LUASCRIPT },
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000237 { "enable-ra", 0, 0, LOPT_RA },
Simon Kelley849a8352006-06-09 21:02:31 +0100238 { NULL, 0, 0, 0 }
239 };
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000240
Simon Kelley28866e92011-02-14 20:19:14 +0000241
242#define ARG_DUP OPT_LAST
243#define ARG_ONE OPT_LAST + 1
244#define ARG_USED_CL OPT_LAST + 2
245#define ARG_USED_FILE OPT_LAST + 3
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000246
Simon Kelley1a6bca82008-07-11 11:11:42 +0100247static struct {
248 int opt;
249 unsigned int rept;
250 char * const flagdesc;
Simon Kelleyb8187c82005-11-26 21:46:27 +0000251 char * const desc;
252 char * const arg;
253} usage[] = {
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000254 { 'a', ARG_DUP, "<ipaddr>", gettext_noop("Specify local address(es) to listen on."), NULL },
255 { 'A', ARG_DUP, "/<domain>/<ipaddr>", gettext_noop("Return ipaddr for all hosts in specified domains."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100256 { 'b', OPT_BOGUSPRIV, NULL, gettext_noop("Fake reverse lookups for RFC1918 private address ranges."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000257 { 'B', ARG_DUP, "<ipaddr>", gettext_noop("Treat ipaddr as NXDOMAIN (defeats Verisign wildcard)."), NULL },
258 { 'c', ARG_ONE, "<integer>", gettext_noop("Specify the size of the cache in entries (defaults to %s)."), "$" },
259 { 'C', ARG_DUP, "<path>", gettext_noop("Specify configuration file (defaults to %s)."), CONFFILE },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100260 { 'd', OPT_DEBUG, NULL, gettext_noop("Do NOT fork into the background: run in debug mode."), NULL },
261 { 'D', OPT_NODOTS_LOCAL, NULL, gettext_noop("Do NOT forward queries with no domain part."), NULL },
262 { 'e', OPT_SELFMX, NULL, gettext_noop("Return self-pointing MX records for local hosts."), NULL },
263 { 'E', OPT_EXPAND, NULL, gettext_noop("Expand simple names in /etc/hosts with domain-suffix."), NULL },
264 { 'f', OPT_FILTER, NULL, gettext_noop("Don't forward spurious DNS requests from Windows hosts."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000265 { 'F', ARG_DUP, "<ipaddr>,...", gettext_noop("Enable DHCP in the range given with lease duration."), NULL },
266 { 'g', ARG_ONE, "<groupname>", gettext_noop("Change to this group after startup (defaults to %s)."), CHGRP },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100267 { 'G', ARG_DUP, "<hostspec>", gettext_noop("Set address or hostname for a specified machine."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000268 { LOPT_DHCP_HOST, ARG_DUP, "<path>", gettext_noop("Read DHCP host specs from file."), NULL },
269 { LOPT_DHCP_OPTS, ARG_DUP, "<path>", gettext_noop("Read DHCP option specs from file."), NULL },
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100270 { LOPT_TAG_IF, ARG_DUP, "tag-expression", gettext_noop("Evaluate conditional tag expression."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100271 { 'h', OPT_NO_HOSTS, NULL, gettext_noop("Do NOT load %s file."), HOSTSFILE },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000272 { 'H', ARG_DUP, "<path>", gettext_noop("Specify a hosts file to be read in addition to %s."), HOSTSFILE },
273 { 'i', ARG_DUP, "<interface>", gettext_noop("Specify interface(s) to listen on."), NULL },
274 { 'I', ARG_DUP, "<interface>", gettext_noop("Specify interface(s) NOT to listen on.") , NULL },
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100275 { 'j', ARG_DUP, "set:<tag>,<class>", gettext_noop("Map DHCP user class to tag."), NULL },
276 { LOPT_CIRCUIT, ARG_DUP, "set:<tag>,<circuit>", gettext_noop("Map RFC3046 circuit-id to tag."), NULL },
277 { LOPT_REMOTE, ARG_DUP, "set:<tag>,<remote>", gettext_noop("Map RFC3046 remote-id to tag."), NULL },
278 { LOPT_SUBSCR, ARG_DUP, "set:<tag>,<remote>", gettext_noop("Map RFC3993 subscriber-id to tag."), NULL },
279 { 'J', ARG_DUP, "tag:<tag>...", gettext_noop("Don't do DHCP for hosts with tag set."), NULL },
280 { LOPT_BROADCAST, ARG_DUP, "[=tag:<tag>...]", gettext_noop("Force broadcast replies for hosts with tag set."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100281 { 'k', OPT_NO_FORK, NULL, gettext_noop("Do NOT fork into the background, do NOT run in debug mode."), NULL },
282 { 'K', OPT_AUTHORITATIVE, NULL, gettext_noop("Assume we are the only DHCP server on the local network."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000283 { 'l', ARG_ONE, "<path>", gettext_noop("Specify where to store DHCP leases (defaults to %s)."), LEASEFILE },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100284 { 'L', OPT_LOCALMX, NULL, gettext_noop("Return MX records for local hosts."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000285 { 'm', ARG_DUP, "<host_name>,<target>,<pref>", gettext_noop("Specify an MX record."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100286 { 'M', ARG_DUP, "<bootp opts>", gettext_noop("Specify BOOTP options to DHCP server."), NULL },
287 { 'n', OPT_NO_POLL, NULL, gettext_noop("Do NOT poll %s file, reload only on SIGHUP."), RESOLVFILE },
288 { 'N', OPT_NO_NEG, NULL, gettext_noop("Do NOT cache failed search results."), NULL },
289 { 'o', OPT_ORDER, NULL, gettext_noop("Use nameservers strictly in the order given in %s."), RESOLVFILE },
290 { 'O', ARG_DUP, "<optspec>", gettext_noop("Specify options to be sent to DHCP clients."), NULL },
291 { LOPT_FORCE, ARG_DUP, "<optspec>", gettext_noop("DHCP option sent even if the client does not request it."), NULL},
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000292 { 'p', ARG_ONE, "<integer>", gettext_noop("Specify port to listen for DNS requests on (defaults to 53)."), NULL },
293 { 'P', ARG_ONE, "<integer>", gettext_noop("Maximum supported UDP packet size for EDNS.0 (defaults to %s)."), "*" },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100294 { 'q', OPT_LOG, NULL, gettext_noop("Log DNS queries."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000295 { 'Q', ARG_ONE, "<integer>", gettext_noop("Force the originating port for upstream DNS queries."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100296 { 'R', OPT_NO_RESOLV, NULL, gettext_noop("Do NOT read resolv.conf."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000297 { 'r', ARG_DUP, "<path>", gettext_noop("Specify path to resolv.conf (defaults to %s)."), RESOLVFILE },
298 { 'S', ARG_DUP, "/<domain>/<ipaddr>", gettext_noop("Specify address(es) of upstream servers with optional domains."), NULL },
299 { LOPT_LOCAL, ARG_DUP, "/<domain>/", gettext_noop("Never forward queries to specified domains."), NULL },
Simon Kelley9009d742008-11-14 20:04:27 +0000300 { 's', ARG_DUP, "<domain>[,<range>]", gettext_noop("Specify the domain to be assigned in DHCP leases."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000301 { 't', ARG_ONE, "<host_name>", gettext_noop("Specify default target in an MX record."), NULL },
302 { 'T', ARG_ONE, "<integer>", gettext_noop("Specify time-to-live in seconds for replies from /etc/hosts."), NULL },
303 { LOPT_NEGTTL, ARG_ONE, "<integer>", gettext_noop("Specify time-to-live in seconds for negative caching."), NULL },
304 { LOPT_MAXTTL, ARG_ONE, "<integer>", gettext_noop("Specify time-to-live in seconds for maximum TTL to send to clients."), NULL },
305 { 'u', ARG_ONE, "<username>", gettext_noop("Change to this user after startup. (defaults to %s)."), CHUSER },
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100306 { 'U', ARG_DUP, "set:<tag>,<class>", gettext_noop("Map DHCP vendor class to tag."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100307 { 'v', 0, NULL, gettext_noop("Display dnsmasq version and copyright information."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000308 { 'V', ARG_DUP, "<ipaddr>,<ipaddr>,<netmask>", gettext_noop("Translate IPv4 addresses from upstream servers."), NULL },
309 { 'W', ARG_DUP, "<name>,<target>,...", gettext_noop("Specify a SRV record."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100310 { 'w', 0, NULL, gettext_noop("Display this message. Use --help dhcp for known DHCP options."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000311 { 'x', ARG_ONE, "<path>", gettext_noop("Specify path of PID file (defaults to %s)."), RUNFILE },
312 { 'X', ARG_ONE, "<integer>", gettext_noop("Specify maximum number of DHCP leases (defaults to %s)."), "&" },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100313 { 'y', OPT_LOCALISE, NULL, gettext_noop("Answer DNS queries based on the interface a query was sent to."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000314 { 'Y', ARG_DUP, "<name>,<txt>[,<txt]", gettext_noop("Specify TXT DNS record."), NULL },
315 { LOPT_PTR, ARG_DUP, "<name>,<target>", gettext_noop("Specify PTR DNS record."), NULL },
316 { LOPT_INTNAME, ARG_DUP, "<name>,<interface>", gettext_noop("Give DNS name to IPv4 address of interface."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100317 { 'z', OPT_NOWILD, NULL, gettext_noop("Bind only to interfaces in use."), NULL },
318 { 'Z', OPT_ETHERS, NULL, gettext_noop("Read DHCP static host information from %s."), ETHERSFILE },
319 { '1', OPT_DBUS, NULL, gettext_noop("Enable the DBus interface for setting upstream servers, etc."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000320 { '2', ARG_DUP, "<interface>", gettext_noop("Do not provide DHCP on this interface, only provide DNS."), NULL },
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100321 { '3', ARG_DUP, "[=tag:<tag>]...", gettext_noop("Enable dynamic address allocation for bootp."), NULL },
322 { '4', ARG_DUP, "set:<tag>,<mac address>", gettext_noop("Map MAC address (with wildcards) to option set."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000323 { LOPT_BRIDGE, ARG_DUP, "<iface>,<alias>..", gettext_noop("Treat DHCP requests on aliases as arriving from interface."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100324 { '5', OPT_NO_PING, NULL, gettext_noop("Disable ICMP echo address checking in the DHCP server."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000325 { '6', ARG_ONE, "<path>", gettext_noop("Shell script to run on DHCP lease creation and destruction."), NULL },
326 { LOPT_LUASCRIPT, ARG_DUP, "path", gettext_noop("Lua script to run on DHCP lease creation and destruction."), NULL },
327 { LOPT_SCRIPTUSR, ARG_ONE, "<username>", gettext_noop("Run lease-change scripts as this user."), NULL },
328 { '7', ARG_DUP, "<path>", gettext_noop("Read configuration from all the files in this directory."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100329 { '8', ARG_ONE, "<facilty>|<file>", gettext_noop("Log to this syslog facility or file. (defaults to DAEMON)"), NULL },
330 { '9', OPT_LEASE_RO, NULL, gettext_noop("Do not use leasefile."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000331 { '0', ARG_ONE, "<integer>", gettext_noop("Maximum number of concurrent DNS queries. (defaults to %s)"), "!" },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100332 { LOPT_RELOAD, OPT_RELOAD, NULL, gettext_noop("Clear DNS cache when reloading %s."), RESOLVFILE },
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100333 { LOPT_NO_NAMES, ARG_DUP, "[=tag:<tag>]...", gettext_noop("Ignore hostnames provided by DHCP clients."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100334 { LOPT_OVERRIDE, OPT_NO_OVERRIDE, NULL, gettext_noop("Do NOT reuse filename and server fields for extra DHCP options."), NULL },
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100335 { LOPT_TFTP, ARG_DUP, "[=<interface>]", gettext_noop("Enable integrated read-only TFTP server."), NULL },
336 { LOPT_PREFIX, ARG_ONE, "<dir>[,<iface>]", gettext_noop("Export files by TFTP only from the specified subtree."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100337 { LOPT_APREF, OPT_TFTP_APREF, NULL, gettext_noop("Add client IP address to tftp-root."), NULL },
338 { LOPT_SECURE, OPT_TFTP_SECURE, NULL, gettext_noop("Allow access only to files owned by the user running dnsmasq."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000339 { LOPT_TFTP_MAX, ARG_ONE, "<integer>", gettext_noop("Maximum number of conncurrent TFTP transfers (defaults to %s)."), "#" },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100340 { LOPT_NOBLOCK, OPT_TFTP_NOBLOCK, NULL, gettext_noop("Disable the TFTP blocksize extension."), NULL },
341 { LOPT_TFTPPORTS, ARG_ONE, "<start>,<end>", gettext_noop("Ephemeral port range for use by TFTP transfers."), NULL },
342 { LOPT_LOG_OPTS, OPT_LOG_OPTS, NULL, gettext_noop("Extra logging for DHCP."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000343 { LOPT_MAX_LOGS, ARG_ONE, "[=<integer>]", gettext_noop("Enable async. logging; optionally set queue length."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100344 { LOPT_REBIND, OPT_NO_REBIND, NULL, gettext_noop("Stop DNS rebinding. Filter private IP ranges when resolving."), NULL },
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100345 { LOPT_LOC_REBND, OPT_LOCAL_REBIND, NULL, gettext_noop("Allow rebinding of 127.0.0.0/8, for RBL servers."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000346 { LOPT_NO_REBIND, ARG_DUP, "/<domain>/", gettext_noop("Inhibit DNS-rebind protection on this domain."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100347 { LOPT_NOLAST, OPT_ALL_SERVERS, NULL, gettext_noop("Always perform DNS queries to all servers."), NULL },
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100348 { LOPT_MATCH, ARG_DUP, "set:<tag>,<optspec>", gettext_noop("Set tag if client includes matching option in request."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100349 { LOPT_ALTPORT, ARG_ONE, "[=<ports>]", gettext_noop("Use alternative ports for DHCP."), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100350 { LOPT_NAPTR, ARG_DUP, "<name>,<naptr>", gettext_noop("Specify NAPTR DNS record."), NULL },
351 { LOPT_MINPORT, ARG_ONE, "<port>", gettext_noop("Specify lowest port available for DNS query transmission."), NULL },
Simon Kelley9009d742008-11-14 20:04:27 +0000352 { LOPT_DHCP_FQDN, OPT_DHCP_FQDN, NULL, gettext_noop("Use only fully qualified domain names for DHCP clients."), NULL },
Simon Kelley8ecfaa42012-01-07 15:29:48 +0000353 { LOPT_GEN_NAMES, ARG_DUP, "[=tag:<tag>]", gettext_noop("Generate hostnames based on MAC address for nameless clients."), NULL},
354 { LOPT_PROXY, ARG_DUP, "[=<ipaddr>]...", gettext_noop("Use these DHCP relays as full proxies."), NULL },
Simon Kelley9009d742008-11-14 20:04:27 +0000355 { LOPT_CNAME, ARG_DUP, "<alias>,<target>", gettext_noop("Specify alias name for LOCAL DNS name."), NULL },
Simon Kelley7622fc02009-06-04 20:32:05 +0100356 { LOPT_PXE_PROMT, ARG_DUP, "<prompt>,[<timeout>]", gettext_noop("Prompt to send to PXE clients."), NULL },
357 { LOPT_PXE_SERV, ARG_DUP, "<service>", gettext_noop("Boot service for PXE menu."), NULL },
358 { LOPT_TEST, 0, NULL, gettext_noop("Check configuration syntax."), NULL },
Simon Kelley7de060b2011-08-26 17:24:52 +0100359 { LOPT_ADD_MAC, OPT_ADD_MAC, NULL, gettext_noop("Add requestor's MAC address to forwarded DNS queries."), NULL },
360 { LOPT_DNSSEC, OPT_DNSSEC, NULL, gettext_noop("Proxy DNSSEC validation results from upstream nameservers."), NULL },
361 { LOPT_INCR_ADDR, OPT_CONSEC_ADDR, NULL, gettext_noop("Attempt to allocate sequential IP addresses to DHCP clients."), NULL },
362 { LOPT_CONNTRACK, OPT_CONNTRACK, NULL, gettext_noop("Copy connection-track mark from queries to upstream connections."), NULL },
Simon Kelleyc72daea2012-01-05 21:33:27 +0000363 { LOPT_FQDN, OPT_FQDN_UPDATE, NULL, gettext_noop("Allow DHCP clients to do their own DDNS updates."), NULL },
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000364 { LOPT_RA, OPT_RA, NULL, gettext_noop("Send router-advertisements for interfaces doing DHCPv6"), NULL },
Simon Kelley1a6bca82008-07-11 11:11:42 +0100365 { 0, 0, NULL, NULL, NULL }
Simon Kelleyb8187c82005-11-26 21:46:27 +0000366};
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000367
Simon Kelley7622fc02009-06-04 20:32:05 +0100368#ifdef HAVE_DHCP
Simon Kelley28866e92011-02-14 20:19:14 +0000369
Simon Kelley4cb1b322012-02-06 14:30:41 +0000370#define OT_ADDR_LIST 0x8000
371#define OT_RFC1035_NAME 0x4000
372#define OT_INTERNAL 0x2000
373#define OT_NAME 0x1000
374#define OT_CSTRING 0x0800
Simon Kelleyf2621c72007-04-29 19:47:21 +0100375
Simon Kelley4cb1b322012-02-06 14:30:41 +0000376static const struct opttab_t {
Simon Kelleyf2621c72007-04-29 19:47:21 +0100377 char *name;
Simon Kelley4cb1b322012-02-06 14:30:41 +0000378 u16 val, size;
Simon Kelleyf2621c72007-04-29 19:47:21 +0100379} opttab[] = {
380 { "netmask", 1, OT_ADDR_LIST },
381 { "time-offset", 2, 4 },
382 { "router", 3, OT_ADDR_LIST },
383 { "dns-server", 6, OT_ADDR_LIST },
384 { "log-server", 7, OT_ADDR_LIST },
385 { "lpr-server", 9, OT_ADDR_LIST },
Simon Kelley7622fc02009-06-04 20:32:05 +0100386 { "hostname", 12, OT_INTERNAL | OT_NAME },
Simon Kelleyf2621c72007-04-29 19:47:21 +0100387 { "boot-file-size", 13, 2 },
Simon Kelley7622fc02009-06-04 20:32:05 +0100388 { "domain-name", 15, OT_NAME },
Simon Kelleyf2621c72007-04-29 19:47:21 +0100389 { "swap-server", 16, OT_ADDR_LIST },
Simon Kelley28866e92011-02-14 20:19:14 +0000390 { "root-path", 17, OT_NAME },
391 { "extension-path", 18, OT_NAME },
Simon Kelleyf2621c72007-04-29 19:47:21 +0100392 { "ip-forward-enable", 19, 1 },
393 { "non-local-source-routing", 20, 1 },
394 { "policy-filter", 21, OT_ADDR_LIST },
395 { "max-datagram-reassembly", 22, 2 },
396 { "default-ttl", 23, 1 },
397 { "mtu", 26, 2 },
398 { "all-subnets-local", 27, 1 },
Simon Kelley7622fc02009-06-04 20:32:05 +0100399 { "broadcast", 28, OT_INTERNAL | OT_ADDR_LIST },
Simon Kelleyf2621c72007-04-29 19:47:21 +0100400 { "router-discovery", 31, 1 },
401 { "router-solicitation", 32, OT_ADDR_LIST },
402 { "static-route", 33, OT_ADDR_LIST },
403 { "trailer-encapsulation", 34, 1 },
404 { "arp-timeout", 35, 4 },
405 { "ethernet-encap", 36, 1 },
406 { "tcp-ttl", 37, 1 },
407 { "tcp-keepalive", 38, 4 },
Simon Kelley28866e92011-02-14 20:19:14 +0000408 { "nis-domain", 40, OT_NAME },
Simon Kelleyf2621c72007-04-29 19:47:21 +0100409 { "nis-server", 41, OT_ADDR_LIST },
410 { "ntp-server", 42, OT_ADDR_LIST },
411 { "vendor-encap", 43, OT_INTERNAL },
412 { "netbios-ns", 44, OT_ADDR_LIST },
413 { "netbios-dd", 45, OT_ADDR_LIST },
414 { "netbios-nodetype", 46, 1 },
415 { "netbios-scope", 47, 0 },
416 { "x-windows-fs", 48, OT_ADDR_LIST },
417 { "x-windows-dm", 49, OT_ADDR_LIST },
Simon Kelley7622fc02009-06-04 20:32:05 +0100418 { "requested-address", 50, OT_INTERNAL | OT_ADDR_LIST },
Simon Kelleyf2621c72007-04-29 19:47:21 +0100419 { "lease-time", 51, OT_INTERNAL },
420 { "option-overload", 52, OT_INTERNAL },
421 { "message-type", 53, OT_INTERNAL, },
Simon Kelley7622fc02009-06-04 20:32:05 +0100422 { "server-identifier", 54, OT_INTERNAL | OT_ADDR_LIST },
Simon Kelleyf2621c72007-04-29 19:47:21 +0100423 { "parameter-request", 55, OT_INTERNAL },
424 { "message", 56, OT_INTERNAL },
425 { "max-message-size", 57, OT_INTERNAL },
426 { "T1", 58, OT_INTERNAL },
427 { "T2", 59, OT_INTERNAL },
428 { "vendor-class", 60, 0 },
Simon Kelley4cb1b322012-02-06 14:30:41 +0000429 { "client-id", 61, OT_INTERNAL },
Simon Kelley28866e92011-02-14 20:19:14 +0000430 { "nis+-domain", 64, OT_NAME },
Simon Kelley9009d742008-11-14 20:04:27 +0000431 { "nis+-server", 65, OT_ADDR_LIST },
Simon Kelley28866e92011-02-14 20:19:14 +0000432 { "tftp-server", 66, OT_NAME },
433 { "bootfile-name", 67, OT_NAME },
Simon Kelleyf2621c72007-04-29 19:47:21 +0100434 { "mobile-ip-home", 68, OT_ADDR_LIST },
435 { "smtp-server", 69, OT_ADDR_LIST },
436 { "pop3-server", 70, OT_ADDR_LIST },
437 { "nntp-server", 71, OT_ADDR_LIST },
438 { "irc-server", 74, OT_ADDR_LIST },
439 { "user-class", 77, 0 },
440 { "FQDN", 81, OT_INTERNAL },
441 { "agent-id", 82, OT_INTERNAL },
Simon Kelley73a08a22009-02-05 20:28:08 +0000442 { "client-arch", 93, 2 },
443 { "client-interface-id", 94, 0 },
444 { "client-machine-id", 97, 0 },
Simon Kelleyf2621c72007-04-29 19:47:21 +0100445 { "subnet-select", 118, OT_INTERNAL },
Simon Kelley28866e92011-02-14 20:19:14 +0000446 { "domain-search", 119, OT_RFC1035_NAME },
Simon Kelleyf2621c72007-04-29 19:47:21 +0100447 { "sip-server", 120, 0 },
448 { "classless-static-route", 121, 0 },
Simon Kelley316e2732010-01-22 20:16:09 +0000449 { "vendor-id-encap", 125, 0 },
Simon Kelley1f15b812009-10-13 17:49:32 +0100450 { "server-ip-address", 255, OT_ADDR_LIST }, /* special, internal only, sets siaddr */
Simon Kelleyf2621c72007-04-29 19:47:21 +0100451 { NULL, 0, 0 }
452};
453
Simon Kelley4cb1b322012-02-06 14:30:41 +0000454#ifdef HAVE_DHCP6
455static const struct opttab_t opttab6[] = {
456 { "client-id", 1, OT_INTERNAL },
457 { "server-id", 2, OT_INTERNAL },
458 { "ia-na", 3, OT_INTERNAL },
459 { "ia-ta", 4, OT_INTERNAL },
460 { "iaaddr", 5, OT_INTERNAL },
461 { "oro", 6, OT_INTERNAL },
462 { "preference", 7, OT_INTERNAL },
463 { "unicast", 12, OT_INTERNAL },
464 { "status-code", 13, OT_INTERNAL },
465 { "rapid-commit", 14, OT_INTERNAL },
466 { "user-class", 15, OT_INTERNAL | OT_CSTRING },
467 { "vendor-class", 16, OT_INTERNAL | OT_CSTRING },
468 { "vendor-opts", 17, OT_INTERNAL },
469 { "sip-server-domain", 21, OT_RFC1035_NAME },
470 { "sip-server", 22, OT_ADDR_LIST },
471 { "dns-server", 23, OT_ADDR_LIST },
472 { "domain-search", 24, OT_RFC1035_NAME },
473 { "nis-server", 27, OT_ADDR_LIST },
474 { "nis+-server", 28, OT_ADDR_LIST },
475 { "nis-domain", 29, OT_RFC1035_NAME },
476 { "nis+-domain", 30, OT_RFC1035_NAME },
477 { "sntp-server", 31, OT_ADDR_LIST },
478 { "FQDN", 39, OT_INTERNAL | OT_RFC1035_NAME },
479 { "ntp-server", 56, OT_ADDR_LIST },
480 { "bootfile-url", 59, OT_NAME },
481 { "bootfile-param", 60, OT_CSTRING },
482 { NULL, 0, 0 }
483};
484#endif
Simon Kelleyf2621c72007-04-29 19:47:21 +0100485
Simon Kelley4cb1b322012-02-06 14:30:41 +0000486
487char *option_string(int prot, unsigned int opt, unsigned char *val, int opt_len, char *buf, int buf_len)
488{
489 int o, i, j, nodecode = 0;
490 const struct opttab_t *ot = opttab;
491
492#ifdef HAVE_DHCP6
493 if (prot == AF_INET6)
494 ot = opttab6;
495#endif
496
497 for (o = 0; ot[o].name; o++)
498 if (ot[o].val == opt)
Simon Kelley7622fc02009-06-04 20:32:05 +0100499 {
Simon Kelley4cb1b322012-02-06 14:30:41 +0000500 if (buf)
501 {
502 memset(buf, 0, buf_len);
503
504 if (ot[o].size & OT_ADDR_LIST)
505 {
506 struct all_addr addr;
507 int addr_len = INADDRSZ;
508
509#ifdef HAVE_DHCP6
510 if (prot == AF_INET6)
511 addr_len = IN6ADDRSZ;
512#endif
513 for (buf[0]= 0, i = 0; i <= opt_len - addr_len; i += addr_len)
514 {
515 if (i != 0)
516 strncat(buf, ", ", buf_len - strlen(buf));
517 /* align */
518 memcpy(&addr, &val[i], addr_len);
519 inet_ntop(prot, &val[i], daemon->addrbuff, ADDRSTRLEN);
520 strncat(buf, daemon->addrbuff, buf_len - strlen(buf));
521 }
522 }
523 else if (ot[o].size & OT_NAME)
524 for (i = 0, j = 0; i < opt_len && j < buf_len ; i++)
525 {
526 char c = val[i];
527 if (isprint((int)c))
528 buf[j++] = c;
529 }
530#ifdef HAVE_DHCP6
531 /* We don't handle compressed rfc1035 names, so no good in IPv4 land */
532 else if ((ot[o].size & OT_RFC1035_NAME) && prot == AF_INET6)
533 {
534 i = 0, j = 0;
535 while (i < opt_len && val[i] != 0)
536 {
537 int k, l = i + val[i] + 1;
538 for (k = i + 1; k < opt_len && k < l && j < buf_len ; k++)
539 {
540 char c = val[k];
541 if (isprint((int)c))
542 buf[j++] = c;
543 }
544 i = l;
545 if (val[i] != 0 && j < buf_len)
546 buf[j++] = '.';
547 }
548 }
Simon Kelleyd74942a2012-02-07 20:51:56 +0000549 else if ((ot[o].size & OT_CSTRING))
550 {
551 int k, len;
552 unsigned char *p;
553
554 i = 0, j = 0;
555 while (1)
556 {
557 p = &val[i];
558 GETSHORT(len, p);
559 for (k = 0; k < len && j < buf_len; k++)
560 {
561 char c = *p++;
562 if (isprint((int)c))
563 buf[j++] = c;
564 }
565 i += len +2;
566 if (i >= opt_len)
567 break;
568
569 if (j < buf_len)
570 buf[j++] = ',';
571 }
572 }
Simon Kelley4cb1b322012-02-06 14:30:41 +0000573#endif
574 else
575 nodecode = 1;
576 }
577 break;
Simon Kelley7622fc02009-06-04 20:32:05 +0100578 }
Simon Kelleyf2621c72007-04-29 19:47:21 +0100579
Simon Kelley4cb1b322012-02-06 14:30:41 +0000580 if (buf && (!ot[o].name || nodecode))
581 {
582 int trunc = 0;
583 if (opt_len > 13)
584 {
585 trunc = 1;
586 opt_len = 13;
587 }
588 print_mac(buf, val, opt_len);
589 if (trunc)
590 strncat(buf, "...", buf_len - strlen(buf));
591
592
593 }
594
595 return ot[o].name ? ot[o].name : "";
596
Simon Kelleyf2621c72007-04-29 19:47:21 +0100597}
598
Simon Kelley7622fc02009-06-04 20:32:05 +0100599#endif
600
Simon Kelley3d8df262005-08-29 12:19:27 +0100601/* We hide metacharaters in quoted strings by mapping them into the ASCII control
Simon Kelleyf2621c72007-04-29 19:47:21 +0100602 character space. Note that the \0, \t \b \r \033 and \n characters are carefully placed in the
Simon Kelley3d8df262005-08-29 12:19:27 +0100603 following sequence so that they map to themselves: it is therefore possible to call
604 unhide_metas repeatedly on string without breaking things.
Simon Kelley824af852008-02-12 20:43:05 +0000605 The transformation gets undone by opt_canonicalise, atoi_check and opt_string_alloc, and a
Simon Kelleyf2621c72007-04-29 19:47:21 +0100606 couple of other places.
607 Note that space is included here so that
608 --dhcp-option=3, string
609 has five characters, whilst
610 --dhcp-option=3," string"
611 has six.
612*/
Simon Kelley3d8df262005-08-29 12:19:27 +0100613
Simon Kelleyf2621c72007-04-29 19:47:21 +0100614static const char meta[] = "\000123456 \b\t\n78\r90abcdefABCDE\033F:,.";
Simon Kelley3d8df262005-08-29 12:19:27 +0100615
616static char hide_meta(char c)
617{
618 unsigned int i;
619
620 for (i = 0; i < (sizeof(meta) - 1); i++)
621 if (c == meta[i])
622 return (char)i;
623
624 return c;
625}
626
627static char unhide_meta(char cr)
628{
629 unsigned int c = cr;
630
631 if (c < (sizeof(meta) - 1))
632 cr = meta[c];
633
634 return cr;
635}
636
637static void unhide_metas(char *cp)
638{
639 if (cp)
640 for(; *cp; cp++)
641 *cp = unhide_meta(*cp);
642}
643
Simon Kelley824af852008-02-12 20:43:05 +0000644static void *opt_malloc(size_t size)
645{
646 void *ret;
647
648 if (mem_recover)
649 {
650 ret = whine_malloc(size);
651 if (!ret)
652 longjmp(mem_jmp, 1);
653 }
654 else
655 ret = safe_malloc(size);
656
657 return ret;
658}
659
660static char *opt_string_alloc(char *cp)
Simon Kelley3d8df262005-08-29 12:19:27 +0100661{
662 char *ret = NULL;
663
664 if (cp && strlen(cp) != 0)
665 {
Simon Kelley824af852008-02-12 20:43:05 +0000666 ret = opt_malloc(strlen(cp)+1);
Simon Kelley3d8df262005-08-29 12:19:27 +0100667 strcpy(ret, cp);
668
669 /* restore hidden metachars */
670 unhide_metas(ret);
671 }
672
673 return ret;
674}
675
Simon Kelley3d8df262005-08-29 12:19:27 +0100676
Simon Kelleyf2621c72007-04-29 19:47:21 +0100677/* find next comma, split string with zero and eliminate spaces.
678 return start of string following comma */
Simon Kelley73a08a22009-02-05 20:28:08 +0000679
680static char *split_chr(char *s, char c)
Simon Kelleyf2621c72007-04-29 19:47:21 +0100681{
682 char *comma, *p;
683
Simon Kelley73a08a22009-02-05 20:28:08 +0000684 if (!s || !(comma = strchr(s, c)))
Simon Kelleyf2621c72007-04-29 19:47:21 +0100685 return NULL;
686
687 p = comma;
688 *comma = ' ';
689
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100690 for (; *comma == ' '; comma++);
Simon Kelleyf2621c72007-04-29 19:47:21 +0100691
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100692 for (; (p >= s) && *p == ' '; p--)
Simon Kelleyf2621c72007-04-29 19:47:21 +0100693 *p = 0;
694
695 return comma;
Simon Kelley3d8df262005-08-29 12:19:27 +0100696}
697
Simon Kelley73a08a22009-02-05 20:28:08 +0000698static char *split(char *s)
699{
700 return split_chr(s, ',');
701}
702
Simon Kelley1f15b812009-10-13 17:49:32 +0100703static char *canonicalise_opt(char *s)
Simon Kelley3d8df262005-08-29 12:19:27 +0100704{
Simon Kelley1f15b812009-10-13 17:49:32 +0100705 char *ret;
706 int nomem;
707
Simon Kelley3d8df262005-08-29 12:19:27 +0100708 if (!s)
709 return 0;
710
711 unhide_metas(s);
Simon Kelley1f15b812009-10-13 17:49:32 +0100712 if (!(ret = canonicalise(s, &nomem)) && nomem)
713 {
714 if (mem_recover)
715 longjmp(mem_jmp, 1);
716 else
717 die(_("could not get memory"), NULL, EC_NOMEM);
718 }
719
720 return ret;
Simon Kelley3d8df262005-08-29 12:19:27 +0100721}
722
723static int atoi_check(char *a, int *res)
724{
725 char *p;
726
727 if (!a)
728 return 0;
729
730 unhide_metas(a);
731
732 for (p = a; *p; p++)
733 if (*p < '0' || *p > '9')
734 return 0;
735
736 *res = atoi(a);
737 return 1;
738}
739
Simon Kelley1ad24ae2008-07-20 20:22:50 +0100740static int atoi_check16(char *a, int *res)
741{
742 if (!(atoi_check(a, res)) ||
743 *res < 0 ||
744 *res > 0xffff)
745 return 0;
746
747 return 1;
748}
749
Simon Kelley5aabfc72007-08-29 11:24:47 +0100750static void add_txt(char *name, char *txt)
Simon Kelley0a852542005-03-23 20:28:59 +0000751{
752 size_t len = strlen(txt);
Simon Kelley824af852008-02-12 20:43:05 +0000753 struct txt_record *r = opt_malloc(sizeof(struct txt_record));
Simon Kelley0a852542005-03-23 20:28:59 +0000754
Simon Kelley824af852008-02-12 20:43:05 +0000755 r->name = opt_string_alloc(name);
Simon Kelley0a852542005-03-23 20:28:59 +0000756 r->next = daemon->txt;
757 daemon->txt = r;
758 r->class = C_CHAOS;
Simon Kelley824af852008-02-12 20:43:05 +0000759 r->txt = opt_malloc(len+1);
Simon Kelley0a852542005-03-23 20:28:59 +0000760 r->len = len+1;
761 *(r->txt) = len;
762 memcpy((r->txt)+1, txt, len);
763}
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000764
Simon Kelley849a8352006-06-09 21:02:31 +0100765static void do_usage(void)
766{
767 char buff[100];
Simon Kelley832af0b2007-01-21 20:01:28 +0000768 int i, j;
769
770 struct {
771 char handle;
772 int val;
773 } tab[] = {
774 { '$', CACHESIZ },
775 { '*', EDNS_PKTSZ },
776 { '&', MAXLEASES },
777 { '!', FTABSIZ },
778 { '#', TFTP_MAX_CONNECTIONS },
779 { '\0', 0 }
780 };
Simon Kelley849a8352006-06-09 21:02:31 +0100781
782 printf(_("Usage: dnsmasq [options]\n\n"));
783#ifndef HAVE_GETOPT_LONG
784 printf(_("Use short options only on the command line.\n"));
785#endif
Simon Kelley1a6bca82008-07-11 11:11:42 +0100786 printf(_("Valid options are:\n"));
Simon Kelley849a8352006-06-09 21:02:31 +0100787
Simon Kelley1a6bca82008-07-11 11:11:42 +0100788 for (i = 0; usage[i].opt != 0; i++)
Simon Kelley849a8352006-06-09 21:02:31 +0100789 {
Simon Kelley1a6bca82008-07-11 11:11:42 +0100790 char *desc = usage[i].flagdesc;
791 char *eq = "=";
792
793 if (!desc || *desc == '[')
794 eq = "";
795
796 if (!desc)
797 desc = "";
798
799 for ( j = 0; opts[j].name; j++)
800 if (opts[j].val == usage[i].opt)
801 break;
802 if (usage[i].opt < 256)
803 sprintf(buff, "-%c, ", usage[i].opt);
804 else
805 sprintf(buff, " ");
806
807 sprintf(buff+4, "--%s%s%s", opts[j].name, eq, desc);
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100808 printf("%-40.40s", buff);
Simon Kelley1a6bca82008-07-11 11:11:42 +0100809
Simon Kelley849a8352006-06-09 21:02:31 +0100810 if (usage[i].arg)
811 {
Simon Kelley832af0b2007-01-21 20:01:28 +0000812 strcpy(buff, usage[i].arg);
813 for (j = 0; tab[j].handle; j++)
814 if (tab[j].handle == *(usage[i].arg))
815 sprintf(buff, "%d", tab[j].val);
Simon Kelley849a8352006-06-09 21:02:31 +0100816 }
Simon Kelley849a8352006-06-09 21:02:31 +0100817 printf(_(usage[i].desc), buff);
818 printf("\n");
819 }
820}
821
Simon Kelley7622fc02009-06-04 20:32:05 +0100822#ifdef HAVE_DHCP
Simon Kelleyf2621c72007-04-29 19:47:21 +0100823static void display_opts(void)
824{
825 int i;
826
827 printf(_("Known DHCP options:\n"));
828
829 for (i = 0; opttab[i].name; i++)
Simon Kelley1f15b812009-10-13 17:49:32 +0100830 if (!(opttab[i].size & OT_INTERNAL))
Simon Kelleyf2621c72007-04-29 19:47:21 +0100831 printf("%3d %s\n", opttab[i].val, opttab[i].name);
832}
833
Simon Kelley4cb1b322012-02-06 14:30:41 +0000834#ifdef HAVE_DHCP6
835static void display_opts6(void)
836{
837 int i;
838 printf(_("Known DHCPv6 options:\n"));
839
840 for (i = 0; opttab6[i].name; i++)
841 if (!(opttab6[i].size & OT_INTERNAL))
842 printf("%3d %s\n", opttab6[i].val, opttab6[i].name);
843}
844#endif
845
846
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100847static int is_tag_prefix(char *arg)
848{
849 if (arg && (strstr(arg, "net:") == arg || strstr(arg, "tag:") == arg))
850 return 1;
851
852 return 0;
853}
854
855static char *set_prefix(char *arg)
856{
857 if (strstr(arg, "set:") == arg)
858 return arg+4;
859
860 return arg;
861}
862
Simon Kelley832af0b2007-01-21 20:01:28 +0000863/* This is too insanely large to keep in-line in the switch */
Simon Kelley824af852008-02-12 20:43:05 +0000864static char *parse_dhcp_opt(char *arg, int flags)
Simon Kelley832af0b2007-01-21 20:01:28 +0000865{
Simon Kelley824af852008-02-12 20:43:05 +0000866 struct dhcp_opt *new = opt_malloc(sizeof(struct dhcp_opt));
Simon Kelley832af0b2007-01-21 20:01:28 +0000867 char lenchar = 0, *cp;
Simon Kelley4cb1b322012-02-06 14:30:41 +0000868 int i, addrs, digs, is_addr, is_addr6, is_hex, is_dec, is_string, dots;
Simon Kelleyf2621c72007-04-29 19:47:21 +0100869 char *comma = NULL, *problem = NULL;
870 struct dhcp_netid *np = NULL;
Simon Kelley4cb1b322012-02-06 14:30:41 +0000871 u16 opt_len = 0;
872 int is6 = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +0000873
874 new->len = 0;
Simon Kelley824af852008-02-12 20:43:05 +0000875 new->flags = flags;
Simon Kelley832af0b2007-01-21 20:01:28 +0000876 new->netid = NULL;
877 new->val = NULL;
Simon Kelleyf2621c72007-04-29 19:47:21 +0100878 new->opt = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +0000879
Simon Kelleyf2621c72007-04-29 19:47:21 +0100880 while (arg)
Simon Kelley832af0b2007-01-21 20:01:28 +0000881 {
Simon Kelleyf2621c72007-04-29 19:47:21 +0100882 comma = split(arg);
883
884 for (cp = arg; *cp; cp++)
885 if (*cp < '0' || *cp > '9')
Simon Kelley832af0b2007-01-21 20:01:28 +0000886 break;
Simon Kelleyf2621c72007-04-29 19:47:21 +0100887
888 if (!*cp)
889 {
890 new->opt = atoi(arg);
891 opt_len = 0;
892 break;
893 }
894
895 if (strstr(arg, "option:") == arg)
896 {
897 for (i = 0; opttab[i].name; i++)
Simon Kelley1f15b812009-10-13 17:49:32 +0100898 if (!(opttab[i].size & OT_INTERNAL) &&
Simon Kelleyf2621c72007-04-29 19:47:21 +0100899 strcasecmp(opttab[i].name, arg+7) == 0)
900 {
901 new->opt = opttab[i].val;
902 opt_len = opttab[i].size;
903 break;
904 }
905 /* option:<optname> must follow tag and vendor string. */
906 break;
907 }
Simon Kelley4cb1b322012-02-06 14:30:41 +0000908#ifdef HAVE_DHCP6
909 else if (strstr(arg, "option6:") == arg)
910 {
911 for (cp = arg+8; *cp; cp++)
912 if (*cp < '0' || *cp > '9')
913 break;
914
915 if (!*cp)
916 {
917 new->opt = atoi(arg+8);
918 opt_len = 0;
919 }
920 else
921 for (i = 0; opttab6[i].name; i++)
922 if (!(opttab6[i].size & OT_INTERNAL) &&
923 strcasecmp(opttab6[i].name, arg+8) == 0)
924 {
925 new->opt = opttab6[i].val;
926 opt_len = opttab6[i].size;
927 break;
928 }
929 /* option6:<opt>|<optname> must follow tag and vendor string. */
930 is6 = 1;
931 break;
932 }
933#endif
Simon Kelleyf2621c72007-04-29 19:47:21 +0100934 else if (strstr(arg, "vendor:") == arg)
935 {
Simon Kelley73a08a22009-02-05 20:28:08 +0000936 new->u.vendor_class = (unsigned char *)opt_string_alloc(arg+7);
937 new->flags |= DHOPT_VENDOR;
938 }
939 else if (strstr(arg, "encap:") == arg)
940 {
941 new->u.encap = atoi(arg+6);
Simon Kelleyf2621c72007-04-29 19:47:21 +0100942 new->flags |= DHOPT_ENCAPSULATE;
943 }
Simon Kelley316e2732010-01-22 20:16:09 +0000944 else if (strstr(arg, "vi-encap:") == arg)
945 {
946 new->u.encap = atoi(arg+9);
947 new->flags |= DHOPT_RFC3925;
948 if (flags == DHOPT_MATCH)
949 {
950 new->opt = 1; /* avoid error below */
951 break;
952 }
953 }
Simon Kelleyf2621c72007-04-29 19:47:21 +0100954 else
955 {
Simon Kelley824af852008-02-12 20:43:05 +0000956 new->netid = opt_malloc(sizeof (struct dhcp_netid));
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100957 /* allow optional "net:" or "tag:" for consistency */
958 if (is_tag_prefix(arg))
Simon Kelley824af852008-02-12 20:43:05 +0000959 new->netid->net = opt_string_alloc(arg+4);
Simon Kelleyf2621c72007-04-29 19:47:21 +0100960 else
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100961 new->netid->net = opt_string_alloc(set_prefix(arg));
Simon Kelleyf2621c72007-04-29 19:47:21 +0100962 new->netid->next = np;
963 np = new->netid;
964 }
965
966 arg = comma;
Simon Kelley832af0b2007-01-21 20:01:28 +0000967 }
Simon Kelley4cb1b322012-02-06 14:30:41 +0000968
969#ifdef HAVE_DHCP6
970 if (is6)
971 {
972 if (new->flags & (DHOPT_VENDOR | DHOPT_ENCAPSULATE))
973 problem = _("unsupported encapsulation for IPv6 option");
974
975 if (opt_len == 0 &&
976 !(new->flags & DHOPT_RFC3925))
977 for (i = 0; opttab6[i].name; i++)
978 if (new->opt == opttab6[i].val)
979 {
980 opt_len = opttab6[i].size;
981 if (opt_len & OT_INTERNAL)
982 opt_len = 0;
983 break;
984 }
985 }
986 else
987#endif
988 if (opt_len == 0 &&
989 !(new->flags & (DHOPT_VENDOR | DHOPT_ENCAPSULATE | DHOPT_RFC3925)))
990 for (i = 0; opttab[i].name; i++)
991 if (new->opt == opttab[i].val)
992 {
993 opt_len = opttab[i].size;
994 if (opt_len & OT_INTERNAL)
995 opt_len = 0;
996 break;
997 }
Simon Kelley28866e92011-02-14 20:19:14 +0000998
Simon Kelley316e2732010-01-22 20:16:09 +0000999 /* option may be missing with rfc3925 match */
Simon Kelleyf2621c72007-04-29 19:47:21 +01001000 if (new->opt == 0)
Simon Kelley832af0b2007-01-21 20:01:28 +00001001 problem = _("bad dhcp-option");
1002 else if (comma)
1003 {
1004 /* characterise the value */
Simon Kelleyf2621c72007-04-29 19:47:21 +01001005 char c;
Simon Kelley28866e92011-02-14 20:19:14 +00001006 int found_dig = 0;
Simon Kelley4cb1b322012-02-06 14:30:41 +00001007 is_addr = is_addr6 = is_hex = is_dec = is_string = 1;
Simon Kelley832af0b2007-01-21 20:01:28 +00001008 addrs = digs = 1;
Simon Kelleyf2621c72007-04-29 19:47:21 +01001009 dots = 0;
1010 for (cp = comma; (c = *cp); cp++)
1011 if (c == ',')
Simon Kelley832af0b2007-01-21 20:01:28 +00001012 {
1013 addrs++;
1014 is_dec = is_hex = 0;
1015 }
Simon Kelleyf2621c72007-04-29 19:47:21 +01001016 else if (c == ':')
Simon Kelley832af0b2007-01-21 20:01:28 +00001017 {
1018 digs++;
1019 is_dec = is_addr = 0;
1020 }
Simon Kelleyf2621c72007-04-29 19:47:21 +01001021 else if (c == '/')
Simon Kelley832af0b2007-01-21 20:01:28 +00001022 {
Simon Kelley4cb1b322012-02-06 14:30:41 +00001023 is_addr6 = is_dec = is_hex = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +00001024 if (cp == comma) /* leading / means a pathname */
1025 is_addr = 0;
1026 }
Simon Kelleyf2621c72007-04-29 19:47:21 +01001027 else if (c == '.')
1028 {
Simon Kelley4cb1b322012-02-06 14:30:41 +00001029 is_addr6 =is_dec = is_hex = 0;
Simon Kelleyf2621c72007-04-29 19:47:21 +01001030 dots++;
1031 }
1032 else if (c == '-')
Simon Kelley4cb1b322012-02-06 14:30:41 +00001033 is_hex = is_addr = is_addr6 = 0;
Simon Kelleyf2621c72007-04-29 19:47:21 +01001034 else if (c == ' ')
Simon Kelley832af0b2007-01-21 20:01:28 +00001035 is_dec = is_hex = 0;
Simon Kelleyf2621c72007-04-29 19:47:21 +01001036 else if (!(c >='0' && c <= '9'))
Simon Kelley832af0b2007-01-21 20:01:28 +00001037 {
1038 is_addr = 0;
1039 if (cp[1] == 0 && is_dec &&
Simon Kelleyf2621c72007-04-29 19:47:21 +01001040 (c == 'b' || c == 's' || c == 'i'))
Simon Kelley832af0b2007-01-21 20:01:28 +00001041 {
Simon Kelleyf2621c72007-04-29 19:47:21 +01001042 lenchar = c;
Simon Kelley832af0b2007-01-21 20:01:28 +00001043 *cp = 0;
1044 }
1045 else
1046 is_dec = 0;
Simon Kelleyf2621c72007-04-29 19:47:21 +01001047 if (!((c >='A' && c <= 'F') ||
Simon Kelley73a08a22009-02-05 20:28:08 +00001048 (c >='a' && c <= 'f') ||
1049 (c == '*' && (flags & DHOPT_MATCH))))
Simon Kelley4cb1b322012-02-06 14:30:41 +00001050 {
1051 is_hex = 0;
1052 if (c != '[' && c != ']')
1053 is_addr6 = 0;
1054 }
Simon Kelley832af0b2007-01-21 20:01:28 +00001055 }
Simon Kelley28866e92011-02-14 20:19:14 +00001056 else
1057 found_dig = 1;
Simon Kelleyf2621c72007-04-29 19:47:21 +01001058
Simon Kelley28866e92011-02-14 20:19:14 +00001059 if (!found_dig)
1060 is_dec = is_addr = 0;
Simon Kelley4cb1b322012-02-06 14:30:41 +00001061
Simon Kelleyf2621c72007-04-29 19:47:21 +01001062 /* We know that some options take addresses */
Simon Kelley7622fc02009-06-04 20:32:05 +01001063 if (opt_len & OT_ADDR_LIST)
Simon Kelleyf2621c72007-04-29 19:47:21 +01001064 {
1065 is_string = is_dec = is_hex = 0;
Simon Kelley4cb1b322012-02-06 14:30:41 +00001066
1067 if (!is6 && (!is_addr || dots == 0))
Simon Kelleyf2621c72007-04-29 19:47:21 +01001068 problem = _("bad IP address");
Simon Kelley4cb1b322012-02-06 14:30:41 +00001069
1070 if (is6 && !is_addr6)
1071 problem = _("bad IPv6 address");
Simon Kelleyf2621c72007-04-29 19:47:21 +01001072 }
Simon Kelley28866e92011-02-14 20:19:14 +00001073 /* or names */
Simon Kelley4cb1b322012-02-06 14:30:41 +00001074 else if (opt_len & (OT_NAME | OT_RFC1035_NAME | OT_CSTRING))
1075 is_addr6 = is_addr = is_dec = is_hex = 0;
1076
Simon Kelley832af0b2007-01-21 20:01:28 +00001077 if (is_hex && digs > 1)
1078 {
1079 new->len = digs;
Simon Kelley824af852008-02-12 20:43:05 +00001080 new->val = opt_malloc(new->len);
Simon Kelley73a08a22009-02-05 20:28:08 +00001081 parse_hex(comma, new->val, digs, (flags & DHOPT_MATCH) ? &new->u.wildcard_mask : NULL, NULL);
1082 new->flags |= DHOPT_HEX;
Simon Kelley832af0b2007-01-21 20:01:28 +00001083 }
1084 else if (is_dec)
1085 {
1086 int i, val = atoi(comma);
1087 /* assume numeric arg is 1 byte except for
1088 options where it is known otherwise.
1089 For vendor class option, we have to hack. */
Simon Kelleyf2621c72007-04-29 19:47:21 +01001090 if (opt_len != 0)
1091 new->len = opt_len;
1092 else if (val & 0xffff0000)
1093 new->len = 4;
1094 else if (val & 0xff00)
1095 new->len = 2;
1096 else
1097 new->len = 1;
1098
Simon Kelley832af0b2007-01-21 20:01:28 +00001099 if (lenchar == 'b')
1100 new->len = 1;
1101 else if (lenchar == 's')
1102 new->len = 2;
1103 else if (lenchar == 'i')
1104 new->len = 4;
Simon Kelleyf2621c72007-04-29 19:47:21 +01001105
Simon Kelley824af852008-02-12 20:43:05 +00001106 new->val = opt_malloc(new->len);
Simon Kelley832af0b2007-01-21 20:01:28 +00001107 for (i=0; i<new->len; i++)
1108 new->val[i] = val>>((new->len - i - 1)*8);
1109 }
Simon Kelley4cb1b322012-02-06 14:30:41 +00001110 else if (is_addr && !is6)
Simon Kelley832af0b2007-01-21 20:01:28 +00001111 {
1112 struct in_addr in;
1113 unsigned char *op;
1114 char *slash;
1115 /* max length of address/subnet descriptor is five bytes,
1116 add one for the option 120 enc byte too */
Simon Kelley824af852008-02-12 20:43:05 +00001117 new->val = op = opt_malloc((5 * addrs) + 1);
Simon Kelley6b010842007-02-12 20:32:07 +00001118 new->flags |= DHOPT_ADDR;
1119
Simon Kelley572b41e2011-02-18 18:11:18 +00001120 if (!(new->flags & (DHOPT_ENCAPSULATE | DHOPT_VENDOR | DHOPT_RFC3925)) &&
1121 new->opt == OPTION_SIP_SERVER)
Simon Kelley832af0b2007-01-21 20:01:28 +00001122 {
Simon Kelley6b010842007-02-12 20:32:07 +00001123 *(op++) = 1; /* RFC 3361 "enc byte" */
1124 new->flags &= ~DHOPT_ADDR;
Simon Kelley832af0b2007-01-21 20:01:28 +00001125 }
1126 while (addrs--)
1127 {
1128 cp = comma;
Simon Kelleyf2621c72007-04-29 19:47:21 +01001129 comma = split(cp);
Simon Kelley73a08a22009-02-05 20:28:08 +00001130 slash = split_chr(cp, '/');
Simon Kelley832af0b2007-01-21 20:01:28 +00001131 in.s_addr = inet_addr(cp);
1132 if (!slash)
1133 {
1134 memcpy(op, &in, INADDRSZ);
1135 op += INADDRSZ;
1136 }
1137 else
1138 {
1139 unsigned char *p = (unsigned char *)&in;
1140 int netsize = atoi(slash);
1141 *op++ = netsize;
1142 if (netsize > 0)
1143 *op++ = *p++;
1144 if (netsize > 8)
1145 *op++ = *p++;
1146 if (netsize > 16)
1147 *op++ = *p++;
1148 if (netsize > 24)
1149 *op++ = *p++;
1150 new->flags &= ~DHOPT_ADDR; /* cannot re-write descriptor format */
1151 }
1152 }
1153 new->len = op - new->val;
1154 }
Simon Kelley4cb1b322012-02-06 14:30:41 +00001155 else if (is_addr6 && is6)
1156 {
1157 unsigned char *op;
1158 new->val = op = opt_malloc(16 * addrs);
1159 new->flags |= DHOPT_ADDR6;
1160 while (addrs--)
1161 {
1162 cp = comma;
1163 comma = split(cp);
1164
1165 /* check for [1234::7] */
1166 if (*cp == '[')
1167 cp++;
1168 if (strlen(cp) > 1 && cp[strlen(cp)-1] == ']')
1169 cp[strlen(cp)-1] = 0;
1170
1171 if (inet_pton(AF_INET6, cp, op))
1172 {
1173 op += IN6ADDRSZ;
1174 continue;
1175 }
1176
1177 problem = _("bad IPv6 address");
1178 }
1179 new->len = op - new->val;
1180 }
Simon Kelleyf2621c72007-04-29 19:47:21 +01001181 else if (is_string)
Simon Kelley832af0b2007-01-21 20:01:28 +00001182 {
Simon Kelley4cb1b322012-02-06 14:30:41 +00001183 /* text arg */
Simon Kelley572b41e2011-02-18 18:11:18 +00001184 if ((new->opt == OPTION_DOMAIN_SEARCH || new->opt == OPTION_SIP_SERVER) &&
Simon Kelley4cb1b322012-02-06 14:30:41 +00001185 !is6 && !(new->flags & (DHOPT_ENCAPSULATE | DHOPT_VENDOR | DHOPT_RFC3925)))
Simon Kelley832af0b2007-01-21 20:01:28 +00001186 {
1187 /* dns search, RFC 3397, or SIP, RFC 3361 */
1188 unsigned char *q, *r, *tail;
Simon Kelley824af852008-02-12 20:43:05 +00001189 unsigned char *p, *m = NULL, *newp;
Simon Kelley832af0b2007-01-21 20:01:28 +00001190 size_t newlen, len = 0;
Simon Kelley572b41e2011-02-18 18:11:18 +00001191 int header_size = (new->opt == OPTION_DOMAIN_SEARCH) ? 0 : 1;
Simon Kelley832af0b2007-01-21 20:01:28 +00001192
1193 arg = comma;
Simon Kelleyf2621c72007-04-29 19:47:21 +01001194 comma = split(arg);
Simon Kelley832af0b2007-01-21 20:01:28 +00001195
1196 while (arg && *arg)
1197 {
Simon Kelleyc52e1892010-06-07 22:01:39 +01001198 char *in, *dom = NULL;
1199 size_t domlen = 1;
1200 /* Allow "." as an empty domain */
1201 if (strcmp (arg, ".") != 0)
Simon Kelley832af0b2007-01-21 20:01:28 +00001202 {
Simon Kelleyc52e1892010-06-07 22:01:39 +01001203 if (!(dom = canonicalise_opt(arg)))
1204 {
1205 problem = _("bad domain in dhcp-option");
1206 break;
1207 }
1208 domlen = strlen(dom) + 2;
Simon Kelley832af0b2007-01-21 20:01:28 +00001209 }
Simon Kelleyc52e1892010-06-07 22:01:39 +01001210
1211 newp = opt_malloc(len + domlen + header_size);
Simon Kelley824af852008-02-12 20:43:05 +00001212 if (m)
Simon Kelleyc52e1892010-06-07 22:01:39 +01001213 {
1214 memcpy(newp, m, header_size + len);
1215 free(m);
1216 }
Simon Kelley824af852008-02-12 20:43:05 +00001217 m = newp;
Simon Kelley832af0b2007-01-21 20:01:28 +00001218 p = m + header_size;
1219 q = p + len;
1220
1221 /* add string on the end in RFC1035 format */
Simon Kelleyc52e1892010-06-07 22:01:39 +01001222 for (in = dom; in && *in;)
Simon Kelley832af0b2007-01-21 20:01:28 +00001223 {
1224 unsigned char *cp = q++;
1225 int j;
Simon Kelleyc52e1892010-06-07 22:01:39 +01001226 for (j = 0; *in && (*in != '.'); in++, j++)
1227 *q++ = *in;
Simon Kelley832af0b2007-01-21 20:01:28 +00001228 *cp = j;
Simon Kelleyc52e1892010-06-07 22:01:39 +01001229 if (*in)
1230 in++;
Simon Kelley832af0b2007-01-21 20:01:28 +00001231 }
1232 *q++ = 0;
Simon Kelley1f15b812009-10-13 17:49:32 +01001233 free(dom);
Simon Kelleyc52e1892010-06-07 22:01:39 +01001234
Simon Kelley832af0b2007-01-21 20:01:28 +00001235 /* Now tail-compress using earlier names. */
1236 newlen = q - p;
1237 for (tail = p + len; *tail; tail += (*tail) + 1)
1238 for (r = p; r - p < (int)len; r += (*r) + 1)
1239 if (strcmp((char *)r, (char *)tail) == 0)
1240 {
1241 PUTSHORT((r - p) | 0xc000, tail);
1242 newlen = tail - p;
1243 goto end;
1244 }
1245 end:
1246 len = newlen;
1247
1248 arg = comma;
Simon Kelleyf2621c72007-04-29 19:47:21 +01001249 comma = split(arg);
Simon Kelley832af0b2007-01-21 20:01:28 +00001250 }
1251
1252 /* RFC 3361, enc byte is zero for names */
Simon Kelley572b41e2011-02-18 18:11:18 +00001253 if (new->opt == OPTION_SIP_SERVER)
Simon Kelley832af0b2007-01-21 20:01:28 +00001254 m[0] = 0;
1255 new->len = (int) len + header_size;
1256 new->val = m;
1257 }
Simon Kelley4cb1b322012-02-06 14:30:41 +00001258#ifdef HAVE_DHCP6
1259 else if (comma && (opt_len & OT_CSTRING))
1260 {
1261 /* length fields are two bytes so need 16 bits for each string */
1262 int commas = 1;
1263 unsigned char *p, *newp;
1264
1265 for(i = 0; comma[i]; i++)
1266 if (comma[i] == ',')
1267 commas++;
1268
1269 newp = opt_malloc(strlen(comma)+(2*commas));
1270 p = newp;
1271 arg = comma;
1272 comma = split(arg);
1273
1274 while (arg && *arg)
1275 {
1276 u16 len = strlen(arg);
1277 PUTSHORT(len, p);
1278 memcpy(p, arg, len);
1279 p += len;
1280
1281 arg = comma;
1282 comma = split(arg);
1283 }
1284
1285 new->val = newp;
1286 new->len = p - newp;
1287 }
1288 else if (comma && (opt_len & OT_RFC1035_NAME))
1289 {
1290 int commas = 1;
1291 unsigned char *p, *newp;
1292
1293 for(i = 0; comma[i]; i++)
1294 if (comma[i] == ',')
1295 commas++;
1296
1297 newp = opt_malloc(strlen(comma)+(2*commas));
1298 p = newp;
1299 arg = comma;
1300 comma = split(arg);
1301
1302 while (arg && *arg)
1303 {
1304 p = do_rfc1035_name(p, arg);
1305 *p++ = 0;
1306
1307 arg = comma;
1308 comma = split(arg);
1309 }
1310
1311 new->val = newp;
1312 new->len = p - newp;
1313 }
1314#endif
Simon Kelley832af0b2007-01-21 20:01:28 +00001315 else
1316 {
1317 new->len = strlen(comma);
1318 /* keep terminating zero on string */
Simon Kelley824af852008-02-12 20:43:05 +00001319 new->val = (unsigned char *)opt_string_alloc(comma);
Simon Kelley832af0b2007-01-21 20:01:28 +00001320 new->flags |= DHOPT_STRING;
1321 }
1322 }
1323 }
1324
Simon Kelley4cb1b322012-02-06 14:30:41 +00001325 if (!is6 &&
1326 ((new->len > 255) ||
Simon Kelley316e2732010-01-22 20:16:09 +00001327 (new->len > 253 && (new->flags & (DHOPT_VENDOR | DHOPT_ENCAPSULATE))) ||
Simon Kelley4cb1b322012-02-06 14:30:41 +00001328 (new->len > 250 && (new->flags & DHOPT_RFC3925))))
Simon Kelley832af0b2007-01-21 20:01:28 +00001329 problem = _("dhcp-option too long");
1330
Simon Kelley824af852008-02-12 20:43:05 +00001331 if (!problem)
1332 {
Simon Kelley73a08a22009-02-05 20:28:08 +00001333 if (flags == DHOPT_MATCH)
1334 {
1335 if ((new->flags & (DHOPT_ENCAPSULATE | DHOPT_VENDOR)) ||
1336 !new->netid ||
1337 new->netid->next)
1338 problem = _("illegal dhcp-match");
Simon Kelley3634c542012-02-08 14:22:37 +00001339 else if (is6)
1340 {
1341 new->next = daemon->dhcp_match6;
1342 daemon->dhcp_match6 = new;
1343 }
Simon Kelley73a08a22009-02-05 20:28:08 +00001344 else
1345 {
1346 new->next = daemon->dhcp_match;
1347 daemon->dhcp_match = new;
1348 }
1349 }
Simon Kelley4cb1b322012-02-06 14:30:41 +00001350 else if (is6)
1351 {
1352 new->next = daemon->dhcp_opts6;
1353 daemon->dhcp_opts6 = new;
1354 }
1355 else
Simon Kelley73a08a22009-02-05 20:28:08 +00001356 {
1357 new->next = daemon->dhcp_opts;
1358 daemon->dhcp_opts = new;
1359 }
Simon Kelley824af852008-02-12 20:43:05 +00001360 }
1361
Simon Kelley832af0b2007-01-21 20:01:28 +00001362 return problem;
1363}
1364
Simon Kelley7622fc02009-06-04 20:32:05 +01001365#endif
Simon Kelley832af0b2007-01-21 20:01:28 +00001366
Simon Kelley28866e92011-02-14 20:19:14 +00001367void set_option_bool(unsigned int opt)
1368{
1369 if (opt < 32)
1370 daemon->options |= 1u << opt;
1371 else
1372 daemon->options2 |= 1u << (opt - 32);
1373}
1374
1375static char *one_opt(int option, char *arg, char *gen_prob, int command_line)
Simon Kelley849a8352006-06-09 21:02:31 +01001376{
1377 int i;
Simon Kelley824af852008-02-12 20:43:05 +00001378 char *comma, *problem = NULL;;
Simon Kelley849a8352006-06-09 21:02:31 +01001379
Simon Kelley832af0b2007-01-21 20:01:28 +00001380 if (option == '?')
Simon Kelley824af852008-02-12 20:43:05 +00001381 return gen_prob;
Simon Kelley832af0b2007-01-21 20:01:28 +00001382
Simon Kelley1a6bca82008-07-11 11:11:42 +01001383 for (i=0; usage[i].opt != 0; i++)
1384 if (usage[i].opt == option)
Simon Kelley849a8352006-06-09 21:02:31 +01001385 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01001386 int rept = usage[i].rept;
1387
Simon Kelley28866e92011-02-14 20:19:14 +00001388 if (command_line)
Simon Kelley1a6bca82008-07-11 11:11:42 +01001389 {
1390 /* command line */
1391 if (rept == ARG_USED_CL)
1392 return _("illegal repeated flag");
1393 if (rept == ARG_ONE)
1394 usage[i].rept = ARG_USED_CL;
1395 }
1396 else
1397 {
1398 /* allow file to override command line */
1399 if (rept == ARG_USED_FILE)
1400 return _("illegal repeated keyword");
1401 if (rept == ARG_USED_CL || rept == ARG_ONE)
1402 usage[i].rept = ARG_USED_FILE;
1403 }
1404
1405 if (rept != ARG_DUP && rept != ARG_ONE && rept != ARG_USED_CL)
1406 {
Simon Kelley28866e92011-02-14 20:19:14 +00001407 set_option_bool(rept);
Simon Kelley1a6bca82008-07-11 11:11:42 +01001408 return NULL;
1409 }
1410
1411 break;
Simon Kelley849a8352006-06-09 21:02:31 +01001412 }
Simon Kelley1a6bca82008-07-11 11:11:42 +01001413
Simon Kelley849a8352006-06-09 21:02:31 +01001414 switch (option)
1415 {
Simon Kelleyf2621c72007-04-29 19:47:21 +01001416 case 'C': /* --conf-file */
Simon Kelley849a8352006-06-09 21:02:31 +01001417 {
Simon Kelley824af852008-02-12 20:43:05 +00001418 char *file = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01001419 if (file)
Simon Kelley9009d742008-11-14 20:04:27 +00001420 {
Simon Kelley28866e92011-02-14 20:19:14 +00001421 one_file(file, 0);
Simon Kelley9009d742008-11-14 20:04:27 +00001422 free(file);
1423 }
Simon Kelley849a8352006-06-09 21:02:31 +01001424 break;
1425 }
1426
Simon Kelleyf2621c72007-04-29 19:47:21 +01001427 case '7': /* --conf-dir */
Simon Kelley849a8352006-06-09 21:02:31 +01001428 {
1429 DIR *dir_stream;
1430 struct dirent *ent;
1431 char *directory, *path;
Simon Kelley1f15b812009-10-13 17:49:32 +01001432 struct list {
1433 char *suffix;
1434 struct list *next;
1435 } *ignore_suffix = NULL, *li;
Simon Kelley849a8352006-06-09 21:02:31 +01001436
Simon Kelley1f15b812009-10-13 17:49:32 +01001437 comma = split(arg);
Simon Kelley824af852008-02-12 20:43:05 +00001438 if (!(directory = opt_string_alloc(arg)))
Simon Kelley849a8352006-06-09 21:02:31 +01001439 break;
1440
Simon Kelley1f15b812009-10-13 17:49:32 +01001441 for (arg = comma; arg; arg = comma)
1442 {
1443 comma = split(arg);
1444 li = opt_malloc(sizeof(struct list));
1445 li->next = ignore_suffix;
1446 ignore_suffix = li;
1447 /* Have to copy: buffer is overwritten */
1448 li->suffix = opt_string_alloc(arg);
1449 };
1450
Simon Kelley849a8352006-06-09 21:02:31 +01001451 if (!(dir_stream = opendir(directory)))
Simon Kelley5aabfc72007-08-29 11:24:47 +01001452 die(_("cannot access directory %s: %s"), directory, EC_FILE);
Simon Kelley1f15b812009-10-13 17:49:32 +01001453
Simon Kelley849a8352006-06-09 21:02:31 +01001454 while ((ent = readdir(dir_stream)))
1455 {
Simon Kelley7622fc02009-06-04 20:32:05 +01001456 size_t len = strlen(ent->d_name);
Simon Kelley849a8352006-06-09 21:02:31 +01001457 struct stat buf;
Simon Kelley1f15b812009-10-13 17:49:32 +01001458
1459 /* ignore emacs backups and dotfiles */
Simon Kelley7622fc02009-06-04 20:32:05 +01001460 if (len == 0 ||
1461 ent->d_name[len - 1] == '~' ||
Simon Kelley849a8352006-06-09 21:02:31 +01001462 (ent->d_name[0] == '#' && ent->d_name[len - 1] == '#') ||
1463 ent->d_name[0] == '.')
1464 continue;
Simon Kelley7622fc02009-06-04 20:32:05 +01001465
Simon Kelley1f15b812009-10-13 17:49:32 +01001466 for (li = ignore_suffix; li; li = li->next)
1467 {
1468 /* check for proscribed suffices */
1469 size_t ls = strlen(li->suffix);
1470 if (len > ls &&
1471 strcmp(li->suffix, &ent->d_name[len - ls]) == 0)
1472 break;
1473 }
1474 if (li)
1475 continue;
1476
Simon Kelley824af852008-02-12 20:43:05 +00001477 path = opt_malloc(strlen(directory) + len + 2);
Simon Kelley849a8352006-06-09 21:02:31 +01001478 strcpy(path, directory);
1479 strcat(path, "/");
1480 strcat(path, ent->d_name);
Simon Kelley7622fc02009-06-04 20:32:05 +01001481
Simon Kelley849a8352006-06-09 21:02:31 +01001482 if (stat(path, &buf) == -1)
Simon Kelley5aabfc72007-08-29 11:24:47 +01001483 die(_("cannot access %s: %s"), path, EC_FILE);
Simon Kelley849a8352006-06-09 21:02:31 +01001484 /* only reg files allowed. */
1485 if (!S_ISREG(buf.st_mode))
1486 continue;
1487
Simon Kelley28866e92011-02-14 20:19:14 +00001488 /* files must be readable */
1489 one_file(path, 0);
Simon Kelley849a8352006-06-09 21:02:31 +01001490 free(path);
1491 }
1492
1493 closedir(dir_stream);
Simon Kelley9009d742008-11-14 20:04:27 +00001494 free(directory);
Simon Kelley1f15b812009-10-13 17:49:32 +01001495 for(; ignore_suffix; ignore_suffix = li)
1496 {
1497 li = ignore_suffix->next;
1498 free(ignore_suffix->suffix);
1499 free(ignore_suffix);
1500 }
1501
Simon Kelley849a8352006-06-09 21:02:31 +01001502 break;
1503 }
1504
Simon Kelleyf2621c72007-04-29 19:47:21 +01001505 case '8': /* --log-facility */
1506 /* may be a filename */
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001507 if (strchr(arg, '/') || strcmp (arg, "-") == 0)
Simon Kelley824af852008-02-12 20:43:05 +00001508 daemon->log_file = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01001509 else
Simon Kelleyf2621c72007-04-29 19:47:21 +01001510 {
Simon Kelley572b41e2011-02-18 18:11:18 +00001511#ifdef __ANDROID__
1512 problem = _("setting log facility is not possible under Android");
1513#else
Simon Kelleyf2621c72007-04-29 19:47:21 +01001514 for (i = 0; facilitynames[i].c_name; i++)
1515 if (hostname_isequal((char *)facilitynames[i].c_name, arg))
1516 break;
1517
1518 if (facilitynames[i].c_name)
1519 daemon->log_fac = facilitynames[i].c_val;
1520 else
Simon Kelley572b41e2011-02-18 18:11:18 +00001521 problem = _("bad log facility");
1522#endif
Simon Kelley849a8352006-06-09 21:02:31 +01001523 }
1524 break;
1525
Simon Kelleyf2621c72007-04-29 19:47:21 +01001526 case 'x': /* --pid-file */
Simon Kelley824af852008-02-12 20:43:05 +00001527 daemon->runfile = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01001528 break;
Simon Kelley5aabfc72007-08-29 11:24:47 +01001529
Simon Kelleyf2621c72007-04-29 19:47:21 +01001530 case 'r': /* --resolv-file */
Simon Kelley849a8352006-06-09 21:02:31 +01001531 {
Simon Kelley824af852008-02-12 20:43:05 +00001532 char *name = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01001533 struct resolvc *new, *list = daemon->resolv_files;
1534
1535 if (list && list->is_default)
1536 {
1537 /* replace default resolv file - possibly with nothing */
1538 if (name)
1539 {
1540 list->is_default = 0;
1541 list->name = name;
1542 }
1543 else
1544 list = NULL;
1545 }
1546 else if (name)
1547 {
Simon Kelley824af852008-02-12 20:43:05 +00001548 new = opt_malloc(sizeof(struct resolvc));
Simon Kelley849a8352006-06-09 21:02:31 +01001549 new->next = list;
1550 new->name = name;
1551 new->is_default = 0;
1552 new->mtime = 0;
1553 new->logged = 0;
1554 list = new;
1555 }
1556 daemon->resolv_files = list;
1557 break;
1558 }
1559
Simon Kelleyf2621c72007-04-29 19:47:21 +01001560 case 'm': /* --mx-host */
Simon Kelley849a8352006-06-09 21:02:31 +01001561 {
1562 int pref = 1;
1563 struct mx_srv_record *new;
Simon Kelley1f15b812009-10-13 17:49:32 +01001564 char *name, *target = NULL;
1565
Simon Kelleyf2621c72007-04-29 19:47:21 +01001566 if ((comma = split(arg)))
Simon Kelley849a8352006-06-09 21:02:31 +01001567 {
1568 char *prefstr;
Simon Kelley1f15b812009-10-13 17:49:32 +01001569 if ((prefstr = split(comma)) && !atoi_check16(prefstr, &pref))
Simon Kelley824af852008-02-12 20:43:05 +00001570 problem = _("bad MX preference");
Simon Kelley849a8352006-06-09 21:02:31 +01001571 }
1572
Simon Kelley1f15b812009-10-13 17:49:32 +01001573 if (!(name = canonicalise_opt(arg)) ||
1574 (comma && !(target = canonicalise_opt(comma))))
Simon Kelley824af852008-02-12 20:43:05 +00001575 problem = _("bad MX name");
Simon Kelley1f15b812009-10-13 17:49:32 +01001576
Simon Kelley824af852008-02-12 20:43:05 +00001577 new = opt_malloc(sizeof(struct mx_srv_record));
Simon Kelley849a8352006-06-09 21:02:31 +01001578 new->next = daemon->mxnames;
1579 daemon->mxnames = new;
1580 new->issrv = 0;
Simon Kelley1f15b812009-10-13 17:49:32 +01001581 new->name = name;
1582 new->target = target; /* may be NULL */
Simon Kelley849a8352006-06-09 21:02:31 +01001583 new->weight = pref;
1584 break;
1585 }
1586
Simon Kelleyf2621c72007-04-29 19:47:21 +01001587 case 't': /* --mx-target */
Simon Kelley1f15b812009-10-13 17:49:32 +01001588 if (!(daemon->mxtarget = canonicalise_opt(arg)))
Simon Kelley824af852008-02-12 20:43:05 +00001589 problem = _("bad MX target");
Simon Kelley849a8352006-06-09 21:02:31 +01001590 break;
Simon Kelley7622fc02009-06-04 20:32:05 +01001591
1592#ifdef HAVE_DHCP
Simon Kelleyf2621c72007-04-29 19:47:21 +01001593 case 'l': /* --dhcp-leasefile */
Simon Kelley824af852008-02-12 20:43:05 +00001594 daemon->lease_file = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01001595 break;
1596
Simon Kelleyc72daea2012-01-05 21:33:27 +00001597 /* Sorry about the gross pre-processor abuse */
1598 case '6': /* --dhcp-script */
1599 case LOPT_LUASCRIPT: /* --dhcp-luascript */
Simon Kelley1f15b812009-10-13 17:49:32 +01001600# if defined(NO_FORK)
Simon Kelley849a8352006-06-09 21:02:31 +01001601 problem = _("cannot run scripts under uClinux");
Simon Kelley1f15b812009-10-13 17:49:32 +01001602# elif !defined(HAVE_SCRIPT)
1603 problem = _("recompile with HAVE_SCRIPT defined to enable lease-change scripts");
Simon Kelley7622fc02009-06-04 20:32:05 +01001604# else
Simon Kelleyc72daea2012-01-05 21:33:27 +00001605 if (option == LOPT_LUASCRIPT)
1606# if !defined(HAVE_LUASCRIPT)
1607 problem = _("recompile with HAVE_LUASCRIPT defined to enable Lua scripts");
1608# else
1609 daemon->luascript = opt_string_alloc(arg);
1610# endif
1611 else
1612 daemon->lease_change_command = opt_string_alloc(arg);
Simon Kelley7622fc02009-06-04 20:32:05 +01001613# endif
Simon Kelley849a8352006-06-09 21:02:31 +01001614 break;
Simon Kelleyc72daea2012-01-05 21:33:27 +00001615#endif /* HAVE_DHCP */
Simon Kelley7622fc02009-06-04 20:32:05 +01001616
Simon Kelley28866e92011-02-14 20:19:14 +00001617 case LOPT_DHCP_HOST: /* --dhcp-hostfile */
1618 case LOPT_DHCP_OPTS: /* --dhcp-optsfile */
Simon Kelleyf2621c72007-04-29 19:47:21 +01001619 case 'H': /* --addn-hosts */
Simon Kelley849a8352006-06-09 21:02:31 +01001620 {
Simon Kelley824af852008-02-12 20:43:05 +00001621 struct hostsfile *new = opt_malloc(sizeof(struct hostsfile));
Simon Kelley849a8352006-06-09 21:02:31 +01001622 static int hosts_index = 1;
Simon Kelley824af852008-02-12 20:43:05 +00001623 new->fname = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01001624 new->index = hosts_index++;
Simon Kelley7622fc02009-06-04 20:32:05 +01001625 new->flags = 0;
Simon Kelley28866e92011-02-14 20:19:14 +00001626 if (option == 'H')
1627 {
1628 new->next = daemon->addn_hosts;
1629 daemon->addn_hosts = new;
1630 }
1631 else if (option == LOPT_DHCP_HOST)
1632 {
1633 new->next = daemon->dhcp_hosts_file;
1634 daemon->dhcp_hosts_file = new;
1635 }
1636 else if (option == LOPT_DHCP_OPTS)
1637 {
1638 new->next = daemon->dhcp_opts_file;
1639 daemon->dhcp_opts_file = new;
1640 }
Simon Kelley849a8352006-06-09 21:02:31 +01001641 break;
1642 }
1643
Simon Kelleyf2621c72007-04-29 19:47:21 +01001644 case 's': /* --domain */
Simon Kelley849a8352006-06-09 21:02:31 +01001645 if (strcmp (arg, "#") == 0)
Simon Kelley28866e92011-02-14 20:19:14 +00001646 set_option_bool(OPT_RESOLV_DOMAIN);
Simon Kelley849a8352006-06-09 21:02:31 +01001647 else
Simon Kelley9009d742008-11-14 20:04:27 +00001648 {
Simon Kelley1f15b812009-10-13 17:49:32 +01001649 char *d;
Simon Kelley9009d742008-11-14 20:04:27 +00001650 comma = split(arg);
Simon Kelley1f15b812009-10-13 17:49:32 +01001651 if (!(d = canonicalise_opt(arg)))
Simon Kelley9009d742008-11-14 20:04:27 +00001652 option = '?';
1653 else
1654 {
Simon Kelley9009d742008-11-14 20:04:27 +00001655 if (comma)
1656 {
1657 struct cond_domain *new = safe_malloc(sizeof(struct cond_domain));
Simon Kelley28866e92011-02-14 20:19:14 +00001658 char *netpart;
1659
Simon Kelley9009d742008-11-14 20:04:27 +00001660 unhide_metas(comma);
Simon Kelley28866e92011-02-14 20:19:14 +00001661 if ((netpart = split_chr(comma, '/')))
Simon Kelley9009d742008-11-14 20:04:27 +00001662 {
Simon Kelleyd74942a2012-02-07 20:51:56 +00001663 int msize;
1664
Simon Kelley28866e92011-02-14 20:19:14 +00001665 arg = split(netpart);
Simon Kelleyd74942a2012-02-07 20:51:56 +00001666 if (!atoi_check(netpart, &msize))
Simon Kelley9009d742008-11-14 20:04:27 +00001667 option = '?';
Simon Kelleyd74942a2012-02-07 20:51:56 +00001668 else if (inet_pton(AF_INET, comma, &new->start))
Simon Kelley9009d742008-11-14 20:04:27 +00001669 {
Simon Kelleyd74942a2012-02-07 20:51:56 +00001670 int mask = (1 << (32 - msize)) - 1;
1671 new->is6 = 0;
Simon Kelley9009d742008-11-14 20:04:27 +00001672 new->start.s_addr = ntohl(htonl(new->start.s_addr) & ~mask);
1673 new->end.s_addr = new->start.s_addr | htonl(mask);
Simon Kelley28866e92011-02-14 20:19:14 +00001674 if (arg)
1675 {
1676 /* generate the equivalent of
1677 local=/<domain>/
1678 local=/xxx.yyy.zzz.in-addr.arpa/ */
1679
1680 if (strcmp(arg, "local") != 0 ||
1681 (msize != 8 && msize != 16 && msize != 24))
1682 option = '?';
1683 else
1684 {
1685 struct server *serv = opt_malloc(sizeof(struct server));
1686 in_addr_t a = ntohl(new->start.s_addr) >> 8;
1687 char *p;
1688
1689 memset(serv, 0, sizeof(struct server));
1690 serv->domain = d;
1691 serv->flags = SERV_HAS_DOMAIN | SERV_NO_ADDR;
1692 serv->next = daemon->servers;
1693 daemon->servers = serv;
1694
1695 serv = opt_malloc(sizeof(struct server));
1696 memset(serv, 0, sizeof(struct server));
1697 p = serv->domain = opt_malloc(25); /* strlen("xxx.yyy.zzz.in-addr.arpa")+1 */
1698
1699 if (msize == 24)
1700 p += sprintf(p, "%d.", a & 0xff);
1701 a = a >> 8;
1702 if (msize != 8)
1703 p += sprintf(p, "%d.", a & 0xff);
1704 a = a >> 8;
1705 p += sprintf(p, "%d.in-addr.arpa", a & 0xff);
1706
1707 serv->flags = SERV_HAS_DOMAIN | SERV_NO_ADDR;
1708 serv->next = daemon->servers;
1709 daemon->servers = serv;
1710 }
1711 }
Simon Kelley9009d742008-11-14 20:04:27 +00001712 }
Simon Kelleyd74942a2012-02-07 20:51:56 +00001713#ifdef HAVE_IPV6
1714 else if (inet_pton(AF_INET6, comma, &new->start6))
1715 {
1716 u64 mask = (1LLU << (128 - msize)) - 1LLU;
1717 u64 addrpart = addr6part(&new->start6);
1718 new->is6 = 1;
1719
1720 /* prefix==64 overflows the mask calculation above */
1721 if (msize == 64)
1722 mask = (u64)-1LL;
1723
1724 new->end6 = new->start6;
1725 setaddr6part(&new->start6, addrpart & ~mask);
1726 setaddr6part(&new->end6, addrpart | mask);
1727
1728 if (msize < 64)
1729 option = '?';
1730 else if (arg)
1731 {
1732 /* generate the equivalent of
1733 local=/<domain>/
1734 local=/xxx.yyy.zzz.ip6.arpa/ */
1735
Simon Kelleyceae00d2012-02-09 21:28:14 +00001736 if (strcmp(arg, "local") != 0 || ((msize & 4) != 0))
Simon Kelleyd74942a2012-02-07 20:51:56 +00001737 option = '?';
1738 else
1739 {
1740 struct server *serv = opt_malloc(sizeof(struct server));
Simon Kelleyd74942a2012-02-07 20:51:56 +00001741 char *p;
Simon Kelleyceae00d2012-02-09 21:28:14 +00001742
Simon Kelleyd74942a2012-02-07 20:51:56 +00001743 memset(serv, 0, sizeof(struct server));
1744 serv->domain = d;
1745 serv->flags = SERV_HAS_DOMAIN | SERV_NO_ADDR;
1746 serv->next = daemon->servers;
1747 daemon->servers = serv;
1748
1749 serv = opt_malloc(sizeof(struct server));
1750 memset(serv, 0, sizeof(struct server));
1751 p = serv->domain = opt_malloc(73); /* strlen("32*<n.>ip6.arpa")+1 */
1752
1753 for (i = msize-1; i >= 0; i -= 4)
1754 {
1755 int dig = ((unsigned char *)&new->start6)[i>>3];
1756 p += sprintf(p, "%.1x.", (i>>2) & 1 ? dig & 15 : dig >> 4);
1757 }
1758 p += sprintf(p, "ip6.arpa");
1759
1760 serv->flags = SERV_HAS_DOMAIN | SERV_NO_ADDR;
1761 serv->next = daemon->servers;
1762 daemon->servers = serv;
1763 }
1764 }
1765 }
1766#endif
1767 else
Simon Kelley9009d742008-11-14 20:04:27 +00001768 option = '?';
1769 }
Simon Kelleyd74942a2012-02-07 20:51:56 +00001770 else
1771 {
1772 arg = split(comma);
1773 if (inet_pton(AF_INET, comma, &new->start))
1774 {
1775 new->is6 = 0;
1776 if (!arg)
1777 new->end.s_addr = new->start.s_addr;
1778 else if (!inet_pton(AF_INET, arg, &new->end))
1779 option = '?';
1780 }
1781#ifdef HAVE_IPV6
1782 else if (inet_pton(AF_INET6, comma, &new->start6))
1783 {
1784 new->is6 = 1;
1785 if (!arg)
1786 memcpy(&new->end6, &new->start6, IN6ADDRSZ);
1787 else if (!inet_pton(AF_INET6, arg, &new->end6))
1788 option = '?';
1789 }
1790#endif
1791 else
1792 option = '?';
Simon Kelleyd74942a2012-02-07 20:51:56 +00001793 }
Simon Kelley2307eac2012-02-13 10:13:13 +00001794
1795 new->domain = d;
1796 new->next = daemon->cond_domain;
1797 daemon->cond_domain = new;
Simon Kelley9009d742008-11-14 20:04:27 +00001798 }
1799 else
1800 daemon->domain_suffix = d;
1801 }
1802 }
Simon Kelley849a8352006-06-09 21:02:31 +01001803 break;
1804
Simon Kelleyf2621c72007-04-29 19:47:21 +01001805 case 'u': /* --user */
Simon Kelley824af852008-02-12 20:43:05 +00001806 daemon->username = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01001807 break;
1808
Simon Kelleyf2621c72007-04-29 19:47:21 +01001809 case 'g': /* --group */
Simon Kelley824af852008-02-12 20:43:05 +00001810 daemon->groupname = opt_string_alloc(arg);
Simon Kelley1a6bca82008-07-11 11:11:42 +01001811 daemon->group_set = 1;
Simon Kelley849a8352006-06-09 21:02:31 +01001812 break;
Simon Kelley9e038942008-05-30 20:06:34 +01001813
Simon Kelley7622fc02009-06-04 20:32:05 +01001814#ifdef HAVE_DHCP
Simon Kelley9e038942008-05-30 20:06:34 +01001815 case LOPT_SCRIPTUSR: /* --scriptuser */
1816 daemon->scriptuser = opt_string_alloc(arg);
1817 break;
Simon Kelley7622fc02009-06-04 20:32:05 +01001818#endif
Simon Kelley849a8352006-06-09 21:02:31 +01001819
Simon Kelleyf2621c72007-04-29 19:47:21 +01001820 case 'i': /* --interface */
Simon Kelley849a8352006-06-09 21:02:31 +01001821 do {
Simon Kelley824af852008-02-12 20:43:05 +00001822 struct iname *new = opt_malloc(sizeof(struct iname));
Simon Kelleyf2621c72007-04-29 19:47:21 +01001823 comma = split(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01001824 new->next = daemon->if_names;
1825 daemon->if_names = new;
1826 /* new->name may be NULL if someone does
1827 "interface=" to disable all interfaces except loop. */
Simon Kelley824af852008-02-12 20:43:05 +00001828 new->name = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01001829 new->isloop = new->used = 0;
1830 arg = comma;
1831 } while (arg);
1832 break;
1833
Simon Kelleyf2621c72007-04-29 19:47:21 +01001834 case 'I': /* --except-interface */
1835 case '2': /* --no-dhcp-interface */
Simon Kelley849a8352006-06-09 21:02:31 +01001836 do {
Simon Kelley824af852008-02-12 20:43:05 +00001837 struct iname *new = opt_malloc(sizeof(struct iname));
Simon Kelleyf2621c72007-04-29 19:47:21 +01001838 comma = split(arg);
Simon Kelley824af852008-02-12 20:43:05 +00001839 new->name = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01001840 if (option == 'I')
1841 {
1842 new->next = daemon->if_except;
1843 daemon->if_except = new;
1844 }
1845 else
1846 {
1847 new->next = daemon->dhcp_except;
1848 daemon->dhcp_except = new;
1849 }
1850 arg = comma;
1851 } while (arg);
1852 break;
1853
Simon Kelleyf2621c72007-04-29 19:47:21 +01001854 case 'B': /* --bogus-nxdomain */
Simon Kelley849a8352006-06-09 21:02:31 +01001855 {
1856 struct in_addr addr;
1857 unhide_metas(arg);
1858 if (arg && (addr.s_addr = inet_addr(arg)) != (in_addr_t)-1)
1859 {
Simon Kelley824af852008-02-12 20:43:05 +00001860 struct bogus_addr *baddr = opt_malloc(sizeof(struct bogus_addr));
Simon Kelley849a8352006-06-09 21:02:31 +01001861 baddr->next = daemon->bogus_addr;
1862 daemon->bogus_addr = baddr;
1863 baddr->addr = addr;
1864 }
1865 else
1866 option = '?'; /* error */
1867 break;
1868 }
1869
Simon Kelleyf2621c72007-04-29 19:47:21 +01001870 case 'a': /* --listen-address */
Simon Kelley849a8352006-06-09 21:02:31 +01001871 do {
Simon Kelley824af852008-02-12 20:43:05 +00001872 struct iname *new = opt_malloc(sizeof(struct iname));
Simon Kelleyf2621c72007-04-29 19:47:21 +01001873 comma = split(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01001874 unhide_metas(arg);
1875 new->next = daemon->if_addrs;
1876 if (arg && (new->addr.in.sin_addr.s_addr = inet_addr(arg)) != (in_addr_t)-1)
1877 {
1878 new->addr.sa.sa_family = AF_INET;
1879#ifdef HAVE_SOCKADDR_SA_LEN
1880 new->addr.in.sin_len = sizeof(new->addr.in);
1881#endif
1882 }
1883#ifdef HAVE_IPV6
1884 else if (arg && inet_pton(AF_INET6, arg, &new->addr.in6.sin6_addr) > 0)
1885 {
1886 new->addr.sa.sa_family = AF_INET6;
1887 new->addr.in6.sin6_flowinfo = 0;
1888 new->addr.in6.sin6_scope_id = 0;
1889#ifdef HAVE_SOCKADDR_SA_LEN
1890 new->addr.in6.sin6_len = sizeof(new->addr.in6);
1891#endif
1892 }
1893#endif
1894 else
1895 {
1896 option = '?'; /* error */
Simon Kelley849a8352006-06-09 21:02:31 +01001897 break;
1898 }
1899
1900 daemon->if_addrs = new;
1901 arg = comma;
1902 } while (arg);
1903 break;
1904
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001905 case 'S': /* --server */
1906 case LOPT_LOCAL: /* --local */
1907 case 'A': /* --address */
1908 case LOPT_NO_REBIND: /* --rebind-domain-ok */
Simon Kelley849a8352006-06-09 21:02:31 +01001909 {
1910 struct server *serv, *newlist = NULL;
1911
1912 unhide_metas(arg);
1913
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001914 if (arg && (*arg == '/' || option == LOPT_NO_REBIND))
Simon Kelley849a8352006-06-09 21:02:31 +01001915 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001916 int rebind = !(*arg == '/');
1917 char *end = NULL;
1918 if (!rebind)
1919 arg++;
1920 while (rebind || (end = split_chr(arg, '/')))
Simon Kelley849a8352006-06-09 21:02:31 +01001921 {
1922 char *domain = NULL;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001923 /* elide leading dots - they are implied in the search algorithm */
1924 while (*arg == '.') arg++;
Simon Kelley849a8352006-06-09 21:02:31 +01001925 /* # matches everything and becomes a zero length domain string */
1926 if (strcmp(arg, "#") == 0)
1927 domain = "";
Simon Kelley1f15b812009-10-13 17:49:32 +01001928 else if (strlen (arg) != 0 && !(domain = canonicalise_opt(arg)))
Simon Kelley849a8352006-06-09 21:02:31 +01001929 option = '?';
Simon Kelley824af852008-02-12 20:43:05 +00001930 serv = opt_malloc(sizeof(struct server));
1931 memset(serv, 0, sizeof(struct server));
Simon Kelley849a8352006-06-09 21:02:31 +01001932 serv->next = newlist;
1933 newlist = serv;
Simon Kelley849a8352006-06-09 21:02:31 +01001934 serv->domain = domain;
1935 serv->flags = domain ? SERV_HAS_DOMAIN : SERV_FOR_NODOTS;
Simon Kelley73a08a22009-02-05 20:28:08 +00001936 arg = end;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001937 if (rebind)
1938 break;
Simon Kelley849a8352006-06-09 21:02:31 +01001939 }
1940 if (!newlist)
1941 {
1942 option = '?';
1943 break;
1944 }
1945
1946 }
1947 else
1948 {
Simon Kelley824af852008-02-12 20:43:05 +00001949 newlist = opt_malloc(sizeof(struct server));
1950 memset(newlist, 0, sizeof(struct server));
Simon Kelley849a8352006-06-09 21:02:31 +01001951 }
1952
1953 if (option == 'A')
1954 {
1955 newlist->flags |= SERV_LITERAL_ADDRESS;
1956 if (!(newlist->flags & SERV_TYPE))
1957 option = '?';
1958 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001959 else if (option == LOPT_NO_REBIND)
1960 newlist->flags |= SERV_NO_REBIND;
Simon Kelley849a8352006-06-09 21:02:31 +01001961
1962 if (!arg || !*arg)
1963 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001964 if (!(newlist->flags & SERV_NO_REBIND))
1965 newlist->flags |= SERV_NO_ADDR; /* no server */
1966 if (newlist->flags & SERV_LITERAL_ADDRESS)
1967 option = '?';
1968 }
1969
1970 else if (strcmp(arg, "#") == 0)
1971 {
1972 newlist->flags |= SERV_USE_RESOLV; /* treat in ordinary way */
Simon Kelley849a8352006-06-09 21:02:31 +01001973 if (newlist->flags & SERV_LITERAL_ADDRESS)
1974 option = '?';
1975 }
1976 else
1977 {
1978 int source_port = 0, serv_port = NAMESERVER_PORT;
1979 char *portno, *source;
Simon Kelley7de060b2011-08-26 17:24:52 +01001980#ifdef HAVE_IPV6
1981 int scope_index = 0;
1982 char *scope_id;
1983#endif
Simon Kelley849a8352006-06-09 21:02:31 +01001984
Simon Kelley73a08a22009-02-05 20:28:08 +00001985 if ((source = split_chr(arg, '@')) && /* is there a source. */
1986 (portno = split_chr(source, '#')) &&
1987 !atoi_check16(portno, &source_port))
1988 problem = _("bad port");
1989
1990 if ((portno = split_chr(arg, '#')) && /* is there a port no. */
1991 !atoi_check16(portno, &serv_port))
1992 problem = _("bad port");
Simon Kelley849a8352006-06-09 21:02:31 +01001993
Simon Kelley7de060b2011-08-26 17:24:52 +01001994#ifdef HAVE_IPV6
1995 scope_id = split_chr(arg, '%');
1996#endif
1997
Simon Kelley849a8352006-06-09 21:02:31 +01001998 if ((newlist->addr.in.sin_addr.s_addr = inet_addr(arg)) != (in_addr_t) -1)
1999 {
2000 newlist->addr.in.sin_port = htons(serv_port);
2001 newlist->source_addr.in.sin_port = htons(source_port);
2002 newlist->addr.sa.sa_family = newlist->source_addr.sa.sa_family = AF_INET;
2003#ifdef HAVE_SOCKADDR_SA_LEN
2004 newlist->source_addr.in.sin_len = newlist->addr.in.sin_len = sizeof(struct sockaddr_in);
2005#endif
2006 if (source)
2007 {
Simon Kelley824af852008-02-12 20:43:05 +00002008 newlist->flags |= SERV_HAS_SOURCE;
Simon Kelley73a08a22009-02-05 20:28:08 +00002009 if ((newlist->source_addr.in.sin_addr.s_addr = inet_addr(source)) == (in_addr_t) -1)
Simon Kelley824af852008-02-12 20:43:05 +00002010 {
2011#if defined(SO_BINDTODEVICE)
2012 newlist->source_addr.in.sin_addr.s_addr = INADDR_ANY;
Simon Kelley316e2732010-01-22 20:16:09 +00002013 strncpy(newlist->interface, source, IF_NAMESIZE - 1);
Simon Kelley824af852008-02-12 20:43:05 +00002014#else
2015 problem = _("interface binding not supported");
2016#endif
2017 }
Simon Kelley849a8352006-06-09 21:02:31 +01002018 }
2019 else
2020 newlist->source_addr.in.sin_addr.s_addr = INADDR_ANY;
Simon Kelley5aabfc72007-08-29 11:24:47 +01002021 }
Simon Kelley849a8352006-06-09 21:02:31 +01002022#ifdef HAVE_IPV6
2023 else if (inet_pton(AF_INET6, arg, &newlist->addr.in6.sin6_addr) > 0)
2024 {
Simon Kelley7de060b2011-08-26 17:24:52 +01002025 if (scope_id && (scope_index = if_nametoindex(scope_id)) == 0)
2026 problem = _("bad interface name");
2027
Simon Kelley849a8352006-06-09 21:02:31 +01002028 newlist->addr.in6.sin6_port = htons(serv_port);
Simon Kelley7de060b2011-08-26 17:24:52 +01002029 newlist->addr.in6.sin6_scope_id = scope_index;
Simon Kelley849a8352006-06-09 21:02:31 +01002030 newlist->source_addr.in6.sin6_port = htons(source_port);
Simon Kelley7de060b2011-08-26 17:24:52 +01002031 newlist->source_addr.in6.sin6_scope_id = 0;
Simon Kelley849a8352006-06-09 21:02:31 +01002032 newlist->addr.sa.sa_family = newlist->source_addr.sa.sa_family = AF_INET6;
Simon Kelley7de060b2011-08-26 17:24:52 +01002033 newlist->addr.in6.sin6_flowinfo = newlist->source_addr.in6.sin6_flowinfo = 0;
Simon Kelley849a8352006-06-09 21:02:31 +01002034#ifdef HAVE_SOCKADDR_SA_LEN
2035 newlist->addr.in6.sin6_len = newlist->source_addr.in6.sin6_len = sizeof(newlist->addr.in6);
2036#endif
2037 if (source)
2038 {
Simon Kelley7de060b2011-08-26 17:24:52 +01002039 newlist->flags |= SERV_HAS_SOURCE;
2040 if (inet_pton(AF_INET6, source, &newlist->source_addr.in6.sin6_addr) == 0)
Simon Kelley824af852008-02-12 20:43:05 +00002041 {
Simon Kelley73a08a22009-02-05 20:28:08 +00002042#if defined(SO_BINDTODEVICE)
Simon Kelley824af852008-02-12 20:43:05 +00002043 newlist->source_addr.in6.sin6_addr = in6addr_any;
Simon Kelley316e2732010-01-22 20:16:09 +00002044 strncpy(newlist->interface, source, IF_NAMESIZE - 1);
Simon Kelley824af852008-02-12 20:43:05 +00002045#else
2046 problem = _("interface binding not supported");
2047#endif
2048 }
Simon Kelley849a8352006-06-09 21:02:31 +01002049 }
2050 else
2051 newlist->source_addr.in6.sin6_addr = in6addr_any;
2052 }
2053#endif
2054 else
2055 option = '?'; /* error */
Simon Kelley849a8352006-06-09 21:02:31 +01002056 }
2057
Simon Kelleyf2621c72007-04-29 19:47:21 +01002058 serv = newlist;
2059 while (serv->next)
Simon Kelley849a8352006-06-09 21:02:31 +01002060 {
Simon Kelleyf2621c72007-04-29 19:47:21 +01002061 serv->next->flags = serv->flags;
2062 serv->next->addr = serv->addr;
2063 serv->next->source_addr = serv->source_addr;
2064 serv = serv->next;
Simon Kelley849a8352006-06-09 21:02:31 +01002065 }
Simon Kelleyf2621c72007-04-29 19:47:21 +01002066 serv->next = daemon->servers;
2067 daemon->servers = newlist;
Simon Kelley849a8352006-06-09 21:02:31 +01002068 break;
2069 }
2070
Simon Kelleyf2621c72007-04-29 19:47:21 +01002071 case 'c': /* --cache-size */
Simon Kelley849a8352006-06-09 21:02:31 +01002072 {
2073 int size;
2074
2075 if (!atoi_check(arg, &size))
2076 option = '?';
2077 else
2078 {
2079 /* zero is OK, and means no caching. */
2080
2081 if (size < 0)
2082 size = 0;
2083 else if (size > 10000)
2084 size = 10000;
2085
2086 daemon->cachesize = size;
2087 }
2088 break;
2089 }
2090
Simon Kelleyf2621c72007-04-29 19:47:21 +01002091 case 'p': /* --port */
Simon Kelley1ad24ae2008-07-20 20:22:50 +01002092 if (!atoi_check16(arg, &daemon->port))
Simon Kelley849a8352006-06-09 21:02:31 +01002093 option = '?';
2094 break;
Simon Kelley208b65c2006-08-05 21:41:37 +01002095
Simon Kelley1a6bca82008-07-11 11:11:42 +01002096 case LOPT_MINPORT: /* --min-port */
Simon Kelley1ad24ae2008-07-20 20:22:50 +01002097 if (!atoi_check16(arg, &daemon->min_port))
Simon Kelley73a08a22009-02-05 20:28:08 +00002098 option = '?';
Simon Kelley1a6bca82008-07-11 11:11:42 +01002099 break;
2100
Simon Kelleyf2621c72007-04-29 19:47:21 +01002101 case '0': /* --dns-forward-max */
Simon Kelley208b65c2006-08-05 21:41:37 +01002102 if (!atoi_check(arg, &daemon->ftabsize))
2103 option = '?';
2104 break;
2105
Simon Kelleyf2621c72007-04-29 19:47:21 +01002106 case LOPT_MAX_LOGS: /* --log-async */
2107 daemon->max_logs = LOG_MAX; /* default */
2108 if (arg && !atoi_check(arg, &daemon->max_logs))
2109 option = '?';
2110 else if (daemon->max_logs > 100)
2111 daemon->max_logs = 100;
2112 break;
2113
2114 case 'P': /* --edns-packet-max */
Simon Kelley849a8352006-06-09 21:02:31 +01002115 {
2116 int i;
2117 if (!atoi_check(arg, &i))
2118 option = '?';
2119 daemon->edns_pktsz = (unsigned short)i;
2120 break;
2121 }
2122
Simon Kelleyf2621c72007-04-29 19:47:21 +01002123 case 'Q': /* --query-port */
Simon Kelley1ad24ae2008-07-20 20:22:50 +01002124 if (!atoi_check16(arg, &daemon->query_port))
Simon Kelley849a8352006-06-09 21:02:31 +01002125 option = '?';
Simon Kelley1a6bca82008-07-11 11:11:42 +01002126 /* if explicitly set to zero, use single OS ephemeral port
2127 and disable random ports */
2128 if (daemon->query_port == 0)
2129 daemon->osport = 1;
Simon Kelley849a8352006-06-09 21:02:31 +01002130 break;
2131
Simon Kelley824af852008-02-12 20:43:05 +00002132 case 'T': /* --local-ttl */
2133 case LOPT_NEGTTL: /* --neg-ttl */
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002134 case LOPT_MAXTTL: /* --max-ttl */
Simon Kelley849a8352006-06-09 21:02:31 +01002135 {
2136 int ttl;
2137 if (!atoi_check(arg, &ttl))
2138 option = '?';
Simon Kelley824af852008-02-12 20:43:05 +00002139 else if (option == LOPT_NEGTTL)
2140 daemon->neg_ttl = (unsigned long)ttl;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002141 else if (option == LOPT_MAXTTL)
2142 daemon->max_ttl = (unsigned long)ttl;
Simon Kelley849a8352006-06-09 21:02:31 +01002143 else
2144 daemon->local_ttl = (unsigned long)ttl;
2145 break;
2146 }
2147
Simon Kelley7622fc02009-06-04 20:32:05 +01002148#ifdef HAVE_DHCP
Simon Kelleyf2621c72007-04-29 19:47:21 +01002149 case 'X': /* --dhcp-lease-max */
Simon Kelley849a8352006-06-09 21:02:31 +01002150 if (!atoi_check(arg, &daemon->dhcp_max))
2151 option = '?';
2152 break;
Simon Kelley7622fc02009-06-04 20:32:05 +01002153#endif
Simon Kelley849a8352006-06-09 21:02:31 +01002154
Simon Kelley7622fc02009-06-04 20:32:05 +01002155#ifdef HAVE_TFTP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002156 case LOPT_TFTP: /* --enable-tftp */
2157 if (arg)
2158 {
2159 struct interface_list *new = opt_malloc(sizeof(struct interface_list));
2160 new->interface = opt_string_alloc(arg);
2161 new->next = daemon->tftp_interfaces;
2162 daemon->tftp_interfaces = new;
2163 }
2164 else
2165 daemon->tftp_unlimited = 1;
2166 break;
2167
Simon Kelleyf2621c72007-04-29 19:47:21 +01002168 case LOPT_TFTP_MAX: /* --tftp-max */
Simon Kelley832af0b2007-01-21 20:01:28 +00002169 if (!atoi_check(arg, &daemon->tftp_max))
2170 option = '?';
2171 break;
2172
Simon Kelley824af852008-02-12 20:43:05 +00002173 case LOPT_PREFIX: /* --tftp-prefix */
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002174 comma = split(arg);
2175 if (comma)
2176 {
2177 struct tftp_prefix *new = opt_malloc(sizeof(struct tftp_prefix));
2178 new->interface = opt_string_alloc(comma);
2179 new->prefix = opt_string_alloc(arg);
2180 new->next = daemon->if_prefix;
2181 daemon->if_prefix = new;
2182 }
2183 else
2184 daemon->tftp_prefix = opt_string_alloc(arg);
Simon Kelley832af0b2007-01-21 20:01:28 +00002185 break;
2186
Simon Kelley824af852008-02-12 20:43:05 +00002187 case LOPT_TFTPPORTS: /* --tftp-port-range */
2188 if (!(comma = split(arg)) ||
Simon Kelley1ad24ae2008-07-20 20:22:50 +01002189 !atoi_check16(arg, &daemon->start_tftp_port) ||
2190 !atoi_check16(comma, &daemon->end_tftp_port))
Simon Kelley824af852008-02-12 20:43:05 +00002191 problem = _("bad port range");
2192
2193 if (daemon->start_tftp_port > daemon->end_tftp_port)
2194 {
2195 int tmp = daemon->start_tftp_port;
2196 daemon->start_tftp_port = daemon->end_tftp_port;
2197 daemon->end_tftp_port = tmp;
2198 }
2199
2200 break;
Simon Kelley7622fc02009-06-04 20:32:05 +01002201#endif
Simon Kelley824af852008-02-12 20:43:05 +00002202
Simon Kelleyf2621c72007-04-29 19:47:21 +01002203 case LOPT_BRIDGE: /* --bridge-interface */
Simon Kelley832af0b2007-01-21 20:01:28 +00002204 {
Simon Kelley824af852008-02-12 20:43:05 +00002205 struct dhcp_bridge *new = opt_malloc(sizeof(struct dhcp_bridge));
Simon Kelley316e2732010-01-22 20:16:09 +00002206 if (!(comma = split(arg)) || strlen(arg) > IF_NAMESIZE - 1 )
Simon Kelley832af0b2007-01-21 20:01:28 +00002207 {
2208 problem = _("bad bridge-interface");
Simon Kelley832af0b2007-01-21 20:01:28 +00002209 break;
2210 }
2211
Simon Kelley316e2732010-01-22 20:16:09 +00002212 strcpy(new->iface, arg);
Simon Kelley832af0b2007-01-21 20:01:28 +00002213 new->alias = NULL;
2214 new->next = daemon->bridges;
2215 daemon->bridges = new;
2216
2217 do {
Simon Kelleyf2621c72007-04-29 19:47:21 +01002218 arg = comma;
2219 comma = split(arg);
Simon Kelley316e2732010-01-22 20:16:09 +00002220 if (strlen(arg) != 0 && strlen(arg) <= IF_NAMESIZE - 1)
Simon Kelley832af0b2007-01-21 20:01:28 +00002221 {
Simon Kelley824af852008-02-12 20:43:05 +00002222 struct dhcp_bridge *b = opt_malloc(sizeof(struct dhcp_bridge));
Simon Kelley832af0b2007-01-21 20:01:28 +00002223 b->next = new->alias;
2224 new->alias = b;
Simon Kelley316e2732010-01-22 20:16:09 +00002225 strcpy(b->iface, arg);
Simon Kelley832af0b2007-01-21 20:01:28 +00002226 }
2227 } while (comma);
2228
2229 break;
2230 }
Simon Kelley832af0b2007-01-21 20:01:28 +00002231
Simon Kelley7622fc02009-06-04 20:32:05 +01002232#ifdef HAVE_DHCP
Simon Kelleyf2621c72007-04-29 19:47:21 +01002233 case 'F': /* --dhcp-range */
Simon Kelley849a8352006-06-09 21:02:31 +01002234 {
2235 int k, leasepos = 2;
2236 char *cp, *a[5] = { NULL, NULL, NULL, NULL, NULL };
Simon Kelley824af852008-02-12 20:43:05 +00002237 struct dhcp_context *new = opt_malloc(sizeof(struct dhcp_context));
Simon Kelley849a8352006-06-09 21:02:31 +01002238
Simon Kelley52b92f42012-01-22 16:05:15 +00002239 memset (new, 0, sizeof(*new));
Simon Kelley849a8352006-06-09 21:02:31 +01002240 new->lease_time = DEFLEASE;
Simon Kelley52b92f42012-01-22 16:05:15 +00002241
Simon Kelley824af852008-02-12 20:43:05 +00002242 gen_prob = _("bad dhcp-range");
Simon Kelley849a8352006-06-09 21:02:31 +01002243
2244 if (!arg)
2245 {
2246 option = '?';
2247 break;
2248 }
2249
2250 while(1)
2251 {
2252 for (cp = arg; *cp; cp++)
Simon Kelley52b92f42012-01-22 16:05:15 +00002253 if (!(*cp == ' ' || *cp == '.' || *cp == ':' ||
2254 (*cp >= 'a' && *cp <= 'f') || (*cp >= 'A' && *cp <= 'F') ||
2255 (*cp >='0' && *cp <= '9')))
Simon Kelley849a8352006-06-09 21:02:31 +01002256 break;
2257
Simon Kelleyf2621c72007-04-29 19:47:21 +01002258 if (*cp != ',' && (comma = split(arg)))
Simon Kelley849a8352006-06-09 21:02:31 +01002259 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002260 if (strstr(arg, "interface:") == arg)
2261 new->interface = opt_string_alloc(arg+10);
2262 else if (is_tag_prefix(arg))
Simon Kelley849a8352006-06-09 21:02:31 +01002263 {
Simon Kelley824af852008-02-12 20:43:05 +00002264 struct dhcp_netid *tt = opt_malloc(sizeof (struct dhcp_netid));
2265 tt->net = opt_string_alloc(arg+4);
Simon Kelley849a8352006-06-09 21:02:31 +01002266 tt->next = new->filter;
2267 new->filter = tt;
2268 }
2269 else
2270 {
2271 if (new->netid.net)
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002272 problem = _("only one tag allowed");
2273 else if (strstr(arg, "set:") == arg)
2274 new->netid.net = opt_string_alloc(arg+4);
Simon Kelley849a8352006-06-09 21:02:31 +01002275 else
Simon Kelley824af852008-02-12 20:43:05 +00002276 new->netid.net = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01002277 }
Simon Kelleyf2621c72007-04-29 19:47:21 +01002278 arg = comma;
Simon Kelley849a8352006-06-09 21:02:31 +01002279 }
2280 else
2281 {
2282 a[0] = arg;
2283 break;
2284 }
2285 }
2286
2287 for (k = 1; k < 5; k++)
Simon Kelleyf2621c72007-04-29 19:47:21 +01002288 if (!(a[k] = split(a[k-1])))
2289 break;
Simon Kelley849a8352006-06-09 21:02:31 +01002290
Simon Kelley52b92f42012-01-22 16:05:15 +00002291 if (k < 2)
Simon Kelley849a8352006-06-09 21:02:31 +01002292 option = '?';
Simon Kelley52b92f42012-01-22 16:05:15 +00002293 else if (inet_pton(AF_INET, a[0], &new->start))
Simon Kelley849a8352006-06-09 21:02:31 +01002294 {
Simon Kelley52b92f42012-01-22 16:05:15 +00002295 new->next = daemon->dhcp;
2296 daemon->dhcp = new;
2297 if (strcmp(a[1], "static") == 0)
2298 {
2299 new->end = new->start;
2300 new->flags |= CONTEXT_STATIC;
2301 }
2302 else if (strcmp(a[1], "proxy") == 0)
2303 {
2304 new->end = new->start;
2305 new->flags |= CONTEXT_PROXY;
2306 }
2307 else if ((new->end.s_addr = inet_addr(a[1])) == (in_addr_t)-1)
2308 option = '?';
2309
2310 if (ntohl(new->start.s_addr) > ntohl(new->end.s_addr))
2311 {
2312 struct in_addr tmp = new->start;
2313 new->start = new->end;
2314 new->end = tmp;
2315 }
2316
2317 if (option != '?' && k >= 3 && strchr(a[2], '.') &&
2318 ((new->netmask.s_addr = inet_addr(a[2])) != (in_addr_t)-1))
2319 {
2320 new->flags |= CONTEXT_NETMASK;
2321 leasepos = 3;
2322 if (!is_same_net(new->start, new->end, new->netmask))
2323 problem = _("inconsistent DHCP range");
2324 }
2325
2326 if (k >= 4 && strchr(a[3], '.') &&
2327 ((new->broadcast.s_addr = inet_addr(a[3])) != (in_addr_t)-1))
2328 {
2329 new->flags |= CONTEXT_BRDCAST;
2330 leasepos = 4;
2331 }
Simon Kelley849a8352006-06-09 21:02:31 +01002332 }
Simon Kelley52b92f42012-01-22 16:05:15 +00002333#ifdef HAVE_DHCP6
2334 else if (inet_pton(AF_INET6, a[0], &new->start6))
Simon Kelley7622fc02009-06-04 20:32:05 +01002335 {
Simon Kelley52b92f42012-01-22 16:05:15 +00002336 new->prefix = 64; /* default */
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00002337
Simon Kelley52b92f42012-01-22 16:05:15 +00002338 if (strcmp(a[1], "static") == 0)
2339 {
Simon Kelley62779782012-02-10 21:19:25 +00002340 memcpy(&new->end6, &new->start6, IN6ADDRSZ);
Simon Kelley52b92f42012-01-22 16:05:15 +00002341 new->flags |= CONTEXT_STATIC;
2342 }
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00002343 else if (strcmp(a[1], "ra-only") == 0)
2344 {
2345 memcpy(&new->end6, &new->start6, IN6ADDRSZ);
2346 new->flags |= CONTEXT_RA_ONLY;
2347 }
Simon Kelley52b92f42012-01-22 16:05:15 +00002348 else if (!inet_pton(AF_INET6, a[1], &new->end6))
2349 option = '?';
2350
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00002351 if (new->flags & CONTEXT_RA_ONLY)
2352 {
2353 new->next = daemon->ra_contexts;
2354 daemon->ra_contexts = new;
2355 }
2356 else
2357 {
2358 new->next = daemon->dhcp6;
2359 daemon->dhcp6 = new;
2360 }
2361
Simon Kelley52b92f42012-01-22 16:05:15 +00002362 /* bare integer < 128 is prefix value */
2363 if (option != '?' && k >= 3)
2364 {
2365 int pref;
2366 for (cp = a[2]; *cp; cp++)
2367 if (!(*cp >= '0' && *cp <= '9'))
2368 break;
2369 if (!*cp && (pref = atoi(a[2])) <= 128)
2370 {
2371 new->prefix = pref;
2372 leasepos = 3;
Simon Kelley4cb1b322012-02-06 14:30:41 +00002373 if (new->prefix < 64)
2374 problem = _("prefix must be at least 64");
Simon Kelley52b92f42012-01-22 16:05:15 +00002375 }
2376 }
Simon Kelley62779782012-02-10 21:19:25 +00002377 if (!problem && !is_same_net6(&new->start6, &new->end6, new->prefix))
2378 problem = _("inconsistent DHCPv6 range");
2379 else if (addr6part(&new->start6) > addr6part(&new->end6))
Simon Kelley52b92f42012-01-22 16:05:15 +00002380 {
2381 struct in6_addr tmp = new->start6;
2382 new->start6 = new->end6;
2383 new->end6 = tmp;
2384 }
Simon Kelley849a8352006-06-09 21:02:31 +01002385 }
Simon Kelley52b92f42012-01-22 16:05:15 +00002386#endif
Simon Kelley849a8352006-06-09 21:02:31 +01002387
2388 if (k >= leasepos+1)
2389 {
2390 if (strcmp(a[leasepos], "infinite") == 0)
2391 new->lease_time = 0xffffffff;
2392 else
2393 {
2394 int fac = 1;
2395 if (strlen(a[leasepos]) > 0)
2396 {
2397 switch (a[leasepos][strlen(a[leasepos]) - 1])
2398 {
2399 case 'd':
2400 case 'D':
2401 fac *= 24;
2402 /* fall though */
2403 case 'h':
2404 case 'H':
2405 fac *= 60;
2406 /* fall through */
2407 case 'm':
2408 case 'M':
2409 fac *= 60;
2410 /* fall through */
2411 case 's':
2412 case 'S':
Simon Kelleyf2621c72007-04-29 19:47:21 +01002413 a[leasepos][strlen(a[leasepos]) - 1] = 0;
Simon Kelley849a8352006-06-09 21:02:31 +01002414 }
2415
2416 new->lease_time = atoi(a[leasepos]) * fac;
2417 /* Leases of a minute or less confuse
2418 some clients, notably Apple's */
2419 if (new->lease_time < 120)
2420 new->lease_time = 120;
2421 }
2422 }
2423 }
Simon Kelley0d5d35d2012-02-27 20:24:40 +00002424
2425#ifdef HAVE_DHCP6
2426 /* lifetimes must be min 2 hrs, by RFC 2462.
2427 This gets enforced in radv.c for DHCP ranges
2428 which are legitimately less. */
2429 if ((new->flags & CONTEXT_RA_ONLY) &&
2430 new->lease_time < 7200)
2431 new->lease_time = 7200;
2432#endif
2433
Simon Kelley849a8352006-06-09 21:02:31 +01002434 break;
2435 }
Simon Kelley5aabfc72007-08-29 11:24:47 +01002436
Simon Kelley5aabfc72007-08-29 11:24:47 +01002437 case LOPT_BANK:
Simon Kelleyf2621c72007-04-29 19:47:21 +01002438 case 'G': /* --dhcp-host */
Simon Kelley849a8352006-06-09 21:02:31 +01002439 {
Simon Kelleyf2621c72007-04-29 19:47:21 +01002440 int j, k = 0;
Simon Kelley849a8352006-06-09 21:02:31 +01002441 char *a[6] = { NULL, NULL, NULL, NULL, NULL, NULL };
Simon Kelley5aabfc72007-08-29 11:24:47 +01002442 struct dhcp_config *new;
Simon Kelley849a8352006-06-09 21:02:31 +01002443 struct in_addr in;
2444
Simon Kelley824af852008-02-12 20:43:05 +00002445 new = opt_malloc(sizeof(struct dhcp_config));
2446
Simon Kelley849a8352006-06-09 21:02:31 +01002447 new->next = daemon->dhcp_conf;
Simon Kelley9009d742008-11-14 20:04:27 +00002448 new->flags = (option == LOPT_BANK) ? CONFIG_BANK : 0;
2449 new->hwaddr = NULL;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002450 new->netid = NULL;
2451
Simon Kelley849a8352006-06-09 21:02:31 +01002452 if ((a[0] = arg))
2453 for (k = 1; k < 6; k++)
Simon Kelleyf2621c72007-04-29 19:47:21 +01002454 if (!(a[k] = split(a[k-1])))
2455 break;
Simon Kelley849a8352006-06-09 21:02:31 +01002456
2457 for (j = 0; j < k; j++)
2458 if (strchr(a[j], ':')) /* ethernet address, netid or binary CLID */
2459 {
2460 char *arg = a[j];
2461
2462 if ((arg[0] == 'i' || arg[0] == 'I') &&
2463 (arg[1] == 'd' || arg[1] == 'D') &&
2464 arg[2] == ':')
2465 {
2466 if (arg[3] == '*')
2467 new->flags |= CONFIG_NOCLID;
2468 else
2469 {
2470 int len;
2471 arg += 3; /* dump id: */
2472 if (strchr(arg, ':'))
2473 len = parse_hex(arg, (unsigned char *)arg, -1, NULL, NULL);
2474 else
Simon Kelley5aabfc72007-08-29 11:24:47 +01002475 {
2476 unhide_metas(arg);
2477 len = (int) strlen(arg);
2478 }
2479
Simon Kelley28866e92011-02-14 20:19:14 +00002480 if (len == -1)
2481 problem = _("bad hex constant");
2482 else if ((new->clid = opt_malloc(len)))
Simon Kelley5aabfc72007-08-29 11:24:47 +01002483 {
2484 new->flags |= CONFIG_CLID;
2485 new->clid_len = len;
2486 memcpy(new->clid, arg, len);
2487 }
Simon Kelley849a8352006-06-09 21:02:31 +01002488 }
2489 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002490 /* dhcp-host has strange backwards-compat needs. */
2491 else if (strstr(arg, "net:") == arg || strstr(arg, "set:") == arg)
Simon Kelley849a8352006-06-09 21:02:31 +01002492 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002493 struct dhcp_netid *newtag = opt_malloc(sizeof(struct dhcp_netid));
2494 struct dhcp_netid_list *newlist = opt_malloc(sizeof(struct dhcp_netid_list));
2495 newtag->net = opt_malloc(strlen(arg + 4) + 1);
2496 newlist->next = new->netid;
2497 new->netid = newlist;
2498 newlist->list = newtag;
2499 strcpy(newtag->net, arg+4);
2500 unhide_metas(newtag->net);
Simon Kelley849a8352006-06-09 21:02:31 +01002501 }
Simon Kelley7de060b2011-08-26 17:24:52 +01002502 else if (strstr(arg, "tag:") == arg)
2503 problem = _("cannot match tags in --dhcp-host");
Simon Kelley4cb1b322012-02-06 14:30:41 +00002504#ifdef HAVE_DHCP6
2505 else if (arg[0] == '[' && arg[strlen(arg)-1] == ']')
2506 {
2507 arg[strlen(arg)-1] = 0;
2508 arg++;
2509
2510 if (!inet_pton(AF_INET6, arg, &new->addr6))
2511 problem = _("bad IPv6 address");
2512
2513 new->flags |= CONFIG_ADDR6;
2514 }
2515#endif
Simon Kelley7de060b2011-08-26 17:24:52 +01002516 else
Simon Kelley849a8352006-06-09 21:02:31 +01002517 {
Simon Kelley9009d742008-11-14 20:04:27 +00002518 struct hwaddr_config *newhw = opt_malloc(sizeof(struct hwaddr_config));
Simon Kelley28866e92011-02-14 20:19:14 +00002519 if ((newhw->hwaddr_len = parse_hex(a[j], newhw->hwaddr, DHCP_CHADDR_MAX,
2520 &newhw->wildcard_mask, &newhw->hwaddr_type)) == -1)
2521 problem = _("bad hex constant");
2522 else
2523 {
2524
2525 newhw->next = new->hwaddr;
2526 new->hwaddr = newhw;
2527 }
Simon Kelley849a8352006-06-09 21:02:31 +01002528 }
2529 }
2530 else if (strchr(a[j], '.') && (in.s_addr = inet_addr(a[j])) != (in_addr_t)-1)
2531 {
2532 new->addr = in;
2533 new->flags |= CONFIG_ADDR;
2534 }
2535 else
2536 {
2537 char *cp, *lastp = NULL, last = 0;
2538 int fac = 1;
2539
2540 if (strlen(a[j]) > 1)
2541 {
2542 lastp = a[j] + strlen(a[j]) - 1;
2543 last = *lastp;
2544 switch (last)
2545 {
2546 case 'd':
2547 case 'D':
2548 fac *= 24;
2549 /* fall through */
2550 case 'h':
2551 case 'H':
2552 fac *= 60;
2553 /* fall through */
2554 case 'm':
2555 case 'M':
2556 fac *= 60;
2557 /* fall through */
2558 case 's':
2559 case 'S':
2560 *lastp = 0;
2561 }
2562 }
2563
2564 for (cp = a[j]; *cp; cp++)
Simon Kelley572b41e2011-02-18 18:11:18 +00002565 if (!isdigit((unsigned char)*cp) && *cp != ' ')
Simon Kelley849a8352006-06-09 21:02:31 +01002566 break;
2567
2568 if (*cp)
2569 {
2570 if (lastp)
2571 *lastp = last;
2572 if (strcmp(a[j], "infinite") == 0)
2573 {
2574 new->lease_time = 0xffffffff;
2575 new->flags |= CONFIG_TIME;
2576 }
2577 else if (strcmp(a[j], "ignore") == 0)
2578 new->flags |= CONFIG_DISABLE;
2579 else
2580 {
Simon Kelley1f15b812009-10-13 17:49:32 +01002581 if (!(new->hostname = canonicalise_opt(a[j])) ||
2582 !legal_hostname(new->hostname))
Simon Kelley824af852008-02-12 20:43:05 +00002583 problem = _("bad DHCP host name");
Simon Kelley1f15b812009-10-13 17:49:32 +01002584 else
2585 new->flags |= CONFIG_NAME;
2586 new->domain = NULL;
Simon Kelley849a8352006-06-09 21:02:31 +01002587 }
2588 }
2589 else
2590 {
2591 new->lease_time = atoi(a[j]) * fac;
2592 /* Leases of a minute or less confuse
2593 some clients, notably Apple's */
2594 if (new->lease_time < 120)
2595 new->lease_time = 120;
2596 new->flags |= CONFIG_TIME;
2597 }
2598 }
2599
Simon Kelley5aabfc72007-08-29 11:24:47 +01002600 daemon->dhcp_conf = new;
Simon Kelley849a8352006-06-09 21:02:31 +01002601 break;
2602 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002603
2604 case LOPT_TAG_IF: /* --tag-if */
2605 {
2606 struct tag_if *new = opt_malloc(sizeof(struct tag_if));
2607
2608 new->tag = NULL;
2609 new->set = NULL;
2610 new->next = NULL;
2611
2612 /* preserve order */
2613 if (!daemon->tag_if)
2614 daemon->tag_if = new;
2615 else
2616 {
2617 struct tag_if *tmp;
2618 for (tmp = daemon->tag_if; tmp->next; tmp = tmp->next);
2619 tmp->next = new;
2620 }
2621
2622 while (arg)
2623 {
2624 size_t len;
2625
2626 comma = split(arg);
2627 len = strlen(arg);
2628
2629 if (len < 5)
2630 {
2631 new->set = NULL;
2632 break;
2633 }
2634 else
2635 {
2636 struct dhcp_netid *newtag = opt_malloc(sizeof(struct dhcp_netid));
2637 newtag->net = opt_malloc(len - 3);
2638 strcpy(newtag->net, arg+4);
2639 unhide_metas(newtag->net);
2640
2641 if (strstr(arg, "set:") == arg)
2642 {
2643 struct dhcp_netid_list *newlist = opt_malloc(sizeof(struct dhcp_netid_list));
2644 newlist->next = new->set;
2645 new->set = newlist;
2646 newlist->list = newtag;
2647 }
2648 else if (strstr(arg, "tag:") == arg)
2649 {
2650 newtag->next = new->tag;
2651 new->tag = newtag;
2652 }
2653 else
2654 {
2655 new->set = NULL;
2656 break;
2657 }
2658 }
2659
2660 arg = comma;
2661 }
2662
2663 if (!new->set)
2664 problem = _("bad tag-if");
2665
2666 break;
2667 }
2668
Simon Kelley849a8352006-06-09 21:02:31 +01002669
Simon Kelley73a08a22009-02-05 20:28:08 +00002670 case 'O': /* --dhcp-option */
2671 case LOPT_FORCE: /* --dhcp-option-force */
Simon Kelley824af852008-02-12 20:43:05 +00002672 case LOPT_OPTS:
Simon Kelley73a08a22009-02-05 20:28:08 +00002673 case LOPT_MATCH: /* --dhcp-match */
Simon Kelley824af852008-02-12 20:43:05 +00002674 problem = parse_dhcp_opt(arg,
2675 option == LOPT_FORCE ? DHOPT_FORCE :
Simon Kelley73a08a22009-02-05 20:28:08 +00002676 (option == LOPT_MATCH ? DHOPT_MATCH :
2677 (option == LOPT_OPTS ? DHOPT_BANK : 0)));
Simon Kelley832af0b2007-01-21 20:01:28 +00002678 break;
Simon Kelley849a8352006-06-09 21:02:31 +01002679
Simon Kelleyf2621c72007-04-29 19:47:21 +01002680 case 'M': /* --dhcp-boot */
Simon Kelley849a8352006-06-09 21:02:31 +01002681 {
2682 struct dhcp_netid *id = NULL;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002683 while (is_tag_prefix(arg))
Simon Kelley849a8352006-06-09 21:02:31 +01002684 {
Simon Kelley824af852008-02-12 20:43:05 +00002685 struct dhcp_netid *newid = opt_malloc(sizeof(struct dhcp_netid));
Simon Kelley849a8352006-06-09 21:02:31 +01002686 newid->next = id;
2687 id = newid;
Simon Kelleyf2621c72007-04-29 19:47:21 +01002688 comma = split(arg);
Simon Kelley824af852008-02-12 20:43:05 +00002689 newid->net = opt_string_alloc(arg+4);
Simon Kelley849a8352006-06-09 21:02:31 +01002690 arg = comma;
2691 };
2692
2693 if (!arg)
2694 option = '?';
2695 else
2696 {
Simon Kelley7de060b2011-08-26 17:24:52 +01002697 char *dhcp_file, *dhcp_sname = NULL, *tftp_sname = NULL;
Simon Kelley849a8352006-06-09 21:02:31 +01002698 struct in_addr dhcp_next_server;
Simon Kelleyf2621c72007-04-29 19:47:21 +01002699 comma = split(arg);
Simon Kelley824af852008-02-12 20:43:05 +00002700 dhcp_file = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01002701 dhcp_next_server.s_addr = 0;
2702 if (comma)
2703 {
2704 arg = comma;
Simon Kelleyf2621c72007-04-29 19:47:21 +01002705 comma = split(arg);
Simon Kelley824af852008-02-12 20:43:05 +00002706 dhcp_sname = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01002707 if (comma)
2708 {
2709 unhide_metas(comma);
Simon Kelley7de060b2011-08-26 17:24:52 +01002710 if ((dhcp_next_server.s_addr = inet_addr(comma)) == (in_addr_t)-1) {
2711
2712 /*
2713 * The user may have specified the tftp hostname here.
2714 * save it so that it can be resolved/looked up during
2715 * actual dhcp_reply().
2716 */
2717
2718 tftp_sname = opt_string_alloc(comma);
2719 dhcp_next_server.s_addr = 0;
2720 }
Simon Kelley849a8352006-06-09 21:02:31 +01002721 }
2722 }
2723 if (option != '?')
2724 {
Simon Kelley824af852008-02-12 20:43:05 +00002725 struct dhcp_boot *new = opt_malloc(sizeof(struct dhcp_boot));
Simon Kelley849a8352006-06-09 21:02:31 +01002726 new->file = dhcp_file;
2727 new->sname = dhcp_sname;
Simon Kelley7de060b2011-08-26 17:24:52 +01002728 new->tftp_sname = tftp_sname;
Simon Kelley849a8352006-06-09 21:02:31 +01002729 new->next_server = dhcp_next_server;
2730 new->netid = id;
2731 new->next = daemon->boot_config;
2732 daemon->boot_config = new;
2733 }
2734 }
2735
Simon Kelley849a8352006-06-09 21:02:31 +01002736 break;
2737 }
Simon Kelley7622fc02009-06-04 20:32:05 +01002738
2739 case LOPT_PXE_PROMT: /* --pxe-prompt */
2740 {
2741 struct dhcp_opt *new = opt_malloc(sizeof(struct dhcp_opt));
2742 int timeout;
2743
2744 new->netid = NULL;
2745 new->opt = 10; /* PXE_MENU_PROMPT */
2746
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002747 while (is_tag_prefix(arg))
2748 {
Simon Kelley7622fc02009-06-04 20:32:05 +01002749 struct dhcp_netid *nn = opt_malloc(sizeof (struct dhcp_netid));
2750 comma = split(arg);
2751 nn->next = new->netid;
2752 new->netid = nn;
2753 nn->net = opt_string_alloc(arg+4);
2754 arg = comma;
2755 }
2756
2757 if (!arg)
2758 option = '?';
2759 else
2760 {
2761 comma = split(arg);
2762 unhide_metas(arg);
2763 new->len = strlen(arg) + 1;
2764 new->val = opt_malloc(new->len);
2765 memcpy(new->val + 1, arg, new->len - 1);
2766
2767 new->u.vendor_class = (unsigned char *)"PXEClient";
2768 new->flags = DHOPT_VENDOR;
2769
2770 if (comma && atoi_check(comma, &timeout))
2771 *(new->val) = timeout;
2772 else
2773 *(new->val) = 255;
2774
2775 new->next = daemon->dhcp_opts;
2776 daemon->dhcp_opts = new;
Simon Kelley1f15b812009-10-13 17:49:32 +01002777 daemon->enable_pxe = 1;
Simon Kelley7622fc02009-06-04 20:32:05 +01002778 }
2779
2780 break;
2781 }
2782
2783 case LOPT_PXE_SERV: /* --pxe-service */
2784 {
2785 struct pxe_service *new = opt_malloc(sizeof(struct pxe_service));
2786 char *CSA[] = { "x86PC", "PC98", "IA64_EFI", "Alpha", "Arc_x86", "Intel_Lean_Client",
2787 "IA32_EFI", "BC_EFI", "Xscale_EFI", "x86-64_EFI", NULL };
2788 static int boottype = 32768;
2789
2790 new->netid = NULL;
Simon Kelley751d6f42012-02-10 15:24:51 +00002791 new->sname = NULL;
Simon Kelley7622fc02009-06-04 20:32:05 +01002792 new->server.s_addr = 0;
2793
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002794 while (is_tag_prefix(arg))
Simon Kelley7622fc02009-06-04 20:32:05 +01002795 {
2796 struct dhcp_netid *nn = opt_malloc(sizeof (struct dhcp_netid));
2797 comma = split(arg);
2798 nn->next = new->netid;
2799 new->netid = nn;
2800 nn->net = opt_string_alloc(arg+4);
2801 arg = comma;
2802 }
2803
2804 if (arg && (comma = split(arg)))
2805 {
2806 for (i = 0; CSA[i]; i++)
2807 if (strcasecmp(CSA[i], arg) == 0)
2808 break;
2809
2810 if (CSA[i] || atoi_check(arg, &i))
2811 {
2812 arg = comma;
2813 comma = split(arg);
2814
2815 new->CSA = i;
2816 new->menu = opt_string_alloc(arg);
2817
Simon Kelley316e2732010-01-22 20:16:09 +00002818 if (!comma)
2819 {
2820 new->type = 0; /* local boot */
2821 new->basename = NULL;
2822 }
2823 else
Simon Kelley7622fc02009-06-04 20:32:05 +01002824 {
2825 arg = comma;
2826 comma = split(arg);
2827 if (atoi_check(arg, &i))
2828 {
2829 new->type = i;
2830 new->basename = NULL;
2831 }
2832 else
2833 {
2834 new->type = boottype++;
2835 new->basename = opt_string_alloc(arg);
2836 }
2837
Simon Kelley751d6f42012-02-10 15:24:51 +00002838 if (comma)
2839 {
2840 if (!inet_pton(AF_INET, comma, &new->server))
2841 {
2842 new->server.s_addr = 0;
2843 new->sname = opt_string_alloc(comma);
2844 }
2845
2846 }
Simon Kelley7622fc02009-06-04 20:32:05 +01002847 }
Simon Kelley751d6f42012-02-10 15:24:51 +00002848
Simon Kelley316e2732010-01-22 20:16:09 +00002849 /* Order matters */
2850 new->next = NULL;
2851 if (!daemon->pxe_services)
2852 daemon->pxe_services = new;
2853 else
2854 {
2855 struct pxe_service *s;
2856 for (s = daemon->pxe_services; s->next; s = s->next);
2857 s->next = new;
2858 }
2859
2860 daemon->enable_pxe = 1;
2861 break;
2862
Simon Kelley7622fc02009-06-04 20:32:05 +01002863 }
2864 }
2865
2866 option = '?';
2867 break;
2868 }
2869
Simon Kelleyf2621c72007-04-29 19:47:21 +01002870 case '4': /* --dhcp-mac */
Simon Kelley849a8352006-06-09 21:02:31 +01002871 {
Simon Kelleyf2621c72007-04-29 19:47:21 +01002872 if (!(comma = split(arg)))
Simon Kelley849a8352006-06-09 21:02:31 +01002873 option = '?';
2874 else
2875 {
Simon Kelley824af852008-02-12 20:43:05 +00002876 struct dhcp_mac *new = opt_malloc(sizeof(struct dhcp_mac));
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002877 new->netid.net = opt_string_alloc(set_prefix(arg));
Simon Kelleyf2621c72007-04-29 19:47:21 +01002878 unhide_metas(comma);
2879 new->hwaddr_len = parse_hex(comma, new->hwaddr, DHCP_CHADDR_MAX, &new->mask, &new->hwaddr_type);
Simon Kelley28866e92011-02-14 20:19:14 +00002880 if (new->hwaddr_len == -1)
2881 option = '?';
2882 else
2883 {
2884 new->next = daemon->dhcp_macs;
2885 daemon->dhcp_macs = new;
2886 }
Simon Kelley849a8352006-06-09 21:02:31 +01002887 }
2888 }
2889 break;
2890
Simon Kelleyf2621c72007-04-29 19:47:21 +01002891 case 'U': /* --dhcp-vendorclass */
2892 case 'j': /* --dhcp-userclass */
2893 case LOPT_CIRCUIT: /* --dhcp-circuitid */
2894 case LOPT_REMOTE: /* --dhcp-remoteid */
2895 case LOPT_SUBSCR: /* --dhcp-subscrid */
Simon Kelley849a8352006-06-09 21:02:31 +01002896 {
Simon Kelleyf2621c72007-04-29 19:47:21 +01002897 if (!(comma = split(arg)))
Simon Kelley849a8352006-06-09 21:02:31 +01002898 option = '?';
2899 else
2900 {
Simon Kelley572b41e2011-02-18 18:11:18 +00002901 unsigned char *p;
Simon Kelleyf2621c72007-04-29 19:47:21 +01002902 int dig = 0;
Simon Kelley824af852008-02-12 20:43:05 +00002903 struct dhcp_vendor *new = opt_malloc(sizeof(struct dhcp_vendor));
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002904 new->netid.net = opt_string_alloc(set_prefix(arg));
Simon Kelleyf2621c72007-04-29 19:47:21 +01002905 /* check for hex string - must digits may include : must not have nothing else,
2906 only allowed for agent-options. */
Simon Kelleya5c72ab2012-02-10 13:42:47 +00002907
2908 arg = comma;
2909 if ((comma = split(arg)))
2910 {
2911 if (option != 'U' || strstr(arg, "enterprise:") != arg)
2912 option = '?';
2913 else
2914 new->enterprise = atoi(arg+11);
2915 }
2916 else
2917 comma = arg;
2918
Simon Kelley572b41e2011-02-18 18:11:18 +00002919 for (p = (unsigned char *)comma; *p; p++)
2920 if (isxdigit(*p))
Simon Kelleyf2621c72007-04-29 19:47:21 +01002921 dig = 1;
2922 else if (*p != ':')
2923 break;
2924 unhide_metas(comma);
Simon Kelley73a08a22009-02-05 20:28:08 +00002925 if (option == 'U' || option == 'j' || *p || !dig)
Simon Kelley824af852008-02-12 20:43:05 +00002926 {
2927 new->len = strlen(comma);
2928 new->data = opt_malloc(new->len);
2929 memcpy(new->data, comma, new->len);
2930 }
Simon Kelleyf2621c72007-04-29 19:47:21 +01002931 else
Simon Kelley824af852008-02-12 20:43:05 +00002932 {
2933 new->len = parse_hex(comma, (unsigned char *)comma, strlen(comma), NULL, NULL);
2934 new->data = opt_malloc(new->len);
2935 memcpy(new->data, comma, new->len);
2936 }
2937
Simon Kelleyf2621c72007-04-29 19:47:21 +01002938 switch (option)
2939 {
2940 case 'j':
2941 new->match_type = MATCH_USER;
2942 break;
2943 case 'U':
2944 new->match_type = MATCH_VENDOR;
2945 break;
2946 case LOPT_CIRCUIT:
2947 new->match_type = MATCH_CIRCUIT;
2948 break;
2949 case LOPT_REMOTE:
2950 new->match_type = MATCH_REMOTE;
2951 break;
2952 case LOPT_SUBSCR:
2953 new->match_type = MATCH_SUBSCRIBER;
2954 break;
2955 }
Simon Kelley849a8352006-06-09 21:02:31 +01002956 new->next = daemon->dhcp_vendors;
2957 daemon->dhcp_vendors = new;
2958 }
2959 break;
2960 }
2961
Simon Kelley9e038942008-05-30 20:06:34 +01002962 case LOPT_ALTPORT: /* --dhcp-alternate-port */
2963 if (!arg)
2964 {
2965 daemon->dhcp_server_port = DHCP_SERVER_ALTPORT;
2966 daemon->dhcp_client_port = DHCP_CLIENT_ALTPORT;
2967 }
2968 else
2969 {
2970 comma = split(arg);
Simon Kelley1ad24ae2008-07-20 20:22:50 +01002971 if (!atoi_check16(arg, &daemon->dhcp_server_port) ||
2972 (comma && !atoi_check16(comma, &daemon->dhcp_client_port)))
Simon Kelley9e038942008-05-30 20:06:34 +01002973 problem = _("invalid port number");
2974 if (!comma)
2975 daemon->dhcp_client_port = daemon->dhcp_server_port+1;
2976 }
2977 break;
2978
Simon Kelley824af852008-02-12 20:43:05 +00002979 case 'J': /* --dhcp-ignore */
2980 case LOPT_NO_NAMES: /* --dhcp-ignore-names */
2981 case LOPT_BROADCAST: /* --dhcp-broadcast */
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002982 case '3': /* --bootp-dynamic */
2983 case LOPT_GEN_NAMES: /* --dhcp-generate-names */
Simon Kelley849a8352006-06-09 21:02:31 +01002984 {
Simon Kelley824af852008-02-12 20:43:05 +00002985 struct dhcp_netid_list *new = opt_malloc(sizeof(struct dhcp_netid_list));
Simon Kelley849a8352006-06-09 21:02:31 +01002986 struct dhcp_netid *list = NULL;
Simon Kelley832af0b2007-01-21 20:01:28 +00002987 if (option == 'J')
2988 {
2989 new->next = daemon->dhcp_ignore;
2990 daemon->dhcp_ignore = new;
2991 }
Simon Kelley824af852008-02-12 20:43:05 +00002992 else if (option == LOPT_BROADCAST)
2993 {
2994 new->next = daemon->force_broadcast;
2995 daemon->force_broadcast = new;
2996 }
Simon Kelley9009d742008-11-14 20:04:27 +00002997 else if (option == '3')
2998 {
2999 new->next = daemon->bootp_dynamic;
3000 daemon->bootp_dynamic = new;
3001 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003002 else if (option == LOPT_GEN_NAMES)
3003 {
3004 new->next = daemon->dhcp_gen_names;
3005 daemon->dhcp_gen_names = new;
3006 }
Simon Kelley832af0b2007-01-21 20:01:28 +00003007 else
3008 {
3009 new->next = daemon->dhcp_ignore_names;
3010 daemon->dhcp_ignore_names = new;
3011 }
3012
3013 while (arg) {
Simon Kelley824af852008-02-12 20:43:05 +00003014 struct dhcp_netid *member = opt_malloc(sizeof(struct dhcp_netid));
Simon Kelleyf2621c72007-04-29 19:47:21 +01003015 comma = split(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01003016 member->next = list;
3017 list = member;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003018 if (is_tag_prefix(arg))
Simon Kelley9009d742008-11-14 20:04:27 +00003019 member->net = opt_string_alloc(arg+4);
3020 else
3021 member->net = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01003022 arg = comma;
Simon Kelley832af0b2007-01-21 20:01:28 +00003023 }
Simon Kelley849a8352006-06-09 21:02:31 +01003024
3025 new->list = list;
3026 break;
3027 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003028
3029 case LOPT_PROXY: /* --dhcp-proxy */
3030 daemon->override = 1;
3031 while (arg) {
3032 struct addr_list *new = opt_malloc(sizeof(struct addr_list));
3033 comma = split(arg);
3034 if ((new->addr.s_addr = inet_addr(arg)) == (in_addr_t)-1)
3035 problem = _("bad dhcp-proxy address");
3036 new->next = daemon->override_relays;
3037 daemon->override_relays = new;
3038 arg = comma;
3039 }
3040 break;
Simon Kelley7622fc02009-06-04 20:32:05 +01003041#endif
Simon Kelley849a8352006-06-09 21:02:31 +01003042
Simon Kelleyf2621c72007-04-29 19:47:21 +01003043 case 'V': /* --alias */
Simon Kelley849a8352006-06-09 21:02:31 +01003044 {
Simon Kelley73a08a22009-02-05 20:28:08 +00003045 char *dash, *a[3] = { NULL, NULL, NULL };
Simon Kelleyf2621c72007-04-29 19:47:21 +01003046 int k = 0;
Simon Kelley73a08a22009-02-05 20:28:08 +00003047 struct doctor *new = opt_malloc(sizeof(struct doctor));
3048 new->next = daemon->doctors;
3049 daemon->doctors = new;
3050 new->mask.s_addr = 0xffffffff;
3051 new->end.s_addr = 0;
3052
Simon Kelley849a8352006-06-09 21:02:31 +01003053 if ((a[0] = arg))
3054 for (k = 1; k < 3; k++)
3055 {
Simon Kelleyf2621c72007-04-29 19:47:21 +01003056 if (!(a[k] = split(a[k-1])))
Simon Kelley849a8352006-06-09 21:02:31 +01003057 break;
Simon Kelley849a8352006-06-09 21:02:31 +01003058 unhide_metas(a[k]);
3059 }
Simon Kelley849a8352006-06-09 21:02:31 +01003060
Simon Kelley73a08a22009-02-05 20:28:08 +00003061 dash = split_chr(a[0], '-');
3062
Simon Kelley849a8352006-06-09 21:02:31 +01003063 if ((k < 2) ||
Simon Kelley73a08a22009-02-05 20:28:08 +00003064 ((new->in.s_addr = inet_addr(a[0])) == (in_addr_t)-1) ||
3065 ((new->out.s_addr = inet_addr(a[1])) == (in_addr_t)-1))
3066 option = '?';
Simon Kelley849a8352006-06-09 21:02:31 +01003067
3068 if (k == 3)
Simon Kelley73a08a22009-02-05 20:28:08 +00003069 new->mask.s_addr = inet_addr(a[2]);
Simon Kelley849a8352006-06-09 21:02:31 +01003070
Simon Kelley73a08a22009-02-05 20:28:08 +00003071 if (dash &&
3072 ((new->end.s_addr = inet_addr(dash)) == (in_addr_t)-1 ||
3073 !is_same_net(new->in, new->end, new->mask) ||
3074 ntohl(new->in.s_addr) > ntohl(new->end.s_addr)))
3075 problem = _("invalid alias range");
Simon Kelley849a8352006-06-09 21:02:31 +01003076
3077 break;
3078 }
3079
Simon Kelleyf2621c72007-04-29 19:47:21 +01003080 case LOPT_INTNAME: /* --interface-name */
3081 {
3082 struct interface_name *new, **up;
Simon Kelley1f15b812009-10-13 17:49:32 +01003083 char *domain = NULL;
3084
Simon Kelleyf2621c72007-04-29 19:47:21 +01003085 comma = split(arg);
3086
Simon Kelley1f15b812009-10-13 17:49:32 +01003087 if (!comma || !(domain = canonicalise_opt(arg)))
Simon Kelley824af852008-02-12 20:43:05 +00003088 problem = _("bad interface name");
Simon Kelley1f15b812009-10-13 17:49:32 +01003089
Simon Kelley824af852008-02-12 20:43:05 +00003090 new = opt_malloc(sizeof(struct interface_name));
Simon Kelleyf2621c72007-04-29 19:47:21 +01003091 new->next = NULL;
3092 /* Add to the end of the list, so that first name
3093 of an interface is used for PTR lookups. */
Simon Kelley824af852008-02-12 20:43:05 +00003094 for (up = &daemon->int_names; *up; up = &((*up)->next));
Simon Kelleyf2621c72007-04-29 19:47:21 +01003095 *up = new;
Simon Kelley1f15b812009-10-13 17:49:32 +01003096 new->name = domain;
Simon Kelley824af852008-02-12 20:43:05 +00003097 new->intr = opt_string_alloc(comma);
Simon Kelleyf2621c72007-04-29 19:47:21 +01003098 break;
3099 }
Simon Kelley9009d742008-11-14 20:04:27 +00003100
3101 case LOPT_CNAME: /* --cname */
3102 {
3103 struct cname *new;
3104
3105 if (!(comma = split(arg)))
3106 option = '?';
3107 else
3108 {
Simon Kelley1f15b812009-10-13 17:49:32 +01003109 char *alias = canonicalise_opt(arg);
3110 char *target = canonicalise_opt(comma);
3111
3112 if (!alias || !target)
3113 problem = _("bad CNAME");
3114 else
3115 {
3116 for (new = daemon->cnames; new; new = new->next)
3117 if (hostname_isequal(new->alias, arg))
3118 problem = _("duplicate CNAME");
3119 new = opt_malloc(sizeof(struct cname));
3120 new->next = daemon->cnames;
3121 daemon->cnames = new;
3122 new->alias = alias;
3123 new->target = target;
3124 }
Simon Kelley9009d742008-11-14 20:04:27 +00003125 }
3126 break;
3127 }
Simon Kelleyf2621c72007-04-29 19:47:21 +01003128
3129 case LOPT_PTR: /* --ptr-record */
Simon Kelley832af0b2007-01-21 20:01:28 +00003130 {
3131 struct ptr_record *new;
Simon Kelley1f15b812009-10-13 17:49:32 +01003132 char *dom, *target = NULL;
3133
Simon Kelleyf2621c72007-04-29 19:47:21 +01003134 comma = split(arg);
3135
Simon Kelley1f15b812009-10-13 17:49:32 +01003136 if (!(dom = canonicalise_opt(arg)) ||
3137 (comma && !(target = canonicalise_opt(comma))))
Simon Kelley824af852008-02-12 20:43:05 +00003138 problem = _("bad PTR record");
Simon Kelley1f15b812009-10-13 17:49:32 +01003139 else
3140 {
3141 new = opt_malloc(sizeof(struct ptr_record));
3142 new->next = daemon->ptr;
3143 daemon->ptr = new;
3144 new->name = dom;
3145 new->ptr = target;
3146 }
Simon Kelley832af0b2007-01-21 20:01:28 +00003147 break;
3148 }
3149
Simon Kelley1a6bca82008-07-11 11:11:42 +01003150 case LOPT_NAPTR: /* --naptr-record */
3151 {
3152 char *a[7] = { NULL, NULL, NULL, NULL, NULL, NULL, NULL };
3153 int k = 0;
3154 struct naptr *new;
3155 int order, pref;
Simon Kelley1f15b812009-10-13 17:49:32 +01003156 char *name, *replace = NULL;
Simon Kelley1a6bca82008-07-11 11:11:42 +01003157
3158 if ((a[0] = arg))
3159 for (k = 1; k < 7; k++)
3160 if (!(a[k] = split(a[k-1])))
3161 break;
3162
3163
3164 if (k < 6 ||
Simon Kelley1f15b812009-10-13 17:49:32 +01003165 !(name = canonicalise_opt(a[0])) ||
Simon Kelley1ad24ae2008-07-20 20:22:50 +01003166 !atoi_check16(a[1], &order) ||
3167 !atoi_check16(a[2], &pref) ||
Simon Kelley1f15b812009-10-13 17:49:32 +01003168 (k == 7 && !(replace = canonicalise_opt(a[6]))))
Simon Kelley1a6bca82008-07-11 11:11:42 +01003169 problem = _("bad NAPTR record");
3170 else
3171 {
3172 new = opt_malloc(sizeof(struct naptr));
3173 new->next = daemon->naptr;
3174 daemon->naptr = new;
Simon Kelley1f15b812009-10-13 17:49:32 +01003175 new->name = name;
Simon Kelley1a6bca82008-07-11 11:11:42 +01003176 new->flags = opt_string_alloc(a[3]);
3177 new->services = opt_string_alloc(a[4]);
3178 new->regexp = opt_string_alloc(a[5]);
Simon Kelley1f15b812009-10-13 17:49:32 +01003179 new->replace = replace;
Simon Kelley1a6bca82008-07-11 11:11:42 +01003180 new->order = order;
3181 new->pref = pref;
3182 }
3183 break;
3184 }
3185
Simon Kelleyf2621c72007-04-29 19:47:21 +01003186 case 'Y': /* --txt-record */
Simon Kelley849a8352006-06-09 21:02:31 +01003187 {
3188 struct txt_record *new;
Simon Kelley28866e92011-02-14 20:19:14 +00003189 unsigned char *p, *cnt;
3190 size_t len;
3191
3192 comma = split(arg);
3193
Simon Kelley824af852008-02-12 20:43:05 +00003194 new = opt_malloc(sizeof(struct txt_record));
Simon Kelley849a8352006-06-09 21:02:31 +01003195 new->next = daemon->txt;
3196 daemon->txt = new;
3197 new->class = C_IN;
Simon Kelley849a8352006-06-09 21:02:31 +01003198
Simon Kelley1f15b812009-10-13 17:49:32 +01003199 if (!(new->name = canonicalise_opt(arg)))
3200 {
3201 problem = _("bad TXT record");
3202 break;
3203 }
3204
Simon Kelley28866e92011-02-14 20:19:14 +00003205 len = comma ? strlen(comma) : 0;
3206 len += (len/255) + 1; /* room for extra counts */
3207 new->txt = p = opt_malloc(len);
3208
3209 cnt = p++;
3210 *cnt = 0;
3211
3212 while (comma && *comma)
3213 {
3214 unsigned char c = (unsigned char)*comma++;
3215
3216 if (c == ',' || *cnt == 255)
3217 {
3218 if (c != ',')
3219 comma--;
3220 cnt = p++;
3221 *cnt = 0;
3222 }
3223 else
3224 {
3225 *p++ = unhide_meta(c);
3226 (*cnt)++;
3227 }
3228 }
3229
3230 new->len = p - new->txt;
3231
Simon Kelley849a8352006-06-09 21:02:31 +01003232 break;
3233 }
3234
Simon Kelleyf2621c72007-04-29 19:47:21 +01003235 case 'W': /* --srv-host */
Simon Kelley849a8352006-06-09 21:02:31 +01003236 {
3237 int port = 1, priority = 0, weight = 0;
3238 char *name, *target = NULL;
3239 struct mx_srv_record *new;
3240
Simon Kelleyf2621c72007-04-29 19:47:21 +01003241 comma = split(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01003242
Simon Kelley1f15b812009-10-13 17:49:32 +01003243 if (!(name = canonicalise_opt(arg)))
Simon Kelley824af852008-02-12 20:43:05 +00003244 problem = _("bad SRV record");
3245
Simon Kelley849a8352006-06-09 21:02:31 +01003246 if (comma)
3247 {
3248 arg = comma;
Simon Kelleyf2621c72007-04-29 19:47:21 +01003249 comma = split(arg);
Simon Kelley1f15b812009-10-13 17:49:32 +01003250 if (!(target = canonicalise_opt(arg))
3251) problem = _("bad SRV target");
Simon Kelley824af852008-02-12 20:43:05 +00003252
Simon Kelley849a8352006-06-09 21:02:31 +01003253 if (comma)
3254 {
3255 arg = comma;
Simon Kelleyf2621c72007-04-29 19:47:21 +01003256 comma = split(arg);
Simon Kelley1ad24ae2008-07-20 20:22:50 +01003257 if (!atoi_check16(arg, &port))
Simon Kelley824af852008-02-12 20:43:05 +00003258 problem = _("invalid port number");
3259
Simon Kelley849a8352006-06-09 21:02:31 +01003260 if (comma)
3261 {
3262 arg = comma;
Simon Kelleyf2621c72007-04-29 19:47:21 +01003263 comma = split(arg);
Simon Kelley1ad24ae2008-07-20 20:22:50 +01003264 if (!atoi_check16(arg, &priority))
Simon Kelley824af852008-02-12 20:43:05 +00003265 problem = _("invalid priority");
3266
Simon Kelley849a8352006-06-09 21:02:31 +01003267 if (comma)
3268 {
3269 arg = comma;
Simon Kelleyf2621c72007-04-29 19:47:21 +01003270 comma = split(arg);
Simon Kelley1ad24ae2008-07-20 20:22:50 +01003271 if (!atoi_check16(arg, &weight))
Simon Kelley824af852008-02-12 20:43:05 +00003272 problem = _("invalid weight");
Simon Kelley849a8352006-06-09 21:02:31 +01003273 }
3274 }
3275 }
3276 }
3277
Simon Kelley824af852008-02-12 20:43:05 +00003278 new = opt_malloc(sizeof(struct mx_srv_record));
Simon Kelley849a8352006-06-09 21:02:31 +01003279 new->next = daemon->mxnames;
3280 daemon->mxnames = new;
3281 new->issrv = 1;
3282 new->name = name;
3283 new->target = target;
3284 new->srvport = port;
3285 new->priority = priority;
3286 new->weight = weight;
3287 break;
3288 }
Simon Kelley7622fc02009-06-04 20:32:05 +01003289
3290 default:
3291 return _("unsupported option (check that dnsmasq was compiled with DHCP/TFTP/DBus support)");
3292
Simon Kelley849a8352006-06-09 21:02:31 +01003293 }
3294
Simon Kelley824af852008-02-12 20:43:05 +00003295 if (problem)
3296 return problem;
3297
3298 if (option == '?')
3299 return gen_prob;
3300
3301 return NULL;
Simon Kelley849a8352006-06-09 21:02:31 +01003302}
3303
Simon Kelley28866e92011-02-14 20:19:14 +00003304static void read_file(char *file, FILE *f, int hard_opt)
Simon Kelley849a8352006-06-09 21:02:31 +01003305{
Simon Kelley824af852008-02-12 20:43:05 +00003306 volatile int lineno = 0;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003307 char *buff = daemon->namebuff;
Simon Kelley849a8352006-06-09 21:02:31 +01003308
3309 while (fgets(buff, MAXDNAME, f))
3310 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003311 int white, i, option; ;
3312 char *errmess, *p, *arg, *start;
3313 size_t len;
Simon Kelley832af0b2007-01-21 20:01:28 +00003314
Simon Kelley824af852008-02-12 20:43:05 +00003315 /* Memory allocation failure longjmps here if mem_recover == 1 */
3316 if (hard_opt)
3317 {
3318 if (setjmp(mem_jmp))
3319 continue;
3320 mem_recover = 1;
3321 }
3322
Simon Kelley849a8352006-06-09 21:02:31 +01003323 lineno++;
Simon Kelley824af852008-02-12 20:43:05 +00003324 errmess = NULL;
3325
Simon Kelley849a8352006-06-09 21:02:31 +01003326 /* Implement quotes, inside quotes we allow \\ \" \n and \t
3327 metacharacters get hidden also strip comments */
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003328 for (white = 1, p = buff; *p; p++)
Simon Kelley849a8352006-06-09 21:02:31 +01003329 {
3330 if (*p == '"')
3331 {
3332 memmove(p, p+1, strlen(p+1)+1);
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003333
Simon Kelley849a8352006-06-09 21:02:31 +01003334 for(; *p && *p != '"'; p++)
3335 {
Simon Kelley5aabfc72007-08-29 11:24:47 +01003336 if (*p == '\\' && strchr("\"tnebr\\", p[1]))
Simon Kelley849a8352006-06-09 21:02:31 +01003337 {
3338 if (p[1] == 't')
3339 p[1] = '\t';
3340 else if (p[1] == 'n')
3341 p[1] = '\n';
Simon Kelley849a8352006-06-09 21:02:31 +01003342 else if (p[1] == 'b')
3343 p[1] = '\b';
3344 else if (p[1] == 'r')
3345 p[1] = '\r';
Simon Kelley6b010842007-02-12 20:32:07 +00003346 else if (p[1] == 'e') /* escape */
3347 p[1] = '\033';
Simon Kelley849a8352006-06-09 21:02:31 +01003348 memmove(p, p+1, strlen(p+1)+1);
3349 }
3350 *p = hide_meta(*p);
3351 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003352
3353 if (*p == 0)
Simon Kelleyf2621c72007-04-29 19:47:21 +01003354 {
3355 errmess = _("missing \"");
3356 goto oops;
3357 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003358
3359 memmove(p, p+1, strlen(p+1)+1);
Simon Kelley849a8352006-06-09 21:02:31 +01003360 }
Simon Kelleyf2621c72007-04-29 19:47:21 +01003361
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003362 if (isspace(*p))
3363 {
3364 *p = ' ';
3365 white = 1;
Simon Kelley849a8352006-06-09 21:02:31 +01003366 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003367 else
3368 {
3369 if (white && *p == '#')
3370 {
3371 *p = 0;
3372 break;
3373 }
3374 white = 0;
3375 }
Simon Kelley849a8352006-06-09 21:02:31 +01003376 }
3377
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003378
3379 /* strip leading spaces */
3380 for (start = buff; *start && *start == ' '; start++);
3381
3382 /* strip trailing spaces */
3383 for (len = strlen(start); (len != 0) && (start[len-1] == ' '); len--);
3384
3385 if (len == 0)
Simon Kelley849a8352006-06-09 21:02:31 +01003386 continue;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003387 else
3388 start[len] = 0;
3389
Simon Kelley824af852008-02-12 20:43:05 +00003390 if (hard_opt != 0)
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003391 arg = start;
3392 else if ((p=strchr(start, '=')))
Simon Kelley849a8352006-06-09 21:02:31 +01003393 {
3394 /* allow spaces around "=" */
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003395 for (arg = p+1; *arg == ' '; arg++);
3396 for (; p >= start && (*p == ' ' || *p == '='); p--)
Simon Kelley849a8352006-06-09 21:02:31 +01003397 *p = 0;
3398 }
3399 else
3400 arg = NULL;
Simon Kelley832af0b2007-01-21 20:01:28 +00003401
Simon Kelley824af852008-02-12 20:43:05 +00003402 if (hard_opt != 0)
3403 option = hard_opt;
Simon Kelley849a8352006-06-09 21:02:31 +01003404 else
Simon Kelley5aabfc72007-08-29 11:24:47 +01003405 {
Simon Kelley5aabfc72007-08-29 11:24:47 +01003406 for (option = 0, i = 0; opts[i].name; i++)
3407 if (strcmp(opts[i].name, start) == 0)
3408 {
3409 option = opts[i].val;
3410 break;
3411 }
3412
3413 if (!option)
3414 errmess = _("bad option");
3415 else if (opts[i].has_arg == 0 && arg)
3416 errmess = _("extraneous parameter");
3417 else if (opts[i].has_arg == 1 && !arg)
3418 errmess = _("missing parameter");
3419 }
Simon Kelley824af852008-02-12 20:43:05 +00003420
Simon Kelley5aabfc72007-08-29 11:24:47 +01003421 if (!errmess)
Simon Kelley28866e92011-02-14 20:19:14 +00003422 errmess = one_opt(option, arg, _("error"), 0);
Simon Kelley832af0b2007-01-21 20:01:28 +00003423
3424 if (errmess)
Simon Kelleyf2621c72007-04-29 19:47:21 +01003425 {
3426 oops:
3427 sprintf(buff, _("%s at line %d of %%s"), errmess, lineno);
Simon Kelley824af852008-02-12 20:43:05 +00003428 if (hard_opt != 0)
Simon Kelley5aabfc72007-08-29 11:24:47 +01003429 my_syslog(LOG_ERR, buff, file);
3430 else
3431 die(buff, file, EC_BADCONF);
Simon Kelleyf2621c72007-04-29 19:47:21 +01003432 }
Simon Kelley849a8352006-06-09 21:02:31 +01003433 }
3434
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003435 mem_recover = 0;
Simon Kelley849a8352006-06-09 21:02:31 +01003436 fclose(f);
3437}
3438
Simon Kelley28866e92011-02-14 20:19:14 +00003439static void one_file(char *file, int hard_opt)
3440{
3441 FILE *f;
3442 int nofile_ok = 0;
3443 static int read_stdin = 0;
3444 static struct fileread {
3445 dev_t dev;
3446 ino_t ino;
3447 struct fileread *next;
3448 } *filesread = NULL;
3449
3450 if (hard_opt == '7')
3451 {
3452 /* default conf-file reading */
3453 hard_opt = 0;
3454 nofile_ok = 1;
3455 }
3456
3457 if (hard_opt == 0 && strcmp(file, "-") == 0)
3458 {
3459 if (read_stdin == 1)
3460 return;
3461 read_stdin = 1;
3462 file = "stdin";
3463 f = stdin;
3464 }
3465 else
3466 {
3467 /* ignore repeated files. */
3468 struct stat statbuf;
3469
3470 if (hard_opt == 0 && stat(file, &statbuf) == 0)
3471 {
3472 struct fileread *r;
3473
3474 for (r = filesread; r; r = r->next)
3475 if (r->dev == statbuf.st_dev && r->ino == statbuf.st_ino)
3476 return;
3477
3478 r = safe_malloc(sizeof(struct fileread));
3479 r->next = filesread;
3480 filesread = r;
3481 r->dev = statbuf.st_dev;
3482 r->ino = statbuf.st_ino;
3483 }
3484
3485 if (!(f = fopen(file, "r")))
3486 {
3487 if (errno == ENOENT && nofile_ok)
3488 return; /* No conffile, all done. */
3489 else
3490 {
3491 char *str = _("cannot read %s: %s");
3492 if (hard_opt != 0)
3493 {
3494 my_syslog(LOG_ERR, str, file, strerror(errno));
3495 return;
3496 }
3497 else
3498 die(str, file, EC_FILE);
3499 }
3500 }
3501 }
3502
3503 read_file(file, f, hard_opt);
3504}
3505
3506/* expand any name which is a directory */
3507struct hostsfile *expand_filelist(struct hostsfile *list)
3508{
3509 int i;
3510 struct hostsfile *ah;
3511
3512 for (i = 0, ah = list; ah; ah = ah->next)
3513 {
3514 if (i <= ah->index)
3515 i = ah->index + 1;
3516
3517 if (ah->flags & AH_DIR)
3518 ah->flags |= AH_INACTIVE;
3519 else
3520 ah->flags &= ~AH_INACTIVE;
3521 }
3522
3523 for (ah = list; ah; ah = ah->next)
3524 if (!(ah->flags & AH_INACTIVE))
3525 {
3526 struct stat buf;
3527 if (stat(ah->fname, &buf) != -1 && S_ISDIR(buf.st_mode))
3528 {
3529 DIR *dir_stream;
3530 struct dirent *ent;
3531
3532 /* don't read this as a file */
3533 ah->flags |= AH_INACTIVE;
3534
3535 if (!(dir_stream = opendir(ah->fname)))
3536 my_syslog(LOG_ERR, _("cannot access directory %s: %s"),
3537 ah->fname, strerror(errno));
3538 else
3539 {
3540 while ((ent = readdir(dir_stream)))
3541 {
3542 size_t lendir = strlen(ah->fname);
3543 size_t lenfile = strlen(ent->d_name);
3544 struct hostsfile *ah1;
3545 char *path;
3546
3547 /* ignore emacs backups and dotfiles */
3548 if (lenfile == 0 ||
3549 ent->d_name[lenfile - 1] == '~' ||
3550 (ent->d_name[0] == '#' && ent->d_name[lenfile - 1] == '#') ||
3551 ent->d_name[0] == '.')
3552 continue;
3553
3554 /* see if we have an existing record.
3555 dir is ah->fname
3556 file is ent->d_name
3557 path to match is ah1->fname */
3558
3559 for (ah1 = list; ah1; ah1 = ah1->next)
3560 {
3561 if (lendir < strlen(ah1->fname) &&
3562 strstr(ah1->fname, ah->fname) == ah1->fname &&
3563 ah1->fname[lendir] == '/' &&
3564 strcmp(ah1->fname + lendir + 1, ent->d_name) == 0)
3565 {
3566 ah1->flags &= ~AH_INACTIVE;
3567 break;
3568 }
3569 }
3570
3571 /* make new record */
3572 if (!ah1)
3573 {
3574 if (!(ah1 = whine_malloc(sizeof(struct hostsfile))))
3575 continue;
3576
3577 if (!(path = whine_malloc(lendir + lenfile + 2)))
3578 {
3579 free(ah1);
3580 continue;
3581 }
3582
3583 strcpy(path, ah->fname);
3584 strcat(path, "/");
3585 strcat(path, ent->d_name);
3586 ah1->fname = path;
3587 ah1->index = i++;
3588 ah1->flags = AH_DIR;
3589 ah1->next = list;
3590 list = ah1;
3591 }
3592
3593 /* inactivate record if not regular file */
3594 if ((ah1->flags & AH_DIR) && stat(ah1->fname, &buf) != -1 && !S_ISREG(buf.st_mode))
3595 ah1->flags |= AH_INACTIVE;
3596
3597 }
3598 closedir(dir_stream);
3599 }
3600 }
3601 }
3602
3603 return list;
3604}
3605
3606
Simon Kelley7622fc02009-06-04 20:32:05 +01003607#ifdef HAVE_DHCP
Simon Kelley824af852008-02-12 20:43:05 +00003608void reread_dhcp(void)
3609{
Simon Kelley28866e92011-02-14 20:19:14 +00003610 struct hostsfile *hf;
3611
Simon Kelley824af852008-02-12 20:43:05 +00003612 if (daemon->dhcp_hosts_file)
3613 {
3614 struct dhcp_config *configs, *cp, **up;
Simon Kelley28866e92011-02-14 20:19:14 +00003615
Simon Kelley824af852008-02-12 20:43:05 +00003616 /* remove existing... */
3617 for (up = &daemon->dhcp_conf, configs = daemon->dhcp_conf; configs; configs = cp)
3618 {
3619 cp = configs->next;
3620
3621 if (configs->flags & CONFIG_BANK)
3622 {
Simon Kelley9009d742008-11-14 20:04:27 +00003623 struct hwaddr_config *mac, *tmp;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003624 struct dhcp_netid_list *list, *tmplist;
Simon Kelley9009d742008-11-14 20:04:27 +00003625
3626 for (mac = configs->hwaddr; mac; mac = tmp)
3627 {
3628 tmp = mac->next;
3629 free(mac);
3630 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003631
Simon Kelley824af852008-02-12 20:43:05 +00003632 if (configs->flags & CONFIG_CLID)
3633 free(configs->clid);
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003634
3635 for (list = configs->netid; list; list = tmplist)
3636 {
3637 free(list->list);
3638 tmplist = list->next;
3639 free(list);
3640 }
3641
Simon Kelley824af852008-02-12 20:43:05 +00003642 if (configs->flags & CONFIG_NAME)
3643 free(configs->hostname);
3644
3645 *up = configs->next;
3646 free(configs);
3647 }
3648 else
3649 up = &configs->next;
3650 }
3651
Simon Kelley28866e92011-02-14 20:19:14 +00003652 daemon->dhcp_hosts_file = expand_filelist(daemon->dhcp_hosts_file);
3653 for (hf = daemon->dhcp_hosts_file; hf; hf = hf->next)
3654 if (!(hf->flags & AH_INACTIVE))
3655 {
3656 one_file(hf->fname, LOPT_BANK);
3657 my_syslog(MS_DHCP | LOG_INFO, _("read %s"), hf->fname);
3658 }
Simon Kelley824af852008-02-12 20:43:05 +00003659 }
3660
3661 if (daemon->dhcp_opts_file)
3662 {
3663 struct dhcp_opt *opts, *cp, **up;
3664 struct dhcp_netid *id, *next;
3665
3666 for (up = &daemon->dhcp_opts, opts = daemon->dhcp_opts; opts; opts = cp)
3667 {
3668 cp = opts->next;
3669
3670 if (opts->flags & DHOPT_BANK)
3671 {
Simon Kelley73a08a22009-02-05 20:28:08 +00003672 if ((opts->flags & DHOPT_VENDOR))
3673 free(opts->u.vendor_class);
Simon Kelley824af852008-02-12 20:43:05 +00003674 free(opts->val);
3675 for (id = opts->netid; id; id = next)
3676 {
3677 next = id->next;
3678 free(id->net);
3679 free(id);
3680 }
3681 *up = opts->next;
3682 free(opts);
3683 }
3684 else
3685 up = &opts->next;
3686 }
3687
Simon Kelley28866e92011-02-14 20:19:14 +00003688 daemon->dhcp_opts_file = expand_filelist(daemon->dhcp_opts_file);
3689 for (hf = daemon->dhcp_opts_file; hf; hf = hf->next)
3690 if (!(hf->flags & AH_INACTIVE))
3691 {
3692 one_file(hf->fname, LOPT_OPTS);
3693 my_syslog(MS_DHCP | LOG_INFO, _("read %s"), hf->fname);
3694 }
Simon Kelley824af852008-02-12 20:43:05 +00003695 }
3696}
Simon Kelley7622fc02009-06-04 20:32:05 +01003697#endif
Simon Kelley824af852008-02-12 20:43:05 +00003698
Simon Kelley5aabfc72007-08-29 11:24:47 +01003699void read_opts(int argc, char **argv, char *compile_opts)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003700{
Simon Kelley824af852008-02-12 20:43:05 +00003701 char *buff = opt_malloc(MAXDNAME);
Simon Kelley28866e92011-02-14 20:19:14 +00003702 int option, conffile_opt = '7', testmode = 0;
Simon Kelley849a8352006-06-09 21:02:31 +01003703 char *errmess, *arg, *conffile = CONFFILE;
3704
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003705 opterr = 0;
Simon Kelley5aabfc72007-08-29 11:24:47 +01003706
Simon Kelley824af852008-02-12 20:43:05 +00003707 daemon = opt_malloc(sizeof(struct daemon));
Simon Kelley3be34542004-09-11 19:12:13 +01003708 memset(daemon, 0, sizeof(struct daemon));
3709 daemon->namebuff = buff;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003710
Simon Kelley3be34542004-09-11 19:12:13 +01003711 /* Set defaults - everything else is zero or NULL */
Simon Kelley3be34542004-09-11 19:12:13 +01003712 daemon->cachesize = CACHESIZ;
Simon Kelley208b65c2006-08-05 21:41:37 +01003713 daemon->ftabsize = FTABSIZ;
Simon Kelley3be34542004-09-11 19:12:13 +01003714 daemon->port = NAMESERVER_PORT;
Simon Kelley9e038942008-05-30 20:06:34 +01003715 daemon->dhcp_client_port = DHCP_CLIENT_PORT;
3716 daemon->dhcp_server_port = DHCP_SERVER_PORT;
Simon Kelley3be34542004-09-11 19:12:13 +01003717 daemon->default_resolv.is_default = 1;
3718 daemon->default_resolv.name = RESOLVFILE;
3719 daemon->resolv_files = &daemon->default_resolv;
3720 daemon->username = CHUSER;
Simon Kelley3be34542004-09-11 19:12:13 +01003721 daemon->runfile = RUNFILE;
3722 daemon->dhcp_max = MAXLEASES;
Simon Kelley832af0b2007-01-21 20:01:28 +00003723 daemon->tftp_max = TFTP_MAX_CONNECTIONS;
Simon Kelley3be34542004-09-11 19:12:13 +01003724 daemon->edns_pktsz = EDNS_PKTSZ;
Simon Kelley849a8352006-06-09 21:02:31 +01003725 daemon->log_fac = -1;
Simon Kelley5aabfc72007-08-29 11:24:47 +01003726 add_txt("version.bind", "dnsmasq-" VERSION );
3727 add_txt("authors.bind", "Simon Kelley");
3728 add_txt("copyright.bind", COPYRIGHT);
Simon Kelley0a852542005-03-23 20:28:59 +00003729
Simon Kelley849a8352006-06-09 21:02:31 +01003730 while (1)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003731 {
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003732#ifdef HAVE_GETOPT_LONG
Simon Kelley849a8352006-06-09 21:02:31 +01003733 option = getopt_long(argc, argv, OPTSTRING, opts, NULL);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003734#else
Simon Kelley849a8352006-06-09 21:02:31 +01003735 option = getopt(argc, argv, OPTSTRING);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003736#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003737
3738 if (option == -1)
Simon Kelley28866e92011-02-14 20:19:14 +00003739 {
Simon Kelley572b41e2011-02-18 18:11:18 +00003740 for (; optind < argc; optind++)
3741 {
3742 unsigned char *c = (unsigned char *)argv[optind];
3743 for (; *c != 0; c++)
3744 if (!isspace(*c))
3745 die(_("junk found in command line"), NULL, EC_BADCONF);
3746 }
Simon Kelley28866e92011-02-14 20:19:14 +00003747 break;
3748 }
3749
Simon Kelley849a8352006-06-09 21:02:31 +01003750 /* Copy optarg so that argv doesn't get changed */
3751 if (optarg)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003752 {
Simon Kelley849a8352006-06-09 21:02:31 +01003753 strncpy(buff, optarg, MAXDNAME);
3754 buff[MAXDNAME-1] = 0;
3755 arg = buff;
3756 }
3757 else
3758 arg = NULL;
3759
3760 /* command-line only stuff */
Simon Kelley7622fc02009-06-04 20:32:05 +01003761 if (option == LOPT_TEST)
3762 testmode = 1;
3763 else if (option == 'w')
Simon Kelley849a8352006-06-09 21:02:31 +01003764 {
Simon Kelley7622fc02009-06-04 20:32:05 +01003765#ifdef HAVE_DHCP
Simon Kelley4cb1b322012-02-06 14:30:41 +00003766 if (argc == 3 && strcmp(argv[2], "dhcp") == 0)
Simon Kelley7622fc02009-06-04 20:32:05 +01003767 display_opts();
Simon Kelley4cb1b322012-02-06 14:30:41 +00003768#ifdef HAVE_DHCP6
3769 else if (argc == 3 && strcmp(argv[2], "dhcp6") == 0)
3770 display_opts6();
Simon Kelley7622fc02009-06-04 20:32:05 +01003771#endif
Simon Kelley4cb1b322012-02-06 14:30:41 +00003772 else
3773#endif
3774 do_usage();
3775
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003776 exit(0);
3777 }
Simon Kelley849a8352006-06-09 21:02:31 +01003778 else if (option == 'v')
3779 {
3780 printf(_("Dnsmasq version %s %s\n"), VERSION, COPYRIGHT);
Simon Kelleyc72daea2012-01-05 21:33:27 +00003781 printf(_("Compile time options: %s\n\n"), compile_opts);
Simon Kelleyb8187c82005-11-26 21:46:27 +00003782 printf(_("This software comes with ABSOLUTELY NO WARRANTY.\n"));
3783 printf(_("Dnsmasq is free software, and you are welcome to redistribute it\n"));
Simon Kelley824af852008-02-12 20:43:05 +00003784 printf(_("under the terms of the GNU General Public License, version 2 or 3.\n"));
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003785 exit(0);
3786 }
Simon Kelley849a8352006-06-09 21:02:31 +01003787 else if (option == 'C')
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003788 {
Simon Kelley28866e92011-02-14 20:19:14 +00003789 conffile_opt = 0; /* file must exist */
Simon Kelley824af852008-02-12 20:43:05 +00003790 conffile = opt_string_alloc(arg);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003791 }
Simon Kelley849a8352006-06-09 21:02:31 +01003792 else
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003793 {
Simon Kelley26128d22004-11-14 16:43:54 +00003794#ifdef HAVE_GETOPT_LONG
Simon Kelley28866e92011-02-14 20:19:14 +00003795 errmess = one_opt(option, arg, _("try --help"), 1);
Simon Kelley849a8352006-06-09 21:02:31 +01003796#else
Simon Kelley28866e92011-02-14 20:19:14 +00003797 errmess = one_opt(option, arg, _("try -w"), 1);
Simon Kelley849a8352006-06-09 21:02:31 +01003798#endif
3799 if (errmess)
Simon Kelley5aabfc72007-08-29 11:24:47 +01003800 die(_("bad command line options: %s"), errmess, EC_BADCONF);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003801 }
3802 }
Simon Kelley849a8352006-06-09 21:02:31 +01003803
3804 if (conffile)
Simon Kelley28866e92011-02-14 20:19:14 +00003805 one_file(conffile, conffile_opt);
Simon Kelley849a8352006-06-09 21:02:31 +01003806
Simon Kelley1a6bca82008-07-11 11:11:42 +01003807 /* port might not be known when the address is parsed - fill in here */
Simon Kelley3be34542004-09-11 19:12:13 +01003808 if (daemon->servers)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003809 {
3810 struct server *tmp;
Simon Kelley3be34542004-09-11 19:12:13 +01003811 for (tmp = daemon->servers; tmp; tmp = tmp->next)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003812 if (!(tmp->flags & SERV_HAS_SOURCE))
3813 {
3814 if (tmp->source_addr.sa.sa_family == AF_INET)
Simon Kelley3be34542004-09-11 19:12:13 +01003815 tmp->source_addr.in.sin_port = htons(daemon->query_port);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003816#ifdef HAVE_IPV6
3817 else if (tmp->source_addr.sa.sa_family == AF_INET6)
Simon Kelley3be34542004-09-11 19:12:13 +01003818 tmp->source_addr.in6.sin6_port = htons(daemon->query_port);
Simon Kelley5aabfc72007-08-29 11:24:47 +01003819#endif
3820 }
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003821 }
3822
Simon Kelley3be34542004-09-11 19:12:13 +01003823 if (daemon->if_addrs)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003824 {
3825 struct iname *tmp;
Simon Kelley3be34542004-09-11 19:12:13 +01003826 for(tmp = daemon->if_addrs; tmp; tmp = tmp->next)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003827 if (tmp->addr.sa.sa_family == AF_INET)
Simon Kelley3be34542004-09-11 19:12:13 +01003828 tmp->addr.in.sin_port = htons(daemon->port);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003829#ifdef HAVE_IPV6
3830 else if (tmp->addr.sa.sa_family == AF_INET6)
Simon Kelley3be34542004-09-11 19:12:13 +01003831 tmp->addr.in6.sin6_port = htons(daemon->port);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003832#endif /* IPv6 */
3833 }
3834
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00003835 /* only one of these need be specified: the other defaults to the host-name */
Simon Kelley28866e92011-02-14 20:19:14 +00003836 if (option_bool(OPT_LOCALMX) || daemon->mxnames || daemon->mxtarget)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003837 {
Simon Kelley0a852542005-03-23 20:28:59 +00003838 struct mx_srv_record *mx;
3839
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003840 if (gethostname(buff, MAXDNAME) == -1)
Simon Kelley5aabfc72007-08-29 11:24:47 +01003841 die(_("cannot get host-name: %s"), NULL, EC_MISC);
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00003842
Simon Kelley0a852542005-03-23 20:28:59 +00003843 for (mx = daemon->mxnames; mx; mx = mx->next)
3844 if (!mx->issrv && hostname_isequal(mx->name, buff))
3845 break;
3846
Simon Kelley28866e92011-02-14 20:19:14 +00003847 if ((daemon->mxtarget || option_bool(OPT_LOCALMX)) && !mx)
Simon Kelleyde379512004-06-22 20:23:33 +01003848 {
Simon Kelley824af852008-02-12 20:43:05 +00003849 mx = opt_malloc(sizeof(struct mx_srv_record));
Simon Kelley91dccd02005-03-31 17:48:32 +01003850 mx->next = daemon->mxnames;
3851 mx->issrv = 0;
3852 mx->target = NULL;
Simon Kelley824af852008-02-12 20:43:05 +00003853 mx->name = opt_string_alloc(buff);
Simon Kelley91dccd02005-03-31 17:48:32 +01003854 daemon->mxnames = mx;
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00003855 }
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003856
Simon Kelley3be34542004-09-11 19:12:13 +01003857 if (!daemon->mxtarget)
Simon Kelley824af852008-02-12 20:43:05 +00003858 daemon->mxtarget = opt_string_alloc(buff);
Simon Kelley0a852542005-03-23 20:28:59 +00003859
3860 for (mx = daemon->mxnames; mx; mx = mx->next)
3861 if (!mx->issrv && !mx->target)
3862 mx->target = daemon->mxtarget;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003863 }
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00003864
Simon Kelley28866e92011-02-14 20:19:14 +00003865 if (!option_bool(OPT_NO_RESOLV) &&
Simon Kelley208b65c2006-08-05 21:41:37 +01003866 daemon->resolv_files &&
3867 daemon->resolv_files->next &&
Simon Kelley28866e92011-02-14 20:19:14 +00003868 option_bool(OPT_NO_POLL))
Simon Kelley5aabfc72007-08-29 11:24:47 +01003869 die(_("only one resolv.conf file allowed in no-poll mode."), NULL, EC_BADCONF);
Simon Kelleyde379512004-06-22 20:23:33 +01003870
Simon Kelley28866e92011-02-14 20:19:14 +00003871 if (option_bool(OPT_RESOLV_DOMAIN))
Simon Kelleyde379512004-06-22 20:23:33 +01003872 {
3873 char *line;
Simon Kelley849a8352006-06-09 21:02:31 +01003874 FILE *f;
3875
Simon Kelley28866e92011-02-14 20:19:14 +00003876 if (option_bool(OPT_NO_RESOLV) ||
Simon Kelley208b65c2006-08-05 21:41:37 +01003877 !daemon->resolv_files ||
3878 (daemon->resolv_files)->next)
Simon Kelley5aabfc72007-08-29 11:24:47 +01003879 die(_("must have exactly one resolv.conf to read domain from."), NULL, EC_BADCONF);
Simon Kelleyde379512004-06-22 20:23:33 +01003880
Simon Kelley3be34542004-09-11 19:12:13 +01003881 if (!(f = fopen((daemon->resolv_files)->name, "r")))
Simon Kelley5aabfc72007-08-29 11:24:47 +01003882 die(_("failed to read %s: %s"), (daemon->resolv_files)->name, EC_FILE);
Simon Kelleyde379512004-06-22 20:23:33 +01003883
3884 while ((line = fgets(buff, MAXDNAME, f)))
3885 {
3886 char *token = strtok(line, " \t\n\r");
3887
3888 if (!token || strcmp(token, "search") != 0)
3889 continue;
3890
3891 if ((token = strtok(NULL, " \t\n\r")) &&
Simon Kelley1f15b812009-10-13 17:49:32 +01003892 (daemon->domain_suffix = canonicalise_opt(token)))
Simon Kelleyde379512004-06-22 20:23:33 +01003893 break;
3894 }
Simon Kelley3be34542004-09-11 19:12:13 +01003895
Simon Kelleyde379512004-06-22 20:23:33 +01003896 fclose(f);
Simon Kelley8a911cc2004-03-16 18:35:52 +00003897
Simon Kelley3be34542004-09-11 19:12:13 +01003898 if (!daemon->domain_suffix)
Simon Kelley5aabfc72007-08-29 11:24:47 +01003899 die(_("no search directive found in %s"), (daemon->resolv_files)->name, EC_MISC);
Simon Kelleyde379512004-06-22 20:23:33 +01003900 }
Simon Kelley3d8df262005-08-29 12:19:27 +01003901
3902 if (daemon->domain_suffix)
3903 {
3904 /* add domain for any srv record without one. */
3905 struct mx_srv_record *srv;
Simon Kelleyde379512004-06-22 20:23:33 +01003906
Simon Kelley3d8df262005-08-29 12:19:27 +01003907 for (srv = daemon->mxnames; srv; srv = srv->next)
3908 if (srv->issrv &&
3909 strchr(srv->name, '.') &&
3910 strchr(srv->name, '.') == strrchr(srv->name, '.'))
3911 {
3912 strcpy(buff, srv->name);
3913 strcat(buff, ".");
3914 strcat(buff, daemon->domain_suffix);
3915 free(srv->name);
Simon Kelley824af852008-02-12 20:43:05 +00003916 srv->name = opt_string_alloc(buff);
Simon Kelley3d8df262005-08-29 12:19:27 +01003917 }
3918 }
Simon Kelley28866e92011-02-14 20:19:14 +00003919 else if (option_bool(OPT_DHCP_FQDN))
Simon Kelley9009d742008-11-14 20:04:27 +00003920 die(_("there must be a default domain when --dhcp-fqdn is set"), NULL, EC_BADCONF);
Simon Kelley7622fc02009-06-04 20:32:05 +01003921
3922 if (testmode)
3923 {
3924 fprintf(stderr, "dnsmasq: %s.\n", _("syntax check OK"));
3925 exit(0);
3926 }
Simon Kelley849a8352006-06-09 21:02:31 +01003927}