-
Notifications
You must be signed in to change notification settings - Fork 23
/
plugin.cpp
936 lines (781 loc) · 33.5 KB
/
plugin.cpp
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
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
/*
This file is part of FlashMQ (https://www.flashmq.org)
Copyright (C) 2021-2023 Wiebe Cazemier
FlashMQ is free software: you can redistribute it and/or modify
it under the terms of The Open Software License 3.0 (OSL-3.0).
See LICENSE for license details.
*/
#include "plugin.h"
#include <unistd.h>
#include <fcntl.h>
#include <sstream>
#include <dlfcn.h>
#include <fstream>
#include <sys/stat.h>
#include <cassert>
#include <optional>
#include "exceptions.h"
#include "unscopedlock.h"
#include "utils.h"
#include "client.h"
#include "threadglobals.h"
#include "threaddata.h"
std::mutex Authentication::initMutex;
std::mutex Authentication::deinitMutex;
std::mutex Authentication::authChecksMutex;
void mosquitto_log_printf(int level, const char *fmt, ...)
{
Logger *logger = Logger::getInstance();
va_list valist;
va_start(valist, fmt);
logger->logf(level, fmt, valist);
va_end(valist);
}
MosquittoPasswordFileEntry::MosquittoPasswordFileEntry(PasswordHashType type, const std::vector<char> &&salt, const std::vector<char> &&cryptedPassword, int iterations) :
type(type),
salt(salt),
cryptedPassword(cryptedPassword),
iterations(iterations)
{
}
Authentication::Authentication(Settings &settings) :
settings(settings),
mosquittoPasswordFile(settings.mosquittoPasswordFile),
mosquittoAclFile(settings.mosquittoAclFile),
mosquittoDigestContext(EVP_MD_CTX_new())
{
logger = Logger::getInstance();
if(!sha512)
{
throw std::runtime_error("Failed to initialize SHA512 for decoding auth entry");
}
EVP_DigestInit_ex(mosquittoDigestContext, sha512, NULL);
memset(&mosquittoPasswordFileLastLoad, 0, sizeof(struct timespec));
}
Authentication::~Authentication()
{
EVP_MD_CTX_free(mosquittoDigestContext);
mosquittoDigestContext = nullptr;
}
void *Authentication::loadSymbol(void *handle, const char *symbol, bool exceptionOnError) const
{
void *r = dlsym(handle, symbol);
if (r == NULL && exceptionOnError)
{
std::string errmsg(dlerror());
throw FatalError(errmsg);
}
return r;
}
void Authentication::loadPlugin(const PluginLoader &l)
{
if (!l.loaded())
return;
initialized = false;
pluginFamily = l.getPluginFamily();
flashmqPluginVersionNumber = l.getFlashMQPluginVersion();
if (pluginFamily == PluginFamily::MosquittoV2)
{
init_v2 = (F_plugin_init_v2)l.loadSymbol( "mosquitto_auth_plugin_init");
cleanup_v2 = (F_plugin_cleanup_v2)l.loadSymbol( "mosquitto_auth_plugin_cleanup");
security_init_v2 = (F_plugin_security_init_v2)l.loadSymbol("mosquitto_auth_security_init");
security_cleanup_v2 = (F_plugin_security_cleanup_v2)l.loadSymbol("mosquitto_auth_security_cleanup");
acl_check_v2 = (F_plugin_acl_check_v2)l.loadSymbol("mosquitto_auth_acl_check");
unpwd_check_v2 = (F_plugin_unpwd_check_v2)l.loadSymbol("mosquitto_auth_unpwd_check");
psk_key_get_v2 = (F_plugin_psk_key_get_v2)l.loadSymbol("mosquitto_auth_psk_key_get");
}
else if (pluginFamily == PluginFamily::FlashMQ)
{
flashmq_plugin_allocate_thread_memory_v1 = (F_flashmq_plugin_allocate_thread_memory_v1)l.loadSymbol("flashmq_plugin_allocate_thread_memory");
flashmq_plugin_deallocate_thread_memory_v1 = (F_flashmq_plugin_deallocate_thread_memory_v1)l.loadSymbol("flashmq_plugin_deallocate_thread_memory");
flashmq_plugin_init_v1 = (F_flashmq_plugin_init_v1)l.loadSymbol("flashmq_plugin_init");
flashmq_plugin_deinit_v1 = (F_flashmq_plugin_deinit_v1)l.loadSymbol("flashmq_plugin_deinit");
flashmq_plugin_login_check_v1 = (F_flashmq_plugin_login_check_v1)l.loadSymbol("flashmq_plugin_login_check");
flashmq_plugin_periodic_event_v1 = (F_flashmq_plugin_periodic_event_v1)l.loadSymbol("flashmq_plugin_periodic_event", false);
flashmq_plugin_extended_auth_v1 = (F_flashmq_plugin_extended_auth_v1)l.loadSymbol("flashmq_plugin_extended_auth", false);
flashmq_plugin_alter_subscription_v1 = (F_flashmq_plugin_alter_subscription_v1)l.loadSymbol("flashmq_plugin_alter_subscription", false);
flashmq_plugin_client_disconnected_v1 = (F_flashmq_plugin_client_disconnected_v1)l.loadSymbol("flashmq_plugin_client_disconnected", false);
flashmq_plugin_poll_event_received_v1 = (F_flashmq_plugin_poll_event_received_v1)l.loadSymbol("flashmq_plugin_poll_event_received", false);
if (flashmqPluginVersionNumber == 1)
{
flashmq_plugin_acl_check_v1 = (F_flashmq_plugin_acl_check_v1)l.loadSymbol("flashmq_plugin_acl_check");
flashmq_plugin_alter_publish_v1 = (F_flashmq_plugin_alter_publish_v1)l.loadSymbol("flashmq_plugin_alter_publish", false);
}
else if (flashmqPluginVersionNumber == 2)
{
flashmq_plugin_acl_check_v2 = (F_flashmq_plugin_acl_check_v2)l.loadSymbol("flashmq_plugin_acl_check");
flashmq_plugin_alter_publish_v2 = (F_flashmq_plugin_alter_publish_v2)l.loadSymbol("flashmq_plugin_alter_publish", false);
}
else if (flashmqPluginVersionNumber == 3)
{
flashmq_plugin_acl_check_v3 = (F_flashmq_plugin_acl_check_v3)l.loadSymbol("flashmq_plugin_acl_check");
flashmq_plugin_alter_publish_v3 = (F_flashmq_plugin_alter_publish_v3)l.loadSymbol("flashmq_plugin_alter_publish", false);
}
else
{
throw FatalError("Unreachable error reached in detecting plugin version.");
}
}
else
{
throw FatalError("Unreachable error reached?");
}
initialized = true;
}
/**
* @brief plugin::init is like Mosquitto's init(), and is to allow the plugin to init memory. Plugins should not load
* their authentication data here. That's what securityInit() is for.
*/
void Authentication::init()
{
if (pluginFamily == PluginFamily::None)
return;
UnscopedLock lock(initMutex);
if (settings.pluginSerializeInit)
lock.lock();
if (quitting)
return;
if (pluginFamily == PluginFamily::MosquittoV2)
{
AuthOptCompatWrap &authOpts = settings.getAuthOptsCompat();
int result = init_v2(&pluginData, authOpts.head(), authOpts.size());
if (result != 0)
throw FatalError("Error initialising auth plugin.");
}
else if (pluginFamily == PluginFamily::FlashMQ)
{
std::unordered_map<std::string, std::string> &authOpts = settings.getFlashmqpluginOpts();
flashmq_plugin_allocate_thread_memory_v1(&pluginData, authOpts);
}
}
void Authentication::cleanup()
{
if (pluginFamily == PluginFamily::None)
return;
logger->logf(LOG_NOTICE, "Cleaning up authentication.");
securityCleanup(false);
UnscopedLock lock(deinitMutex);
if (settings.pluginSerializeInit)
lock.lock();
if (pluginFamily == PluginFamily::MosquittoV2)
{
AuthOptCompatWrap &authOpts = settings.getAuthOptsCompat();
int result = cleanup_v2(pluginData, authOpts.head(), authOpts.size());
if (result != 0)
logger->logf(LOG_ERR, "Error cleaning up auth plugin"); // Not doing exception, because we're shutting down anyway.
}
else if (pluginFamily == PluginFamily::FlashMQ)
{
try
{
std::unordered_map<std::string, std::string> &authOpts = settings.getFlashmqpluginOpts();
flashmq_plugin_deallocate_thread_memory_v1(pluginData, authOpts);
}
catch (std::exception &ex)
{
logger->logf(LOG_ERR, "Error cleaning up auth plugin: '%s'", ex.what()); // Not doing exception, because we're shutting down anyway.
}
}
}
/**
* @brief plugin::securityInit initializes the security data, like loading users, ACL tables, etc.
* @param reloading
*/
void Authentication::securityInit(bool reloading)
{
if (pluginFamily == PluginFamily::None)
return;
UnscopedLock lock(initMutex);
if (settings.pluginSerializeInit)
lock.lock();
if (quitting)
return;
if (pluginFamily == PluginFamily::MosquittoV2)
{
AuthOptCompatWrap &authOpts = settings.getAuthOptsCompat();
int result = security_init_v2(pluginData, authOpts.head(), authOpts.size(), reloading);
if (result != 0)
{
throw pluginException("Plugin function mosquitto_auth_security_init returned an error. If it didn't log anything, we don't know what it was.");
}
}
else if (pluginFamily == PluginFamily::FlashMQ)
{
// The exception handling is higher up in the call stack, because it needs to be different on first start vs reload.
std::unordered_map<std::string, std::string> &authOpts = settings.getFlashmqpluginOpts();
flashmq_plugin_init_v1(pluginData, authOpts, reloading);
}
initialized = true;
periodicEvent();
}
void Authentication::securityCleanup(bool reloading)
{
if (pluginFamily == PluginFamily::None)
return;
initialized = false;
UnscopedLock lock(deinitMutex);
if (settings.pluginSerializeInit)
lock.lock();
if (pluginFamily == PluginFamily::MosquittoV2)
{
AuthOptCompatWrap &authOpts = settings.getAuthOptsCompat();
int result = security_cleanup_v2(pluginData, authOpts.head(), authOpts.size(), reloading);
if (result != 0)
{
throw pluginException("Plugin function mosquitto_auth_security_cleanup returned an error. If it didn't log anything, we don't know what it was.");
}
}
else if (pluginFamily == PluginFamily::FlashMQ)
{
// The exception handling is higher up in the call stack, because it needs to be different on first start vs reload.
std::unordered_map<std::string, std::string> &authOpts = settings.getFlashmqpluginOpts();
flashmq_plugin_deinit_v1(pluginData, authOpts, reloading);
}
}
/**
* @brief Authentication::aclCheck performs a write ACL check on the incoming publish.
* @param publishData
* @return
*
* Internal publishes write (publish) access is always allowed (it makes little sense that a plugin would have to explicitly allow
* those), but they are passed through the plugin, so you can inspect them. The read access can still be rejected by a plugin.
*/
AuthResult Authentication::aclCheck(Publish &publishData, std::string_view payload, AclAccess access)
{
AuthResult result = aclCheck(publishData.client_id, publishData.username, publishData.topic, publishData.getSubtopics(), payload, access, publishData.qos,
publishData.retain, publishData.correlationData, publishData.responseTopic, publishData.getUserProperties());
// Anonymous publishes come from FlashMQ internally, like SYS topics. We need to allow them.
if (access == AclAccess::write && publishData.client_id.empty())
result = AuthResult::success;
return result;
}
AuthResult Authentication::aclCheck(const std::string &clientid, const std::string &username, const std::string &topic, const std::vector<std::string> &subtopics,
std::string_view payload, AclAccess access, uint8_t qos, bool retain, const std::optional<std::string> &correlationData,
const std::optional<std::string> &responseTopic, const std::vector<std::pair<std::string, std::string>> *userProperties)
{
assert(subtopics.size() > 0);
#ifdef TESTING
// I could technically test with empty payload, but so far I don't, and this is a good way for now to check I don't miss the payload
// because of the payload copy prevention optimization.
assert(retain || access == AclAccess::subscribe || !payload.empty());
#endif
ThreadData *threadData = ThreadGlobals::getThreadData();
switch (access)
{
case AclAccess::read:
threadData->aclReadChecks.inc(1);
break;
case AclAccess::write:
threadData->aclWriteChecks.inc(1);
break;
case AclAccess::subscribe:
threadData->aclSubscribeChecks.inc(1);
break;
case AclAccess::register_will:
threadData->aclRegisterWillChecks.inc(1);
break;
default:
break;
}
AuthResult firstResult = aclCheckFromMosquittoAclFile(clientid, username, subtopics, access);
if (firstResult != AuthResult::success)
return firstResult;
if (pluginFamily == PluginFamily::None)
return firstResult;
if (!initialized)
{
logger->logf(LOG_ERR, "ACL check by plugin wanted, but initialization failed. Can't perform check.");
return AuthResult::error;
}
UnscopedLock lock(authChecksMutex);
if (settings.pluginSerializeAuthChecks)
lock.lock();
if (__builtin_expect(pluginFamily == PluginFamily::FlashMQ, 1))
{
// I'm using this try/catch because propagating the exception higher up conflicts with who gets the blame, and then the publisher
// gets disconnected.
try
{
if (flashmqPluginVersionNumber == 3)
return flashmq_plugin_acl_check_v3(pluginData, access, clientid, username, topic, subtopics, payload, qos, retain,
correlationData, responseTopic, userProperties);
else if (flashmqPluginVersionNumber == 2)
return flashmq_plugin_acl_check_v2(pluginData, access, clientid, username, topic, subtopics, payload, qos, retain, userProperties);
else
return flashmq_plugin_acl_check_v1(pluginData, access, clientid, username, topic, subtopics, qos, retain, userProperties);
}
catch (std::exception &ex)
{
logger->logf(LOG_ERR, "Error doing ACL check in plugin: '%s'", ex.what());
logger->logf(LOG_WARNING, "Throwing exceptions from auth plugin login/ACL checks is slow. There's no need.");
}
}
else if (pluginFamily == PluginFamily::MosquittoV2)
{
// We have to do this, because Mosquitto plugin v2 has no notion of checking subscribes.
if (access == AclAccess::subscribe)
return AuthResult::success;
// We have to do this, because Mosquitto plugins has no notion of will registration ACL.
if (access == AclAccess::register_will)
return AuthResult::success;
int result = acl_check_v2(pluginData, clientid.c_str(), username.c_str(), topic.c_str(), static_cast<int>(access));
AuthResult result_ = static_cast<AuthResult>(result);
if (result_ == AuthResult::error)
{
logger->logf(LOG_ERR, "ACL check by plugin returned error for topic '%s'. If it didn't log anything, we don't know what it was.", topic.c_str());
}
return result_;
}
return AuthResult::error;
}
AuthResult Authentication::loginCheck(const std::string &clientid, const std::string &username, const std::string &password,
const std::vector<std::pair<std::string, std::string>> *userProperties, const std::weak_ptr<Client> &client,
const bool allowAnonymous)
{
/*
* This first construct is designed so that even when you allow anonymous, user verification still works, with the password file or
* plugin. If login is denied based on a password file, the attempt is still given to the plugin. However, when the auth succeeds
* based on the password file, it's not given to the plugin anymore.
*
* Also, when you allow anonymous, loging in with a non-existing user will work. But, when the user does exist, it must match.
*/
AuthResult firstResult = allowAnonymous ? AuthResult::success : AuthResult::login_denied;
if (!this->mosquittoPasswordFile.empty())
{
const std::optional<AuthResult> r = loginCheckFromMosquittoPasswordFile(username, password);
if (r)
firstResult = r.value();
if (firstResult == AuthResult::success)
return firstResult;
}
if (pluginFamily == PluginFamily::None)
return firstResult;
if (!initialized)
{
logger->logf(LOG_ERR, "Username+password check with plugin wanted, but initialization failed. Can't perform check.");
return AuthResult::error;
}
UnscopedLock lock(authChecksMutex);
if (settings.pluginSerializeAuthChecks)
lock.lock();
if (pluginFamily == PluginFamily::MosquittoV2)
{
int result = unpwd_check_v2(pluginData, username.c_str(), password.c_str());
AuthResult r = static_cast<AuthResult>(result);
if (r == AuthResult::error)
{
logger->logf(LOG_ERR, "Username+password check by plugin returned error for user '%s'. If it didn't log anything, we don't know what it was.", username.c_str());
}
return r;
}
else if (pluginFamily == PluginFamily::FlashMQ)
{
// I'm using this try/catch because propagating the exception higher up conflicts with who gets the blame, and then the publisher
// gets disconnected.
try
{
return flashmq_plugin_login_check_v1(pluginData, clientid, username, password, userProperties, client);
}
catch (std::exception &ex)
{
logger->logf(LOG_ERR, "Error doing login check in plugin: '%s'", ex.what());
logger->logf(LOG_WARNING, "Throwing exceptions from auth plugin login/ACL checks is slow. There's no need.");
}
}
return AuthResult::error;
}
AuthResult Authentication::extendedAuth(const std::string &clientid, ExtendedAuthStage stage, const std::string &authMethod,
const std::string &authData, const std::vector<std::pair<std::string, std::string>> *userProperties,
std::string &returnData, std::string &username, const std::weak_ptr<Client> &client)
{
if (pluginFamily == PluginFamily::None)
return AuthResult::auth_method_not_supported;
if (!initialized)
{
logger->logf(LOG_ERR, "Extended auth check with plugin wanted, but initialization failed. Can't perform check.");
return AuthResult::error;
}
UnscopedLock lock(authChecksMutex);
if (settings.pluginSerializeAuthChecks)
lock.lock();
if (pluginFamily == PluginFamily::FlashMQ)
{
if (!flashmq_plugin_extended_auth_v1)
return AuthResult::auth_method_not_supported;
// I'm using this try/catch because propagating the exception higher up conflicts with who gets the blame, and then the publisher
// gets disconnected.
try
{
return flashmq_plugin_extended_auth_v1(pluginData, clientid, stage, authMethod, authData, userProperties, returnData, username, client);
}
catch (std::exception &ex)
{
logger->logf(LOG_ERR, "Error doing login check in plugin: '%s'", ex.what());
logger->logf(LOG_WARNING, "Throwing exceptions from auth plugin login/ACL checks is slow. There's no need.");
}
}
else if (pluginFamily == PluginFamily::MosquittoV2)
{
throw ProtocolError("Mosquitto v2 plugin doesn't support extended auth.", ReasonCodes::BadAuthenticationMethod);
}
return AuthResult::error;
}
bool Authentication::alterSubscribe(const std::string &clientid, std::string &topic, const std::vector<std::string> &subtopics, uint8_t &qos,
const std::vector<std::pair<std::string, std::string>> *userProperties)
{
if (pluginFamily == PluginFamily::None)
{
return false;
}
if (!initialized)
{
logger->logf(LOG_ERR, "Plugin alterSubscribe called, but initialization failed or not performed.");
return false;
}
if (pluginFamily == PluginFamily::FlashMQ && flashmq_plugin_alter_subscription_v1)
{
try
{
return flashmq_plugin_alter_subscription_v1(pluginData, clientid, topic, subtopics, qos, userProperties);
}
catch (std::exception &ex)
{
logger->logf(LOG_ERR, "Exception in 'flashmq_plugin_alter_subscription': '%s'. You now have undefined behavior.", ex.what());
}
}
return false;
}
bool Authentication::alterPublish(
const std::string &clientid, std::string &topic, const std::vector<std::string> &subtopics, std::string_view payload,
uint8_t &qos, bool &retain, const std::optional<std::string> &correlationData,
const std::optional<std::string> &responseTopic,
std::vector<std::pair<std::string, std::string>> *userProperties)
{
#ifdef TESTING
// I could technically test with empty payload, but so far I don't, and this is a good way for now to check I don't miss the payload
// because of the payload copy prevention optimization.
assert(retain || !payload.empty());
#endif
if (pluginFamily == PluginFamily::None)
{
return false;
}
if (!initialized)
{
logger->logf(LOG_ERR, "Plugin alterPublish called, but initialization failed or not performed.");
return false;
}
if (pluginFamily == PluginFamily::FlashMQ)
{
try
{
if (flashmqPluginVersionNumber == 3)
{
if (flashmq_plugin_alter_publish_v3)
return flashmq_plugin_alter_publish_v3(pluginData, clientid, topic, subtopics, payload, qos, retain,
correlationData, responseTopic, userProperties);
}
else if (flashmqPluginVersionNumber == 2)
{
if (flashmq_plugin_alter_publish_v2)
return flashmq_plugin_alter_publish_v2(pluginData, clientid, topic, subtopics, payload, qos, retain, userProperties);
}
else if (flashmqPluginVersionNumber == 1)
{
if (flashmq_plugin_alter_publish_v1)
return flashmq_plugin_alter_publish_v1(pluginData, clientid, topic, subtopics, qos, retain, userProperties);
}
}
catch (std::exception &ex)
{
logger->logf(LOG_ERR, "Exception in 'flashmq_plugin_alter_publish': '%s'. You now have undefined behavior.", ex.what());
}
}
return false;
}
void Authentication::clientDisconnected(const std::string &clientid)
{
if (pluginFamily == PluginFamily::None)
{
return;
}
if (!initialized)
{
logger->logf(LOG_ERR, "Plugin clientDisconnected called, but initialization failed or not performed.");
return;
}
if (pluginFamily == PluginFamily::FlashMQ && flashmq_plugin_client_disconnected_v1)
{
try
{
flashmq_plugin_client_disconnected_v1(pluginData, clientid);
}
catch (std::exception &ex)
{
logger->logf(LOG_ERR, "Exception in 'flashmq_plugin_client_disconnected': '%s'.", ex.what());
}
}
}
void Authentication::fdReady(int fd, int events, const std::weak_ptr<void> &p)
{
if (pluginFamily == PluginFamily::None)
{
return;
}
if (!initialized)
{
logger->logf(LOG_ERR, "Plugin fdReady called, but initialization failed or not performed.");
return;
}
if (pluginFamily == PluginFamily::FlashMQ && flashmq_plugin_poll_event_received_v1)
{
try
{
flashmq_plugin_poll_event_received_v1(pluginData, fd, events, p);
}
catch (std::exception &ex)
{
logger->logf(LOG_ERR, "In 'flashmq_plugin_poll_event_v1(): '", ex.what());
}
}
}
void Authentication::setQuitting()
{
this->quitting = true;
}
/**
* @brief Authentication::loadMosquittoPasswordFile is called once on startup, and on a frequent interval, and reloads the file if changed.
*/
void Authentication::loadMosquittoPasswordFile()
{
if (this->mosquittoPasswordFile.empty())
return;
if (access(this->mosquittoPasswordFile.c_str(), R_OK) != 0)
{
logger->logf(LOG_ERR, "Passwd file '%s' is not there or not readable.", this->mosquittoPasswordFile.c_str());
return;
}
struct stat statbuf;
memset(&statbuf, 0, sizeof(struct stat));
check<std::runtime_error>(stat(mosquittoPasswordFile.c_str(), &statbuf));
struct timespec ctime = statbuf.st_ctim;
if (ctime.tv_sec == this->mosquittoPasswordFileLastLoad.tv_sec)
return;
logger->logf(LOG_NOTICE, "Change detected in '%s'. Reloading.", this->mosquittoPasswordFile.c_str());
try
{
std::ifstream infile(this->mosquittoPasswordFile, std::ios::in);
std::unique_ptr<std::unordered_map<std::string, MosquittoPasswordFileEntry>> passwordEntries_tmp =
std::make_unique<std::unordered_map<std::string, MosquittoPasswordFileEntry>>();
for(std::string line; getline(infile, line ); )
{
trim(line);
if (line.empty())
continue;
try
{
std::vector<std::string> fields = splitToVector(line, ':');
if (fields.size() != 2)
throw std::runtime_error(formatString("Passwd file line '%s' contains more than one ':'", line.c_str()));
const std::string &username = fields[0];
for (const std::string &field : fields)
{
if (field.size() == 0)
{
throw std::runtime_error(formatString("An empty field was found in '%'", line.c_str()));
}
}
std::vector<std::string> fields2 = splitToVector(fields[1], '$', 4, false);
int iterations = -1;
int saltField = -1;
int hashField = -1;
PasswordHashType type = PasswordHashType::SHA512;
if (fields2[0] == "6")
{
if (fields2.size() != 3)
throw std::runtime_error(formatString("Invalid line format in '%s'. Expected three fields separated by '$'", line.c_str()));
type = PasswordHashType::SHA512;
saltField = 1;
hashField = 2;
}
else if (fields2[0] == "7")
{
if (fields2.size() != 4)
throw std::runtime_error(formatString("Invalid line format in '%s'. Expected four fields separated by '$'", line.c_str()));
type = PasswordHashType::SHA512_pbkdf2;
iterations = std::stoi(fields2[1]);
saltField = 2;
hashField = 3;
}
else
{
throw std::runtime_error("Password fields must start with $6$ or $7$");
}
std::vector<char> salt = base64Decode(fields2[saltField]);
std::vector<char> cryptedPassword = base64Decode(fields2[hashField]);
passwordEntries_tmp->emplace(username, MosquittoPasswordFileEntry(type, std::move(salt), std::move(cryptedPassword), iterations));
}
catch (std::exception &ex)
{
std::string lineCut = formatString("%s...", line.substr(0, 20).c_str());
logger->logf(LOG_ERR, "Dropping invalid username/password line: '%s'. Error: %s", lineCut.c_str(), ex.what());
}
}
this->mosquittoPasswordEntries = std::move(passwordEntries_tmp);
this->mosquittoPasswordFileLastLoad = ctime;
}
catch (std::exception &ex)
{
logger->logf(LOG_ERR, "Error loading Mosquitto password file: '%s'. Authentication won't work.", ex.what());
}
}
void Authentication::loadMosquittoAclFile()
{
if (this->mosquittoAclFile.empty())
return;
if (access(this->mosquittoAclFile.c_str(), R_OK) != 0)
{
logger->logf(LOG_ERR, "ACL file '%s' is not there or not readable.", this->mosquittoAclFile.c_str());
return;
}
struct stat statbuf;
memset(&statbuf, 0, sizeof(struct stat));
check<std::runtime_error>(stat(mosquittoAclFile.c_str(), &statbuf));
struct timespec ctime = statbuf.st_ctim;
if (ctime.tv_sec == this->mosquittoAclFileLastChange.tv_sec)
return;
logger->logf(LOG_NOTICE, "Change detected in '%s'. Reloading.", this->mosquittoAclFile.c_str());
AclTree newTree;
// Not doing by-line error handling, because ingoring one invalid line can completely change the user's intent.
try
{
std::string currentUser;
std::ifstream infile(this->mosquittoAclFile, std::ios::in);
for(std::string line; getline(infile, line ); )
{
trim(line);
if (line.empty() || startsWith(line, "#"))
continue;
const std::vector<std::string> fields = splitToVector(line, ' ', 3, false);
if (fields.size() < 2)
throw ConfigFileException(formatString("Line does not have enough fields: %s", line.c_str()));
const std::string &firstWord = str_tolower(fields[0]);
if (firstWord == "topic" || firstWord == "pattern")
{
AclGrant g = AclGrant::ReadWrite;
std::string topic;
if (fields.size() == 3)
{
topic = fields[2];
g = stringToAclGrant(fields[1]);
}
else if (fields.size() == 2)
{
topic = fields[1];
}
else
throw ConfigFileException(formatString("Invalid markup of 'topic' line: %s", line.c_str()));
if (!isValidSubscribePath(topic))
throw ConfigFileException(formatString("Topic '%s' is not a valid ACL topic", topic.c_str()));
AclTopicType type = firstWord == "pattern" ? AclTopicType::Patterns : AclTopicType::Strings;
newTree.addTopic(topic, g, type, currentUser);
}
else if (firstWord == "user")
{
currentUser = fields[1];
}
else
{
throw ConfigFileException(formatString("Invalid keyword '%s' in '%s'", firstWord.c_str(), line.c_str()));
}
}
aclTree = std::move(newTree);
}
catch (std::exception &ex)
{
logger->logf(LOG_ERR, "Error loading Mosquitto ACL file: '%s'. Authorization won't work.", ex.what());
}
mosquittoAclFileLastChange = ctime;
}
AuthResult Authentication::aclCheckFromMosquittoAclFile(const std::string &clientid, const std::string &username, const std::vector<std::string> &subtopics, AclAccess access)
{
assert(access != AclAccess::none);
if (this->mosquittoAclFile.empty())
return AuthResult::success;
// We have to do this because the Mosquitto ACL file has no notion of checking subscribes.
if (access == AclAccess::subscribe)
return AuthResult::success;
AclGrant ag = access == AclAccess::write ? AclGrant::Write : AclGrant::Read;
AuthResult result = aclTree.findPermission(subtopics, ag, username, clientid);
return result;
}
std::optional<AuthResult> Authentication::loginCheckFromMosquittoPasswordFile(const std::string &username, const std::string &password)
{
if (!this->mosquittoPasswordEntries)
return AuthResult::login_denied;
std::optional<AuthResult> result;
auto it = mosquittoPasswordEntries->find(username);
if (it != mosquittoPasswordEntries->end())
{
result = AuthResult::login_denied;
const MosquittoPasswordFileEntry &entry = it->second;
if (entry.type == PasswordHashType::SHA512)
{
unsigned char md_value[EVP_MAX_MD_SIZE];
unsigned int output_len = 0;
EVP_MD_CTX_reset(mosquittoDigestContext);
EVP_DigestInit_ex(mosquittoDigestContext, sha512, NULL);
EVP_DigestUpdate(mosquittoDigestContext, password.c_str(), password.length());
EVP_DigestUpdate(mosquittoDigestContext, entry.salt.data(), entry.salt.size());
EVP_DigestFinal_ex(mosquittoDigestContext, md_value, &output_len);
std::vector<char> hashedSalted(output_len);
std::memcpy(hashedSalted.data(), md_value, output_len);
if (hashedSalted == entry.cryptedPassword)
result = AuthResult::success;
}
else if (entry.type == PasswordHashType::SHA512_pbkdf2)
{
unsigned char md_value[EVP_MAX_MD_SIZE];
const unsigned char *saltData = reinterpret_cast<const unsigned char*>(entry.salt.data());
PKCS5_PBKDF2_HMAC(password.c_str(), password.size(), saltData, entry.salt.size(), entry.iterations, sha512, EVP_MAX_MD_SIZE, md_value);
std::vector<char> derivedKey(EVP_MAX_MD_SIZE);
std::memcpy(derivedKey.data(), md_value, EVP_MAX_MD_SIZE);
if (derivedKey == entry.cryptedPassword)
result = AuthResult::success;
}
}
return result;
}
void Authentication::periodicEvent()
{
if (pluginFamily == PluginFamily::None)
return;
if (!initialized)
{
logger->logf(LOG_ERR, "Auth plugin period event called, but initialization failed or not performed.");
return;
}
if (pluginFamily == PluginFamily::FlashMQ && flashmq_plugin_periodic_event_v1)
{
try
{
flashmq_plugin_periodic_event_v1(pluginData);
}
catch (std::exception &ex)
{
logger->logf(LOG_ERR, "Exception in 'flashmq_plugin_periodic_event': '%s'.", ex.what());
}
}
}
std::string AuthResultToString(AuthResult r)
{
if (r == AuthResult::success)
return "success";
if (r == AuthResult::acl_denied)
return "ACL denied";
if (r == AuthResult::login_denied)
return "login Denied";
if (r == AuthResult::error)
return "error in check";
return "";
}