idmap_adex: Add new idmap plugin for support RFC2307 enabled AD forests.
authorGerald (Jerry) Carter <jerry@samba.org>
Fri, 19 Sep 2008 17:27:15 +0000 (12:27 -0500)
committerGerald W. Carter <jerry@samba.org>
Mon, 22 Sep 2008 22:46:19 +0000 (15:46 -0700)
commit7d5fb989ac9942a6f3394853f6930d34ef6adf7b
treec35d3bed0d589d607cc4c9d1ba75dd9f89f85c0b
parentb18449dbd587e978a65d8de3b8df96371d4bcdcb
idmap_adex: Add new idmap plugin for support RFC2307 enabled AD forests.

The adex idmap/nss_info plugin is an adapation of the Likewise
Enterprise plugin with support for OU based cells removed
(since the Windows pieces to manage the cells are not available).

This plugin supports

  * The RFC2307 schema for users and groups.
  * Connections to trusted domains
  * Global catalog searches
  * Cross forest trusts
  * User and group aliases

Prerequiste: Add the following attributes to the Partial Attribute
Set in global catalog:

  * uidNumber
  * uid
  * gidNumber

A basic config using the current trunk code would look like

 [global]
      idmap backend = adex
      idmap uid = 10000 - 19999
      idmap gid = 20000 - 29999
      idmap config US:backend = adex
      idmap config US:range = 20000 - 29999
      winbind nss info = adex

       winbind normalize names = yes
       winbind refresh tickets = yes
       template homedir = /home/%D/%U
       template shell = /bin/bash
source3/Makefile.in
source3/configure.in
source3/winbindd/idmap_adex/cell_util.c [new file with mode: 0644]
source3/winbindd/idmap_adex/domain_util.c [new file with mode: 0644]
source3/winbindd/idmap_adex/gc_util.c [new file with mode: 0644]
source3/winbindd/idmap_adex/idmap_adex.c [new file with mode: 0644]
source3/winbindd/idmap_adex/idmap_adex.h [new file with mode: 0644]
source3/winbindd/idmap_adex/likewise_cell.c [new file with mode: 0644]
source3/winbindd/idmap_adex/provider_unified.c [new file with mode: 0644]