1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/* Copyright (c) 2002-2018 Pigeonhole authors, see the included COPYING file
*/
#include "lib.h"
#include "array.h"
#include "master-service.h"
#include "master-service-settings.h"
#include "mail-storage-service.h"
#include "mail-user.h"
#include "sieve.h"
#include "sieve-extensions.h"
#include "sieve-tool.h"
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
#include <sysexits.h>
/*
* Print help
*/
static void print_help(void)
{
printf(
"Usage: sieve-dump [-c <config-file>] [-D] [-h] [-P <plugin>] [-x <extensions>]\n"
" <sieve-binary> [<out-file>]\n"
);
}
/*
* Tool implementation
*/
int main(int argc, char **argv)
{
struct sieve_instance *svinst;
struct sieve_binary *sbin;
const char *binfile, *outfile;
bool hexdump = FALSE;
int exit_status = EXIT_SUCCESS;
int c;
sieve_tool = sieve_tool_init("sieve-dump", &argc, &argv, "DhP:x:", FALSE);
outfile = NULL;
while ((c = sieve_tool_getopt(sieve_tool)) > 0) {
switch (c) {
case 'h':
/* produce hexdump */
hexdump = TRUE;
break;
default:
print_help();
i_fatal_status(EX_USAGE, "Unknown argument: %c", c);
break;
}
}
if ( optind < argc ) {
binfile = argv[optind++];
} else {
print_help();
i_fatal_status(EX_USAGE, "Missing <script-file> argument");
}
if ( optind < argc ) {
outfile = argv[optind++];
}
/* Finish tool initialization */
svinst = sieve_tool_init_finish(sieve_tool, FALSE, TRUE);
/* Enable debug extension */
sieve_enable_debug_extension(svinst);
/* Dump binary */
sbin = sieve_load(svinst, binfile, NULL);
if ( sbin != NULL ) {
sieve_tool_dump_binary_to(sbin, outfile == NULL ? "-" : outfile, hexdump);
sieve_close(&sbin);
} else {
i_error("failed to load binary: %s", binfile);
exit_status = EXIT_FAILURE;
}
sieve_tool_deinit(&sieve_tool);
return exit_status;
}
|