Samba4/LDB/Partition: Difference between revisions

From SambaWiki
m (Samba4/LDB/partition moved to Samba4/LDB/Partition)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
= Source Code =

The source code is located at [http://gitweb.samba.org/?p=samba.git;a=blob;f=source4/dsdb/samdb/ldb_modules/partition.c source4/dsdb/samdb/ldb_modules/partition.c].

= Structures =
= Structures =


Line 40: Line 44:


The configuration is stored in the @PARTITION entry in the following attributes:
The configuration is stored in the @PARTITION entry in the following attributes:
* partition
* partition: Base DN and URL of the partition.
* replicateEntries
* replicateEntries: Entries to replicate to all partitions.
* modules: Base DN and modules for the partition.
* modules


This method registers the following controls:
This method registers the following controls:
* domain scope (1.2.840.113556.1.4.1339)
* domain scope (1.2.840.113556.1.4.1339)
* search options (1.2.840.113556.1.4.1340)
* search options (1.2.840.113556.1.4.1340)

== partition_add() ==

This method intercepts search requests and redirects the request to the appropriate partitions.

== partition_modify() ==

This method intercepts search requests and redirects the request to the appropriate partitions.

== partition_delete() ==

This method intercepts search requests and redirects the request to the appropriate partitions.

== partition_rename() ==

This method intercepts search requests and redirects the request to the appropriate partitions.

== partition_search() ==

This method intercepts search requests, removes domain scope and search options controls, and redirects the request to the appropriate partitions.

Latest revision as of 21:08, 13 October 2009

Source Code

The source code is located at source4/dsdb/samdb/ldb_modules/partition.c.

Structures

dsdb_partition

struct dsdb_partition {
    struct ldb_module *module;
    struct dsdb_control_current_partition *ctrl;
};

part_request

struct part_request {
    struct ldb_module *module;
    struct ldb_request *req;
};

partition_context

struct partition_context {
    struct ldb_module *module;
    struct ldb_request *req;
    bool got_success;

    struct part_request *part_req;
    int num_requests;
    int finished_requests;
};

Methods

partition_init()

This method reads the partition configuration from the SAM database, connects to the backends, registers the partitions, load modules, and register controls.

The configuration is stored in the @PARTITION entry in the following attributes:

  • partition: Base DN and URL of the partition.
  • replicateEntries: Entries to replicate to all partitions.
  • modules: Base DN and modules for the partition.

This method registers the following controls:

  • domain scope (1.2.840.113556.1.4.1339)
  • search options (1.2.840.113556.1.4.1340)

partition_add()

This method intercepts search requests and redirects the request to the appropriate partitions.

partition_modify()

This method intercepts search requests and redirects the request to the appropriate partitions.

partition_delete()

This method intercepts search requests and redirects the request to the appropriate partitions.

partition_rename()

This method intercepts search requests and redirects the request to the appropriate partitions.

partition_search()

This method intercepts search requests, removes domain scope and search options controls, and redirects the request to the appropriate partitions.