s3: Convert cli_ulogoff to the async API
[ira/wip.git] / source3 / include / passdb.h
index 21feb7208f00c66400e3699a36a95e467dfca4fb..9be2a697a606ad932ad373a4b527f8ffadf497d5 100644 (file)
@@ -5,64 +5,41 @@
    Copyright (C) Luke Kenneth Casson Leighton 1998 - 2000
    Copyright (C) Andrew Bartlett 2002
    Copyright (C) Simo Sorce 2003
-   
+
    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 2 of the License, or
+   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, write to the Free Software
-   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef _PASSDB_H
 #define _PASSDB_H
 
+/**********************************************************************
+ * Masks for mappings between unix uid and gid types and
+ * NT RIDS.
+ **********************************************************************/
 
-/*
- * fields_present flags meanings
- * same names as found in samba4 idl files
- */
+#define BASE_RID (0x000003E8L)
 
-#define ACCT_USERNAME          0x00000001
-#define ACCT_FULL_NAME         0x00000002
-#define ACCT_RID               0x00000004
-#define ACCT_PRIMARY_GID       0x00000008
-#define ACCT_ADMIN_DESC                0x00000010
-#define ACCT_DESCRIPTION       0x00000020
-#define ACCT_HOME_DIR          0x00000040
-#define ACCT_HOME_DRIVE                0x00000080
-#define ACCT_LOGON_SCRIPT      0x00000100
-#define ACCT_PROFILE           0x00000200
-#define ACCT_WORKSTATIONS      0x00000400
-#define ACCT_LAST_LOGON                0x00000800
-#define ACCT_LAST_LOGOFF       0x00001000
-#define ACCT_LOGON_HOURS       0x00002000
-#define ACCT_BAD_PWD_COUNT     0x00004000
-#define ACCT_NUM_LOGONS                0x00008000
-#define ACCT_ALLOW_PWD_CHANGE  0x00010000
-#define ACCT_FORCE_PWD_CHANGE  0x00020000
-#define ACCT_LAST_PWD_CHANGE   0x00040000
-#define ACCT_EXPIRY            0x00080000
-#define ACCT_FLAGS             0x00100000
-#define ACCT_CALLBACK          0x00200000
-#define ACCT_COUNTRY_CODE      0x00400000
-#define ACCT_CODE_PAGE         0x00800000
-#define ACCT_NT_PWD_SET                0x01000000
-#define ACCT_LM_PWD_SET                0x02000000
-#define ACCT_PRIVATEDATA       0x04000000
-#define ACCT_EXPIRED_FLAG      0x08000000
-#define ACCT_SEC_DESC          0x10000000
-#define ACCT_OWF_PWD           0x20000000
+/* Take the bottom bit. */
+#define RID_TYPE_MASK          1
+#define RID_MULTIPLIER                 2
+
+/* The two common types. */
+#define USER_RID_TYPE          0
+#define GROUP_RID_TYPE                 1
 
 /*
- * bit flags representing initialized fields in SAM_ACCOUNT
+ * bit flags representing initialized fields in struct samu
  */
 enum pdb_elements {
        PDB_UNINIT,
@@ -87,10 +64,9 @@ enum pdb_elements {
        PDB_GROUPSID,
        PDB_ACCTCTRL,
        PDB_PASSLASTSET,
-       PDB_UNIXHOMEDIR,
        PDB_ACCTDESC,
        PDB_WORKSTATIONS,
-       PDB_UNKNOWNSTR,
+       PDB_COMMENT,
        PDB_MUNGEDDIAL,
        PDB_HOURS,
        PDB_FIELDS_PRESENT,
@@ -99,6 +75,7 @@ enum pdb_elements {
        PDB_UNKNOWN6,
        PDB_LMPASSWD,
        PDB_NTPASSWD,
+       PDB_PWHISTORY,
        PDB_BACKEND_PRIVATE_DATA,
 
        /* this must be the last element */
@@ -115,15 +92,6 @@ enum pdb_group_elements {
        PDB_GROUP_COUNT
 };
 
-enum pdb_trust_passwd_elements {
-       PDB_TRUST_PASS,
-       PDB_TRUST_SID,
-       PDB_TRUST_NAME,
-       PDB_TRUST_MODTIME,
-       PDB_TRUST_FLAGS,
-       
-       PDB_TRUST_COUNT
-};
 
 enum pdb_value_state {
        PDB_DEFAULT=0,
@@ -134,130 +102,142 @@ enum pdb_value_state {
 #define IS_SAM_SET(x, flag)    (pdb_get_init_flags(x, flag) == PDB_SET)
 #define IS_SAM_CHANGED(x, flag)        (pdb_get_init_flags(x, flag) == PDB_CHANGED)
 #define IS_SAM_DEFAULT(x, flag)        (pdb_get_init_flags(x, flag) == PDB_DEFAULT)
-               
-typedef struct sam_passwd
-{
-       TALLOC_CTX *mem_ctx;
-       
-       void (*free_fn)(struct sam_passwd **);
 
+/* cache for bad password lockout data, to be used on replicated SAMs */
+typedef struct logon_cache_struct {
+       time_t entry_timestamp;
+       uint32 acct_ctrl;
+       uint16 bad_password_count;
+       time_t bad_password_time;
+} LOGIN_CACHE;
+
+#define SAMU_BUFFER_V0         0
+#define SAMU_BUFFER_V1         1
+#define SAMU_BUFFER_V2         2
+#define SAMU_BUFFER_V3         3
+/* nothing changed from V3 to V4 */
+#define SAMU_BUFFER_V4         4
+#define SAMU_BUFFER_LATEST     SAMU_BUFFER_V4
+
+struct samu {
        struct pdb_methods *methods;
 
-       struct user_data {
-               /* initialization flags */
-               struct bitmap *change_flags;
-               struct bitmap *set_flags;
-
-               time_t logon_time;            /* logon time */
-               time_t logoff_time;           /* logoff time */
-               time_t kickoff_time;          /* kickoff time */
-               time_t bad_password_time;     /* last bad password entered */
-               time_t pass_last_set_time;    /* password last set time */
-               time_t pass_can_change_time;  /* password can change time */
-               time_t pass_must_change_time; /* password must change time */
-               
-               const char * username;     /* UNIX username string */
-               const char * domain;       /* Windows Domain name */
-               const char * nt_username;  /* Windows username string */
-               const char * full_name;    /* user's full name string */
-               const char * unix_home_dir;     /* UNIX home directory string */
-               const char * home_dir;     /* home directory string */
-               const char * dir_drive;    /* home directory drive string */
-               const char * logon_script; /* logon script string */
-               const char * profile_path; /* profile path string */
-               const char * acct_desc  ;  /* user description string */
-               const char * workstations; /* login from workstations string */
-               const char * unknown_str ; /* don't know what this is, yet. */
-               const char * munged_dial ; /* munged path name and dial-back tel number */
-               
-               DOM_SID user_sid;    /* Primary User SID */
-               DOM_SID group_sid;   /* Primary Group SID */
-               
-               DATA_BLOB lm_pw; /* .data is Null if no password */
-               DATA_BLOB nt_pw; /* .data is Null if no password */
-               char* plaintext_pw; /* is Null if not available */
-               
-               uint16 acct_ctrl; /* account info (ACB_xxxx bit-mask) */
-               uint32 fields_present; /* 0x00ff ffff */
-               
-               uint16 logon_divs; /* 168 - number of hours in a week */
-               uint32 hours_len; /* normally 21 bytes */
-               uint8 hours[MAX_HOURS_LEN];
-               
-               /* Was unknown_5. */
-               uint16 bad_password_count;
-               uint16 logon_count;
-
-               uint32 unknown_6; /* 0x0000 04ec */
-               /* a tag for who added the private methods */
-               const struct pdb_methods *backend_private_methods;
-               void *backend_private_data; 
-               void (*backend_private_data_free_fn)(void **);
-       } private;
-
-       /* Lets see if the remaining code can get the hint that you
-          are meant to use the pdb_...() functions. */
-       
-} SAM_ACCOUNT;
-
-typedef struct sam_group {
-       TALLOC_CTX *mem_ctx;
-       
-       void (*free_fn)(struct sam_group **);
-
-       struct pdb_methods *methods;
-
-       struct group_data {
-               /* initialization flags */
-               struct bitmap *change_flags;
-               struct bitmap *set_flags;
-
-               const char *name;               /* Windows group name string */
-
-               DOM_SID sid;                    /* Group SID */
-               enum SID_NAME_USE sid_name_use; /* Group type */
-
-               uint32 mem_num;                 /* Number of member SIDs */
-               DOM_SID *members;               /* SID array */
-       } private;
-
-} SAM_GROUP;
-
+       /* initialization flags */
+       struct bitmap *change_flags;
+       struct bitmap *set_flags;
+
+       time_t logon_time;            /* logon time */
+       time_t logoff_time;           /* logoff time */
+       time_t kickoff_time;          /* kickoff time */
+       time_t bad_password_time;     /* last bad password entered */
+       time_t pass_last_set_time;    /* password last set time */
+       time_t pass_can_change_time;  /* password can change time */
+       time_t pass_must_change_time; /* password must change time */
+
+       const char *username;     /* UNIX username string */
+       const char *domain;       /* Windows Domain name */
+       const char *nt_username;  /* Windows username string */
+       const char *full_name;    /* user's full name string */
+       const char *home_dir;     /* home directory string */
+       const char *dir_drive;    /* home directory drive string */
+       const char *logon_script; /* logon script string */
+       const char *profile_path; /* profile path string */
+       const char *acct_desc;    /* user description string */
+       const char *workstations; /* login from workstations string */
+       const char *comment;
+       const char *munged_dial;  /* munged path name and dial-back tel number */
+
+       DOM_SID user_sid;  
+       DOM_SID *group_sid;
+
+       DATA_BLOB lm_pw; /* .data is Null if no password */
+       DATA_BLOB nt_pw; /* .data is Null if no password */
+       DATA_BLOB nt_pw_his; /* nt hashed password history .data is Null if not available */
+       char* plaintext_pw; /* is Null if not available */
+
+       uint32 acct_ctrl; /* account info (ACB_xxxx bit-mask) */
+       uint32 fields_present; /* 0x00ff ffff */
+
+       uint16 logon_divs; /* 168 - number of hours in a week */
+       uint32 hours_len; /* normally 21 bytes */
+       uint8 hours[MAX_HOURS_LEN];
+
+       /* Was unknown_5. */
+       uint16 bad_password_count;
+       uint16 logon_count;
+
+       uint32 unknown_6; /* 0x0000 04ec */
+
+       /* a tag for who added the private methods */
+
+       const struct pdb_methods *backend_private_methods;
+       void *backend_private_data; 
+       void (*backend_private_data_free_fn)(void **);
+
+       /* maintain a copy of the user's struct passwd */
+
+       struct passwd *unix_pw;
+};
 
-typedef struct _GROUP_INFO {
-       struct pdb_methods *methods;
-       DOM_SID sid;
-       enum SID_NAME_USE sid_name_use;
-       fstring nt_name;
-       fstring comment;
-} GROUP_INFO;
+struct acct_info {
+       fstring acct_name; /* account name */
+       fstring acct_desc; /* account name */
+       uint32 rid; /* domain-relative RID */
+};
 
-struct acct_info
-{
-    fstring acct_name; /* account name */
-    fstring acct_desc; /* account name */
-    uint32 rid; /* domain-relative RID */
+struct samr_displayentry {
+       uint32 idx;
+       uint32 rid;
+       uint32 acct_flags;
+       const char *account_name;
+       const char *fullname;
+       const char *description;
 };
 
-typedef struct sam_trust_passwd {
-       TALLOC_CTX *mem_ctx;
-       
-       void (*free_fn)(struct sam_trust_passwd **);
-       
-       struct pdb_methods *methods;
+enum pdb_search_type {
+       PDB_USER_SEARCH,
+       PDB_GROUP_SEARCH,
+       PDB_ALIAS_SEARCH
+};
 
-       struct trust_passwd_data {
-               uint16 flags;                   /* flags */
-               size_t uni_name_len;            /* unicode name length */
-               smb_ucs2_t uni_name[32];        /* unicode domain name */
-               fstring pass;                   /* trust password */
-               time_t mod_time;                /* last change time */
-               DOM_SID domain_sid;             /* trusted domain sid */
-       } private;
+struct pdb_search {
+       enum pdb_search_type type;
+       struct samr_displayentry *cache;
+       uint32 num_entries;
+       ssize_t cache_size;
+       bool search_ended;
+       void *private_data;
+       bool (*next_entry)(struct pdb_search *search,
+                          struct samr_displayentry *entry);
+       void (*search_end)(struct pdb_search *search);
+};
 
-} SAM_TRUST_PASSWD;
+struct pdb_domain_info {
+       char *name;
+       char *dns_domain;
+       char *dns_forest;
+       struct dom_sid sid;
+       struct GUID guid;
+};
 
+/*
+ * Types of account policy.
+ */
+enum pdb_policy_type {
+       PDB_POLICY_MIN_PASSWORD_LEN = 1,
+       PDB_POLICY_PASSWORD_HISTORY = 2,
+       PDB_POLICY_USER_MUST_LOGON_TO_CHG_PASS  = 3,
+       PDB_POLICY_MAX_PASSWORD_AGE = 4,
+       PDB_POLICY_MIN_PASSWORD_AGE = 5,
+       PDB_POLICY_LOCK_ACCOUNT_DURATION = 6,
+       PDB_POLICY_RESET_COUNT_TIME = 7,
+       PDB_POLICY_BAD_ATTEMPT_LOCKOUT = 8,
+       PDB_POLICY_TIME_TO_LOGOUT = 9,
+       PDB_POLICY_REFUSE_MACHINE_PW_CHANGE = 10
+};
 
+#define PDB_CAP_STORE_RIDS     0x0001
+#define PDB_CAP_ADS            0x0002
 
 /*****************************************************************
  Functions to be implemented by the new (v2) passdb API 
@@ -266,178 +246,47 @@ typedef struct sam_trust_passwd {
 /*
  * This next constant specifies the version number of the PASSDB interface
  * this SAMBA will load. Increment this if *ANY* changes are made to the interface. 
+ * Changed interface to fix int -> size_t problems. JRA.
+ * There's no point in allocating arrays in
+ * samr_lookup_rids twice. It was done in the srv_samr_nt.c code as well as in
+ * the pdb module. Remove the latter, this might happen more often. VL.
+ * changed to version 14 to move lookup_rids and lookup_names to return
+ * enum lsa_SidType rather than uint32.
+ * Changed to 16 for access to the trusted domain passwords (obnox).
+ * Changed to 17, the sampwent interface is gone.
+ * Changed to 18, pdb_rid_algorithm -> pdb_capabilities
+ * Changed to 19, removed uid_to_rid
  */
 
-#define PASSDB_INTERFACE_VERSION 7
+#define PASSDB_INTERFACE_VERSION 19
 
-typedef struct pdb_context 
+struct pdb_methods 
 {
-       struct pdb_methods *pdb_methods;
-       struct pdb_methods *pwent_methods;
-       
-       /* These functions are wrappers for the functions listed above.
-          They may do extra things like re-reading a SAM_ACCOUNT on update */
-
-       NTSTATUS (*pdb_setsampwent)(struct pdb_context *, BOOL update);
-       
-       void (*pdb_endsampwent)(struct pdb_context *);
-       
-       NTSTATUS (*pdb_getsampwent)(struct pdb_context *, SAM_ACCOUNT *user);
-       
-       NTSTATUS (*pdb_getsampwnam)(struct pdb_context *, SAM_ACCOUNT *sam_acct, const char *username);
-       
-       NTSTATUS (*pdb_getsampwsid)(struct pdb_context *, SAM_ACCOUNT *sam_acct, const DOM_SID *sid);
-
-       NTSTATUS (*pdb_add_sam_account)(struct pdb_context *, SAM_ACCOUNT *sampass);
-       
-       NTSTATUS (*pdb_update_sam_account)(struct pdb_context *, SAM_ACCOUNT *sampass);
-       
-       NTSTATUS (*pdb_delete_sam_account)(struct pdb_context *, SAM_ACCOUNT *username);
-
-       /* group mapping functions: to be removed */
-       
-       NTSTATUS (*pdb_getgrsid)(struct pdb_context *context, GROUP_MAP *map, DOM_SID sid);
-       
-       NTSTATUS (*pdb_getgrgid)(struct pdb_context *context, GROUP_MAP *map, gid_t gid);
-       
-       NTSTATUS (*pdb_getgrnam)(struct pdb_context *context, GROUP_MAP *map, const char *name);
-       
-       NTSTATUS (*pdb_add_group_mapping_entry)(struct pdb_context *context,
-                                               GROUP_MAP *map);
-       
-       NTSTATUS (*pdb_update_group_mapping_entry)(struct pdb_context *context,
-                                                  GROUP_MAP *map);
-       
-       NTSTATUS (*pdb_delete_group_mapping_entry)(struct pdb_context *context,
-                                                  DOM_SID sid);
-       
-       NTSTATUS (*pdb_enum_group_mapping)(struct pdb_context *context,
-                                          enum SID_NAME_USE sid_name_use,
-                                          GROUP_MAP **rmap, int *num_entries,
-                                          BOOL unix_only);
-
-       NTSTATUS (*pdb_find_alias)(struct pdb_context *context,
-                                  const char *name, DOM_SID *sid);
-
-       NTSTATUS (*pdb_create_alias)(struct pdb_context *context,
-                                    const char *name, uint32 *rid);
-
-       NTSTATUS (*pdb_delete_alias)(struct pdb_context *context,
-                                    const DOM_SID *sid);
-
-       NTSTATUS (*pdb_enum_aliases)(struct pdb_context *context,
-                                    const DOM_SID *domain_sid,
-                                    uint32 start_idx, uint32 num_entries,
-                                    uint32 *num_aliases,
-                                    struct acct_info **aliases);
-
-       NTSTATUS (*pdb_get_aliasinfo)(struct pdb_context *context,
-                                     const DOM_SID *sid,
-                                     struct acct_info *info);
-
-       NTSTATUS (*pdb_set_aliasinfo)(struct pdb_context *context,
-                                     const DOM_SID *sid,
-                                     struct acct_info *info);
-
-       NTSTATUS (*pdb_add_aliasmem)(struct pdb_context *context,
-                                    const DOM_SID *alias,
-                                    const DOM_SID *member);
-
-       NTSTATUS (*pdb_del_aliasmem)(struct pdb_context *context,
-                                    const DOM_SID *alias,
-                                    const DOM_SID *member);
-
-       NTSTATUS (*pdb_enum_aliasmem)(struct pdb_context *context,
-                                     const DOM_SID *alias,
-                                     DOM_SID **members, int *num_members);
-
-       NTSTATUS (*pdb_enum_alias_memberships)(struct pdb_context *context,
-                                              const DOM_SID *alias,
-                                              DOM_SID **aliases,
-                                              int *num);
-
-       /* group functions */
-
-       NTSTATUS (*pdb_get_group_info_by_sid)(struct pdb_context *context, GROUP_INFO *info, const DOM_SID *group);
-
-       NTSTATUS (*pdb_get_group_list)(struct pdb_context *context, GROUP_INFO **info, const enum SID_NAME_USE sid_name_use, int *num_groups);
-
-       NTSTATUS (*pdb_get_group_sids)(struct pdb_context *context, const DOM_SID *group, DOM_SID **members, int *num_members);
-
-       NTSTATUS (*pdb_add_group)(struct pdb_context *context, const SAM_GROUP *group);
-
-       NTSTATUS (*pdb_update_group)(struct pdb_context *context, const SAM_GROUP *group);
-
-       NTSTATUS (*pdb_delete_group)(struct pdb_context *context, const DOM_SID *group);
-
-       NTSTATUS (*pdb_add_sid_to_group)(struct pdb_context *context, const DOM_SID *group, const DOM_SID *member);
-
-       NTSTATUS (*pdb_remove_sid_from_group)(struct pdb_context *context, const DOM_SID *group, const DOM_SID *member);
-
-       NTSTATUS (*pdb_get_group_info_by_name)(struct pdb_context *context, GROUP_INFO *info, const char *name);
-
-       NTSTATUS (*pdb_get_group_info_by_nt_name)(struct pdb_context *context, GROUP_INFO *info, const char *nt_name);
-
-       NTSTATUS (*pdb_get_group_uids)(struct pdb_context *context, const DOM_SID *group, uid_t **members, int *num_members);
-
-       /* trust password functions */
-       
-       NTSTATUS (*pdb_settrustpwent)(struct pdb_context *context);
-
-       NTSTATUS (*pdb_gettrustpwent)(struct pdb_context *context, SAM_TRUST_PASSWD *trust);
-       
-       NTSTATUS (*pdb_gettrustpwnam)(struct pdb_context *context, SAM_TRUST_PASSWD *trust, const char *dom_name);
-       
-       NTSTATUS (*pdb_gettrustpwsid)(struct pdb_context *context, SAM_TRUST_PASSWD *trust, const DOM_SID *sid);
-       
-       NTSTATUS (*pdb_add_trust_passwd)(struct pdb_context *context, SAM_TRUST_PASSWD* trust);
-       
-       NTSTATUS (*pdb_update_trust_passwd)(struct pdb_context *context, SAM_TRUST_PASSWD* trust);
-       
-       NTSTATUS (*pdb_delete_trust_passwd)(struct pdb_context *context, SAM_TRUST_PASSWD* trust);
+       const char *name; /* What name got this module */
 
-       /* privileges functions */
+       struct pdb_domain_info *(*get_domain_info)(struct pdb_methods *,
+                                                  TALLOC_CTX *mem_ctx);
 
-       NTSTATUS (*pdb_add_sid_to_privilege)(struct pdb_context *context, const char *priv_name, const DOM_SID *sid);
+       NTSTATUS (*getsampwnam)(struct pdb_methods *, struct samu *sam_acct, const char *username);
 
-       NTSTATUS (*pdb_remove_sid_from_privilege)(struct pdb_context *context, const char *priv_name, const DOM_SID *sid);
+       NTSTATUS (*getsampwsid)(struct pdb_methods *, struct samu *sam_acct, const DOM_SID *sid);
 
-       NTSTATUS (*pdb_get_privilege_set)(struct pdb_context *context, NT_USER_TOKEN *token, PRIVILEGE_SET *privs);
-       
-       NTSTATUS (*pdb_get_privilege_entry)(struct pdb_context *context, const char *privname, char **sid_list);
-       
-       void (*free_fn)(struct pdb_context **);
-       
-       TALLOC_CTX *mem_ctx;
-       
-} PDB_CONTEXT;
+       NTSTATUS (*create_user)(struct pdb_methods *, TALLOC_CTX *tmp_ctx,
+                               const char *name, uint32 acct_flags,
+                               uint32 *rid);
 
-typedef struct pdb_methods 
-{
-       const char *name; /* What name got this module */
-       struct pdb_context *parent;
-
-       /* Use macros from dlinklist.h on these two */
-       struct pdb_methods *next;
-       struct pdb_methods *prev;
-
-       NTSTATUS (*setsampwent)(struct pdb_methods *, BOOL update);
-       
-       void (*endsampwent)(struct pdb_methods *);
-       
-       NTSTATUS (*getsampwent)(struct pdb_methods *, SAM_ACCOUNT *user);
-       
-       NTSTATUS (*getsampwnam)(struct pdb_methods *, SAM_ACCOUNT *sam_acct, const char *username);
-       
-       NTSTATUS (*getsampwsid)(struct pdb_methods *, SAM_ACCOUNT *sam_acct, const DOM_SID *sid);
-       
-       NTSTATUS (*add_sam_account)(struct pdb_methods *, SAM_ACCOUNT *sampass);
-       
-       NTSTATUS (*update_sam_account)(struct pdb_methods *, SAM_ACCOUNT *sampass);
-       
-       NTSTATUS (*delete_sam_account)(struct pdb_methods *, SAM_ACCOUNT *username);
-
-       /* group mapping functions: to be removed */
+       NTSTATUS (*delete_user)(struct pdb_methods *, TALLOC_CTX *tmp_ctx,
+                               struct samu *sam_acct);
+
+       NTSTATUS (*add_sam_account)(struct pdb_methods *, struct samu *sampass);
+
+       NTSTATUS (*update_sam_account)(struct pdb_methods *, struct samu *sampass);
+
+       NTSTATUS (*delete_sam_account)(struct pdb_methods *, struct samu *username);
+
+       NTSTATUS (*rename_sam_account)(struct pdb_methods *, struct samu *oldname, const char *newname);
+
+       NTSTATUS (*update_login_attempts)(struct pdb_methods *methods, struct samu *sam_acct, bool success);
 
        NTSTATUS (*getgrsid)(struct pdb_methods *methods, GROUP_MAP *map, DOM_SID sid);
 
@@ -445,6 +294,13 @@ typedef struct pdb_methods
 
        NTSTATUS (*getgrnam)(struct pdb_methods *methods, GROUP_MAP *map, const char *name);
 
+       NTSTATUS (*create_dom_group)(struct pdb_methods *methods,
+                                    TALLOC_CTX *mem_ctx, const char *name,
+                                    uint32 *rid);
+
+       NTSTATUS (*delete_dom_group)(struct pdb_methods *methods,
+                                    TALLOC_CTX *mem_ctx, uint32 rid);
+
        NTSTATUS (*add_group_mapping_entry)(struct pdb_methods *methods,
                                            GROUP_MAP *map);
 
@@ -455,12 +311,33 @@ typedef struct pdb_methods
                                               DOM_SID sid);
 
        NTSTATUS (*enum_group_mapping)(struct pdb_methods *methods,
-                                      enum SID_NAME_USE sid_name_use,
-                                      GROUP_MAP **rmap, int *num_entries,
-                                      BOOL unix_only);
-
-       NTSTATUS (*find_alias)(struct pdb_methods *methods,
-                              const char *name, DOM_SID *sid);
+                                      const DOM_SID *sid, enum lsa_SidType sid_name_use,
+                                      GROUP_MAP **pp_rmap, size_t *p_num_entries,
+                                      bool unix_only);
+
+       NTSTATUS (*enum_group_members)(struct pdb_methods *methods,
+                                      TALLOC_CTX *mem_ctx,
+                                      const DOM_SID *group,
+                                      uint32 **pp_member_rids,
+                                      size_t *p_num_members);
+
+       NTSTATUS (*enum_group_memberships)(struct pdb_methods *methods,
+                                          TALLOC_CTX *mem_ctx,
+                                          struct samu *user,
+                                          DOM_SID **pp_sids, gid_t **pp_gids,
+                                          size_t *p_num_groups);
+
+       NTSTATUS (*set_unix_primary_group)(struct pdb_methods *methods,
+                                          TALLOC_CTX *mem_ctx,
+                                          struct samu *user);
+
+       NTSTATUS (*add_groupmem)(struct pdb_methods *methods,
+                                TALLOC_CTX *mem_ctx,
+                                uint32 group_rid, uint32 member_rid);
+
+       NTSTATUS (*del_groupmem)(struct pdb_methods *methods,
+                                TALLOC_CTX *mem_ctx,
+                                uint32 group_rid, uint32 member_rid);
 
        NTSTATUS (*create_alias)(struct pdb_methods *methods,
                                 const char *name, uint32 *rid);
@@ -468,11 +345,6 @@ typedef struct pdb_methods
        NTSTATUS (*delete_alias)(struct pdb_methods *methods,
                                 const DOM_SID *sid);
 
-       NTSTATUS (*enum_aliases)(struct pdb_methods *methods,
-                                const DOM_SID *domain_sid,
-                                uint32 start_idx, uint32 max_entries,
-                                uint32 *num_aliases, struct acct_info **info);
-
        NTSTATUS (*get_aliasinfo)(struct pdb_methods *methods,
                                  const DOM_SID *sid,
                                  struct acct_info *info);
@@ -486,79 +358,86 @@ typedef struct pdb_methods
        NTSTATUS (*del_aliasmem)(struct pdb_methods *methods,
                                 const DOM_SID *alias, const DOM_SID *member);
        NTSTATUS (*enum_aliasmem)(struct pdb_methods *methods,
-                                 const DOM_SID *alias, DOM_SID **members,
-                                 int *num_members);
+                                 const DOM_SID *alias, TALLOC_CTX *mem_ctx,
+                                 DOM_SID **members, size_t *p_num_members);
        NTSTATUS (*enum_alias_memberships)(struct pdb_methods *methods,
-                                          const DOM_SID *sid,
-                                          DOM_SID **aliases, int *num);
-
-       /* group functions */
-
-       NTSTATUS (*get_group_info_by_sid)(struct pdb_methods *methods, GROUP_INFO *info, const DOM_SID *group);
-
-       NTSTATUS (*get_group_list)(struct pdb_methods *methods, GROUP_INFO **info, const enum SID_NAME_USE sid_name_use, int *num_groups);
-
-       NTSTATUS (*get_group_sids)(struct pdb_methods *methods, const DOM_SID *group, DOM_SID **members, int *num_members);
-
-       NTSTATUS (*add_group)(struct pdb_methods *methods, const SAM_GROUP *group);
-
-       NTSTATUS (*update_group)(struct pdb_methods *methods, const SAM_GROUP *group);
-
-       NTSTATUS (*delete_group)(struct pdb_methods *methods, const DOM_SID *group);
-
-       NTSTATUS (*add_sid_to_group)(struct pdb_methods *methods, const DOM_SID *group, const DOM_SID *member);
-
-       NTSTATUS (*remove_sid_from_group)(struct pdb_methods *methods, const DOM_SID *group, const DOM_SID *member);
-
-       NTSTATUS (*get_group_info_by_name)(struct pdb_methods *methods, GROUP_INFO *info, const char *name);
-
-       NTSTATUS (*get_group_info_by_nt_name)(struct pdb_methods *methods, GROUP_INFO *info, const char *nt_name);
-
-       NTSTATUS (*get_group_uids)(struct pdb_methods *methods, const DOM_SID *group, uid_t **members, int *num_members);
+                                          TALLOC_CTX *mem_ctx,
+                                          const DOM_SID *domain_sid,
+                                          const DOM_SID *members,
+                                          size_t num_members,
+                                          uint32 **pp_alias_rids,
+                                          size_t *p_num_alias_rids);
+
+       NTSTATUS (*lookup_rids)(struct pdb_methods *methods,
+                               const DOM_SID *domain_sid,
+                               int num_rids,
+                               uint32 *rids,
+                               const char **pp_names,
+                               enum lsa_SidType *attrs);
+
+       NTSTATUS (*lookup_names)(struct pdb_methods *methods,
+                                const DOM_SID *domain_sid,
+                                int num_names,
+                                const char **pp_names,
+                                uint32 *rids,
+                                enum lsa_SidType *attrs);
+
+       NTSTATUS (*get_account_policy)(struct pdb_methods *methods,
+                                      enum pdb_policy_type type,
+                                      uint32_t *value);
+
+       NTSTATUS (*set_account_policy)(struct pdb_methods *methods,
+                                      enum pdb_policy_type type,
+                                      uint32_t value);
+
+       NTSTATUS (*get_seq_num)(struct pdb_methods *methods, time_t *seq_num);
+
+       bool (*search_users)(struct pdb_methods *methods,
+                            struct pdb_search *search,
+                            uint32 acct_flags);
+       bool (*search_groups)(struct pdb_methods *methods,
+                             struct pdb_search *search);
+       bool (*search_aliases)(struct pdb_methods *methods,
+                              struct pdb_search *search,
+                              const DOM_SID *sid);
+
+       bool (*uid_to_sid)(struct pdb_methods *methods, uid_t uid,
+                          DOM_SID *sid);
+       bool (*gid_to_sid)(struct pdb_methods *methods, gid_t gid,
+                          DOM_SID *sid);
+       bool (*sid_to_id)(struct pdb_methods *methods, const DOM_SID *sid,
+                         union unid_t *id, enum lsa_SidType *type);
+
+       uint32_t (*capabilities)(struct pdb_methods *methods);
+       bool (*new_rid)(struct pdb_methods *methods, uint32 *rid);
+
+
+       bool (*get_trusteddom_pw)(struct pdb_methods *methods,
+                                 const char *domain, char** pwd, 
+                                 DOM_SID *sid, time_t *pass_last_set_time);
+       bool (*set_trusteddom_pw)(struct pdb_methods *methods, 
+                                 const char* domain, const char* pwd,
+                                 const DOM_SID *sid);
+       bool (*del_trusteddom_pw)(struct pdb_methods *methods, 
+                                 const char *domain);
+       NTSTATUS (*enum_trusteddoms)(struct pdb_methods *methods,
+                                    TALLOC_CTX *mem_ctx, uint32 *num_domains,
+                                    struct trustdom_info ***domains);
 
        void *private_data;  /* Private data of some kind */
-       
-       void (*free_private_data)(void **);
-       
-       /* trust password functions */
-
-       NTSTATUS (*settrustpwent)(struct pdb_methods *methods);
-
-       NTSTATUS (*gettrustpwent)(struct pdb_methods *methods, SAM_TRUST_PASSWD *trust);
-       
-       NTSTATUS (*gettrustpwnam)(struct pdb_methods *methods, SAM_TRUST_PASSWD *trust, const char *name);
-       
-       NTSTATUS (*gettrustpwsid)(struct pdb_methods *methods, SAM_TRUST_PASSWD *trust, const DOM_SID *sid);
-       
-       NTSTATUS (*add_trust_passwd)(struct pdb_methods *methods, const SAM_TRUST_PASSWD* trust);
-       
-       NTSTATUS (*update_trust_passwd)(struct pdb_methods *methods, const SAM_TRUST_PASSWD* trust);
-       
-       NTSTATUS (*delete_trust_passwd)(struct pdb_methods *methods, const SAM_TRUST_PASSWD* trust);
-
-       /* privileges functions */
-
-       NTSTATUS (*add_sid_to_privilege)(struct pdb_methods *methods, const char *priv_name, const DOM_SID *sid);
 
-       NTSTATUS (*remove_sid_from_privilege)(struct pdb_methods *methods, const char *priv_name, const DOM_SID *sid);
-
-       NTSTATUS (*get_privilege_set)(struct pdb_methods *methods, NT_USER_TOKEN *token, PRIVILEGE_SET *privs);
-
-       NTSTATUS (*get_privilege_entry)(struct pdb_methods *methods, const char *privname, char **sid_list);
-
-} PDB_METHODS;
+       void (*free_private_data)(void **);
+};
 
-typedef NTSTATUS (*pdb_init_function)(struct pdb_context *, 
-                        struct pdb_methods **, 
-                        const char *);
+typedef NTSTATUS (*pdb_init_function)(struct pdb_methods **, const char *);
 
 struct pdb_init_function_entry {
        const char *name;
+
        /* Function to create a member of the pdb_methods list */
        pdb_init_function init;
+
        struct pdb_init_function_entry *prev, *next;
 };
 
-enum sql_search_field { SQL_SEARCH_NONE = 0, SQL_SEARCH_USER_SID = 1, SQL_SEARCH_USER_NAME = 2};
-
 #endif /* _PASSDB_H */