blob: 13dc8bfe7693396f92999c6143fc353ba576c395 [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 Kelley801ca9a2012-03-06 19:30:17 +00002348 else if (strcmp(a[1], "ra-names") == 0)
2349 {
2350 memcpy(&new->end6, &new->start6, IN6ADDRSZ);
2351 new->flags |= CONTEXT_RA_NAME | CONTEXT_RA_ONLY;
2352 }
Simon Kelley52b92f42012-01-22 16:05:15 +00002353 else if (!inet_pton(AF_INET6, a[1], &new->end6))
2354 option = '?';
2355
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00002356 if (new->flags & CONTEXT_RA_ONLY)
2357 {
2358 new->next = daemon->ra_contexts;
2359 daemon->ra_contexts = new;
2360 }
2361 else
2362 {
2363 new->next = daemon->dhcp6;
2364 daemon->dhcp6 = new;
2365 }
2366
Simon Kelley52b92f42012-01-22 16:05:15 +00002367 /* bare integer < 128 is prefix value */
2368 if (option != '?' && k >= 3)
2369 {
2370 int pref;
2371 for (cp = a[2]; *cp; cp++)
2372 if (!(*cp >= '0' && *cp <= '9'))
2373 break;
2374 if (!*cp && (pref = atoi(a[2])) <= 128)
2375 {
2376 new->prefix = pref;
2377 leasepos = 3;
Simon Kelley801ca9a2012-03-06 19:30:17 +00002378 if ((new->flags & CONTEXT_RA_ONLY) && new->prefix != 64)
2379 problem = _("prefix must be exactly 64 for RA subnets");
2380 else if (new->prefix < 64)
Simon Kelley4cb1b322012-02-06 14:30:41 +00002381 problem = _("prefix must be at least 64");
Simon Kelley52b92f42012-01-22 16:05:15 +00002382 }
2383 }
Simon Kelley62779782012-02-10 21:19:25 +00002384 if (!problem && !is_same_net6(&new->start6, &new->end6, new->prefix))
2385 problem = _("inconsistent DHCPv6 range");
2386 else if (addr6part(&new->start6) > addr6part(&new->end6))
Simon Kelley52b92f42012-01-22 16:05:15 +00002387 {
2388 struct in6_addr tmp = new->start6;
2389 new->start6 = new->end6;
2390 new->end6 = tmp;
2391 }
Simon Kelley849a8352006-06-09 21:02:31 +01002392 }
Simon Kelley52b92f42012-01-22 16:05:15 +00002393#endif
Simon Kelley849a8352006-06-09 21:02:31 +01002394
2395 if (k >= leasepos+1)
2396 {
2397 if (strcmp(a[leasepos], "infinite") == 0)
2398 new->lease_time = 0xffffffff;
2399 else
2400 {
2401 int fac = 1;
2402 if (strlen(a[leasepos]) > 0)
2403 {
2404 switch (a[leasepos][strlen(a[leasepos]) - 1])
2405 {
2406 case 'd':
2407 case 'D':
2408 fac *= 24;
2409 /* fall though */
2410 case 'h':
2411 case 'H':
2412 fac *= 60;
2413 /* fall through */
2414 case 'm':
2415 case 'M':
2416 fac *= 60;
2417 /* fall through */
2418 case 's':
2419 case 'S':
Simon Kelleyf2621c72007-04-29 19:47:21 +01002420 a[leasepos][strlen(a[leasepos]) - 1] = 0;
Simon Kelley849a8352006-06-09 21:02:31 +01002421 }
2422
2423 new->lease_time = atoi(a[leasepos]) * fac;
2424 /* Leases of a minute or less confuse
2425 some clients, notably Apple's */
2426 if (new->lease_time < 120)
2427 new->lease_time = 120;
2428 }
2429 }
2430 }
Simon Kelley0d5d35d2012-02-27 20:24:40 +00002431
2432#ifdef HAVE_DHCP6
2433 /* lifetimes must be min 2 hrs, by RFC 2462.
2434 This gets enforced in radv.c for DHCP ranges
2435 which are legitimately less. */
2436 if ((new->flags & CONTEXT_RA_ONLY) &&
2437 new->lease_time < 7200)
2438 new->lease_time = 7200;
2439#endif
2440
Simon Kelley849a8352006-06-09 21:02:31 +01002441 break;
2442 }
Simon Kelley5aabfc72007-08-29 11:24:47 +01002443
Simon Kelley5aabfc72007-08-29 11:24:47 +01002444 case LOPT_BANK:
Simon Kelleyf2621c72007-04-29 19:47:21 +01002445 case 'G': /* --dhcp-host */
Simon Kelley849a8352006-06-09 21:02:31 +01002446 {
Simon Kelleyf2621c72007-04-29 19:47:21 +01002447 int j, k = 0;
Simon Kelley849a8352006-06-09 21:02:31 +01002448 char *a[6] = { NULL, NULL, NULL, NULL, NULL, NULL };
Simon Kelley5aabfc72007-08-29 11:24:47 +01002449 struct dhcp_config *new;
Simon Kelley849a8352006-06-09 21:02:31 +01002450 struct in_addr in;
2451
Simon Kelley824af852008-02-12 20:43:05 +00002452 new = opt_malloc(sizeof(struct dhcp_config));
2453
Simon Kelley849a8352006-06-09 21:02:31 +01002454 new->next = daemon->dhcp_conf;
Simon Kelley9009d742008-11-14 20:04:27 +00002455 new->flags = (option == LOPT_BANK) ? CONFIG_BANK : 0;
2456 new->hwaddr = NULL;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002457 new->netid = NULL;
2458
Simon Kelley849a8352006-06-09 21:02:31 +01002459 if ((a[0] = arg))
2460 for (k = 1; k < 6; k++)
Simon Kelleyf2621c72007-04-29 19:47:21 +01002461 if (!(a[k] = split(a[k-1])))
2462 break;
Simon Kelley849a8352006-06-09 21:02:31 +01002463
2464 for (j = 0; j < k; j++)
2465 if (strchr(a[j], ':')) /* ethernet address, netid or binary CLID */
2466 {
2467 char *arg = a[j];
2468
2469 if ((arg[0] == 'i' || arg[0] == 'I') &&
2470 (arg[1] == 'd' || arg[1] == 'D') &&
2471 arg[2] == ':')
2472 {
2473 if (arg[3] == '*')
2474 new->flags |= CONFIG_NOCLID;
2475 else
2476 {
2477 int len;
2478 arg += 3; /* dump id: */
2479 if (strchr(arg, ':'))
2480 len = parse_hex(arg, (unsigned char *)arg, -1, NULL, NULL);
2481 else
Simon Kelley5aabfc72007-08-29 11:24:47 +01002482 {
2483 unhide_metas(arg);
2484 len = (int) strlen(arg);
2485 }
2486
Simon Kelley28866e92011-02-14 20:19:14 +00002487 if (len == -1)
2488 problem = _("bad hex constant");
2489 else if ((new->clid = opt_malloc(len)))
Simon Kelley5aabfc72007-08-29 11:24:47 +01002490 {
2491 new->flags |= CONFIG_CLID;
2492 new->clid_len = len;
2493 memcpy(new->clid, arg, len);
2494 }
Simon Kelley849a8352006-06-09 21:02:31 +01002495 }
2496 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002497 /* dhcp-host has strange backwards-compat needs. */
2498 else if (strstr(arg, "net:") == arg || strstr(arg, "set:") == arg)
Simon Kelley849a8352006-06-09 21:02:31 +01002499 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002500 struct dhcp_netid *newtag = opt_malloc(sizeof(struct dhcp_netid));
2501 struct dhcp_netid_list *newlist = opt_malloc(sizeof(struct dhcp_netid_list));
2502 newtag->net = opt_malloc(strlen(arg + 4) + 1);
2503 newlist->next = new->netid;
2504 new->netid = newlist;
2505 newlist->list = newtag;
2506 strcpy(newtag->net, arg+4);
2507 unhide_metas(newtag->net);
Simon Kelley849a8352006-06-09 21:02:31 +01002508 }
Simon Kelley7de060b2011-08-26 17:24:52 +01002509 else if (strstr(arg, "tag:") == arg)
2510 problem = _("cannot match tags in --dhcp-host");
Simon Kelley4cb1b322012-02-06 14:30:41 +00002511#ifdef HAVE_DHCP6
2512 else if (arg[0] == '[' && arg[strlen(arg)-1] == ']')
2513 {
2514 arg[strlen(arg)-1] = 0;
2515 arg++;
2516
2517 if (!inet_pton(AF_INET6, arg, &new->addr6))
2518 problem = _("bad IPv6 address");
2519
2520 new->flags |= CONFIG_ADDR6;
2521 }
2522#endif
Simon Kelley7de060b2011-08-26 17:24:52 +01002523 else
Simon Kelley849a8352006-06-09 21:02:31 +01002524 {
Simon Kelley9009d742008-11-14 20:04:27 +00002525 struct hwaddr_config *newhw = opt_malloc(sizeof(struct hwaddr_config));
Simon Kelley28866e92011-02-14 20:19:14 +00002526 if ((newhw->hwaddr_len = parse_hex(a[j], newhw->hwaddr, DHCP_CHADDR_MAX,
2527 &newhw->wildcard_mask, &newhw->hwaddr_type)) == -1)
2528 problem = _("bad hex constant");
2529 else
2530 {
2531
2532 newhw->next = new->hwaddr;
2533 new->hwaddr = newhw;
2534 }
Simon Kelley849a8352006-06-09 21:02:31 +01002535 }
2536 }
2537 else if (strchr(a[j], '.') && (in.s_addr = inet_addr(a[j])) != (in_addr_t)-1)
2538 {
2539 new->addr = in;
2540 new->flags |= CONFIG_ADDR;
2541 }
2542 else
2543 {
2544 char *cp, *lastp = NULL, last = 0;
2545 int fac = 1;
2546
2547 if (strlen(a[j]) > 1)
2548 {
2549 lastp = a[j] + strlen(a[j]) - 1;
2550 last = *lastp;
2551 switch (last)
2552 {
2553 case 'd':
2554 case 'D':
2555 fac *= 24;
2556 /* fall through */
2557 case 'h':
2558 case 'H':
2559 fac *= 60;
2560 /* fall through */
2561 case 'm':
2562 case 'M':
2563 fac *= 60;
2564 /* fall through */
2565 case 's':
2566 case 'S':
2567 *lastp = 0;
2568 }
2569 }
2570
2571 for (cp = a[j]; *cp; cp++)
Simon Kelley572b41e2011-02-18 18:11:18 +00002572 if (!isdigit((unsigned char)*cp) && *cp != ' ')
Simon Kelley849a8352006-06-09 21:02:31 +01002573 break;
2574
2575 if (*cp)
2576 {
2577 if (lastp)
2578 *lastp = last;
2579 if (strcmp(a[j], "infinite") == 0)
2580 {
2581 new->lease_time = 0xffffffff;
2582 new->flags |= CONFIG_TIME;
2583 }
2584 else if (strcmp(a[j], "ignore") == 0)
2585 new->flags |= CONFIG_DISABLE;
2586 else
2587 {
Simon Kelley1f15b812009-10-13 17:49:32 +01002588 if (!(new->hostname = canonicalise_opt(a[j])) ||
2589 !legal_hostname(new->hostname))
Simon Kelley824af852008-02-12 20:43:05 +00002590 problem = _("bad DHCP host name");
Simon Kelley1f15b812009-10-13 17:49:32 +01002591 else
2592 new->flags |= CONFIG_NAME;
2593 new->domain = NULL;
Simon Kelley849a8352006-06-09 21:02:31 +01002594 }
2595 }
2596 else
2597 {
2598 new->lease_time = atoi(a[j]) * fac;
2599 /* Leases of a minute or less confuse
2600 some clients, notably Apple's */
2601 if (new->lease_time < 120)
2602 new->lease_time = 120;
2603 new->flags |= CONFIG_TIME;
2604 }
2605 }
2606
Simon Kelley5aabfc72007-08-29 11:24:47 +01002607 daemon->dhcp_conf = new;
Simon Kelley849a8352006-06-09 21:02:31 +01002608 break;
2609 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002610
2611 case LOPT_TAG_IF: /* --tag-if */
2612 {
2613 struct tag_if *new = opt_malloc(sizeof(struct tag_if));
2614
2615 new->tag = NULL;
2616 new->set = NULL;
2617 new->next = NULL;
2618
2619 /* preserve order */
2620 if (!daemon->tag_if)
2621 daemon->tag_if = new;
2622 else
2623 {
2624 struct tag_if *tmp;
2625 for (tmp = daemon->tag_if; tmp->next; tmp = tmp->next);
2626 tmp->next = new;
2627 }
2628
2629 while (arg)
2630 {
2631 size_t len;
2632
2633 comma = split(arg);
2634 len = strlen(arg);
2635
2636 if (len < 5)
2637 {
2638 new->set = NULL;
2639 break;
2640 }
2641 else
2642 {
2643 struct dhcp_netid *newtag = opt_malloc(sizeof(struct dhcp_netid));
2644 newtag->net = opt_malloc(len - 3);
2645 strcpy(newtag->net, arg+4);
2646 unhide_metas(newtag->net);
2647
2648 if (strstr(arg, "set:") == arg)
2649 {
2650 struct dhcp_netid_list *newlist = opt_malloc(sizeof(struct dhcp_netid_list));
2651 newlist->next = new->set;
2652 new->set = newlist;
2653 newlist->list = newtag;
2654 }
2655 else if (strstr(arg, "tag:") == arg)
2656 {
2657 newtag->next = new->tag;
2658 new->tag = newtag;
2659 }
2660 else
2661 {
2662 new->set = NULL;
2663 break;
2664 }
2665 }
2666
2667 arg = comma;
2668 }
2669
2670 if (!new->set)
2671 problem = _("bad tag-if");
2672
2673 break;
2674 }
2675
Simon Kelley849a8352006-06-09 21:02:31 +01002676
Simon Kelley73a08a22009-02-05 20:28:08 +00002677 case 'O': /* --dhcp-option */
2678 case LOPT_FORCE: /* --dhcp-option-force */
Simon Kelley824af852008-02-12 20:43:05 +00002679 case LOPT_OPTS:
Simon Kelley73a08a22009-02-05 20:28:08 +00002680 case LOPT_MATCH: /* --dhcp-match */
Simon Kelley824af852008-02-12 20:43:05 +00002681 problem = parse_dhcp_opt(arg,
2682 option == LOPT_FORCE ? DHOPT_FORCE :
Simon Kelley73a08a22009-02-05 20:28:08 +00002683 (option == LOPT_MATCH ? DHOPT_MATCH :
2684 (option == LOPT_OPTS ? DHOPT_BANK : 0)));
Simon Kelley832af0b2007-01-21 20:01:28 +00002685 break;
Simon Kelley849a8352006-06-09 21:02:31 +01002686
Simon Kelleyf2621c72007-04-29 19:47:21 +01002687 case 'M': /* --dhcp-boot */
Simon Kelley849a8352006-06-09 21:02:31 +01002688 {
2689 struct dhcp_netid *id = NULL;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002690 while (is_tag_prefix(arg))
Simon Kelley849a8352006-06-09 21:02:31 +01002691 {
Simon Kelley824af852008-02-12 20:43:05 +00002692 struct dhcp_netid *newid = opt_malloc(sizeof(struct dhcp_netid));
Simon Kelley849a8352006-06-09 21:02:31 +01002693 newid->next = id;
2694 id = newid;
Simon Kelleyf2621c72007-04-29 19:47:21 +01002695 comma = split(arg);
Simon Kelley824af852008-02-12 20:43:05 +00002696 newid->net = opt_string_alloc(arg+4);
Simon Kelley849a8352006-06-09 21:02:31 +01002697 arg = comma;
2698 };
2699
2700 if (!arg)
2701 option = '?';
2702 else
2703 {
Simon Kelley7de060b2011-08-26 17:24:52 +01002704 char *dhcp_file, *dhcp_sname = NULL, *tftp_sname = NULL;
Simon Kelley849a8352006-06-09 21:02:31 +01002705 struct in_addr dhcp_next_server;
Simon Kelleyf2621c72007-04-29 19:47:21 +01002706 comma = split(arg);
Simon Kelley824af852008-02-12 20:43:05 +00002707 dhcp_file = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01002708 dhcp_next_server.s_addr = 0;
2709 if (comma)
2710 {
2711 arg = comma;
Simon Kelleyf2621c72007-04-29 19:47:21 +01002712 comma = split(arg);
Simon Kelley824af852008-02-12 20:43:05 +00002713 dhcp_sname = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01002714 if (comma)
2715 {
2716 unhide_metas(comma);
Simon Kelley7de060b2011-08-26 17:24:52 +01002717 if ((dhcp_next_server.s_addr = inet_addr(comma)) == (in_addr_t)-1) {
2718
2719 /*
2720 * The user may have specified the tftp hostname here.
2721 * save it so that it can be resolved/looked up during
2722 * actual dhcp_reply().
2723 */
2724
2725 tftp_sname = opt_string_alloc(comma);
2726 dhcp_next_server.s_addr = 0;
2727 }
Simon Kelley849a8352006-06-09 21:02:31 +01002728 }
2729 }
2730 if (option != '?')
2731 {
Simon Kelley824af852008-02-12 20:43:05 +00002732 struct dhcp_boot *new = opt_malloc(sizeof(struct dhcp_boot));
Simon Kelley849a8352006-06-09 21:02:31 +01002733 new->file = dhcp_file;
2734 new->sname = dhcp_sname;
Simon Kelley7de060b2011-08-26 17:24:52 +01002735 new->tftp_sname = tftp_sname;
Simon Kelley849a8352006-06-09 21:02:31 +01002736 new->next_server = dhcp_next_server;
2737 new->netid = id;
2738 new->next = daemon->boot_config;
2739 daemon->boot_config = new;
2740 }
2741 }
2742
Simon Kelley849a8352006-06-09 21:02:31 +01002743 break;
2744 }
Simon Kelley7622fc02009-06-04 20:32:05 +01002745
2746 case LOPT_PXE_PROMT: /* --pxe-prompt */
2747 {
2748 struct dhcp_opt *new = opt_malloc(sizeof(struct dhcp_opt));
2749 int timeout;
2750
2751 new->netid = NULL;
2752 new->opt = 10; /* PXE_MENU_PROMPT */
2753
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002754 while (is_tag_prefix(arg))
2755 {
Simon Kelley7622fc02009-06-04 20:32:05 +01002756 struct dhcp_netid *nn = opt_malloc(sizeof (struct dhcp_netid));
2757 comma = split(arg);
2758 nn->next = new->netid;
2759 new->netid = nn;
2760 nn->net = opt_string_alloc(arg+4);
2761 arg = comma;
2762 }
2763
2764 if (!arg)
2765 option = '?';
2766 else
2767 {
2768 comma = split(arg);
2769 unhide_metas(arg);
2770 new->len = strlen(arg) + 1;
2771 new->val = opt_malloc(new->len);
2772 memcpy(new->val + 1, arg, new->len - 1);
2773
2774 new->u.vendor_class = (unsigned char *)"PXEClient";
2775 new->flags = DHOPT_VENDOR;
2776
2777 if (comma && atoi_check(comma, &timeout))
2778 *(new->val) = timeout;
2779 else
2780 *(new->val) = 255;
2781
2782 new->next = daemon->dhcp_opts;
2783 daemon->dhcp_opts = new;
Simon Kelley1f15b812009-10-13 17:49:32 +01002784 daemon->enable_pxe = 1;
Simon Kelley7622fc02009-06-04 20:32:05 +01002785 }
2786
2787 break;
2788 }
2789
2790 case LOPT_PXE_SERV: /* --pxe-service */
2791 {
2792 struct pxe_service *new = opt_malloc(sizeof(struct pxe_service));
2793 char *CSA[] = { "x86PC", "PC98", "IA64_EFI", "Alpha", "Arc_x86", "Intel_Lean_Client",
2794 "IA32_EFI", "BC_EFI", "Xscale_EFI", "x86-64_EFI", NULL };
2795 static int boottype = 32768;
2796
2797 new->netid = NULL;
Simon Kelley751d6f42012-02-10 15:24:51 +00002798 new->sname = NULL;
Simon Kelley7622fc02009-06-04 20:32:05 +01002799 new->server.s_addr = 0;
2800
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002801 while (is_tag_prefix(arg))
Simon Kelley7622fc02009-06-04 20:32:05 +01002802 {
2803 struct dhcp_netid *nn = opt_malloc(sizeof (struct dhcp_netid));
2804 comma = split(arg);
2805 nn->next = new->netid;
2806 new->netid = nn;
2807 nn->net = opt_string_alloc(arg+4);
2808 arg = comma;
2809 }
2810
2811 if (arg && (comma = split(arg)))
2812 {
2813 for (i = 0; CSA[i]; i++)
2814 if (strcasecmp(CSA[i], arg) == 0)
2815 break;
2816
2817 if (CSA[i] || atoi_check(arg, &i))
2818 {
2819 arg = comma;
2820 comma = split(arg);
2821
2822 new->CSA = i;
2823 new->menu = opt_string_alloc(arg);
2824
Simon Kelley316e2732010-01-22 20:16:09 +00002825 if (!comma)
2826 {
2827 new->type = 0; /* local boot */
2828 new->basename = NULL;
2829 }
2830 else
Simon Kelley7622fc02009-06-04 20:32:05 +01002831 {
2832 arg = comma;
2833 comma = split(arg);
2834 if (atoi_check(arg, &i))
2835 {
2836 new->type = i;
2837 new->basename = NULL;
2838 }
2839 else
2840 {
2841 new->type = boottype++;
2842 new->basename = opt_string_alloc(arg);
2843 }
2844
Simon Kelley751d6f42012-02-10 15:24:51 +00002845 if (comma)
2846 {
2847 if (!inet_pton(AF_INET, comma, &new->server))
2848 {
2849 new->server.s_addr = 0;
2850 new->sname = opt_string_alloc(comma);
2851 }
2852
2853 }
Simon Kelley7622fc02009-06-04 20:32:05 +01002854 }
Simon Kelley751d6f42012-02-10 15:24:51 +00002855
Simon Kelley316e2732010-01-22 20:16:09 +00002856 /* Order matters */
2857 new->next = NULL;
2858 if (!daemon->pxe_services)
2859 daemon->pxe_services = new;
2860 else
2861 {
2862 struct pxe_service *s;
2863 for (s = daemon->pxe_services; s->next; s = s->next);
2864 s->next = new;
2865 }
2866
2867 daemon->enable_pxe = 1;
2868 break;
2869
Simon Kelley7622fc02009-06-04 20:32:05 +01002870 }
2871 }
2872
2873 option = '?';
2874 break;
2875 }
2876
Simon Kelleyf2621c72007-04-29 19:47:21 +01002877 case '4': /* --dhcp-mac */
Simon Kelley849a8352006-06-09 21:02:31 +01002878 {
Simon Kelleyf2621c72007-04-29 19:47:21 +01002879 if (!(comma = split(arg)))
Simon Kelley849a8352006-06-09 21:02:31 +01002880 option = '?';
2881 else
2882 {
Simon Kelley824af852008-02-12 20:43:05 +00002883 struct dhcp_mac *new = opt_malloc(sizeof(struct dhcp_mac));
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002884 new->netid.net = opt_string_alloc(set_prefix(arg));
Simon Kelleyf2621c72007-04-29 19:47:21 +01002885 unhide_metas(comma);
2886 new->hwaddr_len = parse_hex(comma, new->hwaddr, DHCP_CHADDR_MAX, &new->mask, &new->hwaddr_type);
Simon Kelley28866e92011-02-14 20:19:14 +00002887 if (new->hwaddr_len == -1)
2888 option = '?';
2889 else
2890 {
2891 new->next = daemon->dhcp_macs;
2892 daemon->dhcp_macs = new;
2893 }
Simon Kelley849a8352006-06-09 21:02:31 +01002894 }
2895 }
2896 break;
2897
Simon Kelleyf2621c72007-04-29 19:47:21 +01002898 case 'U': /* --dhcp-vendorclass */
2899 case 'j': /* --dhcp-userclass */
2900 case LOPT_CIRCUIT: /* --dhcp-circuitid */
2901 case LOPT_REMOTE: /* --dhcp-remoteid */
2902 case LOPT_SUBSCR: /* --dhcp-subscrid */
Simon Kelley849a8352006-06-09 21:02:31 +01002903 {
Simon Kelleyf2621c72007-04-29 19:47:21 +01002904 if (!(comma = split(arg)))
Simon Kelley849a8352006-06-09 21:02:31 +01002905 option = '?';
2906 else
2907 {
Simon Kelley572b41e2011-02-18 18:11:18 +00002908 unsigned char *p;
Simon Kelleyf2621c72007-04-29 19:47:21 +01002909 int dig = 0;
Simon Kelley824af852008-02-12 20:43:05 +00002910 struct dhcp_vendor *new = opt_malloc(sizeof(struct dhcp_vendor));
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002911 new->netid.net = opt_string_alloc(set_prefix(arg));
Simon Kelleyf2621c72007-04-29 19:47:21 +01002912 /* check for hex string - must digits may include : must not have nothing else,
2913 only allowed for agent-options. */
Simon Kelleya5c72ab2012-02-10 13:42:47 +00002914
2915 arg = comma;
2916 if ((comma = split(arg)))
2917 {
2918 if (option != 'U' || strstr(arg, "enterprise:") != arg)
2919 option = '?';
2920 else
2921 new->enterprise = atoi(arg+11);
2922 }
2923 else
2924 comma = arg;
2925
Simon Kelley572b41e2011-02-18 18:11:18 +00002926 for (p = (unsigned char *)comma; *p; p++)
2927 if (isxdigit(*p))
Simon Kelleyf2621c72007-04-29 19:47:21 +01002928 dig = 1;
2929 else if (*p != ':')
2930 break;
2931 unhide_metas(comma);
Simon Kelley73a08a22009-02-05 20:28:08 +00002932 if (option == 'U' || option == 'j' || *p || !dig)
Simon Kelley824af852008-02-12 20:43:05 +00002933 {
2934 new->len = strlen(comma);
2935 new->data = opt_malloc(new->len);
2936 memcpy(new->data, comma, new->len);
2937 }
Simon Kelleyf2621c72007-04-29 19:47:21 +01002938 else
Simon Kelley824af852008-02-12 20:43:05 +00002939 {
2940 new->len = parse_hex(comma, (unsigned char *)comma, strlen(comma), NULL, NULL);
2941 new->data = opt_malloc(new->len);
2942 memcpy(new->data, comma, new->len);
2943 }
2944
Simon Kelleyf2621c72007-04-29 19:47:21 +01002945 switch (option)
2946 {
2947 case 'j':
2948 new->match_type = MATCH_USER;
2949 break;
2950 case 'U':
2951 new->match_type = MATCH_VENDOR;
2952 break;
2953 case LOPT_CIRCUIT:
2954 new->match_type = MATCH_CIRCUIT;
2955 break;
2956 case LOPT_REMOTE:
2957 new->match_type = MATCH_REMOTE;
2958 break;
2959 case LOPT_SUBSCR:
2960 new->match_type = MATCH_SUBSCRIBER;
2961 break;
2962 }
Simon Kelley849a8352006-06-09 21:02:31 +01002963 new->next = daemon->dhcp_vendors;
2964 daemon->dhcp_vendors = new;
2965 }
2966 break;
2967 }
2968
Simon Kelley9e038942008-05-30 20:06:34 +01002969 case LOPT_ALTPORT: /* --dhcp-alternate-port */
2970 if (!arg)
2971 {
2972 daemon->dhcp_server_port = DHCP_SERVER_ALTPORT;
2973 daemon->dhcp_client_port = DHCP_CLIENT_ALTPORT;
2974 }
2975 else
2976 {
2977 comma = split(arg);
Simon Kelley1ad24ae2008-07-20 20:22:50 +01002978 if (!atoi_check16(arg, &daemon->dhcp_server_port) ||
2979 (comma && !atoi_check16(comma, &daemon->dhcp_client_port)))
Simon Kelley9e038942008-05-30 20:06:34 +01002980 problem = _("invalid port number");
2981 if (!comma)
2982 daemon->dhcp_client_port = daemon->dhcp_server_port+1;
2983 }
2984 break;
2985
Simon Kelley824af852008-02-12 20:43:05 +00002986 case 'J': /* --dhcp-ignore */
2987 case LOPT_NO_NAMES: /* --dhcp-ignore-names */
2988 case LOPT_BROADCAST: /* --dhcp-broadcast */
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002989 case '3': /* --bootp-dynamic */
2990 case LOPT_GEN_NAMES: /* --dhcp-generate-names */
Simon Kelley849a8352006-06-09 21:02:31 +01002991 {
Simon Kelley824af852008-02-12 20:43:05 +00002992 struct dhcp_netid_list *new = opt_malloc(sizeof(struct dhcp_netid_list));
Simon Kelley849a8352006-06-09 21:02:31 +01002993 struct dhcp_netid *list = NULL;
Simon Kelley832af0b2007-01-21 20:01:28 +00002994 if (option == 'J')
2995 {
2996 new->next = daemon->dhcp_ignore;
2997 daemon->dhcp_ignore = new;
2998 }
Simon Kelley824af852008-02-12 20:43:05 +00002999 else if (option == LOPT_BROADCAST)
3000 {
3001 new->next = daemon->force_broadcast;
3002 daemon->force_broadcast = new;
3003 }
Simon Kelley9009d742008-11-14 20:04:27 +00003004 else if (option == '3')
3005 {
3006 new->next = daemon->bootp_dynamic;
3007 daemon->bootp_dynamic = new;
3008 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003009 else if (option == LOPT_GEN_NAMES)
3010 {
3011 new->next = daemon->dhcp_gen_names;
3012 daemon->dhcp_gen_names = new;
3013 }
Simon Kelley832af0b2007-01-21 20:01:28 +00003014 else
3015 {
3016 new->next = daemon->dhcp_ignore_names;
3017 daemon->dhcp_ignore_names = new;
3018 }
3019
3020 while (arg) {
Simon Kelley824af852008-02-12 20:43:05 +00003021 struct dhcp_netid *member = opt_malloc(sizeof(struct dhcp_netid));
Simon Kelleyf2621c72007-04-29 19:47:21 +01003022 comma = split(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01003023 member->next = list;
3024 list = member;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003025 if (is_tag_prefix(arg))
Simon Kelley9009d742008-11-14 20:04:27 +00003026 member->net = opt_string_alloc(arg+4);
3027 else
3028 member->net = opt_string_alloc(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01003029 arg = comma;
Simon Kelley832af0b2007-01-21 20:01:28 +00003030 }
Simon Kelley849a8352006-06-09 21:02:31 +01003031
3032 new->list = list;
3033 break;
3034 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003035
3036 case LOPT_PROXY: /* --dhcp-proxy */
3037 daemon->override = 1;
3038 while (arg) {
3039 struct addr_list *new = opt_malloc(sizeof(struct addr_list));
3040 comma = split(arg);
3041 if ((new->addr.s_addr = inet_addr(arg)) == (in_addr_t)-1)
3042 problem = _("bad dhcp-proxy address");
3043 new->next = daemon->override_relays;
3044 daemon->override_relays = new;
3045 arg = comma;
3046 }
3047 break;
Simon Kelley7622fc02009-06-04 20:32:05 +01003048#endif
Simon Kelley849a8352006-06-09 21:02:31 +01003049
Simon Kelleyf2621c72007-04-29 19:47:21 +01003050 case 'V': /* --alias */
Simon Kelley849a8352006-06-09 21:02:31 +01003051 {
Simon Kelley73a08a22009-02-05 20:28:08 +00003052 char *dash, *a[3] = { NULL, NULL, NULL };
Simon Kelleyf2621c72007-04-29 19:47:21 +01003053 int k = 0;
Simon Kelley73a08a22009-02-05 20:28:08 +00003054 struct doctor *new = opt_malloc(sizeof(struct doctor));
3055 new->next = daemon->doctors;
3056 daemon->doctors = new;
3057 new->mask.s_addr = 0xffffffff;
3058 new->end.s_addr = 0;
3059
Simon Kelley849a8352006-06-09 21:02:31 +01003060 if ((a[0] = arg))
3061 for (k = 1; k < 3; k++)
3062 {
Simon Kelleyf2621c72007-04-29 19:47:21 +01003063 if (!(a[k] = split(a[k-1])))
Simon Kelley849a8352006-06-09 21:02:31 +01003064 break;
Simon Kelley849a8352006-06-09 21:02:31 +01003065 unhide_metas(a[k]);
3066 }
Simon Kelley849a8352006-06-09 21:02:31 +01003067
Simon Kelley73a08a22009-02-05 20:28:08 +00003068 dash = split_chr(a[0], '-');
3069
Simon Kelley849a8352006-06-09 21:02:31 +01003070 if ((k < 2) ||
Simon Kelley73a08a22009-02-05 20:28:08 +00003071 ((new->in.s_addr = inet_addr(a[0])) == (in_addr_t)-1) ||
3072 ((new->out.s_addr = inet_addr(a[1])) == (in_addr_t)-1))
3073 option = '?';
Simon Kelley849a8352006-06-09 21:02:31 +01003074
3075 if (k == 3)
Simon Kelley73a08a22009-02-05 20:28:08 +00003076 new->mask.s_addr = inet_addr(a[2]);
Simon Kelley849a8352006-06-09 21:02:31 +01003077
Simon Kelley73a08a22009-02-05 20:28:08 +00003078 if (dash &&
3079 ((new->end.s_addr = inet_addr(dash)) == (in_addr_t)-1 ||
3080 !is_same_net(new->in, new->end, new->mask) ||
3081 ntohl(new->in.s_addr) > ntohl(new->end.s_addr)))
3082 problem = _("invalid alias range");
Simon Kelley849a8352006-06-09 21:02:31 +01003083
3084 break;
3085 }
3086
Simon Kelleyf2621c72007-04-29 19:47:21 +01003087 case LOPT_INTNAME: /* --interface-name */
3088 {
3089 struct interface_name *new, **up;
Simon Kelley1f15b812009-10-13 17:49:32 +01003090 char *domain = NULL;
3091
Simon Kelleyf2621c72007-04-29 19:47:21 +01003092 comma = split(arg);
3093
Simon Kelley1f15b812009-10-13 17:49:32 +01003094 if (!comma || !(domain = canonicalise_opt(arg)))
Simon Kelley824af852008-02-12 20:43:05 +00003095 problem = _("bad interface name");
Simon Kelley1f15b812009-10-13 17:49:32 +01003096
Simon Kelley824af852008-02-12 20:43:05 +00003097 new = opt_malloc(sizeof(struct interface_name));
Simon Kelleyf2621c72007-04-29 19:47:21 +01003098 new->next = NULL;
3099 /* Add to the end of the list, so that first name
3100 of an interface is used for PTR lookups. */
Simon Kelley824af852008-02-12 20:43:05 +00003101 for (up = &daemon->int_names; *up; up = &((*up)->next));
Simon Kelleyf2621c72007-04-29 19:47:21 +01003102 *up = new;
Simon Kelley1f15b812009-10-13 17:49:32 +01003103 new->name = domain;
Simon Kelley824af852008-02-12 20:43:05 +00003104 new->intr = opt_string_alloc(comma);
Simon Kelleyf2621c72007-04-29 19:47:21 +01003105 break;
3106 }
Simon Kelley9009d742008-11-14 20:04:27 +00003107
3108 case LOPT_CNAME: /* --cname */
3109 {
3110 struct cname *new;
3111
3112 if (!(comma = split(arg)))
3113 option = '?';
3114 else
3115 {
Simon Kelley1f15b812009-10-13 17:49:32 +01003116 char *alias = canonicalise_opt(arg);
3117 char *target = canonicalise_opt(comma);
3118
3119 if (!alias || !target)
3120 problem = _("bad CNAME");
3121 else
3122 {
3123 for (new = daemon->cnames; new; new = new->next)
3124 if (hostname_isequal(new->alias, arg))
3125 problem = _("duplicate CNAME");
3126 new = opt_malloc(sizeof(struct cname));
3127 new->next = daemon->cnames;
3128 daemon->cnames = new;
3129 new->alias = alias;
3130 new->target = target;
3131 }
Simon Kelley9009d742008-11-14 20:04:27 +00003132 }
3133 break;
3134 }
Simon Kelleyf2621c72007-04-29 19:47:21 +01003135
3136 case LOPT_PTR: /* --ptr-record */
Simon Kelley832af0b2007-01-21 20:01:28 +00003137 {
3138 struct ptr_record *new;
Simon Kelley1f15b812009-10-13 17:49:32 +01003139 char *dom, *target = NULL;
3140
Simon Kelleyf2621c72007-04-29 19:47:21 +01003141 comma = split(arg);
3142
Simon Kelley1f15b812009-10-13 17:49:32 +01003143 if (!(dom = canonicalise_opt(arg)) ||
3144 (comma && !(target = canonicalise_opt(comma))))
Simon Kelley824af852008-02-12 20:43:05 +00003145 problem = _("bad PTR record");
Simon Kelley1f15b812009-10-13 17:49:32 +01003146 else
3147 {
3148 new = opt_malloc(sizeof(struct ptr_record));
3149 new->next = daemon->ptr;
3150 daemon->ptr = new;
3151 new->name = dom;
3152 new->ptr = target;
3153 }
Simon Kelley832af0b2007-01-21 20:01:28 +00003154 break;
3155 }
3156
Simon Kelley1a6bca82008-07-11 11:11:42 +01003157 case LOPT_NAPTR: /* --naptr-record */
3158 {
3159 char *a[7] = { NULL, NULL, NULL, NULL, NULL, NULL, NULL };
3160 int k = 0;
3161 struct naptr *new;
3162 int order, pref;
Simon Kelley1f15b812009-10-13 17:49:32 +01003163 char *name, *replace = NULL;
Simon Kelley1a6bca82008-07-11 11:11:42 +01003164
3165 if ((a[0] = arg))
3166 for (k = 1; k < 7; k++)
3167 if (!(a[k] = split(a[k-1])))
3168 break;
3169
3170
3171 if (k < 6 ||
Simon Kelley1f15b812009-10-13 17:49:32 +01003172 !(name = canonicalise_opt(a[0])) ||
Simon Kelley1ad24ae2008-07-20 20:22:50 +01003173 !atoi_check16(a[1], &order) ||
3174 !atoi_check16(a[2], &pref) ||
Simon Kelley1f15b812009-10-13 17:49:32 +01003175 (k == 7 && !(replace = canonicalise_opt(a[6]))))
Simon Kelley1a6bca82008-07-11 11:11:42 +01003176 problem = _("bad NAPTR record");
3177 else
3178 {
3179 new = opt_malloc(sizeof(struct naptr));
3180 new->next = daemon->naptr;
3181 daemon->naptr = new;
Simon Kelley1f15b812009-10-13 17:49:32 +01003182 new->name = name;
Simon Kelley1a6bca82008-07-11 11:11:42 +01003183 new->flags = opt_string_alloc(a[3]);
3184 new->services = opt_string_alloc(a[4]);
3185 new->regexp = opt_string_alloc(a[5]);
Simon Kelley1f15b812009-10-13 17:49:32 +01003186 new->replace = replace;
Simon Kelley1a6bca82008-07-11 11:11:42 +01003187 new->order = order;
3188 new->pref = pref;
3189 }
3190 break;
3191 }
3192
Simon Kelleyf2621c72007-04-29 19:47:21 +01003193 case 'Y': /* --txt-record */
Simon Kelley849a8352006-06-09 21:02:31 +01003194 {
3195 struct txt_record *new;
Simon Kelley28866e92011-02-14 20:19:14 +00003196 unsigned char *p, *cnt;
3197 size_t len;
3198
3199 comma = split(arg);
3200
Simon Kelley824af852008-02-12 20:43:05 +00003201 new = opt_malloc(sizeof(struct txt_record));
Simon Kelley849a8352006-06-09 21:02:31 +01003202 new->next = daemon->txt;
3203 daemon->txt = new;
3204 new->class = C_IN;
Simon Kelley849a8352006-06-09 21:02:31 +01003205
Simon Kelley1f15b812009-10-13 17:49:32 +01003206 if (!(new->name = canonicalise_opt(arg)))
3207 {
3208 problem = _("bad TXT record");
3209 break;
3210 }
3211
Simon Kelley28866e92011-02-14 20:19:14 +00003212 len = comma ? strlen(comma) : 0;
3213 len += (len/255) + 1; /* room for extra counts */
3214 new->txt = p = opt_malloc(len);
3215
3216 cnt = p++;
3217 *cnt = 0;
3218
3219 while (comma && *comma)
3220 {
3221 unsigned char c = (unsigned char)*comma++;
3222
3223 if (c == ',' || *cnt == 255)
3224 {
3225 if (c != ',')
3226 comma--;
3227 cnt = p++;
3228 *cnt = 0;
3229 }
3230 else
3231 {
3232 *p++ = unhide_meta(c);
3233 (*cnt)++;
3234 }
3235 }
3236
3237 new->len = p - new->txt;
3238
Simon Kelley849a8352006-06-09 21:02:31 +01003239 break;
3240 }
3241
Simon Kelleyf2621c72007-04-29 19:47:21 +01003242 case 'W': /* --srv-host */
Simon Kelley849a8352006-06-09 21:02:31 +01003243 {
3244 int port = 1, priority = 0, weight = 0;
3245 char *name, *target = NULL;
3246 struct mx_srv_record *new;
3247
Simon Kelleyf2621c72007-04-29 19:47:21 +01003248 comma = split(arg);
Simon Kelley849a8352006-06-09 21:02:31 +01003249
Simon Kelley1f15b812009-10-13 17:49:32 +01003250 if (!(name = canonicalise_opt(arg)))
Simon Kelley824af852008-02-12 20:43:05 +00003251 problem = _("bad SRV record");
3252
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 Kelley1f15b812009-10-13 17:49:32 +01003257 if (!(target = canonicalise_opt(arg))
3258) problem = _("bad SRV target");
Simon Kelley824af852008-02-12 20:43:05 +00003259
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, &port))
Simon Kelley824af852008-02-12 20:43:05 +00003265 problem = _("invalid port number");
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, &priority))
Simon Kelley824af852008-02-12 20:43:05 +00003272 problem = _("invalid priority");
3273
Simon Kelley849a8352006-06-09 21:02:31 +01003274 if (comma)
3275 {
3276 arg = comma;
Simon Kelleyf2621c72007-04-29 19:47:21 +01003277 comma = split(arg);
Simon Kelley1ad24ae2008-07-20 20:22:50 +01003278 if (!atoi_check16(arg, &weight))
Simon Kelley824af852008-02-12 20:43:05 +00003279 problem = _("invalid weight");
Simon Kelley849a8352006-06-09 21:02:31 +01003280 }
3281 }
3282 }
3283 }
3284
Simon Kelley824af852008-02-12 20:43:05 +00003285 new = opt_malloc(sizeof(struct mx_srv_record));
Simon Kelley849a8352006-06-09 21:02:31 +01003286 new->next = daemon->mxnames;
3287 daemon->mxnames = new;
3288 new->issrv = 1;
3289 new->name = name;
3290 new->target = target;
3291 new->srvport = port;
3292 new->priority = priority;
3293 new->weight = weight;
3294 break;
3295 }
Simon Kelley7622fc02009-06-04 20:32:05 +01003296
3297 default:
3298 return _("unsupported option (check that dnsmasq was compiled with DHCP/TFTP/DBus support)");
3299
Simon Kelley849a8352006-06-09 21:02:31 +01003300 }
3301
Simon Kelley824af852008-02-12 20:43:05 +00003302 if (problem)
3303 return problem;
3304
3305 if (option == '?')
3306 return gen_prob;
3307
3308 return NULL;
Simon Kelley849a8352006-06-09 21:02:31 +01003309}
3310
Simon Kelley28866e92011-02-14 20:19:14 +00003311static void read_file(char *file, FILE *f, int hard_opt)
Simon Kelley849a8352006-06-09 21:02:31 +01003312{
Simon Kelley824af852008-02-12 20:43:05 +00003313 volatile int lineno = 0;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003314 char *buff = daemon->namebuff;
Simon Kelley849a8352006-06-09 21:02:31 +01003315
3316 while (fgets(buff, MAXDNAME, f))
3317 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003318 int white, i, option; ;
3319 char *errmess, *p, *arg, *start;
3320 size_t len;
Simon Kelley832af0b2007-01-21 20:01:28 +00003321
Simon Kelley824af852008-02-12 20:43:05 +00003322 /* Memory allocation failure longjmps here if mem_recover == 1 */
3323 if (hard_opt)
3324 {
3325 if (setjmp(mem_jmp))
3326 continue;
3327 mem_recover = 1;
3328 }
3329
Simon Kelley849a8352006-06-09 21:02:31 +01003330 lineno++;
Simon Kelley824af852008-02-12 20:43:05 +00003331 errmess = NULL;
3332
Simon Kelley849a8352006-06-09 21:02:31 +01003333 /* Implement quotes, inside quotes we allow \\ \" \n and \t
3334 metacharacters get hidden also strip comments */
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003335 for (white = 1, p = buff; *p; p++)
Simon Kelley849a8352006-06-09 21:02:31 +01003336 {
3337 if (*p == '"')
3338 {
3339 memmove(p, p+1, strlen(p+1)+1);
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003340
Simon Kelley849a8352006-06-09 21:02:31 +01003341 for(; *p && *p != '"'; p++)
3342 {
Simon Kelley5aabfc72007-08-29 11:24:47 +01003343 if (*p == '\\' && strchr("\"tnebr\\", p[1]))
Simon Kelley849a8352006-06-09 21:02:31 +01003344 {
3345 if (p[1] == 't')
3346 p[1] = '\t';
3347 else if (p[1] == 'n')
3348 p[1] = '\n';
Simon Kelley849a8352006-06-09 21:02:31 +01003349 else if (p[1] == 'b')
3350 p[1] = '\b';
3351 else if (p[1] == 'r')
3352 p[1] = '\r';
Simon Kelley6b010842007-02-12 20:32:07 +00003353 else if (p[1] == 'e') /* escape */
3354 p[1] = '\033';
Simon Kelley849a8352006-06-09 21:02:31 +01003355 memmove(p, p+1, strlen(p+1)+1);
3356 }
3357 *p = hide_meta(*p);
3358 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003359
3360 if (*p == 0)
Simon Kelleyf2621c72007-04-29 19:47:21 +01003361 {
3362 errmess = _("missing \"");
3363 goto oops;
3364 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003365
3366 memmove(p, p+1, strlen(p+1)+1);
Simon Kelley849a8352006-06-09 21:02:31 +01003367 }
Simon Kelleyf2621c72007-04-29 19:47:21 +01003368
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003369 if (isspace(*p))
3370 {
3371 *p = ' ';
3372 white = 1;
Simon Kelley849a8352006-06-09 21:02:31 +01003373 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003374 else
3375 {
3376 if (white && *p == '#')
3377 {
3378 *p = 0;
3379 break;
3380 }
3381 white = 0;
3382 }
Simon Kelley849a8352006-06-09 21:02:31 +01003383 }
3384
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003385
3386 /* strip leading spaces */
3387 for (start = buff; *start && *start == ' '; start++);
3388
3389 /* strip trailing spaces */
3390 for (len = strlen(start); (len != 0) && (start[len-1] == ' '); len--);
3391
3392 if (len == 0)
Simon Kelley849a8352006-06-09 21:02:31 +01003393 continue;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003394 else
3395 start[len] = 0;
3396
Simon Kelley824af852008-02-12 20:43:05 +00003397 if (hard_opt != 0)
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003398 arg = start;
3399 else if ((p=strchr(start, '=')))
Simon Kelley849a8352006-06-09 21:02:31 +01003400 {
3401 /* allow spaces around "=" */
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003402 for (arg = p+1; *arg == ' '; arg++);
3403 for (; p >= start && (*p == ' ' || *p == '='); p--)
Simon Kelley849a8352006-06-09 21:02:31 +01003404 *p = 0;
3405 }
3406 else
3407 arg = NULL;
Simon Kelley832af0b2007-01-21 20:01:28 +00003408
Simon Kelley824af852008-02-12 20:43:05 +00003409 if (hard_opt != 0)
3410 option = hard_opt;
Simon Kelley849a8352006-06-09 21:02:31 +01003411 else
Simon Kelley5aabfc72007-08-29 11:24:47 +01003412 {
Simon Kelley5aabfc72007-08-29 11:24:47 +01003413 for (option = 0, i = 0; opts[i].name; i++)
3414 if (strcmp(opts[i].name, start) == 0)
3415 {
3416 option = opts[i].val;
3417 break;
3418 }
3419
3420 if (!option)
3421 errmess = _("bad option");
3422 else if (opts[i].has_arg == 0 && arg)
3423 errmess = _("extraneous parameter");
3424 else if (opts[i].has_arg == 1 && !arg)
3425 errmess = _("missing parameter");
3426 }
Simon Kelley824af852008-02-12 20:43:05 +00003427
Simon Kelley5aabfc72007-08-29 11:24:47 +01003428 if (!errmess)
Simon Kelley28866e92011-02-14 20:19:14 +00003429 errmess = one_opt(option, arg, _("error"), 0);
Simon Kelley832af0b2007-01-21 20:01:28 +00003430
3431 if (errmess)
Simon Kelleyf2621c72007-04-29 19:47:21 +01003432 {
3433 oops:
3434 sprintf(buff, _("%s at line %d of %%s"), errmess, lineno);
Simon Kelley824af852008-02-12 20:43:05 +00003435 if (hard_opt != 0)
Simon Kelley5aabfc72007-08-29 11:24:47 +01003436 my_syslog(LOG_ERR, buff, file);
3437 else
3438 die(buff, file, EC_BADCONF);
Simon Kelleyf2621c72007-04-29 19:47:21 +01003439 }
Simon Kelley849a8352006-06-09 21:02:31 +01003440 }
3441
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003442 mem_recover = 0;
Simon Kelley849a8352006-06-09 21:02:31 +01003443 fclose(f);
3444}
3445
Simon Kelley28866e92011-02-14 20:19:14 +00003446static void one_file(char *file, int hard_opt)
3447{
3448 FILE *f;
3449 int nofile_ok = 0;
3450 static int read_stdin = 0;
3451 static struct fileread {
3452 dev_t dev;
3453 ino_t ino;
3454 struct fileread *next;
3455 } *filesread = NULL;
3456
3457 if (hard_opt == '7')
3458 {
3459 /* default conf-file reading */
3460 hard_opt = 0;
3461 nofile_ok = 1;
3462 }
3463
3464 if (hard_opt == 0 && strcmp(file, "-") == 0)
3465 {
3466 if (read_stdin == 1)
3467 return;
3468 read_stdin = 1;
3469 file = "stdin";
3470 f = stdin;
3471 }
3472 else
3473 {
3474 /* ignore repeated files. */
3475 struct stat statbuf;
3476
3477 if (hard_opt == 0 && stat(file, &statbuf) == 0)
3478 {
3479 struct fileread *r;
3480
3481 for (r = filesread; r; r = r->next)
3482 if (r->dev == statbuf.st_dev && r->ino == statbuf.st_ino)
3483 return;
3484
3485 r = safe_malloc(sizeof(struct fileread));
3486 r->next = filesread;
3487 filesread = r;
3488 r->dev = statbuf.st_dev;
3489 r->ino = statbuf.st_ino;
3490 }
3491
3492 if (!(f = fopen(file, "r")))
3493 {
3494 if (errno == ENOENT && nofile_ok)
3495 return; /* No conffile, all done. */
3496 else
3497 {
3498 char *str = _("cannot read %s: %s");
3499 if (hard_opt != 0)
3500 {
3501 my_syslog(LOG_ERR, str, file, strerror(errno));
3502 return;
3503 }
3504 else
3505 die(str, file, EC_FILE);
3506 }
3507 }
3508 }
3509
3510 read_file(file, f, hard_opt);
3511}
3512
3513/* expand any name which is a directory */
3514struct hostsfile *expand_filelist(struct hostsfile *list)
3515{
3516 int i;
3517 struct hostsfile *ah;
3518
3519 for (i = 0, ah = list; ah; ah = ah->next)
3520 {
3521 if (i <= ah->index)
3522 i = ah->index + 1;
3523
3524 if (ah->flags & AH_DIR)
3525 ah->flags |= AH_INACTIVE;
3526 else
3527 ah->flags &= ~AH_INACTIVE;
3528 }
3529
3530 for (ah = list; ah; ah = ah->next)
3531 if (!(ah->flags & AH_INACTIVE))
3532 {
3533 struct stat buf;
3534 if (stat(ah->fname, &buf) != -1 && S_ISDIR(buf.st_mode))
3535 {
3536 DIR *dir_stream;
3537 struct dirent *ent;
3538
3539 /* don't read this as a file */
3540 ah->flags |= AH_INACTIVE;
3541
3542 if (!(dir_stream = opendir(ah->fname)))
3543 my_syslog(LOG_ERR, _("cannot access directory %s: %s"),
3544 ah->fname, strerror(errno));
3545 else
3546 {
3547 while ((ent = readdir(dir_stream)))
3548 {
3549 size_t lendir = strlen(ah->fname);
3550 size_t lenfile = strlen(ent->d_name);
3551 struct hostsfile *ah1;
3552 char *path;
3553
3554 /* ignore emacs backups and dotfiles */
3555 if (lenfile == 0 ||
3556 ent->d_name[lenfile - 1] == '~' ||
3557 (ent->d_name[0] == '#' && ent->d_name[lenfile - 1] == '#') ||
3558 ent->d_name[0] == '.')
3559 continue;
3560
3561 /* see if we have an existing record.
3562 dir is ah->fname
3563 file is ent->d_name
3564 path to match is ah1->fname */
3565
3566 for (ah1 = list; ah1; ah1 = ah1->next)
3567 {
3568 if (lendir < strlen(ah1->fname) &&
3569 strstr(ah1->fname, ah->fname) == ah1->fname &&
3570 ah1->fname[lendir] == '/' &&
3571 strcmp(ah1->fname + lendir + 1, ent->d_name) == 0)
3572 {
3573 ah1->flags &= ~AH_INACTIVE;
3574 break;
3575 }
3576 }
3577
3578 /* make new record */
3579 if (!ah1)
3580 {
3581 if (!(ah1 = whine_malloc(sizeof(struct hostsfile))))
3582 continue;
3583
3584 if (!(path = whine_malloc(lendir + lenfile + 2)))
3585 {
3586 free(ah1);
3587 continue;
3588 }
3589
3590 strcpy(path, ah->fname);
3591 strcat(path, "/");
3592 strcat(path, ent->d_name);
3593 ah1->fname = path;
3594 ah1->index = i++;
3595 ah1->flags = AH_DIR;
3596 ah1->next = list;
3597 list = ah1;
3598 }
3599
3600 /* inactivate record if not regular file */
3601 if ((ah1->flags & AH_DIR) && stat(ah1->fname, &buf) != -1 && !S_ISREG(buf.st_mode))
3602 ah1->flags |= AH_INACTIVE;
3603
3604 }
3605 closedir(dir_stream);
3606 }
3607 }
3608 }
3609
3610 return list;
3611}
3612
3613
Simon Kelley7622fc02009-06-04 20:32:05 +01003614#ifdef HAVE_DHCP
Simon Kelley824af852008-02-12 20:43:05 +00003615void reread_dhcp(void)
3616{
Simon Kelley28866e92011-02-14 20:19:14 +00003617 struct hostsfile *hf;
3618
Simon Kelley824af852008-02-12 20:43:05 +00003619 if (daemon->dhcp_hosts_file)
3620 {
3621 struct dhcp_config *configs, *cp, **up;
Simon Kelley28866e92011-02-14 20:19:14 +00003622
Simon Kelley824af852008-02-12 20:43:05 +00003623 /* remove existing... */
3624 for (up = &daemon->dhcp_conf, configs = daemon->dhcp_conf; configs; configs = cp)
3625 {
3626 cp = configs->next;
3627
3628 if (configs->flags & CONFIG_BANK)
3629 {
Simon Kelley9009d742008-11-14 20:04:27 +00003630 struct hwaddr_config *mac, *tmp;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003631 struct dhcp_netid_list *list, *tmplist;
Simon Kelley9009d742008-11-14 20:04:27 +00003632
3633 for (mac = configs->hwaddr; mac; mac = tmp)
3634 {
3635 tmp = mac->next;
3636 free(mac);
3637 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003638
Simon Kelley824af852008-02-12 20:43:05 +00003639 if (configs->flags & CONFIG_CLID)
3640 free(configs->clid);
Simon Kelley8ef5ada2010-06-03 19:42:45 +01003641
3642 for (list = configs->netid; list; list = tmplist)
3643 {
3644 free(list->list);
3645 tmplist = list->next;
3646 free(list);
3647 }
3648
Simon Kelley824af852008-02-12 20:43:05 +00003649 if (configs->flags & CONFIG_NAME)
3650 free(configs->hostname);
3651
3652 *up = configs->next;
3653 free(configs);
3654 }
3655 else
3656 up = &configs->next;
3657 }
3658
Simon Kelley28866e92011-02-14 20:19:14 +00003659 daemon->dhcp_hosts_file = expand_filelist(daemon->dhcp_hosts_file);
3660 for (hf = daemon->dhcp_hosts_file; hf; hf = hf->next)
3661 if (!(hf->flags & AH_INACTIVE))
3662 {
3663 one_file(hf->fname, LOPT_BANK);
3664 my_syslog(MS_DHCP | LOG_INFO, _("read %s"), hf->fname);
3665 }
Simon Kelley824af852008-02-12 20:43:05 +00003666 }
3667
3668 if (daemon->dhcp_opts_file)
3669 {
3670 struct dhcp_opt *opts, *cp, **up;
3671 struct dhcp_netid *id, *next;
3672
3673 for (up = &daemon->dhcp_opts, opts = daemon->dhcp_opts; opts; opts = cp)
3674 {
3675 cp = opts->next;
3676
3677 if (opts->flags & DHOPT_BANK)
3678 {
Simon Kelley73a08a22009-02-05 20:28:08 +00003679 if ((opts->flags & DHOPT_VENDOR))
3680 free(opts->u.vendor_class);
Simon Kelley824af852008-02-12 20:43:05 +00003681 free(opts->val);
3682 for (id = opts->netid; id; id = next)
3683 {
3684 next = id->next;
3685 free(id->net);
3686 free(id);
3687 }
3688 *up = opts->next;
3689 free(opts);
3690 }
3691 else
3692 up = &opts->next;
3693 }
3694
Simon Kelley28866e92011-02-14 20:19:14 +00003695 daemon->dhcp_opts_file = expand_filelist(daemon->dhcp_opts_file);
3696 for (hf = daemon->dhcp_opts_file; hf; hf = hf->next)
3697 if (!(hf->flags & AH_INACTIVE))
3698 {
3699 one_file(hf->fname, LOPT_OPTS);
3700 my_syslog(MS_DHCP | LOG_INFO, _("read %s"), hf->fname);
3701 }
Simon Kelley824af852008-02-12 20:43:05 +00003702 }
3703}
Simon Kelley7622fc02009-06-04 20:32:05 +01003704#endif
Simon Kelley824af852008-02-12 20:43:05 +00003705
Simon Kelley5aabfc72007-08-29 11:24:47 +01003706void read_opts(int argc, char **argv, char *compile_opts)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003707{
Simon Kelley824af852008-02-12 20:43:05 +00003708 char *buff = opt_malloc(MAXDNAME);
Simon Kelley28866e92011-02-14 20:19:14 +00003709 int option, conffile_opt = '7', testmode = 0;
Simon Kelley849a8352006-06-09 21:02:31 +01003710 char *errmess, *arg, *conffile = CONFFILE;
3711
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003712 opterr = 0;
Simon Kelley5aabfc72007-08-29 11:24:47 +01003713
Simon Kelley824af852008-02-12 20:43:05 +00003714 daemon = opt_malloc(sizeof(struct daemon));
Simon Kelley3be34542004-09-11 19:12:13 +01003715 memset(daemon, 0, sizeof(struct daemon));
3716 daemon->namebuff = buff;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003717
Simon Kelley3be34542004-09-11 19:12:13 +01003718 /* Set defaults - everything else is zero or NULL */
Simon Kelley3be34542004-09-11 19:12:13 +01003719 daemon->cachesize = CACHESIZ;
Simon Kelley208b65c2006-08-05 21:41:37 +01003720 daemon->ftabsize = FTABSIZ;
Simon Kelley3be34542004-09-11 19:12:13 +01003721 daemon->port = NAMESERVER_PORT;
Simon Kelley9e038942008-05-30 20:06:34 +01003722 daemon->dhcp_client_port = DHCP_CLIENT_PORT;
3723 daemon->dhcp_server_port = DHCP_SERVER_PORT;
Simon Kelley3be34542004-09-11 19:12:13 +01003724 daemon->default_resolv.is_default = 1;
3725 daemon->default_resolv.name = RESOLVFILE;
3726 daemon->resolv_files = &daemon->default_resolv;
3727 daemon->username = CHUSER;
Simon Kelley3be34542004-09-11 19:12:13 +01003728 daemon->runfile = RUNFILE;
3729 daemon->dhcp_max = MAXLEASES;
Simon Kelley832af0b2007-01-21 20:01:28 +00003730 daemon->tftp_max = TFTP_MAX_CONNECTIONS;
Simon Kelley3be34542004-09-11 19:12:13 +01003731 daemon->edns_pktsz = EDNS_PKTSZ;
Simon Kelley849a8352006-06-09 21:02:31 +01003732 daemon->log_fac = -1;
Simon Kelley5aabfc72007-08-29 11:24:47 +01003733 add_txt("version.bind", "dnsmasq-" VERSION );
3734 add_txt("authors.bind", "Simon Kelley");
3735 add_txt("copyright.bind", COPYRIGHT);
Simon Kelley0a852542005-03-23 20:28:59 +00003736
Simon Kelley849a8352006-06-09 21:02:31 +01003737 while (1)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003738 {
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003739#ifdef HAVE_GETOPT_LONG
Simon Kelley849a8352006-06-09 21:02:31 +01003740 option = getopt_long(argc, argv, OPTSTRING, opts, NULL);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003741#else
Simon Kelley849a8352006-06-09 21:02:31 +01003742 option = getopt(argc, argv, OPTSTRING);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003743#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003744
3745 if (option == -1)
Simon Kelley28866e92011-02-14 20:19:14 +00003746 {
Simon Kelley572b41e2011-02-18 18:11:18 +00003747 for (; optind < argc; optind++)
3748 {
3749 unsigned char *c = (unsigned char *)argv[optind];
3750 for (; *c != 0; c++)
3751 if (!isspace(*c))
3752 die(_("junk found in command line"), NULL, EC_BADCONF);
3753 }
Simon Kelley28866e92011-02-14 20:19:14 +00003754 break;
3755 }
3756
Simon Kelley849a8352006-06-09 21:02:31 +01003757 /* Copy optarg so that argv doesn't get changed */
3758 if (optarg)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003759 {
Simon Kelley849a8352006-06-09 21:02:31 +01003760 strncpy(buff, optarg, MAXDNAME);
3761 buff[MAXDNAME-1] = 0;
3762 arg = buff;
3763 }
3764 else
3765 arg = NULL;
3766
3767 /* command-line only stuff */
Simon Kelley7622fc02009-06-04 20:32:05 +01003768 if (option == LOPT_TEST)
3769 testmode = 1;
3770 else if (option == 'w')
Simon Kelley849a8352006-06-09 21:02:31 +01003771 {
Simon Kelley7622fc02009-06-04 20:32:05 +01003772#ifdef HAVE_DHCP
Simon Kelley4cb1b322012-02-06 14:30:41 +00003773 if (argc == 3 && strcmp(argv[2], "dhcp") == 0)
Simon Kelley7622fc02009-06-04 20:32:05 +01003774 display_opts();
Simon Kelley4cb1b322012-02-06 14:30:41 +00003775#ifdef HAVE_DHCP6
3776 else if (argc == 3 && strcmp(argv[2], "dhcp6") == 0)
3777 display_opts6();
Simon Kelley7622fc02009-06-04 20:32:05 +01003778#endif
Simon Kelley4cb1b322012-02-06 14:30:41 +00003779 else
3780#endif
3781 do_usage();
3782
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003783 exit(0);
3784 }
Simon Kelley849a8352006-06-09 21:02:31 +01003785 else if (option == 'v')
3786 {
3787 printf(_("Dnsmasq version %s %s\n"), VERSION, COPYRIGHT);
Simon Kelleyc72daea2012-01-05 21:33:27 +00003788 printf(_("Compile time options: %s\n\n"), compile_opts);
Simon Kelleyb8187c82005-11-26 21:46:27 +00003789 printf(_("This software comes with ABSOLUTELY NO WARRANTY.\n"));
3790 printf(_("Dnsmasq is free software, and you are welcome to redistribute it\n"));
Simon Kelley824af852008-02-12 20:43:05 +00003791 printf(_("under the terms of the GNU General Public License, version 2 or 3.\n"));
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003792 exit(0);
3793 }
Simon Kelley849a8352006-06-09 21:02:31 +01003794 else if (option == 'C')
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003795 {
Simon Kelley28866e92011-02-14 20:19:14 +00003796 conffile_opt = 0; /* file must exist */
Simon Kelley824af852008-02-12 20:43:05 +00003797 conffile = opt_string_alloc(arg);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003798 }
Simon Kelley849a8352006-06-09 21:02:31 +01003799 else
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003800 {
Simon Kelley26128d22004-11-14 16:43:54 +00003801#ifdef HAVE_GETOPT_LONG
Simon Kelley28866e92011-02-14 20:19:14 +00003802 errmess = one_opt(option, arg, _("try --help"), 1);
Simon Kelley849a8352006-06-09 21:02:31 +01003803#else
Simon Kelley28866e92011-02-14 20:19:14 +00003804 errmess = one_opt(option, arg, _("try -w"), 1);
Simon Kelley849a8352006-06-09 21:02:31 +01003805#endif
3806 if (errmess)
Simon Kelley5aabfc72007-08-29 11:24:47 +01003807 die(_("bad command line options: %s"), errmess, EC_BADCONF);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003808 }
3809 }
Simon Kelley849a8352006-06-09 21:02:31 +01003810
3811 if (conffile)
Simon Kelley28866e92011-02-14 20:19:14 +00003812 one_file(conffile, conffile_opt);
Simon Kelley849a8352006-06-09 21:02:31 +01003813
Simon Kelley1a6bca82008-07-11 11:11:42 +01003814 /* port might not be known when the address is parsed - fill in here */
Simon Kelley3be34542004-09-11 19:12:13 +01003815 if (daemon->servers)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003816 {
3817 struct server *tmp;
Simon Kelley3be34542004-09-11 19:12:13 +01003818 for (tmp = daemon->servers; tmp; tmp = tmp->next)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003819 if (!(tmp->flags & SERV_HAS_SOURCE))
3820 {
3821 if (tmp->source_addr.sa.sa_family == AF_INET)
Simon Kelley3be34542004-09-11 19:12:13 +01003822 tmp->source_addr.in.sin_port = htons(daemon->query_port);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003823#ifdef HAVE_IPV6
3824 else if (tmp->source_addr.sa.sa_family == AF_INET6)
Simon Kelley3be34542004-09-11 19:12:13 +01003825 tmp->source_addr.in6.sin6_port = htons(daemon->query_port);
Simon Kelley5aabfc72007-08-29 11:24:47 +01003826#endif
3827 }
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003828 }
3829
Simon Kelley3be34542004-09-11 19:12:13 +01003830 if (daemon->if_addrs)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003831 {
3832 struct iname *tmp;
Simon Kelley3be34542004-09-11 19:12:13 +01003833 for(tmp = daemon->if_addrs; tmp; tmp = tmp->next)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003834 if (tmp->addr.sa.sa_family == AF_INET)
Simon Kelley3be34542004-09-11 19:12:13 +01003835 tmp->addr.in.sin_port = htons(daemon->port);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003836#ifdef HAVE_IPV6
3837 else if (tmp->addr.sa.sa_family == AF_INET6)
Simon Kelley3be34542004-09-11 19:12:13 +01003838 tmp->addr.in6.sin6_port = htons(daemon->port);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003839#endif /* IPv6 */
3840 }
3841
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00003842 /* only one of these need be specified: the other defaults to the host-name */
Simon Kelley28866e92011-02-14 20:19:14 +00003843 if (option_bool(OPT_LOCALMX) || daemon->mxnames || daemon->mxtarget)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003844 {
Simon Kelley0a852542005-03-23 20:28:59 +00003845 struct mx_srv_record *mx;
3846
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003847 if (gethostname(buff, MAXDNAME) == -1)
Simon Kelley5aabfc72007-08-29 11:24:47 +01003848 die(_("cannot get host-name: %s"), NULL, EC_MISC);
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00003849
Simon Kelley0a852542005-03-23 20:28:59 +00003850 for (mx = daemon->mxnames; mx; mx = mx->next)
3851 if (!mx->issrv && hostname_isequal(mx->name, buff))
3852 break;
3853
Simon Kelley28866e92011-02-14 20:19:14 +00003854 if ((daemon->mxtarget || option_bool(OPT_LOCALMX)) && !mx)
Simon Kelleyde379512004-06-22 20:23:33 +01003855 {
Simon Kelley824af852008-02-12 20:43:05 +00003856 mx = opt_malloc(sizeof(struct mx_srv_record));
Simon Kelley91dccd02005-03-31 17:48:32 +01003857 mx->next = daemon->mxnames;
3858 mx->issrv = 0;
3859 mx->target = NULL;
Simon Kelley824af852008-02-12 20:43:05 +00003860 mx->name = opt_string_alloc(buff);
Simon Kelley91dccd02005-03-31 17:48:32 +01003861 daemon->mxnames = mx;
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00003862 }
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003863
Simon Kelley3be34542004-09-11 19:12:13 +01003864 if (!daemon->mxtarget)
Simon Kelley824af852008-02-12 20:43:05 +00003865 daemon->mxtarget = opt_string_alloc(buff);
Simon Kelley0a852542005-03-23 20:28:59 +00003866
3867 for (mx = daemon->mxnames; mx; mx = mx->next)
3868 if (!mx->issrv && !mx->target)
3869 mx->target = daemon->mxtarget;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003870 }
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00003871
Simon Kelley28866e92011-02-14 20:19:14 +00003872 if (!option_bool(OPT_NO_RESOLV) &&
Simon Kelley208b65c2006-08-05 21:41:37 +01003873 daemon->resolv_files &&
3874 daemon->resolv_files->next &&
Simon Kelley28866e92011-02-14 20:19:14 +00003875 option_bool(OPT_NO_POLL))
Simon Kelley5aabfc72007-08-29 11:24:47 +01003876 die(_("only one resolv.conf file allowed in no-poll mode."), NULL, EC_BADCONF);
Simon Kelleyde379512004-06-22 20:23:33 +01003877
Simon Kelley28866e92011-02-14 20:19:14 +00003878 if (option_bool(OPT_RESOLV_DOMAIN))
Simon Kelleyde379512004-06-22 20:23:33 +01003879 {
3880 char *line;
Simon Kelley849a8352006-06-09 21:02:31 +01003881 FILE *f;
3882
Simon Kelley28866e92011-02-14 20:19:14 +00003883 if (option_bool(OPT_NO_RESOLV) ||
Simon Kelley208b65c2006-08-05 21:41:37 +01003884 !daemon->resolv_files ||
3885 (daemon->resolv_files)->next)
Simon Kelley5aabfc72007-08-29 11:24:47 +01003886 die(_("must have exactly one resolv.conf to read domain from."), NULL, EC_BADCONF);
Simon Kelleyde379512004-06-22 20:23:33 +01003887
Simon Kelley3be34542004-09-11 19:12:13 +01003888 if (!(f = fopen((daemon->resolv_files)->name, "r")))
Simon Kelley5aabfc72007-08-29 11:24:47 +01003889 die(_("failed to read %s: %s"), (daemon->resolv_files)->name, EC_FILE);
Simon Kelleyde379512004-06-22 20:23:33 +01003890
3891 while ((line = fgets(buff, MAXDNAME, f)))
3892 {
3893 char *token = strtok(line, " \t\n\r");
3894
3895 if (!token || strcmp(token, "search") != 0)
3896 continue;
3897
3898 if ((token = strtok(NULL, " \t\n\r")) &&
Simon Kelley1f15b812009-10-13 17:49:32 +01003899 (daemon->domain_suffix = canonicalise_opt(token)))
Simon Kelleyde379512004-06-22 20:23:33 +01003900 break;
3901 }
Simon Kelley3be34542004-09-11 19:12:13 +01003902
Simon Kelleyde379512004-06-22 20:23:33 +01003903 fclose(f);
Simon Kelley8a911cc2004-03-16 18:35:52 +00003904
Simon Kelley3be34542004-09-11 19:12:13 +01003905 if (!daemon->domain_suffix)
Simon Kelley5aabfc72007-08-29 11:24:47 +01003906 die(_("no search directive found in %s"), (daemon->resolv_files)->name, EC_MISC);
Simon Kelleyde379512004-06-22 20:23:33 +01003907 }
Simon Kelley3d8df262005-08-29 12:19:27 +01003908
3909 if (daemon->domain_suffix)
3910 {
3911 /* add domain for any srv record without one. */
3912 struct mx_srv_record *srv;
Simon Kelleyde379512004-06-22 20:23:33 +01003913
Simon Kelley3d8df262005-08-29 12:19:27 +01003914 for (srv = daemon->mxnames; srv; srv = srv->next)
3915 if (srv->issrv &&
3916 strchr(srv->name, '.') &&
3917 strchr(srv->name, '.') == strrchr(srv->name, '.'))
3918 {
3919 strcpy(buff, srv->name);
3920 strcat(buff, ".");
3921 strcat(buff, daemon->domain_suffix);
3922 free(srv->name);
Simon Kelley824af852008-02-12 20:43:05 +00003923 srv->name = opt_string_alloc(buff);
Simon Kelley3d8df262005-08-29 12:19:27 +01003924 }
3925 }
Simon Kelley28866e92011-02-14 20:19:14 +00003926 else if (option_bool(OPT_DHCP_FQDN))
Simon Kelley9009d742008-11-14 20:04:27 +00003927 die(_("there must be a default domain when --dhcp-fqdn is set"), NULL, EC_BADCONF);
Simon Kelley7622fc02009-06-04 20:32:05 +01003928
3929 if (testmode)
3930 {
3931 fprintf(stderr, "dnsmasq: %s.\n", _("syntax check OK"));
3932 exit(0);
3933 }
Simon Kelley849a8352006-06-09 21:02:31 +01003934}