]> jfr.im git - irc/rqf/shadowircd.git/blame - bandb/bantool.c
Add bandb code.
[irc/rqf/shadowircd.git] / bandb / bantool.c
CommitLineData
7641ecd8
WP
1/**
2 * ircd-ratbox: A slightly useful ircd.
3 * bantool.c: The ircd-ratbox database managment tool.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2008 ircd-ratbox development team
8 * Copyright (C) 2008 Daniel J Reidy <dubkat@gmail.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 * USA
24 *
25 * $Id: bantool.c 26164 2008-10-26 19:52:43Z androsyn $
26 *
27 *
28 * The following server admins have either contributed various configs to test against,
29 * or helped with debugging and feature requests. Many thanks to them.
30 * stevoo / efnet.port80.se
31 * AndroSyn / irc2.choopa.net, irc.igs.ca
32 * Salvation / irc.blessed.net
33 * JamesOff / efnet.demon.co.uk
34 *
35 * Thanks to AndroSyn for challenging me to learn C on the fly :)
36 * BUGS Direct Question, Bug Reports, and Feature Requests to #ratbox on EFnet.
37 * BUGS Complaints >/dev/null
38 *
39 */
40
41#define _XOPEN_SOURCE
42#include <stdio.h>
43#include <stdlib.h>
44#include <time.h>
45
46#include "stdinc.h"
47#include "rsdb.h"
48
49#define EmptyString(x) ((x == NULL) || (*(x) == '\0'))
50#define CheckEmpty(x) EmptyString(x) ? "" : x
51
52#define BT_VERSION "0.4.1"
53
54typedef enum
55{
56 BANDB_KLINE,
57 BANDB_KLINE_PERM,
58 BANDB_DLINE,
59 BANDB_DLINE_PERM,
60 BANDB_XLINE,
61 BANDB_XLINE_PERM,
62 BANDB_RESV,
63 BANDB_RESV_PERM,
64 LAST_BANDB_TYPE
65} bandb_type;
66
67
68static char bandb_letter[LAST_BANDB_TYPE] = {
69 'K', 'K', 'D', 'D', 'X', 'X', 'R', 'R'
70};
71
72static const char *bandb_table[LAST_BANDB_TYPE] = {
73 "kline", "kline", "dline", "dline", "xline", "xline", "resv", "resv"
74};
75
76static const char *bandb_suffix[LAST_BANDB_TYPE] = {
77 "", ".perm",
78 "", ".perm",
79 "", ".perm",
80 "", ".perm"
81};
82
83static char me[PATH_MAX];
84
85/* *INDENT-OFF* */
86/* report counters */
87struct counter
88{
89 unsigned int klines;
90 unsigned int dlines;
91 unsigned int xlines;
92 unsigned int resvs;
93 unsigned int error;
94} count = {0, 0, 0, 0, 0};
95
96/* flags set by command line options */
97struct flags
98{
99 int none;
100 int export;
101 int import;
102 int verify;
103 int vacuum;
104 int pretend;
105 int verbose;
106 int wipe;
107 int dupes_ok;
108} flag = {YES, NO, NO, NO, NO, NO, NO, NO, NO};
109/* *INDENT-ON* */
110
111static int table_has_rows(const char *table);
112static int table_exists(const char *table);
113
114static const char *clean_gecos_field(const char *gecos);
115static char *bt_smalldate(const char *string);
116static char *getfield(char *newline);
117static char *strip_quotes(const char *string);
118static char *mangle_reason(const char *string);
119static char *escape_quotes(const char *string);
120
121static void db_error_cb(const char *errstr);
122static void db_reclaim_slack(void);
123static void export_config(const char *conf, int id);
124static void import_config(const char *conf, int id);
125static void check_schema(void);
126static void print_help(int i_exit);
127static void wipe_schema(void);
128static void drop_dupes(const char *user, const char *host, const char *t);
129
130/**
131 * swing your pants
132 */
133int
134main(int argc, char *argv[])
135{
136 char etc[PATH_MAX];
137 char conf[PATH_MAX];
138 int opt;
139 int i;
140
141 rb_strlcpy(me, argv[0], sizeof(me));
142
143 while((opt = getopt(argc, argv, "hieuspvwd")) != -1)
144 {
145 switch (opt)
146 {
147 case 'h':
148 print_help(EXIT_SUCCESS);
149 break;
150 case 'i':
151 flag.none = NO;
152 flag.import = YES;
153 break;
154 case 'e':
155 flag.none = NO;
156 flag.export = YES;
157 break;
158 case 'u':
159 flag.none = NO;
160 flag.verify = YES;
161 break;
162 case 's':
163 flag.none = NO;
164 flag.vacuum = YES;
165 break;
166 case 'p':
167 flag.pretend = YES;
168 break;
169 case 'v':
170 flag.verbose = YES;
171 break;
172 case 'w':
173 flag.wipe = YES;
174 break;
175 case 'd':
176 flag.dupes_ok = YES;
177 break;
178 default: /* '?' */
179 print_help(EXIT_FAILURE);
180 }
181 }
182
183 /* they should really read the help. */
184 if(flag.none)
185 print_help(EXIT_FAILURE);
186
187 if((flag.import && flag.export) || (flag.export && flag.wipe)
188 || (flag.verify && flag.pretend) || (flag.export && flag.pretend))
189 {
190 fprintf(stderr, "* Error: Conflicting flags.\n");
191 if(flag.export && flag.pretend)
192 fprintf(stderr, "* There is nothing to 'pretend' when exporting.\n");
193
194 fprintf(stderr, "* For an explination of commands, run: %s -h\n", me);
195 exit(EXIT_FAILURE);
196 }
197
198 if(argv[optind] != NULL)
199 rb_strlcpy(etc, argv[optind], sizeof(etc));
200 else
201 rb_strlcpy(etc, ETCPATH, sizeof(ETCPATH));
202
203 fprintf(stdout,
204 "* ircd-ratbox bantool v.%s ($Id: bantool.c 26164 2008-10-26 19:52:43Z androsyn $)\n",
205 BT_VERSION);
206
207 if(flag.pretend == NO)
208 {
209 if(rsdb_init(db_error_cb) == -1)
210 {
211 fprintf(stderr, "* Error: Unable to open database\n");
212 exit(EXIT_FAILURE);
213 }
214 check_schema();
215
216 if(flag.vacuum)
217 db_reclaim_slack();
218
219 if(flag.import && flag.wipe)
220 {
221 flag.dupes_ok = YES; /* dont check for dupes if we are wiping the db clean */
222 for(i = 0; i < 3; i++)
223 fprintf(stdout,
224 "* WARNING: YOU ARE ABOUT TO WIPE YOUR DATABASE!\n");
225
226 fprintf(stdout, "* Press ^C to abort! ");
227 fflush(stdout);
228 rb_sleep(10, 0);
229 fprintf(stdout, "Carrying on...\n");
230 wipe_schema();
231 }
232 }
233 if(flag.verbose && flag.dupes_ok == YES)
234 fprintf(stdout, "* Allowing duplicate bans...\n");
235
236 /* checking for our files to import or export */
237 for(i = 0; i < LAST_BANDB_TYPE; i++)
238 {
239 rb_snprintf(conf, sizeof(conf), "%s/%s.conf%s",
240 etc, bandb_table[i], bandb_suffix[i]);
241
242 if(flag.import && flag.pretend == NO)
243 rsdb_transaction(RSDB_TRANS_START);
244
245 if(flag.import)
246 import_config(conf, i);
247
248 if(flag.export)
249 export_config(conf, i);
250
251 if(flag.import && flag.pretend == NO)
252 rsdb_transaction(RSDB_TRANS_END);
253 }
254
255 if(flag.import)
256 {
257 if(count.error && flag.verbose)
258 fprintf(stderr, "* I was unable to locate %i config files to import.\n",
259 count.error);
260
261 fprintf(stdout, "* Import Stats: Klines: %i, Dlines: %i, Xlines: %i, Resvs: %i \n",
262 count.klines, count.dlines, count.xlines, count.resvs);
263
264 fprintf(stdout,
265 "*\n* If your IRC server is currently running, newly imported bans \n* will not take effect until you issue the command: /quote rehash bans\n");
266
267 if(flag.pretend)
268 fprintf(stdout,
269 "* Pretend mode engaged. Nothing was actually entered into the database.\n");
270 }
271
272 return 0;
273}
274
275
276/**
277 * export the database to old-style flat files
278 */
279static void
280export_config(const char *conf, int id)
281{
282 struct rsdb_table table;
283 static char sql[BUFSIZE * 2];
284 static char buf[512];
285 FILE *fd = NULL;
286 int j;
287
288 /* for sanity sake */
289 const int mask1 = 0;
290 const int mask2 = 1;
291 const int reason = 2;
292 const int oper = 3;
293 const int ts = 4;
294 /* const int perm = 5; */
295
296 if(!table_has_rows(bandb_table[id]))
297 return;
298
299 if(strstr(conf, ".perm") != 0)
300 rb_snprintf(sql, sizeof(sql),
301 "SELECT DISTINCT mask1,mask2,reason,oper,time FROM %s WHERE perm = 1 ORDER BY time",
302 bandb_table[id]);
303 else
304 rb_snprintf(sql, sizeof(sql),
305 "SELECT DISTINCT mask1,mask2,reason,oper,time FROM %s WHERE perm = 0 ORDER BY time",
306 bandb_table[id]);
307
308 rsdb_exec_fetch(&table, sql);
309 if(table.row_count <= 0)
310 {
311 rsdb_exec_fetch_end(&table);
312 return;
313 }
314
315 if(flag.verbose)
316 fprintf(stdout, "* checking for %s: ", conf); /* debug */
317
318 /* open config for reading, or skip to the next */
319 if(!(fd = fopen(conf, "w")))
320 {
321 if(flag.verbose)
322 fprintf(stdout, "\tmissing.\n");
323 count.error++;
324 return;
325 }
326
327 for(j = 0; j < table.row_count; j++)
328 {
329 switch (id)
330 {
331 case BANDB_DLINE:
332 case BANDB_DLINE_PERM:
333 rb_snprintf(buf, sizeof(buf),
334 "\"%s\",\"%s\",\"\",\"%s\",\"%s\",%s\n",
335 table.row[j][mask1],
336 mangle_reason(table.row[j][reason]),
337 bt_smalldate(table.row[j][ts]),
338 table.row[j][oper], table.row[j][ts]);
339 break;
340
341 case BANDB_XLINE:
342 case BANDB_XLINE_PERM:
343 rb_snprintf(buf, sizeof(buf),
344 "\"%s\",\"0\",\"%s\",\"%s\",%s\n",
345 escape_quotes(table.row[j][mask1]),
346 mangle_reason(table.row[j][reason]),
347 table.row[j][oper], table.row[j][ts]);
348 break;
349
350 case BANDB_RESV:
351 case BANDB_RESV_PERM:
352 rb_snprintf(buf, sizeof(buf),
353 "\"%s\",\"%s\",\"%s\",%s\n",
354 table.row[j][mask1],
355 mangle_reason(table.row[j][reason]),
356 table.row[j][oper], table.row[j][ts]);
357 break;
358
359
360 default: /* Klines */
361 rb_snprintf(buf, sizeof(buf),
362 "\"%s\",\"%s\",\"%s\",\"\",\"%s\",\"%s\",%s\n",
363 table.row[j][mask1], table.row[j][mask2],
364 mangle_reason(table.row[j][reason]),
365 bt_smalldate(table.row[j][ts]), table.row[j][oper],
366 table.row[j][ts]);
367 break;
368 }
369
370 fprintf(fd, "%s", buf);
371 }
372
373 rsdb_exec_fetch_end(&table);
374 if(flag.verbose)
375 fprintf(stdout, "\twritten.\n");
376 fclose(fd);
377}
378
379/**
380 * attempt to condense the individual conf functions into one
381 */
382static void
383import_config(const char *conf, int id)
384{
385 FILE *fd;
386
387 char line[BUFSIZE];
388 char *p;
389 int i = 0;
390
391 char f_perm = 0;
392 char *f_mask1 = NULL;
393 char *f_mask2 = NULL;
394 char *f_oper = NULL;
395 char *f_time = NULL;
396 char *f_reason = NULL;
397 char *f_oreason = NULL;
398 char newreason[REASONLEN];
399
400 if(flag.verbose)
401 fprintf(stdout, "* checking for %s: ", conf); /* debug */
402
403 /* open config for reading, or skip to the next */
404 if(!(fd = fopen(conf, "r")))
405 {
406 if(flag.verbose)
407 fprintf(stdout, "%*s", strlen(bandb_suffix[id]) > 0 ? 10 : 15,
408 "missing.\n");
409 count.error++;
410 return;
411 }
412
413 if(strstr(conf, ".perm") != 0)
414 f_perm = 1;
415
416
417 /* xline
418 * "SYSTEM","0","banned","stevoo!stevoo@efnet.port80.se{stevoo}",1111080437
419 * resv
420 * "OseK","banned nickname","stevoo!stevoo@efnet.port80.se{stevoo}",1111031619
421 * dline
422 * "194.158.192.0/19","laptop scammers","","2005/3/17 05.33","stevoo!stevoo@efnet.port80.se{stevoo}",1111033988
423 */
424 while(fgets(line, sizeof(line), fd))
425 {
426 if((p = strpbrk(line, "\r\n")) != NULL)
427 *p = '\0';
428
429 if((*line == '\0') || (*line == '#'))
430 continue;
431
432 /* mask1 */
433 f_mask1 = getfield(line);
434
435 if(EmptyString(f_mask1))
436 continue;
437
438 /* mask2 */
439 switch (id)
440 {
441 case BANDB_XLINE:
442 case BANDB_XLINE_PERM:
443 f_mask1 = escape_quotes(clean_gecos_field(f_mask1));
444 getfield(NULL); /* empty field */
445 break;
446
447 case BANDB_RESV:
448 case BANDB_RESV_PERM:
449 case BANDB_DLINE:
450 case BANDB_DLINE_PERM:
451 break;
452
453 default:
454 f_mask2 = getfield(NULL);
455 if(EmptyString(f_mask2))
456 continue;
457 break;
458 }
459
460 /* reason */
461 f_reason = getfield(NULL);
462 if(EmptyString(f_reason))
463 continue;
464
465 /* oper comment */
466 switch (id)
467 {
468 case BANDB_KLINE:
469 case BANDB_KLINE_PERM:
470 case BANDB_DLINE:
471 case BANDB_DLINE_PERM:
472 f_oreason = getfield(NULL);
473 getfield(NULL);
474 break;
475
476 default:
477 break;
478 }
479
480 f_oper = getfield(NULL);
481 f_time = strip_quotes(f_oper + strlen(f_oper) + 2);
482
483 /* meh */
484 if(id == BANDB_KLINE || id == BANDB_KLINE_PERM)
485 {
486 if(strstr(f_mask1, "!") != NULL)
487 {
488 fprintf(stderr,
489 "* SKIPPING INVALID KLINE %s@%s set by %s\n",
490 f_mask1, f_mask2, f_oper);
491 fprintf(stderr, " You may wish to re-apply it correctly.\n");
492 continue;
493 }
494 }
495
496 /* append operreason_field to reason_field */
497 if(!EmptyString(f_oreason))
498 rb_snprintf(newreason, sizeof(newreason), "%s | %s", f_reason, f_oreason);
499 else
500 rb_snprintf(newreason, sizeof(newreason), "%s", f_reason);
501
502 if(flag.pretend == NO)
503 {
504 if(flag.dupes_ok == NO)
505 drop_dupes(f_mask1, f_mask2, bandb_table[id]);
506
507 rsdb_exec(NULL,
508 "INSERT INTO %s (mask1, mask2, oper, time, perm, reason) VALUES('%Q','%Q','%Q','%Q','%d','%Q')",
509 bandb_table[id], f_mask1, f_mask2, f_oper, f_time, f_perm,
510 newreason);
511 }
512
513 if(flag.pretend && flag.verbose)
514 fprintf(stdout,
515 "%s: perm(%d) mask1(%s) mask2(%s) oper(%s) reason(%s) time(%s)\n",
516 bandb_table[id], f_perm, f_mask1, f_mask2, f_oper, newreason,
517 f_time);
518
519 i++;
520 }
521
522 switch (bandb_letter[id])
523 {
524 case 'K':
525 count.klines += i;
526 break;
527 case 'D':
528 count.dlines += i;
529 break;
530 case 'X':
531 count.xlines += i;
532 break;
533 case 'R':
534 count.resvs += i;
535 break;
536 default:
537 break;
538 }
539
540 if(flag.verbose)
541 fprintf(stdout, "%*s\n", strlen(bandb_suffix[id]) > 0 ? 10 : 15, "imported.");
542
543 return;
544}
545
546/**
547 * getfield
548 *
549 * inputs - input buffer
550 * output - next field
551 * side effects - field breakup for ircd.conf file.
552 */
553char *
554getfield(char *newline)
555{
556 static char *line = NULL;
557 char *end, *field;
558
559 if(newline != NULL)
560 line = newline;
561
562 if(line == NULL)
563 return (NULL);
564
565 field = line;
566
567 /* XXX make this skip to first " if present */
568 if(*field == '"')
569 field++;
570 else
571 return (NULL); /* mal-formed field */
572
573 end = strchr(line, ',');
574
575 while(1)
576 {
577 /* no trailing , - last field */
578 if(end == NULL)
579 {
580 end = line + strlen(line);
581 line = NULL;
582
583 if(*end == '"')
584 {
585 *end = '\0';
586 return field;
587 }
588 else
589 return NULL;
590 }
591 else
592 {
593 /* look for a ", to mark the end of a field.. */
594 if(*(end - 1) == '"')
595 {
596 line = end + 1;
597 end--;
598 *end = '\0';
599 return field;
600 }
601
602 /* search for the next ',' */
603 end++;
604 end = strchr(end, ',');
605 }
606 }
607
608 return NULL;
609}
610
611/**
612 * strip away "quotes" from around strings
613 */
614static char *
615strip_quotes(const char *string)
616{
617 static char buf[14]; /* int(11) + 2 + \0 */
618 char *str = buf;
619
620 if(string == NULL)
621 return NULL;
622
623 while(*string)
624 {
625 if(*string != '"')
626 {
627 *str++ = *string;
628 }
629 string++;
630 }
631 *str = '\0';
632 return buf;
633}
634
635/**
636 * escape quotes in a string
637 */
638static char *
639escape_quotes(const char *string)
640{
641 static char buf[BUFSIZE * 2];
642 char *str = buf;
643
644 if(string == NULL)
645 return NULL;
646
647 while(*string)
648 {
649 if(*string == '"')
650 {
651 *str++ = '\\';
652 *str++ = '"';
653 }
654 else
655 {
656 *str++ = *string;
657 }
658 string++;
659 }
660 *str = '\0';
661 return buf;
662}
663
664
665static char *
666mangle_reason(const char *string)
667{
668 static char buf[BUFSIZE * 2];
669 char *str = buf;
670
671 if(string == NULL)
672 return NULL;
673
674 while(*string)
675 {
676 switch (*string)
677 {
678 case '"':
679 *str = '\'';
680 break;
681 case ':':
682 *str = ' ';
683 break;
684 default:
685 *str = *string;
686 }
687 string++;
688 str++;
689
690 }
691 *str = '\0';
692 return buf;
693}
694
695
696/**
697 * change spaces to \s in gecos field
698 */
699static const char *
700clean_gecos_field(const char *gecos)
701{
702 static char buf[BUFSIZE * 2];
703 char *str = buf;
704
705 if(gecos == NULL)
706 return NULL;
707
708 while(*gecos)
709 {
710 if(*gecos == ' ')
711 {
712 *str++ = '\\';
713 *str++ = 's';
714 }
715 else
716 *str++ = *gecos;
717 gecos++;
718 }
719 *str = '\0';
720 return buf;
721}
722
723/**
724 * verify the database integrity, and if necessary create apropriate tables
725 */
726static void
727check_schema(void)
728{
729 int i, j;
730 char type[8]; /* longest string is 'INTEGER\0' */
731
732 if(flag.verify || flag.verbose)
733 fprintf(stdout, "* Verifying database.\n");
734
735 const char *columns[] = {
736 "perm",
737 "mask1",
738 "mask2",
739 "oper",
740 "time",
741 "reason",
742 NULL
743 };
744
745 for(i = 0; i < LAST_BANDB_TYPE; i++)
746 {
747 if(!table_exists(bandb_table[i]))
748 {
749 rsdb_exec(NULL,
750 "CREATE TABLE %s (mask1 TEXT, mask2 TEXT, oper TEXT, time INTEGER, perm INTEGER, reason TEXT)",
751 bandb_table[i]);
752 }
753
754 /*
755 * i can't think of any better way to do this, other then attempt to
756 * force the creation of column that may, or may not already exist. --dubkat
757 */
758 else
759 {
760 for(j = 0; columns[j] != NULL; j++)
761 {
762 if(!strcmp(columns[j], "time") && !strcmp(columns[j], "perm"))
763 rb_strlcpy(type, "INTEGER", sizeof(type));
764 else
765 rb_strlcpy(type, "TEXT", sizeof(type));
766
767 /* attempt to add a column with extreme prejudice, errors are ignored */
768 rsdb_exec(NULL, "ALTER TABLE %s ADD COLUMN %s %s", bandb_table[i],
769 columns[j], type);
770 }
771 }
772
773 i++; /* skip over .perm */
774 }
775}
776
777static void
778db_reclaim_slack(void)
779{
780 fprintf(stdout, "* Reclaiming free space.\n");
781 rsdb_exec(NULL, "VACUUM");
782}
783
784
785/**
786 * check that appropriate tables exist.
787 */
788static int
789table_exists(const char *dbtab)
790{
791 struct rsdb_table table;
792 rsdb_exec_fetch(&table, "SELECT name FROM sqlite_master WHERE type='table' AND name='%s'",
793 dbtab);
794 rsdb_exec_fetch_end(&table);
795 return table.row_count;
796}
797
798/**
799 * check that there are actual entries in a table
800 */
801static int
802table_has_rows(const char *dbtab)
803{
804 struct rsdb_table table;
805 rsdb_exec_fetch(&table, "SELECT * FROM %s", dbtab);
806 rsdb_exec_fetch_end(&table);
807 return table.row_count;
808}
809
810/**
811 * completly wipes out an existing ban.db of all entries.
812 */
813static void
814wipe_schema(void)
815{
816 int i;
817 rsdb_transaction(RSDB_TRANS_START);
818 for(i = 0; i < LAST_BANDB_TYPE; i++)
819 {
820 rsdb_exec(NULL, "DROP TABLE %s", bandb_table[i]);
821 i++; /* double increment to skip over .perm */
822 }
823 rsdb_transaction(RSDB_TRANS_END);
824
825 check_schema();
826}
827
828/**
829 * remove pre-existing duplicate bans from the database.
830 * we favor the new, imported ban over the one in the database
831 */
832void
833drop_dupes(const char *user, const char *host, const char *t)
834{
835 rsdb_exec(NULL, "DELETE FROM %s WHERE mask1='%Q' AND mask2='%Q'", t, user, host);
836}
837
838static void
839db_error_cb(const char *errstr)
840{
841 return;
842}
843
844
845/**
846 * convert unix timestamp to human readable (small) date
847 */
848static char *
849bt_smalldate(const char *string)
850{
851 static char buf[MAX_DATE_STRING];
852 struct tm *lt;
853 time_t t;
854 t = strtol(string, NULL, 10);
855 lt = gmtime(&t);
856 if(lt == NULL)
857 return NULL;
858 rb_snprintf(buf, sizeof(buf), "%d/%d/%d %02d.%02d",
859 lt->tm_year + 1900, lt->tm_mon + 1, lt->tm_mday, lt->tm_hour, lt->tm_min);
860 return buf;
861}
862
863/**
864 * you are here ->.
865 */
866void
867print_help(int i_exit)
868{
869 fprintf(stderr, "bantool v.%s - the ircd-ratbox database tool.\n", BT_VERSION);
870 fprintf(stderr, "Copyright (C) 2008 Daniel J Reidy <dubkat@gmail.com>\n");
871 fprintf(stderr, "$Id: bantool.c 26164 2008-10-26 19:52:43Z androsyn $\n\n");
872 fprintf(stderr, "This program is distributed in the hope that it will be useful,\n"
873 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
874 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
875 "GNU General Public License for more details.\n\n");
876
877 fprintf(stderr, "Usage: %s <-i|-e> [-p] [-v] [-h] [-d] [-w] [path]\n", me);
878 fprintf(stderr, " -h : Display some slightly useful help.\n");
879 fprintf(stderr, " -i : Actually import configs into your database.\n");
880 fprintf(stderr, " -e : Export your database to old-style flat files.\n");
881 fprintf(stderr,
882 " This is suitable for redistrubuting your banlists, or creating backups.\n");
883 fprintf(stderr, " -s : Reclaim empty slack space the database may be taking up.\n");
884 fprintf(stderr, " -u : Update the database tables to support any new features.\n");
885 fprintf(stderr,
886 " This is automaticlly done if you are importing or exporting\n");
887 fprintf(stderr, " but should be run whenever you upgrade the ircd.\n");
888 fprintf(stderr,
889 " -p : pretend, checks for the configs, and parses them, then tells you some data...\n");
890 fprintf(stderr, " but does not touch your database.\n");
891 fprintf(stderr,
892 " -v : Be verbose... and it *is* very verbose! (intended for debugging)\n");
893 fprintf(stderr, " -d : Enable checking for redunant entries.\n");
894 fprintf(stderr, " -w : Completly wipe your database clean. May be used with -i \n");
895 fprintf(stderr,
896 " path : An optional directory containing old ratbox configs for import, or export.\n");
897 fprintf(stderr, " If not specified, it looks in PREFIX/etc.\n");
898 exit(i_exit);
899}