7d250466a86c13cec135324d09e621682a2f3e82
[apps/pfixtools.git] / srsd.c
1 /******************************************************************************/
2 /*          postlicyd: a postfix policy daemon with a lot of features         */
3 /*          ~~~~~~~~~                                                         */
4 /*  ________________________________________________________________________  */
5 /*                                                                            */
6 /*  Redistribution and use in source and binary forms, with or without        */
7 /*  modification, are permitted provided that the following conditions        */
8 /*  are met:                                                                  */
9 /*                                                                            */
10 /*  1. Redistributions of source code must retain the above copyright         */
11 /*     notice, this list of conditions and the following disclaimer.          */
12 /*  2. Redistributions in binary form must reproduce the above copyright      */
13 /*     notice, this list of conditions and the following disclaimer in the    */
14 /*     documentation and/or other materials provided with the distribution.   */
15 /*  3. The names of its contributors may not be used to endorse or promote    */
16 /*     products derived from this software without specific prior written     */
17 /*     permission.                                                            */
18 /*                                                                            */
19 /*  THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND   */
20 /*  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE     */
21 /*  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR        */
22 /*  PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS 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    */
29 /*  THE POSSIBILITY OF SUCH DAMAGE.                                           */
30 /******************************************************************************/
31
32 /*
33  * Copyright © 2005-2007 Pierre Habouzit
34  */
35
36 #include <fcntl.h>
37 #include <sys/stat.h>
38
39 #include <srs2.h>
40
41 #include "common.h"
42 #include "mem.h"
43
44 static srs_t *srs = NULL;
45
46 static int read_sfile(const char *sfile)
47 {
48     FILE *f;
49     char buf[BUFSIZ];
50     srs_t *newsrs;
51
52     f = fopen(sfile, "r");
53     if (!f) {
54         UNIXERR("fopen");
55         return -1;
56     }
57
58     newsrs = srs_new();
59
60     while (fgets(buf, sizeof(buf), f)) {
61         int n = strlen(buf);
62
63         if (buf[n - 1] != '\n')
64             goto error;
65         while (n > 0 && isspace((unsigned char)buf[n - 1]))
66             buf[--n] = '\0';
67         if (n > 0)
68             srs_add_secret(newsrs, buf);
69     }
70     fclose(f);
71
72     if (srs) {
73         srs_free(srs);
74     }
75     srs = newsrs;
76     return 0;
77
78   error:
79     fclose(f);
80     srs_free(newsrs);
81     return -1;
82 }
83
84 static void help(void)
85 {
86     puts(
87             "Usage: srs-c [ -r | -d domain ] -f sfile -e sender\n"
88             "Perform an SRS encoding / decoding\n"
89             "\n"
90             "    -r          perform an SRS decoding\n"
91             "    -d domain   use that domain (required for encoding)\n"
92             "\n"
93             "    -f sfile    secret file for decoding.  the first line is taken if -s omitted\n"
94             "\n"
95             "    -e sender   the sender address we want to encode/decode\n"
96           );
97     exit(1);
98 }
99
100 int main(int argc, char *argv[])
101 {
102     char *res    = NULL;
103     char *domain = NULL;
104     char *sender = NULL;
105     char *sfile  = NULL;
106
107     int    opt   = 0;
108     bool   rev   = false;
109     int    err   = 0;
110
111     while ((opt = getopt(argc, argv, "d:e:f:r")) != -1) {
112         switch (opt) {
113             case 'd': domain = optarg;  break;
114             case 'e': sender = optarg;  break;
115             case 'f': sfile  = optarg;  break;
116             case 'r': rev    = true;    break;
117         }
118     }
119
120     if (!sender || !sfile || !(rev||domain)) {
121         help();
122     }
123
124     if (read_sfile(sfile) < 0)
125         return -1;
126
127     if (rev) {
128         err = srs_reverse_alloc(srs, &res, sender);
129     } else {
130         err = srs_forward_alloc(srs, &res, sender, domain);
131     }
132
133     if (res == NULL) {
134         fprintf(stderr, "%s\n", srs_strerror(err));
135         return -1;
136     }
137     puts(res);
138     return 0;
139 }