forked from jpmens/mosquitto-auth-plug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth-plug.c
442 lines (361 loc) · 11.6 KB
/
auth-plug.c
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
/*
* Copyright (c) 2013 Jan-Piet Mens <jpmens()gmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of mosquitto nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <mosquitto.h>
#include <mosquitto_plugin.h>
#include <fnmatch.h>
#include "log.h"
#include "hash.h"
#include "backends.h"
#include "be-psk.h"
#include "be-cdb.h"
#include "be-mysql.h"
#include "be-pg.h"
#include "be-sqlite.h"
#include "be-redis.h"
#define STRINGIFY(x) #x
#define TOSTRING(x) STRINGIFY(x)
#define NBACKENDS (5)
#if BE_PSK
# define PSKSETUP do { \
if (!strcmp(psk_database, q)) { \
(*pskbep)->conf = (*bep)->conf; \
(*pskbep)->superuser = (*bep)->superuser; \
(*pskbep)->aclcheck = (*bep)->aclcheck; \
} \
} while (0)
#else
# define PSKSETUP
#endif
struct backend_p {
void *conf; /* Handle to backend */
char *name;
f_kill *kill;
f_getuser *getuser;
f_superuser *superuser;
f_aclcheck *aclcheck;
};
struct userdata {
struct backend_p **be_list;
char *superusers; /* Static glob list */
int authentication_be; /* Back-end number user was authenticated in */
};
int pbkdf2_check(char *password, char *hash);
int mosquitto_auth_plugin_version(void)
{
fprintf(stderr, "*** auth-plug: backend=%s\n", TOSTRING(BACKEND));
return MOSQ_AUTH_PLUGIN_VERSION;
}
int mosquitto_auth_plugin_init(void **userdata, struct mosquitto_auth_opt *auth_opts, int auth_opt_count)
{
int i;
char *backends = NULL, *p, *q;
struct mosquitto_auth_opt *o;
struct userdata *ud;
int ret = MOSQ_ERR_SUCCESS;
int nord;
struct backend_p **bep;
#ifdef BE_PSK
struct backend_p **pskbep;
char *psk_database = NULL;
#endif
*userdata = (struct userdata *)malloc(sizeof(struct userdata));
if (*userdata == NULL) {
perror("allocting userdata");
return MOSQ_ERR_UNKNOWN;
}
ud = *userdata;
/*
* Shove all options Mosquitto gives the plugin into a hash,
* and let the back-ends figure out if they have all they
* need upon init()
*/
for (i = 0, o = auth_opts; i < auth_opt_count; i++, o++) {
_log(LOG_DEBUG, "AuthOptions: key=%s, val=%s", o->key, o->value);
p_add(o->key, o->value);
if (!strcmp(o->key, "superusers"))
ud->superusers = strdup(o->value);
#if 0
if (!strcmp(o->key, "topic_prefix"))
ud->topicprefix = strdup(o->value);
#endif
}
/*
* Set up back-ends, and tell them to initialize themselves.
*/
backends = p_stab("backends");
if (backends == NULL) {
_fatal("No backends configured.");
}
p = strdup(backends);
printf("** Configured order: %s\n", p);
ud->be_list = (struct backend_p **)malloc((sizeof (struct backend_p *)) * (NBACKENDS + 1));
bep = ud->be_list;
nord = 0;
#if BE_PSK
/*
* Force adding PSK back-end, which must be indexed at 0
* The PSK back-end is a little special in that it will use
* a database from another back-end (e.g. mysql or sqlite)
* for authorization.
*/
if ((psk_database = p_stab("psk_database")) == NULL) {
_fatal("PSK is configured so psk_database needs to be set");
}
pskbep = bep;
*pskbep = (struct backend_p *)malloc(sizeof(struct backend_p));
memset(*pskbep, 0, sizeof(struct backend_p));
(*pskbep)->name = strdup("psk");
bep = pskbep;
bep++;
nord++;
#endif /* BE_PSK */
for (q = strsep(&p, ","); q && *q && (nord < NBACKENDS); q = strsep(&p, ",")) {
int found = 0;
#if BE_MYSQL
if (!strcmp(q, "mysql")) {
*bep = (struct backend_p *)malloc(sizeof(struct backend_p));
memset(*bep, 0, sizeof(struct backend_p));
(*bep)->name = strdup("mysql");
(*bep)->conf = be_mysql_init();
if ((*bep)->conf == NULL) {
_fatal("%s init returns NULL", q);
}
(*bep)->kill = be_mysql_destroy;
(*bep)->getuser = be_mysql_getuser;
(*bep)->superuser = be_mysql_superuser;
(*bep)->aclcheck = be_mysql_aclcheck;
found = 1;
PSKSETUP;
}
#endif
#if BE_PG
if (!strcmp(q, "pgsql")) {
*bep = (struct backend_p *)malloc(sizeof(struct backend_p));
memset(*bep, 0, sizeof(struct backend_p));
(*bep)->name = strdup("pgsql");
(*bep)->conf = be_pg_init();
if ((*bep)->conf == NULL) {
_fatal("%s init returns NULL", q);
}
(*bep)->kill = be_pg_destroy;
(*bep)->getuser = be_pg_getuser;
(*bep)->superuser = be_pg_superuser;
(*bep)->aclcheck = be_pg_aclcheck;
found = 1;
PSKSETUP;
}
#endif
#if BE_CDB
if (!strcmp(q, "cdb")) {
*bep = (struct backend_p *)malloc(sizeof(struct backend_p));
memset(*bep, 0, sizeof(struct backend_p));
(*bep)->name = strdup("cdb");
(*bep)->conf = be_cdb_init();
if ((*bep)->conf == NULL) {
_fatal("%s init returns NULL", q);
}
(*bep)->kill = be_cdb_destroy;
(*bep)->getuser = be_cdb_getuser;
(*bep)->superuser = be_cdb_superuser;
(*bep)->aclcheck = be_cdb_aclcheck;
found = 1;
PSKSETUP;
}
#endif
#if BE_SQLITE
if (!strcmp(q, "sqlite")) {
*bep = (struct backend_p *)malloc(sizeof(struct backend_p));
memset(*bep, 0, sizeof(struct backend_p));
(*bep)->name = strdup("sqlite");
(*bep)->conf = be_sqlite_init();
if ((*bep)->conf == NULL) {
_fatal("%s init returns NULL", q);
}
(*bep)->kill = be_sqlite_destroy;
(*bep)->getuser = be_sqlite_getuser;
(*bep)->superuser = be_sqlite_superuser;
(*bep)->aclcheck = be_sqlite_aclcheck;
found = 1;
PSKSETUP;
}
#endif
#if BE_REDIS
if (!strcmp(q, "redis")) {
*bep = (struct backend_p *)malloc(sizeof(struct backend_p));
memset(*bep, 0, sizeof(struct backend_p));
(*bep)->name = strdup("redis");
(*bep)->conf = be_redis_init();
if ((*bep)->conf == NULL) {
_fatal("%s init returns NULL", q);
}
(*bep)->kill = be_redis_destroy;
(*bep)->getuser = be_redis_getuser;
(*bep)->superuser = be_redis_superuser;
(*bep)->aclcheck = be_redis_aclcheck;
found = 1;
PSKSETUP;
}
#endif
if (!found) {
_fatal("ERROR: configured back-end `%s' is not compiled in this plugin", q);
}
ud->be_list[++nord] = NULL;
bep++;
}
free(p);
return (ret);
}
int mosquitto_auth_plugin_cleanup(void *userdata, struct mosquitto_auth_opt *auth_opts, int auth_opt_count)
{
// struct userdata *ud = (struct userdata *)userdata;
/* FIXME: free other elements */
return MOSQ_ERR_SUCCESS;
}
int mosquitto_auth_security_init(void *userdata, struct mosquitto_auth_opt *auth_opts, int auth_opt_count, bool reload)
{
return MOSQ_ERR_SUCCESS;
}
int mosquitto_auth_security_cleanup(void *userdata, struct mosquitto_auth_opt *auth_opts, int auth_opt_count, bool reload)
{
return MOSQ_ERR_SUCCESS;
}
int mosquitto_auth_unpwd_check(void *userdata, const char *username, const char *password)
{
struct userdata *ud = (struct userdata *)userdata;
struct backend_p **bep;
char *phash = NULL, *backend_name = NULL;
int match, authenticated = FALSE, nord;
if (!username || !*username || !password || !*password)
return MOSQ_ERR_AUTH;
ud->authentication_be = -1;
_log(LOG_DEBUG, "mosquitto_auth_unpwd_check(%s)", (username) ? username : "<nil>");
for (nord = 0, bep = ud->be_list; bep && *bep; bep++, nord++) {
struct backend_p *b = *bep;
_log(LOG_DEBUG, "** checking backend %s", b->name);
phash = b->getuser(b->conf, username);
if (phash != NULL) {
match = pbkdf2_check((char *)password, phash);
if (match == 1) {
authenticated = TRUE;
/* Mark backend index in userdata so we can check
* authorization in this back-end only.
*/
ud->authentication_be = nord;
break;
}
}
}
/* Set name of back-end which authenticated */
backend_name = (authenticated) ? (*bep)->name : "none";
_log(DEBUG, "getuser(%s) AUTHENTICATED=%d by %s",
username, authenticated, backend_name);
if (phash != NULL) {
free(phash);
}
return (authenticated) ? MOSQ_ERR_SUCCESS : MOSQ_ERR_AUTH;
}
int mosquitto_auth_acl_check(void *userdata, const char *clientid, const char *username, const char *topic, int access)
{
struct userdata *ud = (struct userdata *)userdata;
struct backend_p **bep;
char *backend_name = NULL;
int match = 0, authorized = FALSE, nord;
if (!username || !*username || !topic || !*topic)
return MOSQ_ERR_ACL_DENIED;
/* Check for usernames exempt from ACL checking, first */
if (ud->superusers) {
if (fnmatch(ud->superusers, username, 0) == 0) {
_log(DEBUG, "aclcheck(%s, %s, %d) GLOBAL SUPERUSER=Y",
username, topic, access);
return MOSQ_ERR_SUCCESS;
}
}
for (bep = ud->be_list; bep && *bep; bep++) {
struct backend_p *b = *bep;
match = b->superuser(b->conf, username);
if (match == 1) {
_log(DEBUG, "aclcheck(%s, %s, %d) SUPERUSER=Y by %s",
username, topic, access, b->name);
return MOSQ_ERR_SUCCESS;
}
}
/*
* Check authorization in the back-end used to authenticate the user.
*/
nord = ud->authentication_be;
backend_name = (nord >= 0 && nord < NBACKENDS) ? ud->be_list[nord]->name : "<nil>";
_log(LOG_NOTICE, "user %s was authenticated in back-end %d (%s)",
username, nord, (backend_name) ? backend_name : "<nil>");
bep = &ud->be_list[nord];
if (nord == -1 || !bep)
return (MOSQ_ERR_ACL_DENIED);
match = (*bep)->aclcheck((*bep)->conf, username, topic, access);
if (match == 1) {
authorized = TRUE;
}
_log(DEBUG, "aclcheck(%s, %s, %d) AUTHORIZED=%d by %s",
username, topic, access, authorized, backend_name);
return (authorized) ? MOSQ_ERR_SUCCESS : MOSQ_ERR_ACL_DENIED;
}
int mosquitto_auth_psk_key_get(void *userdata, const char *hint, const char *identity, char *key, int max_key_len)
{
#if BE_PSK
struct userdata *ud = (struct userdata *)userdata;
struct backend_p **bep;
char *database = p_stab("psk_database");
char *psk_key = NULL, *username;
int psk_found = FALSE;
// username = malloc(strlen(hint) + strlen(identity) + 12);
// sprintf(username, "%s-%s", hint, identity);
username = (char *)identity;
for (bep = ud->be_list; bep && *bep; bep++) {
struct backend_p *b = *bep;
if (!strcmp(database, b->name)) {
psk_key = b->getuser(b->conf, username);
break;
}
}
_log(DEBUG, "psk_key_get(%s, %s) from [%s] finds PSK: %d",
hint, identity, database,
psk_key ? 1 : 0);
if (psk_key != NULL) {
strncpy(key, psk_key, max_key_len);
free(psk_key);
psk_found = TRUE;
}
ud->authentication_be = 0; /* PSK */
// free(username);
return (psk_found) ? MOSQ_ERR_SUCCESS : MOSQ_ERR_AUTH;
#else /* !BE_PSK */
return MOSQ_ERR_AUTH;
#endif /* BE_PSK */
}