LCOV - code coverage report
Current view: top level - source4/dsdb/repl - drepl_ridalloc.c (source / functions) Hit Total Coverage
Test: coverage report for abartlet/fix-coverage dd10fb34 Lines: 69 98 70.4 %
Date: 2021-09-23 10:06:22 Functions: 5 5 100.0 %

          Line data    Source code
       1             : /*
       2             :    Unix SMB/CIFS Implementation.
       3             : 
       4             :    DSDB replication service - RID allocation code
       5             : 
       6             :    Copyright (C) Andrew Tridgell 2010
       7             :    Copyright (C) Andrew Bartlett 2010
       8             : 
       9             :    based on drepl_notify.c
      10             : 
      11             :    This program is free software; you can redistribute it and/or modify
      12             :    it under the terms of the GNU General Public License as published by
      13             :    the Free Software Foundation; either version 3 of the License, or
      14             :    (at your option) any later version.
      15             : 
      16             :    This program is distributed in the hope that it will be useful,
      17             :    but WITHOUT ANY WARRANTY; without even the implied warranty of
      18             :    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      19             :    GNU General Public License for more details.
      20             : 
      21             :    You should have received a copy of the GNU General Public License
      22             :    along with this program.  If not, see <http://www.gnu.org/licenses/>.
      23             : 
      24             : */
      25             : 
      26             : #include "includes.h"
      27             : #include "ldb_module.h"
      28             : #include "dsdb/samdb/samdb.h"
      29             : #include "samba/service.h"
      30             : #include "dsdb/repl/drepl_service.h"
      31             : #include "param/param.h"
      32             : 
      33             : #undef DBGC_CLASS
      34             : #define DBGC_CLASS            DBGC_DRS_REPL
      35             : 
      36             : /*
      37             :   called when a rid allocation request has completed
      38             :  */
      39           3 : static void drepl_new_rid_pool_callback(struct dreplsrv_service *service,
      40             :                                         WERROR werr,
      41             :                                         enum drsuapi_DsExtendedError ext_err,
      42             :                                         void *cb_data)
      43             : {
      44           3 :         if (!W_ERROR_IS_OK(werr)) {
      45           0 :                 DEBUG(0,(__location__ ": RID Manager failed RID allocation - %s - extended_ret[0x%X]\n",
      46             :                          win_errstr(werr), ext_err));
      47             :         } else {
      48           3 :                 DEBUG(3,(__location__ ": RID Manager completed RID allocation OK\n"));
      49             :         }
      50             : 
      51           3 :         service->rid_alloc_in_progress = false;
      52           3 : }
      53             : 
      54             : /*
      55             :   schedule a getncchanges request to the RID Manager to ask for a new
      56             :   set of RIDs using DRSUAPI_EXOP_FSMO_RID_ALLOC
      57             :  */
      58           3 : static WERROR drepl_request_new_rid_pool(struct dreplsrv_service *service,
      59             :                                          struct ldb_dn *rid_manager_dn, struct ldb_dn *fsmo_role_dn,
      60             :                                          uint64_t alloc_pool)
      61             : {
      62           3 :         WERROR werr = drepl_request_extended_op(service,
      63             :                                                 rid_manager_dn,
      64             :                                                 fsmo_role_dn,
      65             :                                                 DRSUAPI_EXOP_FSMO_RID_ALLOC,
      66             :                                                 alloc_pool,
      67             :                                                 0,
      68             :                                                 drepl_new_rid_pool_callback, NULL);
      69           3 :         if (W_ERROR_IS_OK(werr)) {
      70           3 :                 service->rid_alloc_in_progress = true;
      71             :         }
      72           3 :         return werr;
      73             : }
      74             : 
      75             : 
      76             : /*
      77             :   see if we are on the last pool we have
      78             :  */
      79          31 : static int drepl_ridalloc_pool_exhausted(struct ldb_context *ldb,
      80             :                                          bool *exhausted,
      81             :                                          uint64_t *_alloc_pool)
      82             : {
      83             :         struct ldb_dn *server_dn, *machine_dn, *rid_set_dn;
      84          31 :         TALLOC_CTX *tmp_ctx = talloc_new(ldb);
      85             :         uint64_t alloc_pool;
      86             :         uint64_t prev_pool;
      87             :         uint32_t prev_pool_lo, prev_pool_hi;
      88             :         uint32_t next_rid;
      89             :         static const char * const attrs[] = {
      90             :                 "rIDAllocationPool",
      91             :                 "rIDPreviousAllocationPool",
      92             :                 "rIDNextRid",
      93             :                 NULL
      94             :         };
      95             :         int ret;
      96             :         struct ldb_result *res;
      97             : 
      98          31 :         *exhausted = false;
      99          31 :         *_alloc_pool = UINT64_MAX;
     100             : 
     101          31 :         server_dn = ldb_dn_get_parent(tmp_ctx, samdb_ntds_settings_dn(ldb, tmp_ctx));
     102          31 :         if (!server_dn) {
     103           0 :                 talloc_free(tmp_ctx);
     104           0 :                 return ldb_operr(ldb);
     105             :         }
     106             : 
     107          31 :         ret = samdb_reference_dn(ldb, tmp_ctx, server_dn, "serverReference", &machine_dn);
     108          31 :         if (ret != LDB_SUCCESS) {
     109           0 :                 DEBUG(0,(__location__ ": Failed to find serverReference in %s - %s\n",
     110             :                          ldb_dn_get_linearized(server_dn), ldb_errstring(ldb)));
     111           0 :                 talloc_free(tmp_ctx);
     112           0 :                 return ret;
     113             :         }
     114             : 
     115          31 :         ret = samdb_reference_dn(ldb, tmp_ctx, machine_dn, "rIDSetReferences", &rid_set_dn);
     116          31 :         if (ret == LDB_ERR_NO_SUCH_ATTRIBUTE) {
     117           0 :                 *exhausted = true;
     118           0 :                 *_alloc_pool = 0;
     119           0 :                 talloc_free(tmp_ctx);
     120           0 :                 return LDB_SUCCESS;
     121             :         }
     122          31 :         if (ret != LDB_SUCCESS) {
     123           0 :                 DEBUG(0,(__location__ ": Failed to find rIDSetReferences in %s - %s\n",
     124             :                          ldb_dn_get_linearized(machine_dn), ldb_errstring(ldb)));
     125           0 :                 talloc_free(tmp_ctx);
     126           0 :                 return ret;
     127             :         }
     128             : 
     129          31 :         ret = ldb_search(ldb, tmp_ctx, &res, rid_set_dn, LDB_SCOPE_BASE, attrs, NULL);
     130          31 :         if (ret != LDB_SUCCESS) {
     131           0 :                 DEBUG(0,(__location__ ": Failed to load RID Set attrs from %s - %s\n",
     132             :                          ldb_dn_get_linearized(rid_set_dn), ldb_errstring(ldb)));
     133           0 :                 talloc_free(tmp_ctx);
     134           0 :                 return ret;
     135             :         }
     136             : 
     137          31 :         alloc_pool = ldb_msg_find_attr_as_uint64(res->msgs[0], "rIDAllocationPool", 0);
     138          31 :         prev_pool = ldb_msg_find_attr_as_uint64(res->msgs[0], "rIDPreviousAllocationPool", 0);
     139          31 :         prev_pool_lo = prev_pool & 0xFFFFFFFF;
     140          31 :         prev_pool_hi = prev_pool >> 32;
     141          31 :         next_rid = ldb_msg_find_attr_as_uint(res->msgs[0], "rIDNextRid", 0);
     142             : 
     143          31 :         if (alloc_pool != prev_pool) {
     144          23 :                 talloc_free(tmp_ctx);
     145          23 :                 return LDB_SUCCESS;
     146             :         }
     147             : 
     148           8 :         if (next_rid < (prev_pool_hi + prev_pool_lo)/2) {
     149           5 :                 talloc_free(tmp_ctx);
     150           5 :                 return LDB_SUCCESS;
     151             :         }
     152             : 
     153           3 :         *exhausted = true;
     154           3 :         *_alloc_pool = alloc_pool;
     155           3 :         talloc_free(tmp_ctx);
     156           3 :         return LDB_SUCCESS;
     157             : }
     158             : 
     159             : 
     160             : /*
     161             :   see if we are low on RIDs in the RID Set rIDAllocationPool. If we
     162             :   are, then schedule a replication call with DRSUAPI_EXOP_FSMO_RID_ALLOC
     163             :   to the RID Manager
     164             :  */
     165         386 : WERROR dreplsrv_ridalloc_check_rid_pool(struct dreplsrv_service *service)
     166             : {
     167             :         struct ldb_dn *rid_manager_dn, *fsmo_role_dn;
     168         386 :         TALLOC_CTX *tmp_ctx = talloc_new(service);
     169         386 :         struct ldb_context *ldb = service->samdb;
     170             :         bool exhausted;
     171             :         WERROR werr;
     172             :         int ret;
     173             :         uint64_t alloc_pool;
     174             :         bool is_us;
     175             : 
     176         386 :         if (service->am_rodc) {
     177          12 :                 talloc_free(tmp_ctx);
     178          12 :                 return WERR_OK;
     179             :         }
     180             : 
     181         374 :         if (service->rid_alloc_in_progress) {
     182          80 :                 talloc_free(tmp_ctx);
     183          80 :                 return WERR_OK;
     184             :         }
     185             : 
     186             :         /*
     187             :           steps:
     188             :             - find who the RID Manager is
     189             :             - if we are the RID Manager then nothing to do
     190             :             - find our RID Set object
     191             :             - load rIDAllocationPool and rIDPreviousAllocationPool
     192             :             - if rIDAllocationPool != rIDPreviousAllocationPool then
     193             :               nothing to do
     194             :             - schedule a getncchanges with DRSUAPI_EXOP_FSMO_RID_ALLOC
     195             :               to the RID Manager
     196             :          */
     197             : 
     198             :         /* work out who is the RID Manager */
     199         294 :         ret = samdb_rid_manager_dn(ldb, tmp_ctx, &rid_manager_dn);
     200         294 :         if (ret != LDB_SUCCESS) {
     201           0 :                 DEBUG(0, (__location__ ": Failed to find RID Manager object - %s\n", ldb_errstring(ldb)));
     202           0 :                 talloc_free(tmp_ctx);
     203           0 :                 return WERR_DS_DRA_INTERNAL_ERROR;
     204             :         }
     205             : 
     206             :         /* find the DN of the RID Manager */
     207         294 :         ret = samdb_reference_dn(ldb, tmp_ctx, rid_manager_dn, "fSMORoleOwner", &fsmo_role_dn);
     208         294 :         if (ret != LDB_SUCCESS) {
     209           0 :                 DEBUG(0,(__location__ ": Failed to find fSMORoleOwner in RID Manager object - %s\n",
     210             :                          ldb_errstring(ldb)));
     211           0 :                 talloc_free(tmp_ctx);
     212           0 :                 return WERR_DS_DRA_INTERNAL_ERROR;
     213             :         }
     214             : 
     215         294 :         ret = samdb_dn_is_our_ntdsa(ldb, fsmo_role_dn, &is_us);
     216         294 :         if (ret != LDB_SUCCESS) {
     217           0 :                 DEBUG(0,(__location__ ": Failed to find detrmine if %s is our ntdsDsa object - %s\n",
     218             :                          ldb_dn_get_linearized(fsmo_role_dn), ldb_errstring(ldb)));
     219           0 :                 talloc_free(tmp_ctx);
     220           0 :                 return WERR_DS_DRA_INTERNAL_ERROR;
     221             :         }
     222             : 
     223         294 :         if (is_us) {
     224             :                 /* we are the RID Manager - no need to do a
     225             :                    DRSUAPI_EXOP_FSMO_RID_ALLOC */
     226         263 :                 talloc_free(tmp_ctx);
     227         263 :                 return WERR_OK;
     228             :         }
     229             : 
     230          31 :         ret = drepl_ridalloc_pool_exhausted(ldb, &exhausted, &alloc_pool);
     231          31 :         if (ret != LDB_SUCCESS) {
     232           0 :                 talloc_free(tmp_ctx);
     233           0 :                 return WERR_DS_DRA_INTERNAL_ERROR;
     234             :         }
     235             : 
     236          31 :         if (!exhausted) {
     237             :                 /* don't need a new pool */
     238          28 :                 talloc_free(tmp_ctx);
     239          28 :                 return WERR_OK;
     240             :         }
     241             : 
     242           3 :         DEBUG(2,(__location__ ": Requesting more RIDs from RID Manager\n"));
     243             : 
     244           3 :         werr = drepl_request_new_rid_pool(service, rid_manager_dn, fsmo_role_dn, alloc_pool);
     245           3 :         talloc_free(tmp_ctx);
     246           3 :         return werr;
     247             : }
     248             : 
     249             : /* called by the samldb ldb module to tell us to ask for a new RID
     250             :    pool */
     251          87 : void dreplsrv_allocate_rid(struct imessaging_context *msg,
     252             :                            void *private_data,
     253             :                            uint32_t msg_type,
     254             :                            struct server_id server_id,
     255             :                            size_t num_fds,
     256             :                            int *fds,
     257             :                            DATA_BLOB *data)
     258             : {
     259          87 :         struct dreplsrv_service *service = talloc_get_type(private_data, struct dreplsrv_service);
     260          87 :         if (num_fds != 0) {
     261           0 :                 DBG_WARNING("Received %zu fds, ignoring message\n", num_fds);
     262           0 :                 return;
     263             :         }
     264          87 :         dreplsrv_ridalloc_check_rid_pool(service);
     265             : }

Generated by: LCOV version 1.13