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
|
/* Copyright (c) 2017-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#if defined(BUILTIN_LUA) || defined(PLUGIN_BUILD)
#include "llist.h"
#include "istream.h"
#include "array.h"
#include "sha1.h"
#include "hex-binary.h"
#include "auth.h"
#include "passdb.h"
#include "userdb.h"
#include "auth-request.h"
#include "userdb-template.h"
#include "passdb-template.h"
#include "password-scheme.h"
#include "auth-request-var-expand.h"
#define AUTH_LUA_PASSDB_LOOKUP "auth_passdb_lookup"
#define AUTH_LUA_USERDB_LOOKUP "auth_userdb_lookup"
#define AUTH_LUA_USERDB_ITERATE "auth_userdb_iterate"
#define AUTH_LUA_DOVECOT_AUTH "dovecot_auth"
#define AUTH_LUA_AUTH_REQUEST "auth_request*"
#include "db-lua.h"
#include "dlua-script-private.h"
struct auth_lua_userdb_iterate_context {
struct userdb_iterate_context ctx;
pool_t pool;
unsigned int idx;
ARRAY_TYPE(const_string) users;
};
static struct auth_request *
auth_lua_check_auth_request(lua_State *L, int arg);
static int
auth_request_lua_do_var_expand(struct auth_request *req, const char *tpl,
const char **value_r, const char **error_r)
{
const char *error;
if (t_auth_request_var_expand(tpl, req, NULL, value_r, &error) < 0) {
*error_r = t_strdup_printf("var_expand(%s) failed: %s",
tpl, error);
return -1;
}
return 0;
}
static int auth_request_lua_var_expand(lua_State *L)
{
struct auth_request *req = auth_lua_check_auth_request(L, 1);
const char *tpl = luaL_checkstring(L, 2);
const char *value, *error;
if (auth_request_lua_do_var_expand(req, tpl, &value, &error) < 0) {
return luaL_error(L, "%s", error);
} else {
lua_pushstring(L, value);
}
return 1;
}
static const char *const *
auth_request_template_build(struct auth_request *req, const char *str,
unsigned int *count_r)
{
if (req->userdb_lookup) {
struct userdb_template *tpl =
userdb_template_build(pool_datastack_create(), "lua", str);
if (userdb_template_is_empty(tpl))
return NULL;
return userdb_template_get_args(tpl, count_r);
} else {
struct passdb_template *tpl =
passdb_template_build(pool_datastack_create(), str);
if (passdb_template_is_empty(tpl))
return NULL;
return passdb_template_get_args(tpl, count_r);
}
}
static int auth_request_lua_response_from_template(lua_State *L)
{
struct auth_request *req = auth_lua_check_auth_request(L, 1);
const char *tplstr = luaL_checkstring(L, 2);
const char *error,*expanded;
unsigned int count,i;
const char *const *fields = auth_request_template_build(req, tplstr, &count);
/* push new table to stack */
lua_newtable(L);
if (fields == NULL)
return 1;
i_assert((count % 2) == 0);
for(i = 0; i < count; i+=2) {
const char *key = fields[i];
const char *value = fields[i+1];
if (value == NULL) {
lua_pushnil(L);
} else if (auth_request_lua_do_var_expand(req, value, &expanded, &error) < 0) {
return luaL_error(L, "%s", error);
} else {
lua_pushstring(L, expanded);
}
lua_setfield(L, -2, key);
}
/* stack should be left with table */
return 1;
}
static int auth_request_lua_log_debug(lua_State *L)
{
if (global_auth_settings->debug) {
struct auth_request *request = auth_lua_check_auth_request(L, 1);
const char *msg = luaL_checkstring(L, 2);
e_debug(authdb_event(request), "db-lua: %s", msg);
}
return 0;
}
static int auth_request_lua_log_info(lua_State *L)
{
struct auth_request *request = auth_lua_check_auth_request(L, 1);
const char *msg = luaL_checkstring(L, 2);
e_info(authdb_event(request), "db-lua: %s", msg);
return 0;
}
static int auth_request_lua_log_warning(lua_State *L)
{
struct auth_request *request = auth_lua_check_auth_request(L, 1);
const char *msg = luaL_checkstring(L, 2);
e_warning(authdb_event(request), "db-lua: %s", msg);
return 0;
}
static int auth_request_lua_log_error(lua_State *L)
{
struct auth_request *request = auth_lua_check_auth_request(L, 1);
const char *msg = luaL_checkstring(L, 2);
e_error(authdb_event(request), "db-lua: %s", msg);
return 0;
}
static int auth_request_lua_passdb(lua_State *L)
{
struct auth_request *request = auth_lua_check_auth_request(L, 1);
const char *key = luaL_checkstring(L, 2);
lua_pop(L, 1);
if (request->fields.extra_fields == NULL) {
lua_pushnil(L);
return 1;
}
lua_pushstring(L, auth_fields_find(request->fields.extra_fields, key));
return 1;
}
static int auth_request_lua_userdb(lua_State *L)
{
struct auth_request *request = auth_lua_check_auth_request(L, 1);
const char *key = luaL_checkstring(L, 2);
lua_pop(L, 1);
if (request->fields.userdb_reply == NULL) {
lua_pushnil(L);
return 1;
}
lua_pushstring(L, auth_fields_find(request->fields.userdb_reply, key));
return 1;
}
static int auth_request_lua_password_verify(lua_State *L)
{
struct auth_request *request = auth_lua_check_auth_request(L, 1);
const char *crypted_password = lua_tostring(L, 2);
const char *scheme;
const char *plain_password = lua_tostring(L, 3);
const char *error = NULL;
const unsigned char *raw_password = NULL;
size_t raw_password_size;
int ret;
struct password_generate_params gen_params = {
.user = request->fields.original_username,
.rounds = 0
};
scheme = password_get_scheme(&crypted_password);
if (scheme == NULL)
scheme = "PLAIN";
ret = password_decode(crypted_password, scheme,
&raw_password, &raw_password_size, &error);
if (ret <= 0) {
if (ret < 0) {
error = t_strdup_printf("Password data is not valid for scheme %s: %s",
scheme, error);
} else {
error = t_strdup_printf("Unknown scheme %s", scheme);
}
} else {
/* Use original_username since it may be important for some
password schemes (eg. digest-md5).
*/
ret = password_verify(plain_password, &gen_params,
scheme, raw_password, raw_password_size, &error);
}
lua_pushnumber(L, ret);
lua_pushstring(L, error);
return 2;
}
static int auth_request_lua_event(lua_State *L)
{
struct auth_request *request = auth_lua_check_auth_request(L, 1);
struct event *event = event_create(authdb_event(request));
dlua_push_event(L, event);
event_unref(&event);
return 1;
}
/* put all methods here */
static const luaL_Reg auth_request_methods[] ={
{ "var_expand", auth_request_lua_var_expand },
{ "response_from_template", auth_request_lua_response_from_template },
{ "log_debug", auth_request_lua_log_debug },
{ "log_info", auth_request_lua_log_info },
{ "log_warning", auth_request_lua_log_warning },
{ "log_error", auth_request_lua_log_error },
{ "password_verify", auth_request_lua_password_verify },
{ "event", auth_request_lua_event },
{ NULL, NULL }
};
static int auth_request_lua_index(lua_State *L)
{
struct auth_request *req = auth_lua_check_auth_request(L, 1);
const char *key = luaL_checkstring(L, 2);
lua_pop(L, 1);
const struct var_expand_table *table =
auth_request_get_var_expand_table(req, NULL);
/* check if it's variable */
for(unsigned int i = 0; i < AUTH_REQUEST_VAR_TAB_COUNT; i++) {
if (null_strcmp(table[i].long_key, key) == 0) {
lua_pushstring(L, table[i].value);
return 1;
}
}
/* check if it's function, then */
const luaL_Reg *ptr = auth_request_methods;
while(ptr->name != NULL) {
if (null_strcmp(key, ptr->name) == 0) {
lua_pushcfunction(L, ptr->func);
return 1;
}
ptr++;
}
lua_pushstring(L, key);
lua_rawget(L, 1);
return 1;
}
static void auth_lua_push_auth_request(lua_State *L, struct auth_request *req)
{
luaL_checkstack(L, 4, "out of memory");
/* create a table for holding few things */
lua_createtable(L, 0, 3);
luaL_setmetatable(L, AUTH_LUA_AUTH_REQUEST);
lua_pushlightuserdata(L, req);
lua_setfield(L, -2, "item");
lua_newtable(L);
lua_pushlightuserdata(L, req);
lua_setfield(L, -2, "item");
luaL_setmetatable(L, "passdb_"AUTH_LUA_AUTH_REQUEST);
lua_setfield(L, -2, "passdb");
lua_newtable(L);
lua_pushlightuserdata(L, req);
lua_setfield(L, -2, "item");
luaL_setmetatable(L, "userdb_"AUTH_LUA_AUTH_REQUEST);
lua_setfield(L, -2, "userdb");
lua_pushboolean(L, req->fields.skip_password_check);
lua_setfield(L, -2, "skip_password_check");
#undef LUA_TABLE_SET_BOOL
#define LUA_TABLE_SET_BOOL(field) \
lua_pushboolean(L, req->field); \
lua_setfield(L, -2, #field);
LUA_TABLE_SET_BOOL(passdbs_seen_user_unknown);
LUA_TABLE_SET_BOOL(passdbs_seen_internal_failure);
LUA_TABLE_SET_BOOL(userdbs_seen_internal_failure);
}
static struct auth_request *
auth_lua_check_auth_request(lua_State *L, int arg)
{
if (!lua_istable(L, arg)) {
(void)luaL_error(L, "Bad argument #%d, expected %s got %s",
arg, "auth_request",
lua_typename(L, lua_type(L, arg)));
}
lua_pushstring(L, "item");
lua_rawget(L, arg);
void *bp = (void*)lua_touserdata(L, -1);
lua_pop(L, 1);
return (struct auth_request*)bp;
}
static void auth_lua_auth_request_register(lua_State *L)
{
luaL_newmetatable(L, AUTH_LUA_AUTH_REQUEST);
lua_pushcfunction(L, auth_request_lua_index);
lua_setfield(L, -2, "__index");
lua_pop(L, 1);
/* register passdb */
luaL_newmetatable(L, "passdb_"AUTH_LUA_AUTH_REQUEST);
lua_pushcfunction(L, auth_request_lua_passdb);
lua_setfield(L, -2, "__index");
lua_pop(L, 1);
/* register userdb */
luaL_newmetatable(L, "userdb_"AUTH_LUA_AUTH_REQUEST);
lua_pushcfunction(L, auth_request_lua_userdb);
lua_setfield(L, -2, "__index");
lua_pop(L, 1);
}
static struct dlua_table_values auth_lua_dovecot_auth_values[] = {
DLUA_TABLE_ENUM(PASSDB_RESULT_INTERNAL_FAILURE),
DLUA_TABLE_ENUM(PASSDB_RESULT_SCHEME_NOT_AVAILABLE),
DLUA_TABLE_ENUM(PASSDB_RESULT_USER_UNKNOWN),
DLUA_TABLE_ENUM(PASSDB_RESULT_USER_DISABLED),
DLUA_TABLE_ENUM(PASSDB_RESULT_PASS_EXPIRED),
DLUA_TABLE_ENUM(PASSDB_RESULT_NEXT),
DLUA_TABLE_ENUM(PASSDB_RESULT_PASSWORD_MISMATCH),
DLUA_TABLE_ENUM(PASSDB_RESULT_OK),
DLUA_TABLE_ENUM(USERDB_RESULT_INTERNAL_FAILURE),
DLUA_TABLE_ENUM(USERDB_RESULT_USER_UNKNOWN),
DLUA_TABLE_ENUM(USERDB_RESULT_OK),
DLUA_TABLE_END
};
static luaL_Reg auth_lua_dovecot_auth_methods[] = {
{ NULL, NULL }
};
static void auth_lua_dovecot_auth_register(lua_State *L)
{
dlua_get_dovecot(L);
/* Create new table for holding values */
lua_newtable(L);
/* register constants */
dlua_set_members(L, auth_lua_dovecot_auth_values, -1);
/* push new metatable to stack */
luaL_newmetatable(L, AUTH_LUA_DOVECOT_AUTH);
/* this will register functions to the metatable itself */
luaL_setfuncs(L, auth_lua_dovecot_auth_methods, 0);
/* point __index to self */
lua_pushvalue(L, -1);
lua_setfield(L, -1, "__index");
/* set table's metatable, pops stack */
lua_setmetatable(L, -2);
/* put this as "dovecot.auth" */
lua_setfield(L, -2, "auth");
/* pop dovecot */
lua_pop(L, 1);
}
int auth_lua_script_init(struct dlua_script *script, const char **error_r)
{
dlua_dovecot_register(script);
auth_lua_dovecot_auth_register(script->L);
auth_lua_auth_request_register(script->L);
return dlua_script_init(script, error_r);
}
static int auth_lua_call_lookup(lua_State *L, const char *fn,
struct auth_request *req, const char **error_r)
{
int err = 0;
e_debug(authdb_event(req), "Calling %s", fn);
/* call with auth request as parameter */
auth_lua_push_auth_request(L, req);
if (dlua_pcall(L, fn, 1, 2, error_r) < 0)
return -1;
if (!lua_isnumber(L, -2)) {
*error_r = t_strdup_printf("db-lua: %s(req) invalid return value "
"(expected number got %s)",
fn, luaL_typename(L, -2));
err = -1;
} else if (!lua_isstring(L, -1) && !lua_istable(L, -1)) {
*error_r = t_strdup_printf("db-lua: %s(req) invalid return value "
"(expected string or table, got %s)",
fn, luaL_typename(L, -1));
err = -1;
}
if (err != 0) {
lua_pop(L, 2);
lua_gc(L, LUA_GCCOLLECT, 0);
i_assert(lua_gettop(L) == 0);
return PASSDB_RESULT_INTERNAL_FAILURE;
}
return 0;
}
static void
auth_lua_export_fields(struct auth_request *req,
const char *str,
const char **scheme_r, const char **password_r)
{
const char *const *fields = t_strsplit_spaces(str, " ");
while(*fields != NULL) {
const char *value = strchr(*fields, '=');
const char *key;
if (value == NULL) {
key = *fields;
value = "";
} else {
key = t_strdup_until(*fields, value++);
}
if (password_r != NULL && strcmp(key, "password") == 0) {
*scheme_r = password_get_scheme(&value);
*password_r = value;
} else if (req->userdb_lookup) {
auth_request_set_userdb_field(req, key, value);
} else {
auth_request_set_field(req, key, value, STATIC_PASS_SCHEME);
}
fields++;
}
}
static void auth_lua_export_table(lua_State *L, struct auth_request *req,
const char **scheme_r, const char **password_r)
{
lua_pushvalue(L, -1);
lua_pushnil(L);
while (lua_next(L, -2) != 0) {
const char *key = t_strdup(lua_tostring(L, -2));
const char *value;
int type = lua_type(L, -1);
switch(type) {
case LUA_TNUMBER:
value = dec2str(lua_tointeger(L, -1));
break;
case LUA_TBOOLEAN:
value = lua_toboolean(L, -1) ? "yes" : "no";
break;
case LUA_TSTRING:
value = t_strdup(lua_tostring(L, -1));
break;
case LUA_TNIL:
value = "";
break;
default:
e_warning(authdb_event(req),
"db-lua: '%s' has invalid value type %s - ignoring",
key, lua_typename(L, -1));
value = "";
}
if (password_r != NULL && strcmp(key, "password") == 0) {
*scheme_r = password_get_scheme(&value);
*password_r = value;
} else if (req->userdb_lookup) {
auth_request_set_userdb_field(req, key, value);
} else {
auth_request_set_field(req, key, value, STATIC_PASS_SCHEME);
}
lua_pop(L, 1);
}
/* stack has
key
table
passdb_result
*/
lua_pop(L, 3);
lua_gc(L, LUA_GCCOLLECT, 0);
i_assert(lua_gettop(L) == 0);
}
static enum userdb_result
auth_lua_export_userdb_table(lua_State *L, struct auth_request *req,
const char **error_r)
{
enum userdb_result ret = lua_tointeger(L, -2);
if (ret != USERDB_RESULT_OK) {
lua_pop(L, 2);
lua_gc(L, LUA_GCCOLLECT, 0);
*error_r = "userdb failed";
return ret;
}
auth_lua_export_table(L, req, NULL, NULL);
return USERDB_RESULT_OK;
}
static enum passdb_result
auth_lua_export_passdb_table(lua_State *L, struct auth_request *req,
const char **scheme_r, const char **password_r,
const char **error_r)
{
enum passdb_result ret = lua_tointeger(L, -2);
if (ret != PASSDB_RESULT_OK) {
lua_pop(L, 2);
lua_gc(L, LUA_GCCOLLECT, 0);
*error_r = "passb failed";
return ret;
}
auth_lua_export_table(L, req, scheme_r, password_r);
return PASSDB_RESULT_OK;
}
static enum passdb_result
auth_lua_call_lookup_finish(lua_State *L, struct auth_request *req,
const char **scheme_r, const char **password_r,
const char **error_r)
{
if (lua_istable(L, -1)) {
return auth_lua_export_passdb_table(L, req, scheme_r,
password_r, error_r);
}
enum passdb_result ret = lua_tointeger(L, -2);
const char *str = t_strdup(lua_tostring(L, -1));
lua_pop(L, 2);
lua_gc(L, LUA_GCCOLLECT, 0);
/* stack should be empty now */
i_assert(lua_gettop(L) == 0);
if (ret != PASSDB_RESULT_OK && ret != PASSDB_RESULT_NEXT) {
*error_r = str;
} else {
auth_lua_export_fields(req, str, scheme_r, password_r);
}
if (scheme_r != NULL && *scheme_r == NULL)
*scheme_r = "PLAIN";
return ret;
}
enum passdb_result
auth_lua_call_password_verify(struct dlua_script *script,
struct auth_request *req, const char *password, const char **error_r)
{
lua_State *L = script->L;
int err = 0;
e_debug(authdb_event(req), "Calling %s", AUTH_LUA_PASSWORD_VERIFY);
/* call with auth request, password as parameters */
auth_lua_push_auth_request(L, req);
lua_pushstring(L, password);
if (dlua_pcall(L, AUTH_LUA_PASSWORD_VERIFY, 2, 2, error_r) < 0)
return PASSDB_RESULT_INTERNAL_FAILURE;
if (!lua_isnumber(L, -2)) {
*error_r = t_strdup_printf("db-lua: %s invalid return value "
"(expected number got %s)",
AUTH_LUA_PASSWORD_VERIFY,
luaL_typename(L, -2));
err = -1;
} else if (!lua_isstring(L, -1) && !lua_istable(L, -1)) {
*error_r = t_strdup_printf("db-lua: %s invalid return value "
"(expected string or table, got %s)",
AUTH_LUA_PASSWORD_VERIFY,
luaL_typename(L, -1));
err = -1;
}
if (err != 0) {
lua_pop(L, 2);
lua_gc(L, LUA_GCCOLLECT, 0);
i_assert(lua_gettop(L) == 0);
return PASSDB_RESULT_INTERNAL_FAILURE;
}
return auth_lua_call_lookup_finish(L, req, NULL, NULL, error_r);
}
enum passdb_result
auth_lua_call_passdb_lookup(struct dlua_script *script,
struct auth_request *req, const char **scheme_r,
const char **password_r, const char **error_r)
{
lua_State *L = script->L;
*scheme_r = *password_r = NULL;
if (auth_lua_call_lookup(L, AUTH_LUA_PASSDB_LOOKUP, req, error_r) < 0) {
lua_gc(L, LUA_GCCOLLECT, 0);
i_assert(lua_gettop(L) == 0);
return PASSDB_RESULT_INTERNAL_FAILURE;
}
return auth_lua_call_lookup_finish(L, req, scheme_r, password_r, error_r);
}
enum userdb_result
auth_lua_call_userdb_lookup(struct dlua_script *script,
struct auth_request *req, const char **error_r)
{
lua_State *L = script->L;
if (auth_lua_call_lookup(L, AUTH_LUA_USERDB_LOOKUP, req, error_r) < 0) {
lua_gc(L, LUA_GCCOLLECT, 0);
i_assert(lua_gettop(L) == 0);
return USERDB_RESULT_INTERNAL_FAILURE;
}
if (lua_istable(L, -1))
return auth_lua_export_userdb_table(L, req, error_r);
enum userdb_result ret = lua_tointeger(L, -2);
const char *str = t_strdup(lua_tostring(L, -1));
lua_pop(L, 2);
lua_gc(L, LUA_GCCOLLECT, 0);
i_assert(lua_gettop(L) == 0);
if (ret != USERDB_RESULT_OK) {
*error_r = str;
return ret;
}
auth_lua_export_fields(req, str, NULL, NULL);
return USERDB_RESULT_OK;
}
struct userdb_iterate_context *
auth_lua_call_userdb_iterate_init(struct dlua_script *script, struct auth_request *req,
userdb_iter_callback_t *callback, void *context)
{
lua_State *L = script->L;
pool_t pool = pool_alloconly_create(MEMPOOL_GROWING"lua userdb iterate", 128);
struct auth_lua_userdb_iterate_context *actx =
p_new(pool, struct auth_lua_userdb_iterate_context, 1);
actx->pool = pool;
actx->ctx.auth_request = req;
actx->ctx.callback = callback;
actx->ctx.context = context;
if (!dlua_script_has_function(script, AUTH_LUA_USERDB_ITERATE)) {
actx->ctx.failed = TRUE;
return &actx->ctx;
}
e_debug(authdb_event(req), "Calling %s", AUTH_LUA_USERDB_ITERATE);
const char *error;
if (dlua_pcall(L, AUTH_LUA_USERDB_ITERATE, 0, 1, &error) < 0) {
e_error(authdb_event(req),
"db-lua: " AUTH_LUA_USERDB_ITERATE " failed: %s",
error);
actx->ctx.failed = TRUE;
return &actx->ctx;
}
if (!lua_istable(L, -1)) {
e_error(authdb_event(req),
"db-lua: Cannot iterate, return value is not table");
actx->ctx.failed = TRUE;
lua_pop(L, 1);
lua_gc(L, LUA_GCCOLLECT, 0);
i_assert(lua_gettop(L) == 0);
return &actx->ctx;
}
p_array_init(&actx->users, pool, 8);
/* stack is now
table */
/* see lua_next documentation */
lua_pushnil(L);
while (lua_next(L, -2) != 0) {
/* stack is now
value
key
table */
if (!lua_isstring(L, -1)) {
e_error(authdb_event(req),
"db-lua: Value is not string");
actx->ctx.failed = TRUE;
lua_pop(L, 3);
lua_gc(L, LUA_GCCOLLECT, 0);
i_assert(lua_gettop(L) == 0);
return &actx->ctx;
}
const char *str = p_strdup(pool, lua_tostring(L, -1));
array_push_back(&actx->users, &str);
lua_pop(L, 1);
/* stack is now
key
table */
}
/* stack is now
table
*/
lua_pop(L, 1);
lua_gc(L, LUA_GCCOLLECT, 0);
i_assert(lua_gettop(L) == 0);
return &actx->ctx;
}
void auth_lua_userdb_iterate_next(struct userdb_iterate_context *ctx)
{
struct auth_lua_userdb_iterate_context *actx =
container_of(ctx, struct auth_lua_userdb_iterate_context, ctx);
if (ctx->failed || actx->idx >= array_count(&actx->users)) {
ctx->callback(NULL, ctx->context);
return;
}
const char *user = array_idx_elem(&actx->users, actx->idx++);
ctx->callback(user, ctx->context);
}
int auth_lua_userdb_iterate_deinit(struct userdb_iterate_context *ctx)
{
struct auth_lua_userdb_iterate_context *actx =
container_of(ctx, struct auth_lua_userdb_iterate_context, ctx);
int ret = ctx->failed ? -1 : 0;
pool_unref(&actx->pool);
return ret;
}
#ifndef BUILTIN_LUA
/* Building a plugin */
extern struct passdb_module_interface passdb_lua_plugin;
extern struct userdb_module_interface userdb_lua_plugin;
void authdb_lua_init(void);
void authdb_lua_deinit(void);
void authdb_lua_init(void)
{
passdb_register_module(&passdb_lua_plugin);
userdb_register_module(&userdb_lua_plugin);
}
void authdb_lua_deinit(void)
{
passdb_unregister_module(&passdb_lua_plugin);
userdb_unregister_module(&userdb_lua_plugin);
}
#endif
#endif
|