e974d523fd0842e1697f785fe5f9f3e95a8bab44
2 * copyright (c) 2001-2009 Emil Mikulic.
4 * darkstat.c: signals, cmdline parsing, program body.
6 * You may use, modify and redistribute this file under the terms of the
7 * GNU General Public License version 2. (see COPYING.GPL)
24 #include <arpa/inet.h>
38 # define INADDR_NONE (-1) /* Solaris */
41 /* --- Signal handling --- */
42 static volatile int running
= 1;
43 static void sig_shutdown(int signum _unused_
) { running
= 0; }
45 static volatile int reset_pending
= 0;
46 static void sig_reset(int signum _unused_
) { reset_pending
= 1; }
48 /* --- Commandline parsing --- */
50 parsenum(const char *str
, unsigned long max
/* 0 for no max */)
56 n
= strtoul(str
, &end
, 10);
58 errx(1, "\"%s\" is not a valid number", str
);
60 errx(1, "\"%s\" is out of range", str
);
61 if ((max
!= 0) && (n
> max
))
62 errx(1, "\"%s\" is out of range (max %lu)", str
, max
);
66 const char *interface
= NULL
;
67 static void cb_interface(const char *arg
) { interface
= arg
; }
69 const char *capfile
= NULL
;
70 static void cb_capfile(const char *arg
) { capfile
= arg
; }
73 static void cb_pppoe(const char *arg _unused_
) { want_pppoe
= 1; }
75 static void cb_verbose(const char *arg _unused_
) { want_verbose
= 1; }
77 int want_daemonize
= 1;
78 static void cb_no_daemon(const char *arg _unused_
) { want_daemonize
= 0; }
81 static void cb_no_promisc(const char *arg _unused_
) { want_promisc
= 0; }
84 static void cb_no_dns(const char *arg _unused_
) { want_dns
= 0; }
87 static void cb_no_macs(const char *arg _unused_
) { want_macs
= 0; }
89 unsigned short bindport
= 667;
90 static void cb_port(const char *arg
) { bindport
= parsenum(arg
, 65536); }
92 in_addr_t bindaddr
= INADDR_ANY
;
93 static void cb_bindaddr(const char *arg
)
95 bindaddr
= inet_addr(arg
);
96 if (bindaddr
== (in_addr_t
)INADDR_NONE
)
97 errx(1, "malformed address \"%s\"", arg
);
100 const char *filter
= NULL
;
101 static void cb_filter(const char *arg
) { filter
= arg
; }
103 static void cb_local(const char *arg
) { acct_init_localnet(arg
); }
105 const char *chroot_dir
= NULL
;
106 static void cb_chroot(const char *arg
) { chroot_dir
= arg
; }
108 const char *privdrop_user
= NULL
;
109 static void cb_user(const char *arg
) { privdrop_user
= arg
; }
111 const char *daylog_fn
= NULL
;
112 static void cb_daylog(const char *arg
)
114 if (chroot_dir
== NULL
)
115 errx(1, "the daylog file is relative to the chroot.\n"
116 "You must specify a --chroot dir before you can use --daylog.");
121 const char *import_fn
= NULL
;
122 static void cb_import(const char *arg
)
124 if (chroot_dir
== NULL
)
125 errx(1, "the import file is relative to the chroot.\n"
126 "You must specify a --chroot dir before you can use --import.");
131 const char *export_fn
= NULL
;
132 static void cb_export(const char *arg
)
134 if ((chroot_dir
== NULL
) && (capfile
== NULL
))
135 errx(1, "the export file is relative to the chroot.\n"
136 "You must specify a --chroot dir before you can use --export.");
141 static const char *pid_fn
= NULL
;
142 static void cb_pidfile(const char *arg
)
144 if (chroot_dir
== NULL
)
145 errx(1, "the pidfile is relative to the chroot.\n"
146 "You must specify a --chroot dir before you can use --pidfile.");
151 unsigned int hosts_max
= 1000;
152 static void cb_hosts_max(const char *arg
)
153 { hosts_max
= parsenum(arg
, 0); }
155 unsigned int hosts_keep
= 500;
156 static void cb_hosts_keep(const char *arg
)
157 { hosts_keep
= parsenum(arg
, 0); }
159 unsigned int ports_max
= 200;
160 static void cb_ports_max(const char *arg
)
161 { ports_max
= parsenum(arg
, 65536); }
163 unsigned int ports_keep
= 30;
164 static void cb_ports_keep(const char *arg
)
165 { ports_keep
= parsenum(arg
, 65536); }
167 unsigned int highest_port
= 65535;
168 static void cb_highest_port(const char *arg
)
169 { highest_port
= parsenum(arg
, 65535); }
171 int want_hexdump
= 0;
172 static void cb_hexdump(const char *arg _unused_
) { want_hexdump
= 1; }
177 const char *name
, *arg_name
; /* NULL arg_name means unary */
178 void (*callback
)(const char *arg
);
182 static struct cmdline_arg cmdline_args
[] = {
183 {"-i", "interface", cb_interface
, 0},
184 {"-r", "file", cb_capfile
, 0},
185 {"--pppoe", NULL
, cb_pppoe
, 0},
186 {"--verbose", NULL
, cb_verbose
, 0},
187 {"--no-daemon", NULL
, cb_no_daemon
, 0},
188 {"--no-promisc", NULL
, cb_no_promisc
, 0},
189 {"--no-dns", NULL
, cb_no_dns
, 0},
190 {"--no-macs", NULL
, cb_no_macs
, 0},
191 {"-p", "port", cb_port
, 0},
192 {"-b", "bindaddr", cb_bindaddr
, 0},
193 {"-f", "filter", cb_filter
, 0},
194 {"-l", "network/netmask", cb_local
, 0},
195 {"--chroot", "dir", cb_chroot
, 0},
196 {"--user", "username", cb_user
, 0},
197 {"--daylog", "filename", cb_daylog
, 0},
198 {"--import", "filename", cb_import
, 0},
199 {"--export", "filename", cb_export
, 0},
200 {"--pidfile", "filename", cb_pidfile
, 0},
201 {"--hosts-max", "count", cb_hosts_max
, 0},
202 {"--hosts-keep", "count", cb_hosts_keep
, 0},
203 {"--ports-max", "count", cb_ports_max
, 0},
204 {"--ports-keep", "count", cb_ports_keep
, 0},
205 {"--highest-port", "port", cb_highest_port
, 0},
206 {"--hexdump", NULL
, cb_hexdump
, 0},
207 {NULL
, NULL
, NULL
, 0}
214 for (i
=0; i
<width
; i
++) printf(" ");
218 * We autogenerate the usage statement from the cmdline_args data structure.
224 struct cmdline_arg
*arg
;
226 printf(PACKAGE_STRING
" (built with libpcap %d.%d)\n\n",
227 PCAP_VERSION_MAJOR
, PCAP_VERSION_MINOR
);
229 width
= printf("usage: darkstat ");
232 for (arg
= cmdline_args
; arg
->name
!= NULL
; arg
++) {
233 if (first
) first
= 0; else pad(width
);
234 printf("[ %s", arg
->name
);
235 if (arg
->arg_name
!= NULL
) printf(" %s", arg
->arg_name
);
239 "Please refer to the darkstat(8) manual page for further\n"
240 "documentation and usage examples.\n");
244 parse_sub_cmdline(const int argc
, char * const *argv
)
246 struct cmdline_arg
*arg
;
248 if (argc
== 0) return;
249 for (arg
= cmdline_args
; arg
->name
!= NULL
; arg
++)
250 if (strcmp(argv
[0], arg
->name
) == 0) {
251 if ((arg
->arg_name
!= NULL
) && (argc
== 1)) {
252 printf("\nerror: argument \"%s\" requires parameter \"%s\"\n",
253 arg
->name
, arg
->arg_name
);
257 if (arg
->num_seen
> 0) {
258 printf("\nerror: already specified argument \"%s\"\n",
265 if (arg
->arg_name
== NULL
) {
267 parse_sub_cmdline(argc
-1, argv
+1);
269 arg
->callback(argv
[1]);
270 parse_sub_cmdline(argc
-2, argv
+2);
275 printf("\nerror: illegal argument: \"%s\"\n", argv
[0]);
281 parse_cmdline(const int argc
, char * const *argv
)
284 /* Not enough args. */
289 parse_sub_cmdline(argc
, argv
);
291 /* some default values */
292 if (chroot_dir
== NULL
) chroot_dir
= CHROOT_DIR
;
293 if (privdrop_user
== NULL
) privdrop_user
= PRIVDROP_USER
;
295 /* sanity check args */
296 if ((interface
== NULL
) && (capfile
== NULL
))
297 errx(1, "must specify either interface (-i) or capture file (-r)");
299 if ((interface
!= NULL
) && (capfile
!= NULL
))
300 errx(1, "can't specify both interface (-i) and capture file (-r)");
302 if ((hosts_max
!= 0) && (hosts_keep
>= hosts_max
)) {
303 hosts_keep
= hosts_max
/ 2;
304 warnx("reducing --hosts-keep to %u, to be under --hosts-max (%u)",
305 hosts_keep
, hosts_max
);
307 verbosef("max %u hosts, cutting down to %u when exceeded",
308 hosts_max
, hosts_keep
);
310 if ((ports_max
!= 0) && (ports_keep
>= ports_max
)) {
311 ports_keep
= ports_max
/ 2;
312 warnx("reducing --ports-keep to %u, to be under --ports-max (%u)",
313 ports_keep
, ports_max
);
315 verbosef("max %u ports per host, cutting down to %u when exceeded",
316 ports_max
, ports_keep
);
318 if (want_hexdump
&& !want_verbose
) {
320 verbosef("--hexdump implies --verbose");
323 if (want_hexdump
&& want_daemonize
) {
325 verbosef("--hexdump implies --no-daemon");
330 run_from_capfile(void)
334 cap_from_file(capfile
, filter
);
336 if (export_fn
!= NULL
) db_export(export_fn
);
339 verbosef("Total packets: %qu, bytes: %qu", total_packets
, total_bytes
);
342 /* --- Program body --- */
344 main(int argc
, char **argv
)
347 parse_cmdline(argc
-1, argv
+1);
351 * This is very different from a regular run against a network
358 /* must verbosef() before first fork to init lock */
359 verbosef("starting up");
360 if (pid_fn
) pidfile_create(chroot_dir
, pid_fn
, privdrop_user
);
362 if (want_daemonize
) {
363 verbosef("daemonizing to run in the background!");
365 verbosef("I am the main process");
367 if (pid_fn
) pidfile_write_close();
369 /* do this first as it forks - minimize memory use */
370 if (want_dns
) dns_init(privdrop_user
);
371 cap_init(interface
, filter
, want_promisc
); /* needs root */
372 http_init(bindaddr
, bindport
, /*maxconn=*/ -1); /* low ports need root */
373 ncache_init(); /* must do before chroot() */
375 privdrop(chroot_dir
, privdrop_user
);
377 /* Don't need root privs for these: */
379 if (daylog_fn
!= NULL
) daylog_init(daylog_fn
);
382 if (import_fn
!= NULL
) db_import(import_fn
);
383 localip_init(interface
);
385 if (signal(SIGTERM
, sig_shutdown
) == SIG_ERR
)
386 errx(1, "signal(SIGTERM) failed");
387 if (signal(SIGINT
, sig_shutdown
) == SIG_ERR
)
388 errx(1, "signal(SIGINT) failed");
389 if (signal(SIGUSR1
, sig_reset
) == SIG_ERR
)
390 errx(1, "signal(SIGUSR1) failed");
392 verbosef("entering main loop");
396 int select_ret
, max_fd
= -1, use_timeout
= 0;
397 struct timeval timeout
;
403 if (export_fn
!= NULL
) db_export(export_fn
); /* FIXME: USR2? */
412 cap_fd_set(&rs
, &max_fd
, &timeout
, &use_timeout
);
413 http_fd_set(&rs
, &ws
, &max_fd
, &timeout
, &use_timeout
);
415 select_ret
= select(max_fd
+1, &rs
, &ws
, NULL
,
416 (use_timeout
) ? &timeout
: NULL
);
418 if ((select_ret
== 0) && (!use_timeout
))
419 errx(1, "select() erroneously timed out");
421 if (select_ret
== -1) {
435 verbosef("shutting down");
436 verbosef("pcap stats: %u packets received, %u packets dropped",
437 pkts_recv
, pkts_drop
);
440 if (export_fn
!= NULL
) db_export(export_fn
);
443 if (daylog_fn
!= NULL
) daylog_free();
445 if (pid_fn
) pidfile_unlink();
446 verbosef("shut down");
447 return (EXIT_SUCCESS
);
450 /* vim:set ts=3 sw=3 tw=78 expandtab: */