diff options
author | Alexander Bokovoy <ab@samba.org> | 2013-04-03 16:37:00 +0300 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2013-04-09 20:29:18 +0200 |
commit | 5952755755fb0ea7f942bb564ca1cfdca5730113 (patch) | |
tree | 555ca497c14a9b2113f187ba5c9c0f8baf24def7 /source3/passdb/ABI | |
parent | b752417f2d6c478524f0fbf0fda1a5d0401b6f9e (diff) | |
download | samba-5952755755fb0ea7f942bb564ca1cfdca5730113.tar.gz samba-5952755755fb0ea7f942bb564ca1cfdca5730113.tar.bz2 samba-5952755755fb0ea7f942bb564ca1cfdca5730113.zip |
PASSDB: add support to set and enumerate UPN suffixes associated with our forest
Samba PDC may manage a forest containing DNS domains in addition to the primary one.
Information about them is advertised via netr_DsRGetForestTrustInformation when
trusted_domain_name is NULL, according to MS-NRPC and MS-LSAD, and
via netr_GetForestTrustInformation.
This changeset only expands PASSDB API; how suffixes are maintained is left
to specific PDB modules. Set function is added so that suffixes could be
managed through 'net' and other Samba utilities, if possible.
One possible implementation is available for ipasam module in FreeIPA:
http://git.fedorahosted.org/cgit/freeipa.git/commit/?id=cc56723151c9ebf58d891e85617319d861af14a4
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/passdb/ABI')
-rw-r--r-- | source3/passdb/ABI/pdb-0.sigs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/passdb/ABI/pdb-0.sigs b/source3/passdb/ABI/pdb-0.sigs index 4108b9a23b..51810efeca 100644 --- a/source3/passdb/ABI/pdb-0.sigs +++ b/source3/passdb/ABI/pdb-0.sigs @@ -112,6 +112,7 @@ pdb_enum_group_members: NTSTATUS (TALLOC_CTX *, const struct dom_sid *, uint32_t pdb_enum_group_memberships: NTSTATUS (TALLOC_CTX *, struct samu *, struct dom_sid **, gid_t **, uint32_t *) pdb_enum_trusted_domains: NTSTATUS (TALLOC_CTX *, uint32_t *, struct pdb_trusted_domain ***) pdb_enum_trusteddoms: NTSTATUS (TALLOC_CTX *, uint32_t *, struct trustdom_info ***) +pdb_enum_upn_suffixes: NTSTATUS (TALLOC_CTX *, uint32_t *, char ***) pdb_find_backend_entry: struct pdb_init_function_entry *(const char *) pdb_get_account_policy: bool (enum pdb_policy_type, uint32_t *) pdb_get_acct_ctrl: uint32_t (const struct samu *) @@ -230,6 +231,7 @@ pdb_set_trusted_domain: NTSTATUS (const char *, const struct pdb_trusted_domain pdb_set_trusteddom_pw: bool (const char *, const char *, const struct dom_sid *) pdb_set_unix_primary_group: NTSTATUS (TALLOC_CTX *, struct samu *) pdb_set_unknown_6: bool (struct samu *, uint32_t, enum pdb_value_state) +pdb_set_upn_suffixes: NTSTATUS (uint32_t, const char **) pdb_set_user_sid: bool (struct samu *, const struct dom_sid *, enum pdb_value_state) pdb_set_user_sid_from_rid: bool (struct samu *, uint32_t, enum pdb_value_state) pdb_set_user_sid_from_string: bool (struct samu *, const char *, enum pdb_value_state) |