]> jfr.im git - solanum.git/blame - authd/authd.c
actually use warn_opers function
[solanum.git] / authd / authd.c
CommitLineData
0d73e7db
AC
1/* authd/authd.c - main code for authd
2 * Copyright (c) 2016 William Pitcock <nenolod@dereferenced.org>
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice is present in all copies.
7 *
8 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
9 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
10 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
11 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
12 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
13 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
14 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
15 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
16 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
17 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
18 * POSSIBILITY OF SUCH DAMAGE.
19 */
20
f3e11b1d
AC
21#include "authd.h"
22#include "dns.h"
a16b484f 23#include "provider.h"
0d73e7db
AC
24
25#define MAXPARA 10
26
6445c1cf 27static void handle_reload(int parc, char *parv[]);
394b8dde
EM
28static void handle_stat(int parc, char *parv[]);
29
f3e11b1d 30rb_helper *authd_helper = NULL;
6f39a80e 31authd_cmd_handler authd_cmd_handlers[256] = {
a16b484f 32 ['C'] = handle_new_connection,
8cf45447 33 ['D'] = resolve_dns,
a16b484f 34 ['H'] = handle_reload,
394b8dde
EM
35 ['S'] = handle_stat,
36};
37
6f39a80e 38authd_stat_handler authd_stat_handlers[256] = {
394b8dde 39 ['D'] = enumerate_nameservers,
8cf45447 40};
0d73e7db 41
6f39a80e 42authd_reload_handler authd_reload_handlers[256] = {
6445c1cf
EM
43 ['D'] = reload_nameservers,
44};
45
394b8dde
EM
46static void
47handle_stat(int parc, char *parv[])
48{
49 authd_stat_handler handler;
50
51 if(parc < 3)
b2ede1aa
EM
52 {
53 warn_opers(L_CRIT, "BUG: handle_stat received too few parameters (at least 3 expected, got %d)", parc);
394b8dde 54 return;
b2ede1aa 55 }
394b8dde 56
e23126c8 57 if (!(handler = authd_stat_handlers[(unsigned char)parv[2][0]]))
394b8dde
EM
58 return;
59
60 handler(parv[1], parv[2][0]);
61}
62
6445c1cf
EM
63static void
64handle_reload(int parc, char *parv[])
65{
66 authd_reload_handler handler;
67
68 if(parc < 2)
b2ede1aa
EM
69 {
70 warn_opers(L_CRIT, "BUG: handle_reload received too few parameters (at least 2 expected, got %d)", parc);
6445c1cf 71 return;
b2ede1aa 72 }
6445c1cf 73
e23126c8 74 if (!(handler = authd_reload_handlers[(unsigned char)parv[1][0]]))
6445c1cf
EM
75 return;
76
77 handler(parv[1][0]);
78}
79
0d73e7db
AC
80static void
81parse_request(rb_helper *helper)
82{
83 static char *parv[MAXPARA + 1];
84 static char readbuf[READBUF_SIZE];
85 int parc;
86 int len;
f3e11b1d 87 authd_cmd_handler handler;
0d73e7db
AC
88
89 while((len = rb_helper_read(helper, readbuf, sizeof(readbuf))) > 0)
90 {
91 parc = rb_string_to_array(readbuf, parv, MAXPARA);
92
93 if(parc < 1)
94 continue;
95
e23126c8 96 handler = authd_cmd_handlers[(unsigned char)parv[0][0]];
f3e11b1d
AC
97 if (handler != NULL)
98 handler(parc, parv);
0d73e7db
AC
99 }
100}
101
102static void
103error_cb(rb_helper *helper)
104{
105 exit(1);
106}
107
8da0b2f2 108#ifndef _WIN32
0d73e7db
AC
109static void
110dummy_handler(int sig)
111{
112 return;
113}
114#endif
115
116static void
117setup_signals(void)
118{
8da0b2f2 119#ifndef _WIN32
0d73e7db
AC
120 struct sigaction act;
121
122 act.sa_flags = 0;
123 act.sa_handler = SIG_IGN;
124 sigemptyset(&act.sa_mask);
125 sigaddset(&act.sa_mask, SIGPIPE);
126 sigaddset(&act.sa_mask, SIGALRM);
127#ifdef SIGTRAP
128 sigaddset(&act.sa_mask, SIGTRAP);
129#endif
130
131#ifdef SIGWINCH
132 sigaddset(&act.sa_mask, SIGWINCH);
133 sigaction(SIGWINCH, &act, 0);
134#endif
135 sigaction(SIGPIPE, &act, 0);
136#ifdef SIGTRAP
137 sigaction(SIGTRAP, &act, 0);
138#endif
139
140 act.sa_handler = dummy_handler;
141 sigaction(SIGALRM, &act, 0);
142#endif
143}
144
145int
146main(int argc, char *argv[])
147{
148 setup_signals();
149
150 authd_helper = rb_helper_child(parse_request, error_cb, NULL, NULL, NULL, 256, 256, 256); /* XXX fix me */
151 if(authd_helper == NULL)
152 {
153 fprintf(stderr, "authd is not meant to be invoked by end users\n");
154 exit(1);
155 }
156
8cf45447
AC
157 rb_set_time();
158 setup_signals();
159 init_resolver();
a16b484f 160 init_providers();
8cf45447
AC
161 rb_init_prng(NULL, RB_PRNG_DEFAULT);
162
0d73e7db
AC
163 rb_helper_loop(authd_helper, 0);
164
165 return 0;
166}