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 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122
|
/*
** LuaLDAP
** See Copyright Notice in license.md
*/
#include <string.h>
#ifdef WIN32
#include <Winsock2.h>
#else
#include <sys/time.h>
#endif
#ifdef WINLDAP
#include "open2winldap.h"
#else
#define LDAP_DEPRECATED 1
#include <ldap.h>
#endif
#include <lua.h>
#include <lauxlib.h>
#if LUA_VERSION_NUM < 502
#define lua_rawlen(L,i) lua_objlen(L, (i))
#define luaL_setmetatable(L,n) \
(luaL_getmetatable(L, n), lua_setmetatable(L, -2))
#define luaL_newlibtable(L,l) \
lua_createtable(L, 0, sizeof(l)/sizeof((l)[0]) - 1)
#define luaL_newlib(L,l) \
(luaL_newlibtable(L, (l)), luaL_setfuncs(L, (l), 0))
#define luaL_setfuncs(L,l,n) luaL_register(L, NULL, (l))
#endif
#ifdef WINLDAPAPI
#define timeval l_timeval
typedef ULONG ldap_int_t;
typedef PCHAR ldap_pchar_t;
#else
typedef int ldap_int_t;
typedef const char * ldap_pchar_t;
#endif
#define LUALDAP_PREFIX "LuaLDAP: "
#define LUALDAP_TABLENAME "lualdap"
#define LUALDAP_CONNECTION_METATABLE "LuaLDAP connection"
#define LUALDAP_SEARCH_METATABLE "LuaLDAP search"
#define LUALDAP_MOD_ADD (LDAP_MOD_ADD | LDAP_MOD_BVALUES)
#define LUALDAP_MOD_DEL (LDAP_MOD_DELETE | LDAP_MOD_BVALUES)
#define LUALDAP_MOD_REP (LDAP_MOD_REPLACE | LDAP_MOD_BVALUES)
#define LUALDAP_NO_OP 0
/* Maximum number of attributes manipulated in an operation */
#ifndef LUALDAP_MAX_ATTRS
#define LUALDAP_MAX_ATTRS 100
#endif
/* Size of buffer of NULL-terminated arrays of pointers to struct values */
#ifndef LUALDAP_ARRAY_VALUES_SIZE
#define LUALDAP_ARRAY_VALUES_SIZE (2 * LUALDAP_MAX_ATTRS)
#endif
/* Maximum number of values structures */
#ifndef LUALDAP_MAX_VALUES
#define LUALDAP_MAX_VALUES (LUALDAP_ARRAY_VALUES_SIZE / 2)
#endif
/* LDAP connection information */
typedef struct {
int version; /* LDAP version */
LDAP *ld; /* LDAP connection */
} conn_data;
/* LDAP search context information */
typedef struct {
int conn; /* conn_data reference */
int msgid;
} search_data;
/* LDAP attribute modification structure */
typedef struct {
LDAPMod *attrs[LUALDAP_MAX_ATTRS + 1];
LDAPMod mods[LUALDAP_MAX_ATTRS];
int ai;
BerValue *values[LUALDAP_ARRAY_VALUES_SIZE];
int vi;
BerValue bvals[LUALDAP_MAX_VALUES];
int bi;
} attrs_data;
int luaopen_lualdap (lua_State *L);
/*
** Typical error situation.
*/
static int faildirect (lua_State *L, const char *errmsg) {
lua_pushnil (L);
lua_pushstring (L, errmsg);
return 2;
}
/*
** Get a connection object from the first stack position.
*/
static conn_data *getconnection (lua_State *L) {
conn_data *conn = (conn_data *)luaL_checkudata (L, 1, LUALDAP_CONNECTION_METATABLE);
luaL_argcheck(L, conn->ld, 1, LUALDAP_PREFIX"LDAP connection is closed");
return conn;
}
/*
** Get a search object from the first upvalue position.
*/
static search_data *getsearch (lua_State *L) {
/* don't need to check upvalue's integrity */
search_data *search = (search_data *)lua_touserdata (L, lua_upvalueindex (1));
luaL_argcheck (L,search->conn!=LUA_NOREF,1,LUALDAP_PREFIX"LDAP search is closed");
return search;
}
/*
** Error on option.
*/
static int option_error (lua_State *L, const char *name, const char *type) {
return luaL_error (L, LUALDAP_PREFIX"invalid value on option `%s': %s expected, got %s", name, type, lua_typename (L, lua_type (L, -1)));
}
/*
** Get the field named name as a string.
** The table MUST be at position 2.
*/
static const char *strtabparam (lua_State *L, const char *name, char *def) {
lua_getfield(L, 2, name);
if (lua_isnil (L, -1))
return def;
else if (lua_isstring (L, -1))
return lua_tostring (L, -1);
else {
option_error (L, name, "string");
return NULL;
}
}
/*
** Get the field named name as an integer.
** The table MUST be at position 2.
*/
static long longtabparam (lua_State *L, const char *name, int def) {
lua_getfield(L, 2, name);
if (lua_isnil (L, -1))
return def;
else if (lua_isnumber (L, -1))
return (long)lua_tointeger (L, -1);
else
return option_error (L, name, "number");
}
/*
** Get the field named name as a double.
** The table MUST be at position 2.
*/
static double numbertabparam (lua_State *L, const char *name, double def) {
lua_getfield(L, 2, name);
if (lua_isnil (L, -1))
return def;
else if (lua_isnumber (L, -1))
return lua_tonumber (L, -1);
else
return option_error (L, name, "number");
}
/*
** Get the field named name as a boolean.
** The table MUST be at position 2.
*/
static int booltabparam (lua_State *L, const char *name, int def) {
lua_getfield(L, 2, name);
if (lua_isnil (L, -1))
return def;
else if (lua_isboolean (L, -1))
return lua_toboolean (L, -1);
else
return option_error (L, name, "boolean");
}
/*
** Error on attribute's value.
*/
static void value_error (lua_State *L, const char *name) {
luaL_error (L, LUALDAP_PREFIX"invalid value of attribute `%s' (%s)",
name, lua_typename (L, lua_type (L, -1)));
}
/*
** Initialize attributes structure.
*/
static void A_init (attrs_data *attrs) {
attrs->ai = 0;
attrs->attrs[0] = NULL;
attrs->vi = 0;
attrs->values[0] = NULL;
attrs->bi = 0;
}
/*
** Store the string on top of the stack on the attributes structure.
** Increment the bvals counter.
*/
static BerValue *A_setbval (lua_State *L, attrs_data *a, const char *n) {
size_t len;
BerValue *ret = &(a->bvals[a->bi]);
if (a->bi >= LUALDAP_MAX_VALUES) {
luaL_error (L, LUALDAP_PREFIX"too many values");
return NULL;
} else if (!lua_isstring (L, -1)) {
value_error (L, n);
return NULL;
}
a->bvals[a->bi].bv_val = (char *)lua_tolstring (L, -1, &len);
a->bvals[a->bi].bv_len = len;
a->bi++;
return ret;
}
/*
** Store a pointer to the value on top of the stack on the attributes structure.
*/
static BerValue **A_setval (lua_State *L, attrs_data *a, const char *n) {
BerValue **ret = &(a->values[a->vi]);
if (a->vi >= LUALDAP_ARRAY_VALUES_SIZE) {
luaL_error (L, LUALDAP_PREFIX"too many values");
return NULL;
}
a->values[a->vi] = A_setbval (L, a, n);
a->vi++;
return ret;
}
/*
** Store a NULL pointer on the attributes structure.
*/
static BerValue **A_nullval (lua_State *L, attrs_data *a) {
BerValue **ret = &(a->values[a->vi]);
if (a->vi >= LUALDAP_ARRAY_VALUES_SIZE) {
luaL_error (L, LUALDAP_PREFIX"too many values");
return NULL;
}
a->values[a->vi] = NULL;
a->vi++;
return ret;
}
/*
** Store the value of an attribute.
** Valid values are:
** true => no values;
** string => one value; or
** table of strings => many values.
*/
static BerValue **A_tab2val (lua_State *L, attrs_data *a, const char *name) {
int tab = lua_gettop (L);
BerValue **ret = &(a->values[a->vi]);
if (lua_isboolean (L, tab) && (lua_toboolean (L, tab) == 1)) /* true */
return NULL;
else if (lua_isstring (L, tab)) /* string */
A_setval (L, a, name);
else if (lua_istable (L, tab)) { /* list of strings */
int i;
int n = lua_rawlen (L, tab);
for (i = 1; i <= n; i++) {
lua_rawgeti (L, tab, i); /* push table element */
A_setval (L, a, name);
}
lua_pop (L, n);
} else {
value_error (L, name);
return NULL;
}
A_nullval (L, a);
return ret;
}
/*
** Set a modification value (which MUST be on top of the stack).
*/
static void A_setmod (lua_State *L, attrs_data *a, int op, const char *name) {
if (a->ai >= LUALDAP_MAX_ATTRS) {
luaL_error (L, LUALDAP_PREFIX"too many attributes");
return;
}
a->mods[a->ai].mod_op = op;
a->mods[a->ai].mod_type = (char *)name;
a->mods[a->ai].mod_bvalues = A_tab2val (L, a, name);
a->attrs[a->ai] = &a->mods[a->ai];
a->ai++;
}
/*
** Convert a Lua table into an array of modifications.
** An array of modifications is a NULL-terminated array of LDAPMod's.
*/
static void A_tab2mod (lua_State *L, attrs_data *a, int tab, int op) {
lua_pushnil (L); /* first key for lua_next */
while (lua_next (L, tab) != 0) {
/* attribute must be a string and not a number */
if ((!lua_isnumber (L, -2)) && (lua_isstring (L, -2)))
A_setmod (L, a, op, lua_tostring (L, -2));
/* pop value and leave last key on the stack as next key for lua_next */
lua_pop (L, 1);
}
}
/*
** Terminate the array of attributes.
*/
static void A_lastattr (lua_State *L, attrs_data *a) {
if (a->ai >= LUALDAP_MAX_ATTRS) {
luaL_error (L, LUALDAP_PREFIX"too many attributes");
return;
}
a->attrs[a->ai] = NULL;
a->ai++;
}
/*
** Get the result message of an operation.
** #1 upvalue == connection
** #2 upvalue == msgid
** #3 upvalue == result code of the message (ADD, DEL etc.) to be received.
*/
static int result_message (lua_State *L) {
struct timeval *timeout = NULL; /* ??? function parameter ??? */
LDAPMessage *res;
int rc;
conn_data *conn = (conn_data *)lua_touserdata (L, lua_upvalueindex (1));
int msgid = (int)lua_tonumber (L, lua_upvalueindex (2));
/*int res_code = (int)lua_tonumber (L, lua_upvalueindex (3));*/
luaL_argcheck (L, conn->ld, 1, LUALDAP_PREFIX"LDAP connection is closed");
rc = ldap_result (conn->ld, msgid, LDAP_MSG_ONE, timeout, &res);
if (rc == 0)
return faildirect (L, LUALDAP_PREFIX"result timeout expired");
else if (rc < 0) {
ldap_msgfree (res);
return faildirect (L, LUALDAP_PREFIX"result error");
} else {
int err, ret = 1;
char *mdn, *msg;
rc = ldap_parse_result (conn->ld, res, &err, &mdn, &msg, NULL, NULL, 1);
if (rc != LDAP_SUCCESS)
return faildirect (L, ldap_err2string (rc));
switch (err) {
case LDAP_SUCCESS:
case LDAP_COMPARE_TRUE:
lua_pushboolean (L, 1);
break;
case LDAP_COMPARE_FALSE:
lua_pushboolean (L, 0);
break;
default:
lua_pushnil (L);
lua_pushliteral (L, LUALDAP_PREFIX);
lua_pushstring (L, ldap_err2string(err));
lua_concat (L, 2);
if (msg != NULL) {
lua_pushliteral (L, " (");
lua_pushstring (L, msg);
lua_pushliteral (L, ")");
lua_concat (L, 4);
}
ret = 2;
}
ldap_memfree (mdn);
ldap_memfree (msg);
return ret;
}
}
/*
** Push a function to process the LDAP result.
*/
static int create_future (lua_State *L, ldap_int_t rc, int conn, ldap_int_t msgid, int code) {
if (rc != LDAP_SUCCESS)
return faildirect (L, ldap_err2string (rc));
lua_pushvalue (L, conn); /* push connection as #1 upvalue */
lua_pushnumber (L, msgid); /* push msgid as #2 upvalue */
lua_pushnumber (L, code); /* push code as #3 upvalue */
lua_pushcclosure (L, result_message, 3);
return 1;
}
/*
** Unbind from the directory.
** @param #1 LDAP connection.
** @return 1 in case of success; nothing when already closed.
*/
static int lualdap_close (lua_State *L) {
conn_data *conn = (conn_data *)luaL_checkudata (L, 1, LUALDAP_CONNECTION_METATABLE);
if (conn->ld == NULL) /* already closed */
return 0;
#if defined(LDAP_API_FEATURE_X_OPENLDAP) && LDAP_API_FEATURE_X_OPENLDAP >= 20300
ldap_unbind_ext (conn->ld, NULL, NULL);
#else
ldap_unbind (conn->ld);
#endif
conn->ld = NULL;
lua_pushnumber (L, 1);
return 1;
}
/*
** Bind to the directory.
** @param #1 LDAP connection.
** @param #2 String with username.
** @param #3 String with password.
** @return LDAP connection on success.
*/
static int lualdap_bind_simple (lua_State *L) {
conn_data *conn = getconnection (L);
ldap_pchar_t who = (ldap_pchar_t) luaL_checkstring (L, 2);
const char *password = luaL_checkstring (L, 3);
int err;
#if defined(LDAP_API_FEATURE_X_OPENLDAP) && LDAP_API_FEATURE_X_OPENLDAP >= 20300
struct berval *cred = ber_bvstrdup(password);
/* FIXME: According to `man 3 ldap_sasl_bind_s` we should pass `NULL` instead of `who`. */
err = ldap_sasl_bind_s (conn->ld, who, LDAP_SASL_SIMPLE, cred, NULL, NULL, NULL);
ber_bvfree(cred);
#else
err = ldap_bind_s (conn->ld, who, password, LDAP_AUTH_SIMPLE);
#endif
if (err != LDAP_SUCCESS)
return faildirect (L, ldap_err2string (err));
lua_pushvalue (L, 1);
return 1;
}
/*
** Add a new entry to the directory.
** @param #1 LDAP connection.
** @param #2 String with new entry's DN.
** @param #3 Table with new entry's attributes and values.
** @return Function to process the LDAP result.
*/
static int lualdap_add (lua_State *L) {
conn_data *conn = getconnection (L);
ldap_pchar_t dn = (ldap_pchar_t) luaL_checkstring (L, 2);
attrs_data attrs;
ldap_int_t rc, msgid;
A_init (&attrs);
if (lua_istable (L, 3))
A_tab2mod (L, &attrs, 3, LUALDAP_MOD_ADD);
A_lastattr (L, &attrs);
rc = ldap_add_ext (conn->ld, dn, attrs.attrs, NULL, NULL, &msgid);
return create_future (L, rc, 1, msgid, LDAP_RES_ADD);
}
/*
** Compare a value against an entry.
** @param #1 LDAP connection.
** @param #2 String with entry's DN.
** @param #3 String with attribute's name.
** @param #4 String with attribute's value.
** @return Function to process the LDAP result.
*/
static int lualdap_compare (lua_State *L) {
conn_data *conn = getconnection (L);
ldap_pchar_t dn = (ldap_pchar_t) luaL_checkstring (L, 2);
ldap_pchar_t attr = (ldap_pchar_t) luaL_checkstring (L, 3);
BerValue bvalue;
ldap_int_t rc, msgid;
size_t len;
bvalue.bv_val = (char *)luaL_checklstring (L, 4, &len);
bvalue.bv_len = len;
rc = ldap_compare_ext (conn->ld, dn, attr, &bvalue, NULL, NULL, &msgid);
return create_future (L, rc, 1, msgid, LDAP_RES_COMPARE);
}
/*
** Delete an entry.
** @param #1 LDAP connection.
** @param #2 String with entry's DN.
** @return Boolean.
*/
static int lualdap_delete (lua_State *L) {
conn_data *conn = getconnection (L);
ldap_pchar_t dn = (ldap_pchar_t) luaL_checkstring (L, 2);
ldap_int_t rc, msgid;
rc = ldap_delete_ext (conn->ld, dn, NULL, NULL, &msgid);
return create_future (L, rc, 1, msgid, LDAP_RES_DELETE);
}
/*
** Convert a string into an internal LDAP_MOD operation code.
*/
static int op2code (const char *s) {
if (!s)
return LUALDAP_NO_OP;
switch (*s) {
case '+':
return LUALDAP_MOD_ADD;
case '-':
return LUALDAP_MOD_DEL;
case '=':
return LUALDAP_MOD_REP;
default:
return LUALDAP_NO_OP;
}
}
/*
** Modify an entry.
** @param #1 LDAP connection.
** @param #2 String with entry's DN.
** @param #3, #4... Tables with modifications to apply.
** @return True on success or nil, error message otherwise.
*/
static int lualdap_modify (lua_State *L) {
conn_data *conn = getconnection (L);
ldap_pchar_t dn = (ldap_pchar_t) luaL_checkstring (L, 2);
attrs_data attrs;
ldap_int_t rc, msgid;
int param = 3;
A_init (&attrs);
while (lua_istable (L, param)) {
int op;
/* get operation ('+','-','=' operations allowed) */
lua_rawgeti (L, param, 1);
op = op2code (lua_tostring (L, -1));
if (op == LUALDAP_NO_OP)
return luaL_error (L, LUALDAP_PREFIX"forgotten operation on argument #%d", param);
/* get array of attributes and values */
A_tab2mod (L, &attrs, param, op);
param++;
}
A_lastattr (L, &attrs);
rc = ldap_modify_ext (conn->ld, dn, attrs.attrs, NULL, NULL, &msgid);
return create_future (L, rc, 1, msgid, LDAP_RES_MODIFY);
}
/*
** Change the distinguished name of an entry.
*/
static int lualdap_rename (lua_State *L) {
conn_data *conn = getconnection (L);
ldap_pchar_t dn = (ldap_pchar_t) luaL_checkstring (L, 2);
ldap_pchar_t rdn = (ldap_pchar_t) luaL_checkstring (L, 3);
ldap_pchar_t par = (ldap_pchar_t) luaL_optlstring (L, 4, NULL, NULL);
const int del = luaL_optnumber (L, 5, 0);
ldap_int_t msgid;
ldap_int_t rc = ldap_rename (conn->ld, dn, rdn, par, del, NULL, NULL, &msgid);
return create_future (L, rc, 1, msgid, LDAP_RES_MODDN);
}
/*
** Push an attribute value (or a table of values) on top of the stack.
** @param L lua_State.
** @param ld LDAP Connection.
** @param entry Current entry.
** @param attr Name of entry's attribute to get values from.
** @return 1 in case of success.
*/
static int push_values (lua_State *L, LDAP *ld, LDAPMessage *entry, char *attr) {
int i, n;
BerValue **vals = ldap_get_values_len (ld, entry, attr);
n = ldap_count_values_len (vals);
if (n == 0) /* no values */
lua_pushboolean (L, 1);
else if (n == 1) /* just one value */
lua_pushlstring (L, vals[0]->bv_val, vals[0]->bv_len);
else { /* Multiple values */
lua_newtable (L);
for (i = 0; i < n; i++) {
lua_pushlstring (L, vals[i]->bv_val, vals[i]->bv_len);
lua_rawseti (L, -2, i+1);
}
}
ldap_value_free_len (vals);
return 1;
}
/*
** Store entry's attributes and values at the given table.
** @param entry Current entry.
** @param tab Absolute stack index of the table.
*/
static void set_attribs (lua_State *L, LDAP *ld, LDAPMessage *entry, int tab) {
char *attr;
BerElement *ber = NULL;
for (attr = ldap_first_attribute (ld, entry, &ber);
attr != NULL;
attr = ldap_next_attribute (ld, entry, ber))
{
lua_pushstring (L, attr);
push_values (L, ld, entry, attr);
lua_rawset (L, tab); /* tab[attr] = vals */
ldap_memfree (attr);
}
ber_free (ber, 0); /* don't need to test if (ber == NULL) */
}
/*
** Get the distinguished name of the given entry and pushes it on the stack.
*/
static void push_dn (lua_State *L, LDAP *ld, LDAPMessage *entry) {
char *dn = ldap_get_dn (ld, entry);
lua_pushstring (L, dn);
ldap_memfree (dn);
}
/*
** Release connection reference.
*/
static void search_close (lua_State *L, search_data *search) {
luaL_unref (L, LUA_REGISTRYINDEX, search->conn);
search->conn = LUA_NOREF;
}
/*
** Retrieve next message...
** @return #1 entry's distinguished name.
** @return #2 table with entry's attributes and values.
*/
static int next_message (lua_State *L) {
search_data *search = getsearch (L);
conn_data *conn;
struct timeval *timeout = NULL; /* ??? function parameter ??? */
LDAPMessage *res;
int rc;
int ret;
lua_rawgeti (L, LUA_REGISTRYINDEX, search->conn);
conn = (conn_data *)lua_touserdata (L, -1); /* get connection */
rc = ldap_result (conn->ld, search->msgid, LDAP_MSG_ONE, timeout, &res);
if (rc == 0)
return faildirect (L, LUALDAP_PREFIX"result timeout expired");
else if (rc == -1)
return faildirect (L, LUALDAP_PREFIX"result error");
else if (rc == LDAP_RES_SEARCH_RESULT) { /* last message => nil */
/* close search object to avoid reuse */
search_close (L, search);
ret = 0;
} else {
LDAPMessage *msg = ldap_first_message (conn->ld, res);
switch (ldap_msgtype (msg)) {
case LDAP_RES_SEARCH_ENTRY: {
LDAPMessage *entry = ldap_first_entry (conn->ld, msg);
push_dn (L, conn->ld, entry);
lua_newtable (L);
set_attribs (L, conn->ld, entry, lua_gettop (L));
ret = 2; /* two return values */
break;
}
/*No reference to LDAP_RES_SEARCH_REFERENCE on MSDN. Maybe there is a replacement to it?*/
#ifdef LDAP_RES_SEARCH_REFERENCE
case LDAP_RES_SEARCH_REFERENCE: {
LDAPMessage *ref = ldap_first_reference (conn->ld, msg);
push_dn (L, conn->ld, ref); /* is this supposed to work? */
lua_pushnil (L);
ret = 2; /* two return values */
break;
}
#endif
case LDAP_RES_SEARCH_RESULT:
/* close search object to avoid reuse */
search_close (L, search);
ret = 0;
break;
default:
ldap_msgfree (res);
return luaL_error (L, LUALDAP_PREFIX"error on search result chain");
}
}
ldap_msgfree (res);
return ret;
}
/*
** Convert a string to one of the possible scopes of the search.
*/
static int string2scope (lua_State *L, const char *s) {
if ((s == NULL) || (*s == '\0'))
return LDAP_SCOPE_DEFAULT;
switch (*s) {
case 'b':
return LDAP_SCOPE_BASE;
case 'o':
return LDAP_SCOPE_ONELEVEL;
case 's':
return LDAP_SCOPE_SUBTREE;
default:
return luaL_error (L, LUALDAP_PREFIX"invalid search scope `%s'", s);
}
}
/*
** Close the search object.
*/
static int lualdap_search_close (lua_State *L) {
search_data *search = (search_data *)luaL_checkudata (L, 1, LUALDAP_SEARCH_METATABLE);
if (search->conn == LUA_NOREF)
return 0;
search_close (L, search);
lua_pushnumber (L, 1);
return 1;
}
/*
** Create a search object and leaves it on top of the stack.
*/
static void create_search (lua_State *L, int conn_index, int msgid) {
search_data *search = (search_data *)lua_newuserdata (L, sizeof (search_data));
luaL_setmetatable (L, LUALDAP_SEARCH_METATABLE);
search->conn = LUA_NOREF;
search->msgid = msgid;
lua_pushvalue (L, conn_index);
search->conn = luaL_ref (L, LUA_REGISTRYINDEX);
}
/*
** Fill in the attrs array, according to the attrs parameter.
*/
static void get_attrs_param (lua_State *L, char *attrs[]) {
lua_getfield(L, 2, "attrs");
if (lua_isstring (L, -1)) {
attrs[0] = (char *)lua_tostring (L, -1);
attrs[1] = NULL;
} else if (!lua_istable (L, -1))
attrs[0] = NULL;
else {
int i;
int n = lua_rawlen(L, -1);
if (LUALDAP_MAX_ATTRS < (n+1))
luaL_error (L, LUALDAP_PREFIX"too many arguments");
luaL_checkstack(L, n, NULL);
for (i = 0; i < n; i++) {
lua_rawgeti (L, -1, i+1); /* push table element */
if (lua_isstring (L, -1)) {
attrs[i] = (char *)lua_tostring (L, -1);
lua_pop(L, 1);
} else {
luaL_error (L, LUALDAP_PREFIX"invalid value #%d", i+1);
}
}
attrs[n] = NULL;
}
}
/*
** Fill in the struct timeval, according to the timeout parameter.
*/
static struct timeval *get_timeout_param (lua_State *L, struct timeval *st) {
double t = numbertabparam (L, "timeout", 0.0);
if(t <= 0.0)
return NULL; /* No timeout, block */
st->tv_sec = (long)t;
st->tv_usec = (long)(1000000.0 * (t - (double)st->tv_sec));
return st;
}
/*
** Perform a search operation.
** @return #1 Function to iterate over the result entries.
** @return #2 nil.
** @return #3 nil as first entry.
** The search result is defined as an upvalue of the iterator.
*/
static int lualdap_search (lua_State *L) {
conn_data *conn = getconnection (L);
ldap_pchar_t base;
ldap_pchar_t filter;
char *attrs[LUALDAP_MAX_ATTRS];
int scope, attrsonly, msgid, rc, sizelimit;
struct timeval st, *timeout;
if (!lua_istable (L, 2))
return luaL_error (L, LUALDAP_PREFIX"no search specification");
get_attrs_param (L, attrs);
/* get other parameters */
attrsonly = booltabparam (L, "attrsonly", 0);
base = (ldap_pchar_t) strtabparam (L, "base", NULL);
filter = (ldap_pchar_t) strtabparam (L, "filter", NULL);
scope = string2scope (L, strtabparam (L, "scope", NULL));
sizelimit = longtabparam (L, "sizelimit", LDAP_NO_LIMIT);
timeout = get_timeout_param (L, &st);
rc = ldap_search_ext (conn->ld, base, scope, filter, attrs, attrsonly,
NULL, NULL, timeout, sizelimit, &msgid);
if (rc != LDAP_SUCCESS)
return luaL_error (L, LUALDAP_PREFIX"%s", ldap_err2string (rc));
create_search (L, 1, msgid);
lua_pushcclosure (L, next_message, 1);
lua_pushvalue(L, 2);
return 2;
}
/*
** Return the name of the object's metatable.
** This function is used by `tostring'.
*/
static int lualdap_conn_tostring (lua_State *L) {
conn_data *conn = luaL_checkudata(L, 1, LUALDAP_CONNECTION_METATABLE);
if (conn->ld == NULL)
lua_pushfstring (L, "%s (closed)", LUALDAP_CONNECTION_METATABLE);
else
lua_pushfstring (L, "%s (%p)", LUALDAP_CONNECTION_METATABLE, (void*)conn);
return 1;
}
/*
** Return the name of the object's metatable.
** This function is used by `tostring'.
*/
static int lualdap_search_tostring (lua_State *L) {
search_data *search = luaL_checkudata(L, 1, LUALDAP_SEARCH_METATABLE);
if (search->conn == LUA_NOREF)
lua_pushfstring (L, "%s (closed)", LUALDAP_SEARCH_METATABLE);
else
lua_pushfstring (L, "%s (%p)", LUALDAP_SEARCH_METATABLE, (void*)search);
return 1;
}
/*
** Create a metatable.
*/
static void lualdap_createmeta_conn (lua_State *L) {
static const luaL_Reg metamethods[] = {
{"__gc", lualdap_close},
{"__tostring", lualdap_conn_tostring},
/* placeholders */
{"__index", NULL},
{"__metatable", NULL},
{NULL, NULL}
};
static const luaL_Reg methods[] = {
{"close", lualdap_close},
{"bind_simple", lualdap_bind_simple},
{"add", lualdap_add},
{"compare", lualdap_compare},
{"delete", lualdap_delete},
{"modify", lualdap_modify},
{"rename", lualdap_rename},
{"search", lualdap_search},
{NULL, NULL}
};
luaL_newmetatable (L, LUALDAP_CONNECTION_METATABLE);
luaL_setfuncs(L, metamethods, 0); /* add metamethods to new metatable */
luaL_newlibtable(L, methods); /* create method table */
luaL_setfuncs(L, methods, 0); /* add file methods to method table */
lua_setfield(L, -2, "__index"); /* metatable.__index = method table */
lua_pushliteral(L,LUALDAP_PREFIX"you're not allowed to get this metatable");
lua_setfield (L, -2, "__metatable");
lua_pop(L, 1); /* pop metatable */
}
/*
** Create a metatable.
*/
static void lualdap_createmeta_search (lua_State *L) {
static const luaL_Reg metamethods[] = {
{"__gc", lualdap_search_close},
{"__tostring", lualdap_search_tostring},
/* placeholders */
{"__metatable", NULL},
{NULL, NULL}
};
luaL_newmetatable (L, LUALDAP_SEARCH_METATABLE);
luaL_setfuncs(L, metamethods, 0); /* add metamethods to new metatable */
lua_pushliteral(L,LUALDAP_PREFIX"you're not allowed to get this metatable");
lua_setfield (L, -2, "__metatable");
lua_pop(L, 1); /* pop metatable */
}
#if !defined(WINLDAP)
/*
** Open and initialize a connection to a server (without binding).
** @param #1 String with URI.
** @return #1 Userdata with connection structure.
*/
static int lualdap_initialize (lua_State *L) {
ldap_pchar_t uri = (ldap_pchar_t) luaL_checkstring (L, 1);
conn_data *conn = (conn_data *)lua_newuserdata (L, sizeof(conn_data));
int err;
int lev=7;
/* Initialize */
luaL_setmetatable (L, LUALDAP_CONNECTION_METATABLE);
conn->version = 0;
#if defined(LDAP_API_FEATURE_X_OPENLDAP) && LDAP_API_FEATURE_X_OPENLDAP >= 20300
err = ldap_initialize (&conn->ld, uri);
if (err != LDAP_SUCCESS)
return faildirect(L, ldap_err2string(err));
#else
# error Unsupported LDAP library version
#endif
/* Set protocol version */
conn->version = LDAP_VERSION3;
if (ldap_set_option (conn->ld, LDAP_OPT_PROTOCOL_VERSION, &conn->version)
!= LDAP_OPT_SUCCESS)
return faildirect(L, LUALDAP_PREFIX"Error setting LDAP version");
ldap_set_option(conn->ld, LDAP_OPT_DEBUG_LEVEL, &lev);
return 1;
}
#endif
/*
** Open a connection to a server.
** @param #1 String with hostname.
** @param #2 Boolean indicating if TLS must be used.
** @param #3 Number for connection timeout (optional).
** @return #1 Userdata with connection structure.
*/
static int lualdap_open (lua_State *L) {
ldap_pchar_t host = (ldap_pchar_t) luaL_checkstring (L, 1);
int use_tls = lua_toboolean (L, 2);
double timeout = lua_tonumber (L, 3);
conn_data *conn = (conn_data *)lua_newuserdata (L, sizeof(conn_data));
#if defined(LDAP_API_FEATURE_X_OPENLDAP) && LDAP_API_FEATURE_X_OPENLDAP >= 20300
int err;
#endif
/* Initialize */
luaL_setmetatable (L, LUALDAP_CONNECTION_METATABLE);
conn->version = 0;
#if defined(LDAP_API_FEATURE_X_OPENLDAP) && LDAP_API_FEATURE_X_OPENLDAP >= 20300
if (strstr(host, "://") != NULL) {
err = ldap_initialize(&conn->ld, host);
} else {
lua_getglobal (L, "string");
lua_getfield (L, -1, "gsub");
if (!lua_isfunction (L, -1))
return faildirect (L, LUALDAP_PREFIX"string.gsub broken");
lua_pushvalue (L, 1); /* host */
lua_pushstring (L, "(%S+)");
lua_pushstring (L, "ldap://%1");
lua_call (L, 3, 1); /* string.gsub(host, '(%S+)', 'ldap://%1') */
/* ldap_initialize handles a whitespace-separated list of hostnames */
err = ldap_initialize(&conn->ld, lua_tostring (L, -1));
lua_pop(L, 2);
}
if (err != LDAP_SUCCESS)
#else
conn->ld = ldap_init (host, LDAP_PORT);
if (conn->ld == NULL)
#endif
return faildirect(L,LUALDAP_PREFIX"Error connecting to server");
/* LDAP_OPT_TIMEOUT and LDAP_OPT_NETWORK_TIMEOUT are not supported by WinLDAP.
* WinLDAP does have LDAP_OPT_SEND_TIMEOUT; it is yet to be determined whether
* that would work as a connection timeout */
#if !defined(WINLDAP)
/* Set timeout (optionally) */
if (timeout > 0.0) {
struct timeval optTimeout;
optTimeout.tv_sec = (long)timeout;
optTimeout.tv_usec = (long)(1000000.0 * (timeout - (double)optTimeout.tv_sec));
if (ldap_set_option (conn->ld, LDAP_OPT_TIMEOUT, &optTimeout) != LDAP_OPT_SUCCESS)
return faildirect(L, LUALDAP_PREFIX"Could not set timeout");
if (ldap_set_option (conn->ld, LDAP_OPT_NETWORK_TIMEOUT, &optTimeout) != LDAP_OPT_SUCCESS)
return faildirect(L, LUALDAP_PREFIX"Could not set network timeout");
}
#endif
/* Set protocol version */
conn->version = LDAP_VERSION3;
if (ldap_set_option (conn->ld, LDAP_OPT_PROTOCOL_VERSION, &conn->version)
!= LDAP_OPT_SUCCESS)
return faildirect(L, LUALDAP_PREFIX"Error setting LDAP version");
/* Use TLS */
if (use_tls) {
int rc = ldap_start_tls_s (conn->ld, NULL, NULL);
if (rc != LDAP_SUCCESS)
return faildirect (L, ldap_err2string (rc));
}
return 1;
}
/*
** Open and initialize a connection to a server.
** @param #1 String with hostname.
** @param #2 String with username.
** @param #3 String with password.
** @param #4 Boolean indicating if TLS must be used.
** @param #5 Number for connection timeout (optional).
** @return #1 Userdata with connection structure.
*/
static int lualdap_open_simple (lua_State *L) {
ldap_pchar_t host = (ldap_pchar_t) luaL_checkstring (L, 1);
ldap_pchar_t who = (ldap_pchar_t) luaL_optstring (L, 2, "");
const char *password = luaL_optstring (L, 3, "");
int use_tls = lua_toboolean (L, 4);
double timeout = lua_tonumber (L, 5);
/* Open */
lua_pushcfunction (L, lualdap_open);
lua_pushstring (L, host);
lua_pushboolean (L, use_tls);
lua_pushnumber (L, timeout);
lua_call (L, 3, 2);
if (lua_isnil (L, -2)) {
return 2; /* nil, msg */
} else {
lua_pop (L, 1); /* keep only the userdata (LDAP connection) */
}
/* Bind to a server */
lua_pushcfunction (L, lualdap_bind_simple);
lua_pushvalue (L, -2); /* connection */
lua_pushstring (L, who);
lua_pushstring (L, password);
lua_call (L, 3, 2);
if (lua_isnil (L, -2)) {
return 2; /* Pass through in case of errors */
} else {
lua_pop (L, 2); /* Discard return values from lualdap_bind_simple */
}
return 1;
}
/*
** Assumes the table is on top of the stack.
*/
static void set_info (lua_State *L) {
lua_pushliteral (L, "Copyright (C) 2003-2007 Kepler Project");
lua_setfield (L, -2, "_COPYRIGHT");
lua_pushliteral (L, "LuaLDAP is a simple interface from Lua to an LDAP client");
lua_setfield (L, -2, "_DESCRIPTION");
lua_pushliteral (L, "LuaLDAP 1.4.0");
lua_setfield (L, -2, "_VERSION");
}
/*
** Create ldap table and register the open method.
*/
int luaopen_lualdap (lua_State *L) {
static const struct luaL_Reg lualdap[] = {
#if !defined(WINLDAP)
{"initialize", lualdap_initialize},
#endif
{"open", lualdap_open},
{"open_simple", lualdap_open_simple},
/* placeholders */
{"_COPYRIGHT", NULL},
{"_DESCRIPTION", NULL},
{"_VERSION", NULL},
{NULL, NULL},
};
lualdap_createmeta_conn (L);
lualdap_createmeta_search (L);
luaL_newlib(L, lualdap);
/*
In Lua 5.2 "modules are not expected to set global variables":
https://www.lua.org/manual/5.2/manual.html#8.2
*/
#if LUA_VERSION_NUM < 502
lua_pushvalue(L, -1);
lua_setglobal(L, LUALDAP_TABLENAME);
#endif
set_info (L);
return 1;
}
|