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 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695
|
/*
Unix SMB/CIFS implementation.
rootDSE ldb module
Copyright (C) Andrew Tridgell 2005
Copyright (C) Simo Sorce 2005-2008
Copyright (C) Matthieu Patou <mat@matws.net> 2011
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "includes.h"
#include <ldb.h>
#include <ldb_module.h>
#include "system/time.h"
#include "dsdb/samdb/samdb.h"
#include "version.h"
#include "dsdb/samdb/ldb_modules/util.h"
#include "libcli/security/security.h"
#include "librpc/ndr/libndr.h"
#include "auth/auth.h"
#include "param/param.h"
#include "lib/messaging/irpc.h"
#include "librpc/gen_ndr/ndr_irpc_c.h"
#include "lib/tsocket/tsocket.h"
#include "cldap_server/cldap_server.h"
#include "lib/events/events.h"
struct rootdse_private_data {
unsigned int num_controls;
char **controls;
unsigned int num_partitions;
struct ldb_dn **partitions;
bool block_anonymous;
struct tevent_context *saved_ev;
struct tevent_context *private_ev;
};
struct rootdse_context {
struct ldb_module *module;
struct ldb_request *req;
struct ldb_val netlogon;
};
/*
return 1 if a specific attribute has been requested
*/
static int do_attribute(const char * const *attrs, const char *name)
{
return attrs == NULL ||
ldb_attr_in_list(attrs, name) ||
ldb_attr_in_list(attrs, "*");
}
static int do_attribute_explicit(const char * const *attrs, const char *name)
{
return attrs != NULL && ldb_attr_in_list(attrs, name);
}
/*
expand a DN attribute to include extended DN information if requested
*/
static int expand_dn_in_message(struct ldb_module *module, struct ldb_message *msg,
const char *attrname, struct ldb_control *edn_control,
struct ldb_request *req)
{
struct ldb_dn *dn, *dn2;
struct ldb_val *v;
int ret;
struct ldb_request *req2;
char *dn_string;
const char *no_attrs[] = { NULL };
struct ldb_result *res;
struct ldb_extended_dn_control *edn;
TALLOC_CTX *tmp_ctx = talloc_new(req);
struct ldb_context *ldb;
int edn_type = 0;
unsigned int i;
struct ldb_message_element *el;
ldb = ldb_module_get_ctx(module);
edn = talloc_get_type(edn_control->data, struct ldb_extended_dn_control);
if (edn) {
edn_type = edn->type;
}
el = ldb_msg_find_element(msg, attrname);
if (!el || el->num_values == 0) {
return LDB_SUCCESS;
}
for (i = 0; i < el->num_values; i++) {
v = &el->values[i];
if (v == NULL) {
talloc_free(tmp_ctx);
return LDB_SUCCESS;
}
dn_string = talloc_strndup(tmp_ctx, (const char *)v->data, v->length);
if (dn_string == NULL) {
talloc_free(tmp_ctx);
return ldb_operr(ldb);
}
res = talloc_zero(tmp_ctx, struct ldb_result);
if (res == NULL) {
talloc_free(tmp_ctx);
return ldb_operr(ldb);
}
dn = ldb_dn_new(tmp_ctx, ldb, dn_string);
if (dn == NULL) {
talloc_free(tmp_ctx);
return ldb_operr(ldb);
}
ret = ldb_build_search_req(&req2, ldb, tmp_ctx,
dn,
LDB_SCOPE_BASE,
NULL,
no_attrs,
NULL,
res, ldb_search_default_callback,
req);
LDB_REQ_SET_LOCATION(req2);
if (ret != LDB_SUCCESS) {
talloc_free(tmp_ctx);
return ret;
}
ret = dsdb_request_add_controls(req2, DSDB_FLAG_AS_SYSTEM |
DSDB_SEARCH_SHOW_EXTENDED_DN);
if (ret != LDB_SUCCESS) {
talloc_free(tmp_ctx);
return ldb_error(ldb, ret, "Failed to add control");
}
ret = ldb_next_request(module, req2);
if (ret == LDB_SUCCESS) {
ret = ldb_wait(req2->handle, LDB_WAIT_ALL);
}
if (ret != LDB_SUCCESS) {
talloc_free(tmp_ctx);
return ret;
}
if (!res || res->count != 1) {
talloc_free(tmp_ctx);
return ldb_operr(ldb);
}
dn2 = res->msgs[0]->dn;
v->data = (uint8_t *)ldb_dn_get_extended_linearized(msg->elements, dn2, edn_type);
if (v->data == NULL) {
talloc_free(tmp_ctx);
return ldb_operr(ldb);
}
v->length = strlen((char *)v->data);
}
talloc_free(tmp_ctx);
return LDB_SUCCESS;
}
/*
see if we are master for a FSMO role
*/
static int dsdb_module_we_are_master(struct ldb_module *module, struct ldb_dn *dn, bool *master,
struct ldb_request *parent)
{
const char *attrs[] = { "fSMORoleOwner", NULL };
TALLOC_CTX *tmp_ctx = talloc_new(parent);
struct ldb_result *res;
int ret;
struct ldb_dn *owner_dn;
ret = dsdb_module_search_dn(module, tmp_ctx, &res,
dn, attrs,
DSDB_FLAG_NEXT_MODULE |
DSDB_FLAG_AS_SYSTEM |
DSDB_SEARCH_SHOW_EXTENDED_DN,
parent);
if (ret != LDB_SUCCESS) {
talloc_free(tmp_ctx);
return ret;
}
owner_dn = ldb_msg_find_attr_as_dn(ldb_module_get_ctx(module),
tmp_ctx, res->msgs[0], "fSMORoleOwner");
if (!owner_dn) {
*master = false;
talloc_free(tmp_ctx);
return LDB_SUCCESS;
}
ret = samdb_dn_is_our_ntdsa(ldb_module_get_ctx(module), dn, master);
if (ret != LDB_SUCCESS) {
ldb_asprintf_errstring(ldb_module_get_ctx(module), "Failed to confirm if our ntdsDsa is %s: %s",
ldb_dn_get_linearized(owner_dn), ldb_errstring(ldb_module_get_ctx(module)));
talloc_free(tmp_ctx);
return ret;
}
talloc_free(tmp_ctx);
return LDB_SUCCESS;
}
/*
add dynamically generated attributes to rootDSE result
*/
static int rootdse_add_dynamic(struct rootdse_context *ac, struct ldb_message *msg)
{
struct ldb_context *ldb;
struct rootdse_private_data *priv = talloc_get_type(ldb_module_get_private(ac->module), struct rootdse_private_data);
const char * const *attrs = ac->req->op.search.attrs;
char **server_sasl;
const struct dsdb_schema *schema;
int *val;
struct ldb_control *edn_control;
const char *dn_attrs[] = {
"configurationNamingContext",
"defaultNamingContext",
"rootDomainNamingContext",
"schemaNamingContext",
"serverName",
"validFSMOs",
"namingContexts",
NULL
};
const char *guid_attrs[] = {
"dsServiceName",
NULL
};
unsigned int i;
ldb = ldb_module_get_ctx(ac->module);
schema = dsdb_get_schema(ldb, NULL);
msg->dn = ldb_dn_new(msg, ldb, NULL);
/* don't return the distinguishedName, cn and name attributes */
ldb_msg_remove_attr(msg, "distinguishedName");
ldb_msg_remove_attr(msg, "cn");
ldb_msg_remove_attr(msg, "name");
if (do_attribute(attrs, "serverName")) {
if (ldb_msg_add_linearized_dn(msg, "serverName",
samdb_server_dn(ldb, msg)) != LDB_SUCCESS) {
goto failed;
}
}
if (do_attribute(attrs, "dnsHostName")) {
struct ldb_result *res;
int ret;
const char *dns_attrs[] = { "dNSHostName", NULL };
ret = dsdb_module_search_dn(ac->module, msg, &res, samdb_server_dn(ldb, msg),
dns_attrs,
DSDB_FLAG_NEXT_MODULE |
DSDB_FLAG_AS_SYSTEM,
ac->req);
if (ret == LDB_SUCCESS) {
const char *hostname = ldb_msg_find_attr_as_string(res->msgs[0], "dNSHostName", NULL);
if (hostname != NULL) {
if (ldb_msg_add_string(msg, "dnsHostName", hostname)) {
goto failed;
}
}
}
}
if (do_attribute(attrs, "ldapServiceName")) {
struct loadparm_context *lp_ctx
= talloc_get_type(ldb_get_opaque(ldb, "loadparm"),
struct loadparm_context);
char *ldap_service_name, *hostname;
hostname = strlower_talloc(msg, lpcfg_netbios_name(lp_ctx));
if (hostname == NULL) {
goto failed;
}
ldap_service_name = talloc_asprintf(msg, "%s:%s$@%s",
samdb_forest_name(ldb, msg),
hostname, lpcfg_realm(lp_ctx));
if (ldap_service_name == NULL) {
goto failed;
}
if (ldb_msg_add_string(msg, "ldapServiceName",
ldap_service_name) != LDB_SUCCESS) {
goto failed;
}
}
if (do_attribute(attrs, "currentTime")) {
if (ldb_msg_add_steal_string(msg, "currentTime",
ldb_timestring(msg, time(NULL))) != LDB_SUCCESS) {
goto failed;
}
}
if (priv && do_attribute(attrs, "supportedControl")) {
for (i = 0; i < priv->num_controls; i++) {
char *control = talloc_strdup(msg, priv->controls[i]);
if (!control) {
goto failed;
}
if (ldb_msg_add_steal_string(msg, "supportedControl",
control) != LDB_SUCCESS) {
goto failed;
}
}
}
if (priv && do_attribute(attrs, "namingContexts")) {
for (i = 0; i < priv->num_partitions; i++) {
struct ldb_dn *dn = priv->partitions[i];
if (ldb_msg_add_steal_string(msg, "namingContexts",
ldb_dn_alloc_linearized(msg, dn)) != LDB_SUCCESS) {
goto failed;
}
}
}
server_sasl = talloc_get_type(ldb_get_opaque(ldb, "supportedSASLMechanisms"),
char *);
if (server_sasl && do_attribute(attrs, "supportedSASLMechanisms")) {
for (i = 0; server_sasl && server_sasl[i]; i++) {
char *sasl_name = talloc_strdup(msg, server_sasl[i]);
if (!sasl_name) {
goto failed;
}
if (ldb_msg_add_steal_string(msg, "supportedSASLMechanisms",
sasl_name) != LDB_SUCCESS) {
goto failed;
}
}
}
if (do_attribute(attrs, "highestCommittedUSN")) {
uint64_t seq_num;
int ret = ldb_sequence_number(ldb, LDB_SEQ_HIGHEST_SEQ, &seq_num);
if (ret == LDB_SUCCESS) {
if (samdb_msg_add_uint64(ldb, msg, msg,
"highestCommittedUSN",
seq_num) != LDB_SUCCESS) {
goto failed;
}
}
}
if (schema && do_attribute_explicit(attrs, "dsSchemaAttrCount")) {
struct dsdb_attribute *cur;
unsigned int n = 0;
for (cur = schema->attributes; cur; cur = cur->next) {
n++;
}
if (samdb_msg_add_uint(ldb, msg, msg, "dsSchemaAttrCount",
n) != LDB_SUCCESS) {
goto failed;
}
}
if (schema && do_attribute_explicit(attrs, "dsSchemaClassCount")) {
struct dsdb_class *cur;
unsigned int n = 0;
for (cur = schema->classes; cur; cur = cur->next) {
n++;
}
if (samdb_msg_add_uint(ldb, msg, msg, "dsSchemaClassCount",
n) != LDB_SUCCESS) {
goto failed;
}
}
if (schema && do_attribute_explicit(attrs, "dsSchemaPrefixCount")) {
if (samdb_msg_add_uint(ldb, msg, msg, "dsSchemaPrefixCount",
schema->prefixmap->length) != LDB_SUCCESS) {
goto failed;
}
}
if (do_attribute_explicit(attrs, "validFSMOs")) {
struct ldb_dn *dns[3];
dns[0] = ldb_get_schema_basedn(ldb);
dns[1] = samdb_partitions_dn(ldb, msg);
dns[2] = ldb_get_default_basedn(ldb);
for (i=0; i<3; i++) {
bool master;
int ret = dsdb_module_we_are_master(ac->module, dns[i], &master, ac->req);
if (ret != LDB_SUCCESS) {
goto failed;
}
if (master && ldb_msg_add_fmt(msg, "validFSMOs", "%s",
ldb_dn_get_linearized(dns[i])) != LDB_SUCCESS) {
goto failed;
}
}
}
if (do_attribute_explicit(attrs, "vendorVersion")) {
if (ldb_msg_add_fmt(msg, "vendorVersion",
"%s", SAMBA_VERSION_STRING) != LDB_SUCCESS) {
goto failed;
}
}
if (do_attribute(attrs, "domainFunctionality")) {
if (samdb_msg_add_int(ldb, msg, msg, "domainFunctionality",
dsdb_functional_level(ldb)) != LDB_SUCCESS) {
goto failed;
}
}
if (do_attribute(attrs, "forestFunctionality")) {
if (samdb_msg_add_int(ldb, msg, msg, "forestFunctionality",
dsdb_forest_functional_level(ldb)) != LDB_SUCCESS) {
goto failed;
}
}
if (do_attribute(attrs, "domainControllerFunctionality")
&& (val = talloc_get_type(ldb_get_opaque(ldb, "domainControllerFunctionality"), int))) {
if (samdb_msg_add_int(ldb, msg, msg,
"domainControllerFunctionality",
*val) != LDB_SUCCESS) {
goto failed;
}
}
if (do_attribute(attrs, "isGlobalCatalogReady")) {
/* MS-ADTS 3.1.1.3.2.10
Note, we should only return true here is we have
completed at least one synchronisation. As both
provision and vampire do a full sync, this means we
can return true is the gc bit is set in the NTDSDSA
options */
if (ldb_msg_add_fmt(msg, "isGlobalCatalogReady",
"%s", samdb_is_gc(ldb)?"TRUE":"FALSE") != LDB_SUCCESS) {
goto failed;
}
}
if (do_attribute_explicit(attrs, "tokenGroups")) {
/* Obtain the user's session_info */
struct auth_session_info *session_info
= (struct auth_session_info *)ldb_get_opaque(ldb, "sessionInfo");
if (session_info && session_info->security_token) {
/* The list of groups this user is in */
for (i = 0; i < session_info->security_token->num_sids; i++) {
if (samdb_msg_add_dom_sid(ldb, msg, msg,
"tokenGroups",
&session_info->security_token->sids[i]) != LDB_SUCCESS) {
goto failed;
}
}
}
}
if (ac->netlogon.length > 0) {
if (ldb_msg_add_steal_value(msg, "netlogon", &ac->netlogon) != LDB_SUCCESS) {
goto failed;
}
}
/* TODO: lots more dynamic attributes should be added here */
edn_control = ldb_request_get_control(ac->req, LDB_CONTROL_EXTENDED_DN_OID);
/* convert any GUID attributes to be in the right form */
for (i=0; guid_attrs[i]; i++) {
struct ldb_result *res;
struct ldb_message_element *el;
struct ldb_dn *attr_dn;
const char *no_attrs[] = { NULL };
int ret;
if (!do_attribute(attrs, guid_attrs[i])) continue;
attr_dn = ldb_msg_find_attr_as_dn(ldb, ac->req, msg, guid_attrs[i]);
if (attr_dn == NULL) {
continue;
}
ret = dsdb_module_search_dn(ac->module, ac->req, &res,
attr_dn, no_attrs,
DSDB_FLAG_NEXT_MODULE |
DSDB_FLAG_AS_SYSTEM |
DSDB_SEARCH_SHOW_EXTENDED_DN,
ac->req);
if (ret != LDB_SUCCESS) {
return ldb_operr(ldb);
}
el = ldb_msg_find_element(msg, guid_attrs[i]);
if (el == NULL) {
return ldb_operr(ldb);
}
talloc_steal(el->values, res->msgs[0]->dn);
if (edn_control) {
struct ldb_extended_dn_control *edn;
int edn_type = 0;
edn = talloc_get_type(edn_control->data, struct ldb_extended_dn_control);
if (edn != NULL) {
edn_type = edn->type;
}
el->values[0].data = (uint8_t *)ldb_dn_get_extended_linearized(el->values,
res->msgs[0]->dn,
edn_type);
} else {
el->values[0].data = (uint8_t *)talloc_strdup(el->values,
ldb_dn_get_linearized(res->msgs[0]->dn));
}
if (el->values[0].data == NULL) {
return ldb_oom(ldb);
}
el->values[0].length = strlen((const char *)el->values[0].data);
}
/* if the client sent us the EXTENDED_DN control then we need
to expand the DNs to have GUID and SID. W2K8 join relies on
this */
if (edn_control) {
int ret;
for (i=0; dn_attrs[i]; i++) {
if (!do_attribute(attrs, dn_attrs[i])) continue;
ret = expand_dn_in_message(ac->module, msg, dn_attrs[i],
edn_control, ac->req);
if (ret != LDB_SUCCESS) {
DEBUG(0,(__location__ ": Failed to expand DN in rootDSE for %s\n",
dn_attrs[i]));
goto failed;
}
}
}
return LDB_SUCCESS;
failed:
return ldb_operr(ldb);
}
/*
handle search requests
*/
static struct rootdse_context *rootdse_init_context(struct ldb_module *module,
struct ldb_request *req)
{
struct ldb_context *ldb;
struct rootdse_context *ac;
ldb = ldb_module_get_ctx(module);
ac = talloc_zero(req, struct rootdse_context);
if (ac == NULL) {
ldb_set_errstring(ldb, "Out of Memory");
return NULL;
}
ac->module = module;
ac->req = req;
return ac;
}
static int rootdse_callback(struct ldb_request *req, struct ldb_reply *ares)
{
struct rootdse_context *ac;
int ret;
ac = talloc_get_type(req->context, struct rootdse_context);
if (!ares) {
return ldb_module_done(ac->req, NULL, NULL,
LDB_ERR_OPERATIONS_ERROR);
}
if (ares->error != LDB_SUCCESS) {
return ldb_module_done(ac->req, ares->controls,
ares->response, ares->error);
}
switch (ares->type) {
case LDB_REPLY_ENTRY:
/* for each record returned post-process to add any dynamic
attributes that have been asked for */
ret = rootdse_add_dynamic(ac, ares->message);
if (ret != LDB_SUCCESS) {
talloc_free(ares);
return ldb_module_done(ac->req, NULL, NULL, ret);
}
return ldb_module_send_entry(ac->req, ares->message, ares->controls);
case LDB_REPLY_REFERRAL:
/* should we allow the backend to return referrals in this case
* ?? */
break;
case LDB_REPLY_DONE:
return ldb_module_done(ac->req, ares->controls,
ares->response, ares->error);
}
talloc_free(ares);
return LDB_SUCCESS;
}
/*
filter from controls from clients in several ways
1) mark our registered controls as non-critical in the request
This is needed as clients may mark controls as critical even if
they are not needed at all in a request. For example, the centrify
client sets the SD_FLAGS control as critical on ldap modify
requests which are setting the dNSHostName attribute on the
machine account. That request doesn't need SD_FLAGS at all, but
centrify adds it on all ldap requests.
2) if this request is untrusted then remove any non-registered
controls that are non-critical
This is used on ldap:// connections to prevent remote users from
setting an internal control that may be dangerous
3) if this request is untrusted then fail any request that includes
a critical non-registered control
*/
static int rootdse_filter_controls(struct ldb_module *module, struct ldb_request *req)
{
unsigned int i, j;
struct rootdse_private_data *priv = talloc_get_type(ldb_module_get_private(module), struct rootdse_private_data);
bool is_untrusted;
if (!req->controls) {
return LDB_SUCCESS;
}
is_untrusted = ldb_req_is_untrusted(req);
for (i=0; req->controls[i]; i++) {
bool is_registered = false;
bool is_critical = (req->controls[i]->critical != 0);
if (req->controls[i]->oid == NULL) {
continue;
}
if (is_untrusted || is_critical) {
for (j=0; j<priv->num_controls; j++) {
if (strcasecmp(priv->controls[j], req->controls[i]->oid) == 0) {
is_registered = true;
break;
}
}
}
if (is_untrusted && !is_registered) {
if (!is_critical) {
/* remove it by marking the oid NULL */
req->controls[i]->oid = NULL;
req->controls[i]->data = NULL;
req->controls[i]->critical = 0;
continue;
}
/* its a critical unregistered control - give
an error */
ldb_asprintf_errstring(ldb_module_get_ctx(module),
"Attempt to use critical non-registered control '%s'",
req->controls[i]->oid);
return LDB_ERR_UNSUPPORTED_CRITICAL_EXTENSION;
}
if (!is_critical) {
continue;
}
/* If the control is DIRSYNC control then we keep the critical
* flag as the dirsync module will need to act upon it
*/
if (is_registered && strcmp(req->controls[i]->oid,
LDB_CONTROL_DIRSYNC_OID)!= 0) {
req->controls[i]->critical = 0;
}
}
return LDB_SUCCESS;
}
/* Ensure that anonymous users are not allowed to make anything other than rootDSE search operations */
static int rootdse_filter_operations(struct ldb_module *module, struct ldb_request *req)
{
struct auth_session_info *session_info;
struct rootdse_private_data *priv = talloc_get_type(ldb_module_get_private(module), struct rootdse_private_data);
bool is_untrusted = ldb_req_is_untrusted(req);
bool is_anonymous = true;
if (is_untrusted == false) {
return LDB_SUCCESS;
}
session_info = (struct auth_session_info *)ldb_get_opaque(ldb_module_get_ctx(module), "sessionInfo");
if (session_info) {
is_anonymous = security_token_is_anonymous(session_info->security_token);
}
if (is_anonymous == false || (priv && priv->block_anonymous == false)) {
return LDB_SUCCESS;
}
if (req->operation == LDB_SEARCH) {
if (req->op.search.scope == LDB_SCOPE_BASE && ldb_dn_is_null(req->op.search.base)) {
return LDB_SUCCESS;
}
}
ldb_set_errstring(ldb_module_get_ctx(module), "Operation unavailable without authentication");
return LDB_ERR_OPERATIONS_ERROR;
}
static int rootdse_handle_netlogon(struct rootdse_context *ac)
{
struct ldb_context *ldb;
struct ldb_parse_tree *tree;
struct loadparm_context *lp_ctx;
struct tsocket_address *src_addr;
TALLOC_CTX *tmp_ctx = talloc_new(ac->req);
const char *domain, *host, *user, *domain_guid;
char *src_addr_s = NULL;
struct dom_sid *domain_sid;
int acct_control = -1;
int version = -1;
NTSTATUS status;
struct netlogon_samlogon_response netlogon;
int ret = LDB_ERR_OPERATIONS_ERROR;
ldb = ldb_module_get_ctx(ac->module);
tree = ac->req->op.search.tree;
lp_ctx = talloc_get_type(ldb_get_opaque(ldb, "loadparm"),
struct loadparm_context);
src_addr = talloc_get_type(ldb_get_opaque(ldb, "remoteAddress"),
struct tsocket_address);
if (src_addr) {
src_addr_s = tsocket_address_inet_addr_string(src_addr,
tmp_ctx);
}
status = parse_netlogon_request(tree, lp_ctx, tmp_ctx,
&domain, &host, &user, &domain_guid,
&domain_sid, &acct_control, &version);
if (!NT_STATUS_IS_OK(status)) {
goto failed;
}
status = fill_netlogon_samlogon_response(ldb, tmp_ctx,
domain, NULL, domain_sid,
domain_guid,
user, acct_control,
src_addr_s,
version, lp_ctx,
&netlogon, false);
if (!NT_STATUS_IS_OK(status)) {
goto failed;
}
status = push_netlogon_samlogon_response(&ac->netlogon, ac, &netlogon);
if (!NT_STATUS_IS_OK(status)) {
goto failed;
}
ret = LDB_SUCCESS;
failed:
talloc_free(tmp_ctx);
return ret;
}
static int rootdse_search(struct ldb_module *module, struct ldb_request *req)
{
struct ldb_context *ldb;
struct rootdse_context *ac;
struct ldb_request *down_req;
int ret;
ret = rootdse_filter_operations(module, req);
if (ret != LDB_SUCCESS) {
return ret;
}
ret = rootdse_filter_controls(module, req);
if (ret != LDB_SUCCESS) {
return ret;
}
ldb = ldb_module_get_ctx(module);
/* see if its for the rootDSE - only a base search on the "" DN qualifies */
if (!(req->op.search.scope == LDB_SCOPE_BASE && ldb_dn_is_null(req->op.search.base))) {
/* Otherwise, pass down to the rest of the stack */
return ldb_next_request(module, req);
}
ac = rootdse_init_context(module, req);
if (ac == NULL) {
return ldb_operr(ldb);
}
if (do_attribute_explicit(req->op.search.attrs, "netlogon")) {
ret = rootdse_handle_netlogon(ac);
/* We have to return an empty result, so dont forward `ret' */
if (ret != LDB_SUCCESS) {
return ldb_module_done(ac->req, NULL, NULL, LDB_SUCCESS);
}
}
/* in our db we store the rootDSE with a DN of @ROOTDSE */
ret = ldb_build_search_req(&down_req, ldb, ac,
ldb_dn_new(ac, ldb, "@ROOTDSE"),
LDB_SCOPE_BASE,
NULL,
req->op.search.attrs,
NULL,/* for now skip the controls from the client */
ac, rootdse_callback,
req);
LDB_REQ_SET_LOCATION(down_req);
if (ret != LDB_SUCCESS) {
return ret;
}
return ldb_next_request(module, down_req);
}
static int rootdse_register_control(struct ldb_module *module, struct ldb_request *req)
{
struct rootdse_private_data *priv = talloc_get_type(ldb_module_get_private(module), struct rootdse_private_data);
char **list;
list = talloc_realloc(priv, priv->controls, char *, priv->num_controls + 1);
if (!list) {
return ldb_oom(ldb_module_get_ctx(module));
}
list[priv->num_controls] = talloc_strdup(list, req->op.reg_control.oid);
if (!list[priv->num_controls]) {
return ldb_oom(ldb_module_get_ctx(module));
}
priv->num_controls += 1;
priv->controls = list;
return ldb_module_done(req, NULL, NULL, LDB_SUCCESS);
}
static int rootdse_register_partition(struct ldb_module *module, struct ldb_request *req)
{
struct rootdse_private_data *priv = talloc_get_type(ldb_module_get_private(module), struct rootdse_private_data);
struct ldb_dn **list;
list = talloc_realloc(priv, priv->partitions, struct ldb_dn *, priv->num_partitions + 1);
if (!list) {
return ldb_oom(ldb_module_get_ctx(module));
}
list[priv->num_partitions] = ldb_dn_copy(list, req->op.reg_partition.dn);
if (!list[priv->num_partitions]) {
return ldb_operr(ldb_module_get_ctx(module));
}
priv->num_partitions += 1;
priv->partitions = list;
return ldb_module_done(req, NULL, NULL, LDB_SUCCESS);
}
static int rootdse_request(struct ldb_module *module, struct ldb_request *req)
{
switch (req->operation) {
case LDB_REQ_REGISTER_CONTROL:
return rootdse_register_control(module, req);
case LDB_REQ_REGISTER_PARTITION:
return rootdse_register_partition(module, req);
default:
break;
}
return ldb_next_request(module, req);
}
static int rootdse_init(struct ldb_module *module)
{
int ret;
struct ldb_context *ldb;
struct ldb_result *res;
struct rootdse_private_data *data;
const char *attrs[] = { "msDS-Behavior-Version", NULL };
const char *ds_attrs[] = { "dsServiceName", NULL };
TALLOC_CTX *mem_ctx;
ldb = ldb_module_get_ctx(module);
data = talloc_zero(module, struct rootdse_private_data);
if (data == NULL) {
return ldb_oom(ldb);
}
data->num_controls = 0;
data->controls = NULL;
data->num_partitions = 0;
data->partitions = NULL;
data->block_anonymous = true;
ldb_module_set_private(module, data);
ldb_set_default_dns(ldb);
ret = ldb_next_init(module);
if (ret != LDB_SUCCESS) {
return ret;
}
mem_ctx = talloc_new(data);
if (!mem_ctx) {
return ldb_oom(ldb);
}
/* Now that the partitions are set up, do a search for:
- domainControllerFunctionality
- domainFunctionality
- forestFunctionality
Then stuff these values into an opaque
*/
ret = dsdb_module_search(module, mem_ctx, &res,
ldb_get_default_basedn(ldb),
LDB_SCOPE_BASE, attrs,
DSDB_FLAG_NEXT_MODULE |
DSDB_FLAG_AS_SYSTEM,
NULL, NULL);
if (ret == LDB_SUCCESS && res->count == 1) {
int domain_behaviour_version
= ldb_msg_find_attr_as_int(res->msgs[0],
"msDS-Behavior-Version", -1);
if (domain_behaviour_version != -1) {
int *val = talloc(ldb, int);
if (!val) {
talloc_free(mem_ctx);
return ldb_oom(ldb);
}
*val = domain_behaviour_version;
ret = ldb_set_opaque(ldb, "domainFunctionality", val);
if (ret != LDB_SUCCESS) {
talloc_free(mem_ctx);
return ret;
}
}
}
ret = dsdb_module_search(module, mem_ctx, &res,
samdb_partitions_dn(ldb, mem_ctx),
LDB_SCOPE_BASE, attrs,
DSDB_FLAG_NEXT_MODULE |
DSDB_FLAG_AS_SYSTEM,
NULL, NULL);
if (ret == LDB_SUCCESS && res->count == 1) {
int forest_behaviour_version
= ldb_msg_find_attr_as_int(res->msgs[0],
"msDS-Behavior-Version", -1);
if (forest_behaviour_version != -1) {
int *val = talloc(ldb, int);
if (!val) {
talloc_free(mem_ctx);
return ldb_oom(ldb);
}
*val = forest_behaviour_version;
ret = ldb_set_opaque(ldb, "forestFunctionality", val);
if (ret != LDB_SUCCESS) {
talloc_free(mem_ctx);
return ret;
}
}
}
/* For now, our own server's location in the DB is recorded in
* the @ROOTDSE record */
ret = dsdb_module_search(module, mem_ctx, &res,
ldb_dn_new(mem_ctx, ldb, "@ROOTDSE"),
LDB_SCOPE_BASE, ds_attrs,
DSDB_FLAG_NEXT_MODULE |
DSDB_FLAG_AS_SYSTEM,
NULL, NULL);
if (ret == LDB_SUCCESS && res->count == 1) {
struct ldb_dn *ds_dn
= ldb_msg_find_attr_as_dn(ldb, mem_ctx, res->msgs[0],
"dsServiceName");
if (ds_dn) {
ret = dsdb_module_search(module, mem_ctx, &res, ds_dn,
LDB_SCOPE_BASE, attrs,
DSDB_FLAG_NEXT_MODULE |
DSDB_FLAG_AS_SYSTEM,
NULL, NULL);
if (ret == LDB_SUCCESS && res->count == 1) {
int domain_controller_behaviour_version
= ldb_msg_find_attr_as_int(res->msgs[0],
"msDS-Behavior-Version", -1);
if (domain_controller_behaviour_version != -1) {
int *val = talloc(ldb, int);
if (!val) {
talloc_free(mem_ctx);
return ldb_oom(ldb);
}
*val = domain_controller_behaviour_version;
ret = ldb_set_opaque(ldb,
"domainControllerFunctionality", val);
if (ret != LDB_SUCCESS) {
talloc_free(mem_ctx);
return ret;
}
}
}
}
}
data->block_anonymous = dsdb_block_anonymous_ops(module, NULL);
talloc_free(mem_ctx);
return LDB_SUCCESS;
}
/*
* This function gets the string SCOPE_DN:OPTIONAL_FEATURE_GUID and parse it
* to a DN and a GUID object
*/
static int get_optional_feature_dn_guid(struct ldb_request *req, struct ldb_context *ldb,
TALLOC_CTX *mem_ctx,
struct ldb_dn **op_feature_scope_dn,
struct GUID *op_feature_guid)
{
const struct ldb_message *msg = req->op.mod.message;
const char *ldb_val_str;
char *dn, *guid;
TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
NTSTATUS status;
ldb_val_str = ldb_msg_find_attr_as_string(msg, "enableOptionalFeature", NULL);
if (!ldb_val_str) {
ldb_set_errstring(ldb,
"rootdse: unable to find 'enableOptionalFeature'!");
return LDB_ERR_UNWILLING_TO_PERFORM;
}
guid = strchr(ldb_val_str, ':');
if (!guid) {
ldb_set_errstring(ldb,
"rootdse: unable to find GUID in 'enableOptionalFeature'!");
return LDB_ERR_UNWILLING_TO_PERFORM;
}
status = GUID_from_string(guid+1, op_feature_guid);
if (!NT_STATUS_IS_OK(status)) {
ldb_set_errstring(ldb,
"rootdse: bad GUID in 'enableOptionalFeature'!");
return LDB_ERR_UNWILLING_TO_PERFORM;
}
dn = talloc_strndup(tmp_ctx, ldb_val_str, guid-ldb_val_str);
if (!dn) {
ldb_set_errstring(ldb,
"rootdse: bad DN in 'enableOptionalFeature'!");
return LDB_ERR_UNWILLING_TO_PERFORM;
}
*op_feature_scope_dn = ldb_dn_new(mem_ctx, ldb, dn);
talloc_free(tmp_ctx);
return LDB_SUCCESS;
}
/*
* This function gets the OPTIONAL_FEATURE_GUID and looks for the optional feature
* ldb_message object.
*/
static int dsdb_find_optional_feature(struct ldb_module *module, struct ldb_context *ldb,
TALLOC_CTX *mem_ctx, struct GUID op_feature_guid, struct ldb_message **msg,
struct ldb_request *parent)
{
struct ldb_result *res;
TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
int ret;
ret = dsdb_module_search(module, tmp_ctx, &res, NULL, LDB_SCOPE_SUBTREE,
NULL,
DSDB_FLAG_NEXT_MODULE |
DSDB_FLAG_AS_SYSTEM |
DSDB_SEARCH_SEARCH_ALL_PARTITIONS,
parent,
"(&(objectClass=msDS-OptionalFeature)"
"(msDS-OptionalFeatureGUID=%s))",GUID_string(tmp_ctx, &op_feature_guid));
if (ret != LDB_SUCCESS) {
talloc_free(tmp_ctx);
return ret;
}
if (res->count == 0) {
talloc_free(tmp_ctx);
return LDB_ERR_NO_SUCH_OBJECT;
}
if (res->count != 1) {
ldb_asprintf_errstring(ldb,
"More than one object found matching optional feature GUID %s\n",
GUID_string(tmp_ctx, &op_feature_guid));
talloc_free(tmp_ctx);
return LDB_ERR_OPERATIONS_ERROR;
}
*msg = talloc_steal(mem_ctx, res->msgs[0]);
talloc_free(tmp_ctx);
return LDB_SUCCESS;
}
static int rootdse_enable_recycle_bin(struct ldb_module *module,struct ldb_context *ldb,
TALLOC_CTX *mem_ctx, struct ldb_dn *op_feature_scope_dn,
struct ldb_message *op_feature_msg, struct ldb_request *parent)
{
int ret;
const int domain_func_level = dsdb_functional_level(ldb);
struct ldb_dn *ntds_settings_dn;
TALLOC_CTX *tmp_ctx;
unsigned int el_count = 0;
struct ldb_message *msg;
ret = ldb_msg_find_attr_as_int(op_feature_msg, "msDS-RequiredForestBehaviorVersion", 0);
if (domain_func_level < ret){
ldb_asprintf_errstring(ldb,
"rootdse_enable_recycle_bin: Domain functional level must be at least %d\n",
ret);
return LDB_ERR_UNWILLING_TO_PERFORM;
}
tmp_ctx = talloc_new(mem_ctx);
ntds_settings_dn = samdb_ntds_settings_dn(ldb, tmp_ctx);
if (!ntds_settings_dn) {
talloc_free(tmp_ctx);
return ldb_error(ldb, LDB_ERR_OPERATIONS_ERROR, "Failed to find NTDS settings DN");
}
ntds_settings_dn = ldb_dn_copy(tmp_ctx, ntds_settings_dn);
if (!ntds_settings_dn) {
talloc_free(tmp_ctx);
return ldb_error(ldb, LDB_ERR_OPERATIONS_ERROR, "Failed to copy NTDS settings DN");
}
msg = ldb_msg_new(tmp_ctx);
msg->dn = ntds_settings_dn;
ldb_msg_add_linearized_dn(msg, "msDS-EnabledFeature", op_feature_msg->dn);
msg->elements[el_count++].flags = LDB_FLAG_MOD_ADD;
ret = dsdb_module_modify(module, msg, DSDB_FLAG_NEXT_MODULE, parent);
if (ret != LDB_SUCCESS) {
ldb_asprintf_errstring(ldb,
"rootdse_enable_recycle_bin: Failed to modify object %s - %s",
ldb_dn_get_linearized(ntds_settings_dn),
ldb_errstring(ldb));
talloc_free(tmp_ctx);
return ret;
}
msg->dn = op_feature_scope_dn;
ret = dsdb_module_modify(module, msg, DSDB_FLAG_NEXT_MODULE, parent);
if (ret != LDB_SUCCESS) {
ldb_asprintf_errstring(ldb,
"rootdse_enable_recycle_bin: Failed to modify object %s - %s",
ldb_dn_get_linearized(op_feature_scope_dn),
ldb_errstring(ldb));
talloc_free(tmp_ctx);
return ret;
}
return LDB_SUCCESS;
}
static int rootdse_enableoptionalfeature(struct ldb_module *module, struct ldb_request *req)
{
/*
steps:
- check for system (only system can enable features)
- extract GUID from the request
- find the feature object
- check functional level, must be at least msDS-RequiredForestBehaviorVersion
- check if it is already enabled (if enabled return LDAP_ATTRIBUTE_OR_VALUE_EXISTS) - probably not needed, just return error from the add/modify
- add/modify objects (see ntdsconnection code for an example)
*/
struct ldb_context *ldb = ldb_module_get_ctx(module);
struct GUID op_feature_guid;
struct ldb_dn *op_feature_scope_dn;
struct ldb_message *op_feature_msg;
struct auth_session_info *session_info =
(struct auth_session_info *)ldb_get_opaque(ldb, "sessionInfo");
TALLOC_CTX *tmp_ctx = talloc_new(ldb);
int ret;
const char *guid_string;
if (security_session_user_level(session_info, NULL) != SECURITY_SYSTEM) {
ldb_set_errstring(ldb, "rootdse: Insufficient rights for enableoptionalfeature");
return LDB_ERR_UNWILLING_TO_PERFORM;
}
ret = get_optional_feature_dn_guid(req, ldb, tmp_ctx, &op_feature_scope_dn, &op_feature_guid);
if (ret != LDB_SUCCESS) {
talloc_free(tmp_ctx);
return ret;
}
guid_string = GUID_string(tmp_ctx, &op_feature_guid);
if (!guid_string) {
ldb_set_errstring(ldb, "rootdse: bad optional feature GUID");
return LDB_ERR_UNWILLING_TO_PERFORM;
}
ret = dsdb_find_optional_feature(module, ldb, tmp_ctx, op_feature_guid, &op_feature_msg, req);
if (ret != LDB_SUCCESS) {
ldb_asprintf_errstring(ldb,
"rootdse: unable to find optional feature for %s - %s",
guid_string, ldb_errstring(ldb));
talloc_free(tmp_ctx);
return ret;
}
if (strcasecmp(DS_GUID_FEATURE_RECYCLE_BIN, guid_string) == 0) {
ret = rootdse_enable_recycle_bin(module, ldb,
tmp_ctx, op_feature_scope_dn,
op_feature_msg, req);
} else {
ldb_asprintf_errstring(ldb,
"rootdse: unknown optional feature %s",
guid_string);
talloc_free(tmp_ctx);
return LDB_ERR_UNWILLING_TO_PERFORM;
}
if (ret != LDB_SUCCESS) {
ldb_asprintf_errstring(ldb,
"rootdse: failed to set optional feature for %s - %s",
guid_string, ldb_errstring(ldb));
talloc_free(tmp_ctx);
return ret;
}
talloc_free(tmp_ctx);
return ldb_module_done(req, NULL, NULL, LDB_SUCCESS);;
}
static int rootdse_schemaupdatenow(struct ldb_module *module, struct ldb_request *req)
{
struct ldb_context *ldb = ldb_module_get_ctx(module);
struct ldb_result *ext_res;
int ret;
struct ldb_dn *schema_dn;
schema_dn = ldb_get_schema_basedn(ldb);
if (!schema_dn) {
ldb_reset_err_string(ldb);
ldb_debug(ldb, LDB_DEBUG_WARNING,
"rootdse_modify: no schema dn present: (skip ldb_extended call)\n");
return ldb_next_request(module, req);
}
ret = ldb_extended(ldb, DSDB_EXTENDED_SCHEMA_UPDATE_NOW_OID, schema_dn, &ext_res);
if (ret != LDB_SUCCESS) {
return ldb_operr(ldb);
}
talloc_free(ext_res);
return ldb_module_done(req, NULL, NULL, ret);
}
static int rootdse_schemaupgradeinprogress(struct ldb_module *module, struct ldb_request *req)
{
struct ldb_context *ldb = ldb_module_get_ctx(module);
int ret = LDB_SUCCESS;
struct ldb_dn *schema_dn;
schema_dn = ldb_get_schema_basedn(ldb);
if (!schema_dn) {
ldb_reset_err_string(ldb);
ldb_debug(ldb, LDB_DEBUG_WARNING,
"rootdse_modify: no schema dn present: (skip ldb_extended call)\n");
return ldb_next_request(module, req);
}
/* FIXME we have to do something in order to relax constraints for DRS
* setting schemaUpgradeInProgress cause the fschemaUpgradeInProgress
* in all LDAP connection (2K3/2K3R2) or in the current connection (2K8 and +)
* to be set to true.
*/
/* from 5.113 LDAPConnections in DRSR.pdf
* fschemaUpgradeInProgress: A Boolean that specifies certain constraint
* validations are skipped when adding, updating, or removing directory
* objects on the opened connection. The skipped constraint validations
* are documented in the applicable constraint sections in [MS-ADTS].
*/
return ldb_module_done(req, NULL, NULL, ret);
}
static int rootdse_add(struct ldb_module *module, struct ldb_request *req)
{
struct ldb_context *ldb = ldb_module_get_ctx(module);
int ret;
ret = rootdse_filter_operations(module, req);
if (ret != LDB_SUCCESS) {
return ret;
}
ret = rootdse_filter_controls(module, req);
if (ret != LDB_SUCCESS) {
return ret;
}
/*
If dn is not "" we should let it pass through
*/
if (!ldb_dn_is_null(req->op.add.message->dn)) {
return ldb_next_request(module, req);
}
ldb_set_errstring(ldb, "rootdse_add: you cannot add a new rootdse entry!");
return LDB_ERR_NAMING_VIOLATION;
}
static int rootdse_start_trans(struct ldb_module *module)
{
int ret;
struct ldb_context *ldb = ldb_module_get_ctx(module);
struct rootdse_private_data *data = talloc_get_type_abort(ldb_module_get_private(module),
struct rootdse_private_data);
ret = ldb_next_start_trans(module);
if (ret == LDB_SUCCESS) {
if (data->private_ev != NULL) {
return ldb_operr(ldb);
}
data->private_ev = s4_event_context_init(data);
if (data->private_ev == NULL) {
return ldb_operr(ldb);
}
data->saved_ev = ldb_get_event_context(ldb);
ldb_set_event_context(ldb, data->private_ev);
}
return ret;
}
static int rootdse_end_trans(struct ldb_module *module)
{
int ret;
struct ldb_context *ldb = ldb_module_get_ctx(module);
struct rootdse_private_data *data = talloc_get_type_abort(ldb_module_get_private(module),
struct rootdse_private_data);
ret = ldb_next_end_trans(module);
if (data->saved_ev == NULL) {
return ldb_operr(ldb);
}
if (data->private_ev != ldb_get_event_context(ldb)) {
return ldb_operr(ldb);
}
ldb_set_event_context(ldb, data->saved_ev);
data->saved_ev = NULL;
TALLOC_FREE(data->private_ev);
return ret;
}
static int rootdse_del_trans(struct ldb_module *module)
{
int ret;
struct ldb_context *ldb = ldb_module_get_ctx(module);
struct rootdse_private_data *data = talloc_get_type_abort(ldb_module_get_private(module),
struct rootdse_private_data);
ret = ldb_next_del_trans(module);
if (data->saved_ev == NULL) {
return ldb_operr(ldb);
}
if (data->private_ev != ldb_get_event_context(ldb)) {
return ldb_operr(ldb);
}
ldb_set_event_context(ldb, data->saved_ev);
data->saved_ev = NULL;
TALLOC_FREE(data->private_ev);
return ret;
}
struct fsmo_transfer_state {
struct ldb_context *ldb;
struct ldb_request *req;
struct ldb_module *module;
};
/*
called when a FSMO transfer operation has completed
*/
static void rootdse_fsmo_transfer_callback(struct tevent_req *treq)
{
struct fsmo_transfer_state *fsmo = tevent_req_callback_data(treq, struct fsmo_transfer_state);
NTSTATUS status;
WERROR werr;
int ret;
struct ldb_request *req = fsmo->req;
struct ldb_context *ldb = fsmo->ldb;
struct ldb_module *module = fsmo->module;
status = dcerpc_drepl_takeFSMORole_recv(treq, fsmo, &werr);
talloc_free(fsmo);
if (!NT_STATUS_IS_OK(status)) {
ldb_asprintf_errstring(ldb, "Failed FSMO transfer: %s", nt_errstr(status));
/*
* Now that it is failed, start the transaction up
* again so the wrappers can close it without additional error
*/
rootdse_start_trans(module);
ldb_module_done(req, NULL, NULL, LDB_ERR_UNAVAILABLE);
return;
}
if (!W_ERROR_IS_OK(werr)) {
ldb_asprintf_errstring(ldb, "Failed FSMO transfer: %s", win_errstr(werr));
/*
* Now that it is failed, start the transaction up
* again so the wrappers can close it without additional error
*/
rootdse_start_trans(module);
ldb_module_done(req, NULL, NULL, LDB_ERR_UNAVAILABLE);
return;
}
/*
* Now that it is done, start the transaction up again so the
* wrappers can close it without error
*/
ret = rootdse_start_trans(module);
ldb_module_done(req, NULL, NULL, ret);
}
static int rootdse_become_master(struct ldb_module *module,
struct ldb_request *req,
enum drepl_role_master role)
{
struct imessaging_context *msg;
struct ldb_context *ldb = ldb_module_get_ctx(module);
TALLOC_CTX *tmp_ctx = talloc_new(req);
struct loadparm_context *lp_ctx = ldb_get_opaque(ldb, "loadparm");
bool am_rodc;
struct dcerpc_binding_handle *irpc_handle;
int ret;
struct auth_session_info *session_info;
enum security_user_level level;
struct fsmo_transfer_state *fsmo;
struct tevent_req *treq;
session_info = (struct auth_session_info *)ldb_get_opaque(ldb_module_get_ctx(module), "sessionInfo");
level = security_session_user_level(session_info, NULL);
if (level < SECURITY_ADMINISTRATOR) {
return ldb_error(ldb, LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS, "Denied rootDSE modify for non-administrator");
}
ret = samdb_rodc(ldb, &am_rodc);
if (ret != LDB_SUCCESS) {
return ldb_error(ldb, ret, "Could not determine if server is RODC.");
}
if (am_rodc) {
return ldb_error(ldb, LDB_ERR_UNWILLING_TO_PERFORM,
"RODC cannot become a role master.");
}
/*
* We always delete the transaction, not commit it, because
* this gives the least supprise to this supprising action (as
* we will never record anything done to this point
*/
rootdse_del_trans(module);
msg = imessaging_client_init(tmp_ctx, lp_ctx,
ldb_get_event_context(ldb));
if (!msg) {
ldb_asprintf_errstring(ldb, "Failed to generate client messaging context in %s", lpcfg_imessaging_path(tmp_ctx, lp_ctx));
return LDB_ERR_OPERATIONS_ERROR;
}
irpc_handle = irpc_binding_handle_by_name(tmp_ctx, msg,
"dreplsrv",
&ndr_table_irpc);
if (irpc_handle == NULL) {
return ldb_oom(ldb);
}
fsmo = talloc_zero(req, struct fsmo_transfer_state);
if (fsmo == NULL) {
return ldb_oom(ldb);
}
fsmo->ldb = ldb;
fsmo->req = req;
fsmo->module = module;
/*
* we send the call asynchronously, as the ldap client is
* expecting to get an error back if the role transfer fails
*
* We need more than the default 10 seconds IRPC allows, so
* set a longer timeout (default ldb timeout is 300 seconds).
* We send an async reply when we are done.
*
* We are the first module, so don't bother working out how
* long we have spent so far.
*/
dcerpc_binding_handle_set_timeout(irpc_handle, req->timeout);
treq = dcerpc_drepl_takeFSMORole_send(req, ldb_get_event_context(ldb), irpc_handle, role);
if (treq == NULL) {
return ldb_oom(ldb);
}
tevent_req_set_callback(treq, rootdse_fsmo_transfer_callback, fsmo);
return LDB_SUCCESS;
}
static int rootdse_modify(struct ldb_module *module, struct ldb_request *req)
{
struct ldb_context *ldb = ldb_module_get_ctx(module);
int ret;
ret = rootdse_filter_operations(module, req);
if (ret != LDB_SUCCESS) {
return ret;
}
ret = rootdse_filter_controls(module, req);
if (ret != LDB_SUCCESS) {
return ret;
}
/*
If dn is not "" we should let it pass through
*/
if (!ldb_dn_is_null(req->op.mod.message->dn)) {
return ldb_next_request(module, req);
}
/*
dn is empty so check for schemaUpdateNow attribute
"The type of modification and values specified in the LDAP modify operation do not matter." MSDN
*/
if (ldb_msg_find_element(req->op.mod.message, "schemaUpdateNow")) {
return rootdse_schemaupdatenow(module, req);
}
if (ldb_msg_find_element(req->op.mod.message, "becomeDomainMaster")) {
return rootdse_become_master(module, req, DREPL_NAMING_MASTER);
}
if (ldb_msg_find_element(req->op.mod.message, "becomeInfrastructureMaster")) {
return rootdse_become_master(module, req, DREPL_INFRASTRUCTURE_MASTER);
}
if (ldb_msg_find_element(req->op.mod.message, "becomeRidMaster")) {
return rootdse_become_master(module, req, DREPL_RID_MASTER);
}
if (ldb_msg_find_element(req->op.mod.message, "becomeSchemaMaster")) {
return rootdse_become_master(module, req, DREPL_SCHEMA_MASTER);
}
if (ldb_msg_find_element(req->op.mod.message, "becomePdc")) {
return rootdse_become_master(module, req, DREPL_PDC_MASTER);
}
if (ldb_msg_find_element(req->op.mod.message, "enableOptionalFeature")) {
return rootdse_enableoptionalfeature(module, req);
}
if (ldb_msg_find_element(req->op.mod.message, "schemaUpgradeInProgress")) {
return rootdse_schemaupgradeinprogress(module, req);
}
ldb_set_errstring(ldb, "rootdse_modify: unknown attribute to change!");
return LDB_ERR_UNWILLING_TO_PERFORM;
}
static int rootdse_rename(struct ldb_module *module, struct ldb_request *req)
{
struct ldb_context *ldb = ldb_module_get_ctx(module);
int ret;
ret = rootdse_filter_operations(module, req);
if (ret != LDB_SUCCESS) {
return ret;
}
ret = rootdse_filter_controls(module, req);
if (ret != LDB_SUCCESS) {
return ret;
}
/*
If dn is not "" we should let it pass through
*/
if (!ldb_dn_is_null(req->op.rename.olddn)) {
return ldb_next_request(module, req);
}
ldb_set_errstring(ldb, "rootdse_remove: you cannot rename the rootdse entry!");
return LDB_ERR_NO_SUCH_OBJECT;
}
static int rootdse_delete(struct ldb_module *module, struct ldb_request *req)
{
struct ldb_context *ldb = ldb_module_get_ctx(module);
int ret;
ret = rootdse_filter_operations(module, req);
if (ret != LDB_SUCCESS) {
return ret;
}
ret = rootdse_filter_controls(module, req);
if (ret != LDB_SUCCESS) {
return ret;
}
/*
If dn is not "" we should let it pass through
*/
if (!ldb_dn_is_null(req->op.del.dn)) {
return ldb_next_request(module, req);
}
ldb_set_errstring(ldb, "rootdse_remove: you cannot delete the rootdse entry!");
return LDB_ERR_NO_SUCH_OBJECT;
}
static int rootdse_extended(struct ldb_module *module, struct ldb_request *req)
{
int ret;
ret = rootdse_filter_operations(module, req);
if (ret != LDB_SUCCESS) {
return ret;
}
ret = rootdse_filter_controls(module, req);
if (ret != LDB_SUCCESS) {
return ret;
}
return ldb_next_request(module, req);
}
static const struct ldb_module_ops ldb_rootdse_module_ops = {
.name = "rootdse",
.init_context = rootdse_init,
.search = rootdse_search,
.request = rootdse_request,
.add = rootdse_add,
.modify = rootdse_modify,
.rename = rootdse_rename,
.extended = rootdse_extended,
.del = rootdse_delete,
.start_transaction = rootdse_start_trans,
.end_transaction = rootdse_end_trans,
.del_transaction = rootdse_del_trans
};
int ldb_rootdse_module_init(const char *version)
{
LDB_MODULE_CHECK_VERSION(version);
return ldb_register_module(&ldb_rootdse_module_ops);
}
|