1 /* $NetBSD: blacklistctl.c,v 1.18 2015/06/02 14:02:10 christos Exp $ */
4 * Copyright (c) 2015 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
35 #include <sys/cdefs.h>
36 __RCSID("$NetBSD: blacklistctl.c,v 1.18 2015/06/02 14:02:10 christos Exp $");
49 #include <sys/socket.h>
60 warnx("Missing/unknown command");
62 warnx("Unknown option `%c'", (char)c
);
63 fprintf(stderr
, "Usage: %s dump [-abdnrw]\n", getprogname());
68 main(int argc
, char *argv
[])
70 const char *dbname
= _PATH_BLSTATE
;
76 int all
, blocked
, remain
, wide
, noheader
;
79 noheader
= wide
= blocked
= all
= remain
= 0;
82 if (argc
== 1 || strcmp(argv
[1], "dump") != 0)
88 while ((o
= getopt(argc
, argv
, "abD:drw")) != -1)
117 db
= state_open(dbname
, O_RDONLY
, 0);
119 err(EXIT_FAILURE
, "Can't open `%s'", dbname
);
121 clock_gettime(CLOCK_REALTIME
, &ts
);
122 wide
= wide
? 8 * 4 + 7 : 4 * 3 + 3;
124 printf("%*.*s/ma:port\tid\tnfail\t%s\n", wide
, wide
,
125 "address", remain
? "remaining time" : "last access");
126 for (i
= 1; state_iterate(db
, &c
, &dbi
, i
) != 0; i
= 0) {
130 if (dbi
.count
< c
.c_nfail
)
133 if (dbi
.count
>= c
.c_nfail
)
137 sockaddr_snprintf(buf
, sizeof(buf
), "%a", (void *)&c
.c_ss
);
138 printf("%*.*s/%d:%d\t", wide
, wide
, buf
, c
.c_lmask
, c
.c_port
);
140 fmtydhms(buf
, sizeof(buf
),
141 c
.c_duration
- (ts
.tv_sec
- dbi
.last
));
143 fmttime(buf
, sizeof(buf
), dbi
.last
);
144 printf("%s\t%d/%d\t%-s\n", dbi
.id
, dbi
.count
, c
.c_nfail
, buf
);