]> jfr.im git - solanum.git/blob - authd/provider.h
authd: use a list for auth_providers
[solanum.git] / authd / provider.h
1 /* authd/provider.h - authentication provider framework
2 * Copyright (c) 2016 Elizabeth Myers <elizabeth@interlinked.me>
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
21 #ifndef __CHARYBDIS_AUTHD_PROVIDER_H__
22 #define __CHARYBDIS_AUTHD_PROVIDER_H__
23
24 #include "stdinc.h"
25 #include "authd.h"
26 #include "rb_dictionary.h"
27
28 #define MAX_PROVIDERS 32 /* This should be enough */
29
30 typedef enum
31 {
32 PROVIDER_STATUS_NOTRUN = 0,
33 PROVIDER_STATUS_RUNNING,
34 PROVIDER_STATUS_DONE,
35 } provider_status_t;
36
37 struct auth_client_data
38 {
39 struct auth_provider *provider; /* Pointer back */
40 time_t timeout; /* Provider timeout */
41 void *data; /* Provider data */
42 provider_status_t status; /* Provider status */
43 };
44
45 struct auth_client
46 {
47 uint16_t cid; /* Client ID */
48
49 char l_ip[HOSTIPLEN + 1]; /* Listener IP address */
50 uint16_t l_port; /* Listener port */
51 struct rb_sockaddr_storage l_addr; /* Listener address/port */
52
53 char c_ip[HOSTIPLEN + 1]; /* Client IP address */
54 uint16_t c_port; /* Client port */
55 struct rb_sockaddr_storage c_addr; /* Client address/port */
56
57 char hostname[HOSTLEN + 1]; /* Used for DNS lookup */
58 char username[USERLEN + 1]; /* Used for ident lookup */
59
60 bool providers_starting; /* Providers are still warming up */
61 unsigned int refcount; /* Held references */
62
63 struct auth_client_data *data; /* Provider-specific data */
64 };
65
66 typedef bool (*provider_init_t)(void);
67 typedef void (*provider_destroy_t)(void);
68
69 typedef bool (*provider_start_t)(struct auth_client *);
70 typedef void (*provider_cancel_t)(struct auth_client *);
71 typedef void (*uint32_timeout_t)(struct auth_client *);
72 typedef void (*provider_complete_t)(struct auth_client *, uint32_t);
73
74 struct auth_stats_handler
75 {
76 const char letter;
77 authd_stat_handler handler;
78 };
79
80 struct auth_provider
81 {
82 rb_dlink_node node;
83
84 uint32_t id; /* Provider ID */
85
86 const char *name; /* Name of the provider */
87 char letter; /* Letter used on reject, etc. */
88
89 provider_init_t init; /* Initalise the provider */
90 provider_destroy_t destroy; /* Terminate the provider */
91
92 provider_start_t start; /* Perform authentication */
93 provider_cancel_t cancel; /* Authentication cancelled */
94 uint32_timeout_t timeout; /* Timeout callback */
95 provider_complete_t completed; /* Callback for when other performers complete (think dependency chains) */
96
97 struct auth_stats_handler stats_handler;
98
99 struct auth_opts_handler *opt_handlers;
100 };
101
102 extern struct auth_provider rdns_provider;
103 extern struct auth_provider ident_provider;
104 extern struct auth_provider blacklist_provider;
105 extern struct auth_provider opm_provider;
106
107 extern rb_dlink_list auth_providers;
108 extern rb_dictionary *auth_clients;
109
110 void load_provider(struct auth_provider *provider);
111 void unload_provider(struct auth_provider *provider);
112
113 void init_providers(void);
114 void destroy_providers(void);
115 void cancel_providers(struct auth_client *auth);
116
117 void provider_done(struct auth_client *auth, uint32_t id);
118 void accept_client(struct auth_client *auth, uint32_t id);
119 void reject_client(struct auth_client *auth, uint32_t id, const char *data, const char *fmt, ...);
120
121 void handle_new_connection(int parc, char *parv[]);
122 void handle_cancel_connection(int parc, char *parv[]);
123 void auth_client_free(struct auth_client *auth);
124
125 static inline void
126 auth_client_ref(struct auth_client *auth)
127 {
128 auth->refcount++;
129 }
130
131 static inline void
132 auth_client_unref(struct auth_client *auth)
133 {
134 auth->refcount--;
135 if (auth->refcount == 0)
136 auth_client_free(auth);
137 }
138
139 /* Get a provider by name */
140 static inline struct auth_provider *
141 find_provider(const char *name)
142 {
143 rb_dlink_node *ptr;
144
145 RB_DLINK_FOREACH(ptr, auth_providers.head)
146 {
147 struct auth_provider *provider = ptr->data;
148
149 if(strcasecmp(provider->name, name) == 0)
150 return provider;
151 }
152
153 return NULL;
154 }
155
156 /* Get a provider's id by name */
157 static inline bool
158 get_provider_id(const char *name, uint32_t *id)
159 {
160 struct auth_provider *provider = find_provider(name);
161
162 if(provider != NULL)
163 {
164 *id = provider->id;
165 return true;
166 }
167 else
168 return false;
169 }
170
171 /* Get a provider's raw status */
172 static inline provider_status_t
173 get_provider_status(struct auth_client *auth, uint32_t provider)
174 {
175 return auth->data[provider].status;
176 }
177
178 /* Set a provider's raw status */
179 static inline void
180 set_provider_status(struct auth_client *auth, uint32_t provider, provider_status_t status)
181 {
182 auth->data[provider].status = status;
183 }
184
185 /* Set the provider as running
186 * If you're doing asynchronous work call this */
187 static inline void
188 set_provider_running(struct auth_client *auth, uint32_t provider)
189 {
190 auth_client_ref(auth);
191 set_provider_status(auth, provider, PROVIDER_STATUS_RUNNING);
192 }
193
194 /* Provider is no longer operating on this auth client
195 * You should use provider_done and not this */
196 static inline void
197 set_provider_done(struct auth_client *auth, uint32_t provider)
198 {
199 set_provider_status(auth, provider, PROVIDER_STATUS_DONE);
200 auth_client_unref(auth);
201 }
202
203 /* Check if provider is operating on this auth client */
204 static inline bool
205 is_provider_running(struct auth_client *auth, uint32_t provider)
206 {
207 return get_provider_status(auth, provider) == PROVIDER_STATUS_RUNNING;
208 }
209
210 /* Check if provider has finished on this client */
211 static inline bool
212 is_provider_done(struct auth_client *auth, uint32_t provider)
213 {
214 return get_provider_status(auth, provider) == PROVIDER_STATUS_DONE;
215 }
216
217 /* Get provider auth client data */
218 static inline void *
219 get_provider_data(struct auth_client *auth, uint32_t id)
220 {
221 return auth->data[id].data;
222 }
223
224 /* Set provider auth client data */
225 static inline void
226 set_provider_data(struct auth_client *auth, uint32_t id, void *data)
227 {
228 auth->data[id].data = data;
229 }
230
231 /* Set timeout relative to current time on provider
232 * When the timeout lapses, the provider's timeout call will execute */
233 static inline void
234 set_provider_timeout_relative(struct auth_client *auth, uint32_t id, time_t timeout)
235 {
236 auth->data[id].timeout = timeout + rb_current_time();
237 }
238
239 /* Set timeout value in absolute time (Unix timestamp)
240 * When the timeout lapses, the provider's timeout call will execute */
241 static inline void
242 set_provider_timeout_absolute(struct auth_client *auth, uint32_t id, time_t timeout)
243 {
244 auth->data[id].timeout = timeout;
245 }
246
247 /* Get the timeout value for the provider */
248 static inline time_t
249 get_provider_timeout(struct auth_client *auth, uint32_t id)
250 {
251 return auth->data[id].timeout;
252 }
253
254 #endif /* __CHARYBDIS_AUTHD_PROVIDER_H__ */