This repository has been archived by the owner on Mar 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 496
/
auth-plug.c
806 lines (701 loc) · 22.2 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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
/*
* Copyright (c) 2013, 2014 Jan-Piet Mens <jp@mens.de>
* 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 <openssl/evp.h>
#include <mosquitto.h>
#include <mosquitto_broker.h>
#include <mosquitto_plugin.h>
#include <fnmatch.h>
#include <time.h>
#if LIBMOSQUITTO_VERSION_NUMBER >= 1004090
# define MOSQ_DENY_AUTH MOSQ_ERR_PLUGIN_DEFER
# define MOSQ_DENY_ACL MOSQ_ERR_PLUGIN_DEFER
#else
# define MOSQ_DENY_AUTH MOSQ_ERR_AUTH
# define MOSQ_DENY_ACL MOSQ_ERR_ACL_DENIED
#endif
#if MOSQ_AUTH_PLUGIN_VERSION >= 3
# define mosquitto_auth_opt mosquitto_opt
#endif
#include "log.h"
#include "hash.h"
#include "backends.h"
#include "envs.h"
#include "be-psk.h"
#include "be-cdb.h"
#include "be-mysql.h"
#include "be-sqlite.h"
#include "be-redis.h"
#include "be-memcached.h"
#include "be-postgres.h"
#include "be-ldap.h"
#include "be-http.h"
#include "be-jwt.h"
#include "be-mongo.h"
#include "be-files.h"
#include "userdata.h"
#include "cache.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;
};
int pbkdf2_check(char *password, char *hash);
int mosquitto_auth_plugin_version(void)
{
log_init();
_log(LOG_NOTICE, "*** auth-plug: startup");
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, *_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
log_init();
OpenSSL_add_all_algorithms();
*userdata = (struct userdata *)malloc(sizeof(struct userdata));
if (*userdata == NULL) {
perror("allocting userdata");
return MOSQ_ERR_UNKNOWN;
}
memset(*userdata, 0, sizeof(struct userdata));
ud = *userdata;
ud->superusers = NULL;
ud->fallback_be = -1;
ud->anonusername = strdup("anonymous");
ud->acl_cacheseconds = 300;
ud->auth_cacheseconds = 0;
ud->acl_cachejitter = 0;
ud->auth_cachejitter = 0;
ud->aclcache = NULL;
ud->authcache = NULL;
ud->clients = NULL;
/*
* 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 (!strcmp(o->key, "anonusername")) {
free(ud->anonusername);
ud->anonusername = strdup(o->value);
}
if (!strcmp(o->key, "cacheseconds") || !strcmp(o->key, "acl_cacheseconds"))
ud->acl_cacheseconds = atol(o->value);
if (!strcmp(o->key, "auth_cacheseconds"))
ud->auth_cacheseconds = atol(o->value);
if (!strcmp(o->key, "acl_cachejitter"))
ud->acl_cachejitter = atol(o->value);
if (!strcmp(o->key, "auth_cacheijitter"))
ud->auth_cachejitter = atol(o->value);
if (!strcmp(o->key, "log_quiet")) {
if(!strcmp(o->value, "false") || !strcmp(o->value, "0")){
log_quiet = 0;
}else if(!strcmp(o->value, "true") || !strcmp(o->value, "1")){
log_quiet = 1;
}else{
_log(LOG_NOTICE, "Error: Invalid log_quiet value (%s).", 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 = p = strdup(backends);
_log(LOG_NOTICE, "** 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;
ud->fallback_be = ud->fallback_be == -1 ? nord : ud->fallback_be;
PSKSETUP;
}
#endif
#if BE_POSTGRES
if (!strcmp(q, "postgres")) {
*bep = (struct backend_p *)malloc(sizeof(struct backend_p));
memset(*bep, 0, sizeof(struct backend_p));
(*bep)->name = strdup("postgres");
(*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;
ud->fallback_be = ud->fallback_be == -1 ? nord : ud->fallback_be;
PSKSETUP;
}
#endif
#if BE_LDAP
if (!strcmp(q, "ldap")) {
*bep = (struct backend_p *)malloc(sizeof(struct backend_p));
memset(*bep, 0, sizeof(struct backend_p));
(*bep)->name = strdup("ldap");
(*bep)->conf = be_ldap_init();
if ((*bep)->conf == NULL) {
_fatal("%s init returns NULL", q);
}
(*bep)->kill = be_ldap_destroy;
(*bep)->getuser = be_ldap_getuser;
(*bep)->superuser = be_ldap_superuser;
(*bep)->aclcheck = be_ldap_aclcheck;
found = 1;
ud->fallback_be = ud->fallback_be == -1 ? nord : ud->fallback_be;
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;
ud->fallback_be = ud->fallback_be == -1 ? nord : ud->fallback_be;
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;
ud->fallback_be = ud->fallback_be == -1 ? nord : ud->fallback_be;
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;
ud->fallback_be = ud->fallback_be == -1 ? nord : ud->fallback_be;
PSKSETUP;
}
#endif
#if BE_MEMCACHED
if (!strcmp(q, "memcached")) {
*bep = (struct backend_p *)malloc(sizeof(struct backend_p));
memset(*bep, 0, sizeof(struct backend_p));
(*bep)->name = strdup("memcached");
(*bep)->conf = be_memcached_init();
if ((*bep)->conf == NULL) {
_fatal("%s init returns NULL", q);
}
(*bep)->kill = be_memcached_destroy;
(*bep)->getuser = be_memcached_getuser;
(*bep)->superuser = be_memcached_superuser;
(*bep)->aclcheck = be_memcached_aclcheck;
found = 1;
ud->fallback_be = ud->fallback_be == -1 ? nord : ud->fallback_be;
PSKSETUP;
}
#endif
#if BE_HTTP
if (!strcmp(q, "http")) {
*bep = (struct backend_p *)malloc(sizeof(struct backend_p));
memset(*bep, 0, sizeof(struct backend_p));
(*bep)->name = strdup("http");
(*bep)->conf = be_http_init();
if ((*bep)->conf == NULL) {
_fatal("%s init returns NULL", q);
}
(*bep)->kill = be_http_destroy;
(*bep)->getuser = be_http_getuser;
(*bep)->superuser = be_http_superuser;
(*bep)->aclcheck = be_http_aclcheck;
found = 1;
ud->fallback_be = ud->fallback_be == -1 ? nord : ud->fallback_be;
PSKSETUP;
}
#endif
#if BE_JWT
if (!strcmp(q, "jwt")) {
*bep = (struct backend_p *)malloc(sizeof(struct backend_p));
memset(*bep, 0, sizeof(struct backend_p));
(*bep)->name = strdup("jwt");
(*bep)->conf = be_jwt_init();
if ((*bep)->conf == NULL) {
_fatal("%s init returns NULL", q);
}
(*bep)->kill = be_jwt_destroy;
(*bep)->getuser = be_jwt_getuser;
(*bep)->superuser = be_jwt_superuser;
(*bep)->aclcheck = be_jwt_aclcheck;
found = 1;
ud->fallback_be = ud->fallback_be == -1 ? nord : ud->fallback_be;
PSKSETUP;
}
#endif
#if BE_MONGO
if (!strcmp(q, "mongo")) {
*bep = (struct backend_p *)malloc(sizeof(struct backend_p));
memset(*bep, 0, sizeof(struct backend_p));
(*bep)->name = strdup("mongo");
(*bep)->conf = be_mongo_init();
if ((*bep)->conf == NULL) {
_fatal("%s init returns NULL", q);
}
(*bep)->kill = be_mongo_destroy;
(*bep)->getuser = be_mongo_getuser;
(*bep)->superuser = be_mongo_superuser;
(*bep)->aclcheck = be_mongo_aclcheck;
found = 1;
PSKSETUP;
}
#endif
#if BE_FILES
if (!strcmp(q, "files")) {
*bep = (struct backend_p *)malloc(sizeof(struct backend_p));
memset(*bep, 0, sizeof(struct backend_p));
(*bep)->name = strdup("files");
(*bep)->conf = be_files_init();
if ((*bep)->conf == NULL) {
_fatal("%s init returns NULL", q);
}
(*bep)->kill = be_files_destroy;
(*bep)->getuser = be_files_getuser;
(*bep)->superuser = be_files_superuser;
(*bep)->aclcheck = be_files_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;
if (ud->superusers)
free(ud->superusers);
if (ud->anonusername)
free(ud->anonusername);
if (ud->aclcache != NULL) {
struct cacheentry *a, *tmp;
HASH_ITER(hh, ud->aclcache, a, tmp) {
HASH_DEL(ud->aclcache, a);
free(a);
}
}
if (ud->authcache != NULL) {
struct cacheentry *a, *tmp;
HASH_ITER(hh, ud->authcache, a, tmp) {
HASH_DEL(ud->authcache, a);
free(a);
}
}
if (ud->be_list) {
struct backend_p **bep;
for (bep = ud->be_list; bep && *bep; bep++) {
(*bep)->kill((*bep)->conf);
free((*bep)->name);
free(*bep);
}
free(ud->be_list);
}
free(ud);
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;
}
#if MOSQ_AUTH_PLUGIN_VERSION >=3
int mosquitto_auth_unpwd_check(void *userdata, const struct mosquitto *client, const char *username, const char *password)
#else
int mosquitto_auth_unpwd_check(void *userdata, const char *username, const char *password)
#endif
{
struct userdata *ud = (struct userdata *)userdata;
struct backend_p **bep;
char *phash = NULL, *backend_name = NULL;
int match, authenticated = FALSE, nord, granted, rc, has_error = FALSE;
if (!username || !*username || !password || !*password)
return MOSQ_DENY_AUTH;
_log(LOG_DEBUG, "mosquitto_auth_unpwd_check(%s)", (username) ? username : "<nil>");
#if MOSQ_AUTH_PLUGIN_VERSION >=3
struct cliententry *e;
HASH_FIND(hh, ud->clients, &client, sizeof(void *), e);
if (e) {
free(e->username);
free(e->clientid);
e->username = strdup(username);
e->clientid = strdup("client id not available");
} else {
e = (struct cliententry *)malloc(sizeof(struct cliententry));
e->key = (void *)client;
e->username = strdup(username);
e->clientid = strdup("client id not available");
HASH_ADD(hh, ud->clients, key, sizeof(void *), e);
}
#endif
granted = auth_cache_q(username, password, userdata);
if (granted != MOSQ_ERR_UNKNOWN) {
_log(LOG_DEBUG, "getuser(%s) CACHEDAUTH: %d",
username, (granted == MOSQ_ERR_SUCCESS) ? TRUE : FALSE);
return granted;
}
for (nord = 0, bep = ud->be_list; bep && *bep; bep++, nord++) {
struct backend_p *b = *bep;
_log(LOG_DEBUG, "** checking backend %s", b->name);
/*
* The ->getuser() routine can decide to authenticate by returning BACKEND_ALLOW
* or by setting phash to the user's PBKDF2 password hash and returning BACKEND_DEFER
* It can also refuse authentication by returning BACKEND_DENY.
*/
if (phash != NULL) {
free(phash);
phash = NULL;
}
#if MOSQ_AUTH_PLUGIN_VERSION >=3
rc = b->getuser(b->conf, username, password, &phash, mosquitto_client_id(client));
#else
rc = b->getuser(b->conf, username, password, &phash, NULL);
#endif
if (rc == BACKEND_ALLOW) {
backend_name = (*bep)->name;
authenticated = TRUE;
break;
} else if (rc == BACKEND_DENY) {
authenticated = FALSE;
backend_name = (*bep)->name;
break;
} else if (rc == BACKEND_ERROR) {
has_error = TRUE;
} else if (phash != NULL) {
match = pbkdf2_check((char *)password, phash);
if (match == 1) {
backend_name = (*bep)->name;
authenticated = TRUE;
/* Mark backend index in userdata so we can check
* authorization in this back-end only.
*/
break;
}
}
}
_log(LOG_DEBUG, "getuser(%s) AUTHENTICATED=%d by %s",
username, authenticated, (backend_name) ? backend_name : "none");
if (phash != NULL) {
free(phash);
}
granted = (authenticated) ? MOSQ_ERR_SUCCESS : MOSQ_DENY_AUTH;
if (granted == MOSQ_DENY_AUTH && has_error) {
_log(LOG_DEBUG, "getuser(%s) AUTHENTICATED=N HAS_ERROR=Y => ERR_UNKNOWN",
username);
granted = MOSQ_ERR_UNKNOWN;
}
auth_cache(username, password, granted, userdata);
return granted;
}
#if MOSQ_AUTH_PLUGIN_VERSION >= 3
int mosquitto_auth_acl_check(void *userdata, int access, const struct mosquitto *client, const struct mosquitto_acl_msg *msg)
#else
int mosquitto_auth_acl_check(void *userdata, const char *clientid, const char *username, const char *topic, int access)
#endif
{
struct userdata *ud = (struct userdata *)userdata;
struct backend_p **bep;
char *backend_name = NULL;
int match = 0, authorized = FALSE, has_error = FALSE;
int granted = MOSQ_DENY_ACL;
#if MOSQ_AUTH_PLUGIN_VERSION >= 3
struct cliententry *e;
const char *clientid = NULL;
const char *username = NULL;
const char *topic = msg->topic;
HASH_FIND(hh, ud->clients, &client, sizeof(void *), e);
if (e) {
clientid = e->clientid;
username = e->username;
} else {
bool client_cert = (mosquitto_client_certificate(client) != NULL);
if (client_cert == true) {
clientid = mosquitto_client_id(client);
username = mosquitto_client_username(client);
}
if (client_cert == false || clientid == NULL || username == NULL) {
return MOSQ_ERR_PLUGIN_DEFER;
}
}
#endif
if (!username || !*username) { // anonymous users
username = ud->anonusername;
}
/* We are using pattern based acls. Check whether the username or
* client id contains a +, # or / and if so deny access.
*
* Without this, a malicious client may configure its username/client
* id to bypass ACL checks (or have a username/client id that cannot
* publish or receive messages to its own place in the hierarchy).
*/
if(username && strpbrk(username, "+#/")){
_log(MOSQ_LOG_NOTICE, "ACL denying access to client with dangerous username \"%s\"", username);
return MOSQ_DENY_ACL;
}
if(clientid && strpbrk(clientid, "+#/")){
_log(MOSQ_LOG_NOTICE, "ACL denying access to client with dangerous client id \"%s\"", clientid);
return MOSQ_DENY_ACL;
}
_log(LOG_DEBUG, "mosquitto_auth_acl_check(..., %s, %s, %s, %s)",
clientid ? clientid : "NULL",
username ? username : "NULL",
topic ? topic : "NULL",
access == MOSQ_ACL_READ ? "MOSQ_ACL_READ" : "MOSQ_ACL_WRITE" );
granted = acl_cache_q(clientid, username, topic, access, userdata);
if (granted != MOSQ_ERR_UNKNOWN) {
_log(LOG_DEBUG, "aclcheck(%s, %s, %d) CACHEDAUTH: %d",
username, topic, access, granted);
return (granted);
}
if (!username || !*username || !topic || !*topic) {
granted = MOSQ_DENY_ACL;
goto outout;
}
/* Check for usernames exempt from ACL checking, first */
if (ud->superusers) {
if (fnmatch(ud->superusers, username, 0) == 0) {
_log(LOG_DEBUG, "aclcheck(%s, %s, %d) GLOBAL SUPERUSER=Y",
username, topic, access);
granted = MOSQ_ERR_SUCCESS;
goto outout;
}
}
for (bep = ud->be_list; bep && *bep; bep++) {
struct backend_p *b = *bep;
match = b->superuser(b->conf, username);
if (match == BACKEND_ALLOW) {
_log(LOG_DEBUG, "aclcheck(%s, %s, %d) SUPERUSER=Y by %s",
username, topic, access, b->name);
granted = MOSQ_ERR_SUCCESS;
goto outout;
} else if (match == BACKEND_DENY) {
_log(LOG_DEBUG, "aclcheck(%s, %s, %d) SUPERUSER=N by %s",
username, topic, access, b->name);
granted = MOSQ_DENY_ACL;
goto outout;
} else if (match == BACKEND_ERROR) {
_log(LOG_DEBUG, "aclcheck(%s, %s, %d) HAS_ERROR=Y by %s",
username, topic, access, b->name);
has_error = TRUE;
}
}
/*
* Check authorization in the back-end used to authenticate the user.
*/
for (bep = ud->be_list; bep && *bep; bep++) {
struct backend_p *b = *bep;
match = b->aclcheck((*bep)->conf, clientid, username, topic, access);
if (match == BACKEND_ALLOW) {
backend_name = b->name;
_log(LOG_DEBUG, "aclcheck(%s, %s, %d) trying to acl with %s",
username, topic, access, b->name);
authorized = TRUE;
break;
} else if (match == BACKEND_DENY) {
backend_name = b->name;
authorized = FALSE;
break;
} else if (match == BACKEND_ERROR) {
_log(LOG_DEBUG, "aclcheck(%s, %s, %d) HAS_ERROR=Y by %s",
username, topic, access, b->name);
has_error = TRUE;
}
}
_log(LOG_DEBUG, "aclcheck(%s, %s, %d) AUTHORIZED=%d by %s",
username, topic, access, authorized, (backend_name) ? backend_name : "none");
granted = (authorized) ? MOSQ_ERR_SUCCESS : MOSQ_DENY_ACL;
outout: /* goto fail goto fail */
if (granted == MOSQ_DENY_ACL && has_error) {
_log(LOG_DEBUG, "aclcheck(%s, %s, %d) AUTHORIZED=N HAS_ERROR=Y => ERR_UNKNOWN",
username, topic, access);
granted = MOSQ_ERR_UNKNOWN;
}
acl_cache(clientid, username, topic, access, granted, userdata);
return (granted);
}
#if MOSQ_AUTH_PLUGIN_VERSION >= 3
int mosquitto_auth_psk_key_get(void *userdata, const struct mosquitto *client, const char *hint, const char *identity, char *key, int max_key_len)
#else
int mosquitto_auth_psk_key_get(void *userdata, const char *hint, const char *identity, char *key, int max_key_len)
#endif
{
#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, rc, has_error = FALSE;
// username = malloc(strlen(hint) + strlen(identity) + 12);
// sprintf(username, "%s-%s", hint, identity);
username = (char *)identity;
rc = BACKEND_DENY;
for (bep = ud->be_list; bep && *bep; bep++) {
struct backend_p *b = *bep;
if (!strcmp(database, b->name)) {
rc = b->getuser(b->conf, username, NULL, &psk_key);
break;
}
}
if (rc == BACKEND_ERROR) {
psk_found = FALSE;
has_error = TRUE;
} else if (rc == BACKEND_DENY) {
psk_found = FALSE;
} else {
_log(LOG_DEBUG, "psk_key_get(hint=%s, identity=%s) from [%s] finds PSK: %d",
hint, identity, database,
psk_key ? 1 : 0);
if (psk_key != NULL) {
strncpy(key, psk_key, max_key_len);
psk_found = TRUE;
}
}
if (psk_key != NULL) {
free(psk_key);
}
// free(username);
if (has_error) return MOSQ_ERR_UNKNOWN;
return (psk_found) ? MOSQ_ERR_SUCCESS : MOSQ_DENY_AUTH;
#else /* !BE_PSK */
return MOSQ_DENY_AUTH;
#endif /* BE_PSK */
}