s3-build: use talloc_dict.h only where needed.
[metze/samba/wip.git] / source3 / winbindd / winbindd.h
index 0840e581fe6ae1dbe92341cb2b389be2509d0af2..d7a53e2d6649ff409b30d0420858d080ba9986ed 100644 (file)
@@ -5,17 +5,17 @@
 
    Copyright (C) Tim Potter 2000
    Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003
-   
+
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 3 of the License, or (at your option) any later version.
-   
+
    This library 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
    Library General Public License for more details.
-   
+
    You should have received a copy of the GNU Lesser General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 #define _WINBINDD_H
 
 #include "nsswitch/winbind_struct_protocol.h"
+#include "nsswitch/libwbclient/wbclient.h"
+#include "librpc/gen_ndr/wbint.h"
+
+#include "talloc_dict.h"
 
 #ifdef HAVE_LIBNSCD
 #include <libnscd.h>
 
 #define WB_REPLACE_CHAR                '_'
 
-/* bits for fd_event.flags */
-#define EVENT_FD_READ 1
-#define EVENT_FD_WRITE 2
-
-struct fd_event {
-       struct fd_event *next, *prev;
-       int fd;
-       int flags; /* see EVENT_FD_* flags */
-       void (*handler)(struct fd_event *fde, int flags);
-       void *data;
-       size_t length, done;
-       void (*finished)(void *private_data, bool success);
-       void *private_data;
-};
-
 struct sid_ctr {
-       DOM_SID *sid;
+       struct dom_sid *sid;
        bool finished;
        const char *domain;
        const char *name;
@@ -64,32 +53,38 @@ struct sid_ctr {
 struct winbindd_cli_state {
        struct winbindd_cli_state *prev, *next;   /* Linked list pointers */
        int sock;                                 /* Open socket from client */
-       struct fd_event fd_event;
        pid_t pid;                                /* pid of client */
-       bool finished;                            /* Can delete from list */
-       bool write_extra_data;                    /* Write extra_data field */
        time_t last_access;                       /* Time of last access (read or write) */
        bool privileged;                           /* Is the client 'privileged' */
 
        TALLOC_CTX *mem_ctx;                      /* memory per request */
-       struct winbindd_request request;          /* Request from client */
-       struct winbindd_response response;        /* Respose to client */
+       const char *cmd_name;
+       NTSTATUS (*recv_fn)(struct tevent_req *req,
+                           struct winbindd_response *presp);
+       struct winbindd_request *request;         /* Request from client */
+       struct tevent_queue *out_queue;
+       struct winbindd_response *response;        /* Respose to client */
        bool getpwent_initialized;                /* Has getpwent_state been
                                                   * initialized? */
        bool getgrent_initialized;                /* Has getgrent_state been
                                                   * initialized? */
-       struct getent_state *getpwent_state;      /* State for getpwent() */
-       struct getent_state *getgrent_state;      /* State for getgrent() */
+
+       struct getpwent_state *pwent_state; /* State for getpwent() */
+       struct getgrent_state *grent_state; /* State for getgrent() */
 };
 
-/* State between get{pw,gr}ent() calls */
+struct getpwent_state {
+       struct winbindd_domain *domain;
+       int next_user;
+       int num_users;
+       struct wbint_userinfo *users;
+};
 
-struct getent_state {
-       struct getent_state *prev, *next;
-       void *sam_entries;
-       uint32 sam_entry_index, num_sam_entries;
-       bool got_sam_entries;
-       fstring domain_name;
+struct getgrent_state {
+       struct winbindd_domain *domain;
+       int next_group;
+       int num_groups;
+       struct wbint_Principal *groups;
 };
 
 /* Storage for cached getpwent() user entries */
@@ -99,39 +94,25 @@ struct getpwent_user {
        fstring gecos;                       /* User information */
        fstring homedir;                     /* User Home Directory */
        fstring shell;                       /* User Login Shell */
-       DOM_SID user_sid;                    /* NT user and primary group SIDs */
-       DOM_SID group_sid;
+       struct dom_sid user_sid;                    /* NT user and primary group SIDs */
+       struct dom_sid group_sid;
 };
 
-/* Server state structure */
-
-typedef struct {
-       char *acct_name;
-       char *full_name;
-       char *homedir;
-       char *shell;
-       gid_t primary_gid;                   /* allow the nss_info
-                                               backend to set the primary group */
-       DOM_SID user_sid;                    /* NT user and primary group SIDs */
-       DOM_SID group_sid;
-} WINBIND_USERINFO;
-
 /* Our connection to the DC */
 
 struct winbindd_cm_conn {
        struct cli_state *cli;
 
        struct rpc_pipe_client *samr_pipe;
-       POLICY_HND sam_connect_handle, sam_domain_handle;
+       struct policy_handle sam_connect_handle, sam_domain_handle;
 
        struct rpc_pipe_client *lsa_pipe;
-       POLICY_HND lsa_policy;
+       struct rpc_pipe_client *lsa_pipe_tcp;
+       struct policy_handle lsa_policy;
 
        struct rpc_pipe_client *netlogon_pipe;
 };
 
-struct winbindd_async_request;
-
 /* Async child */
 
 struct winbindd_domain;
@@ -150,9 +131,12 @@ struct winbindd_child {
        struct winbindd_domain *domain;
        char *logfilename;
 
-       struct fd_event event;
+       int sock;
+       struct tevent_queue *queue;
+       struct dcerpc_binding_handle *binding_handle;
+
        struct timed_event *lockout_policy_event;
-       struct winbindd_async_request *requests;
+       struct timed_event *machine_password_change_event;
 
        const struct winbindd_child_dispatch_table *table;
 };
@@ -163,7 +147,7 @@ struct winbindd_domain {
        fstring name;                          /* Domain name (NetBIOS) */
        fstring alt_name;                      /* alt Domain name, if any (FQDN for ADS) */
        fstring forest_name;                   /* Name of the AD forest we're in */
-       DOM_SID sid;                           /* SID for this domain */
+       struct dom_sid sid;                           /* SID for this domain */
        uint32 domain_flags;                   /* Domain flags from netlogon.h */
        uint32 domain_type;                    /* Domain type from netlogon.h */
        uint32 domain_trust_attribs;           /* Trust attribs from netlogon.h */
@@ -184,6 +168,8 @@ struct winbindd_domain {
                                  * to False. This variable is around so that
                                  * we don't have to try _ex every time. */
 
+       bool can_do_ncacn_ip_tcp;
+
        /* Lookup methods for this domain (LDAP or RPC) */
        struct winbindd_methods *methods;
 
@@ -195,7 +181,15 @@ struct winbindd_domain {
 
        void *private_data;
 
+       /*
+        * idmap config settings, used to tell the idmap child which
+        * special domain config to use for a mapping
+        */
+       bool have_idmap_config;
+       uint32_t id_range_low, id_range_high;
+
        /* A working DC */
+       pid_t dc_probe_pid; /* Child we're using to detect the DC. */
        fstring dcname;
        struct sockaddr_storage dcaddr;
 
@@ -230,11 +224,11 @@ struct winbindd_methods {
           always correct) */
        bool consistent;
 
-       /* get a list of users, returning a WINBIND_USERINFO for each one */
+       /* get a list of users, returning a wbint_userinfo for each one */
        NTSTATUS (*query_user_list)(struct winbindd_domain *domain,
                                   TALLOC_CTX *mem_ctx,
                                   uint32 *num_entries, 
-                                  WINBIND_USERINFO **info);
+                                  struct wbint_userinfo **info);
 
        /* get a list of domain groups */
        NTSTATUS (*enum_dom_groups)(struct winbindd_domain *domain,
@@ -247,27 +241,27 @@ struct winbindd_methods {
                                    TALLOC_CTX *mem_ctx,
                                    uint32 *num_entries, 
                                    struct acct_info **info);
-                                   
+
        /* convert one user or group name to a sid */
        NTSTATUS (*name_to_sid)(struct winbindd_domain *domain,
                                TALLOC_CTX *mem_ctx,
-                               enum winbindd_cmd orig_cmd,
                                const char *domain_name,
                                const char *name,
-                               DOM_SID *sid,
+                               uint32_t flags,
+                               struct dom_sid *sid,
                                enum lsa_SidType *type);
 
        /* convert a sid to a user or group name */
        NTSTATUS (*sid_to_name)(struct winbindd_domain *domain,
                                TALLOC_CTX *mem_ctx,
-                               const DOM_SID *sid,
+                               const struct dom_sid *sid,
                                char **domain_name,
                                char **name,
                                enum lsa_SidType *type);
 
        NTSTATUS (*rids_to_names)(struct winbindd_domain *domain,
                                  TALLOC_CTX *mem_ctx,
-                                 const DOM_SID *domain_sid,
+                                 const struct dom_sid *domain_sid,
                                  uint32 *rids,
                                  size_t num_rids,
                                  char **domain_name,
@@ -277,32 +271,33 @@ struct winbindd_methods {
        /* lookup user info for a given SID */
        NTSTATUS (*query_user)(struct winbindd_domain *domain, 
                               TALLOC_CTX *mem_ctx, 
-                              const DOM_SID *user_sid,
-                              WINBIND_USERINFO *user_info);
+                              const struct dom_sid *user_sid,
+                              struct wbint_userinfo *user_info);
 
        /* lookup all groups that a user is a member of. The backend
           can also choose to lookup by username or rid for this
           function */
        NTSTATUS (*lookup_usergroups)(struct winbindd_domain *domain,
                                      TALLOC_CTX *mem_ctx,
-                                     const DOM_SID *user_sid,
-                                     uint32 *num_groups, DOM_SID **user_gids);
+                                     const struct dom_sid *user_sid,
+                                     uint32 *num_groups, struct dom_sid **user_gids);
 
        /* Lookup all aliases that the sids delivered are member of. This is
         * to implement 'domain local groups' correctly */
        NTSTATUS (*lookup_useraliases)(struct winbindd_domain *domain,
                                       TALLOC_CTX *mem_ctx,
                                       uint32 num_sids,
-                                      const DOM_SID *sids,
+                                      const struct dom_sid *sids,
                                       uint32 *num_aliases,
                                       uint32 **alias_rids);
 
        /* find all members of the group with the specified group_rid */
        NTSTATUS (*lookup_groupmem)(struct winbindd_domain *domain,
                                    TALLOC_CTX *mem_ctx,
-                                   const DOM_SID *group_sid,
+                                   const struct dom_sid *group_sid,
+                                   enum lsa_SidType type,
                                    uint32 *num_names, 
-                                   DOM_SID **sid_mem, char ***names, 
+                                   struct dom_sid **sid_mem, char ***names,
                                    uint32 **name_types);
 
        /* return the current global sequence number */
@@ -321,29 +316,19 @@ struct winbindd_methods {
        /* enumerate trusted domains */
        NTSTATUS (*trusted_domains)(struct winbindd_domain *domain,
                                    TALLOC_CTX *mem_ctx,
-                                   uint32 *num_domains,
-                                   char ***names,
-                                   char ***alt_names,
-                                   DOM_SID **dom_sids);
+                                   struct netr_DomainTrustList *trusts);
 };
 
-/* Used to glue a policy handle and cli_state together */
-
-typedef struct {
-       struct cli_state *cli;
-       POLICY_HND pol;
-} CLI_POLICY_HND;
-
 /* Filled out by IDMAP backends */
 struct winbindd_idmap_methods {
   /* Called when backend is first loaded */
   bool (*init)(void);
 
-  bool (*get_sid_from_uid)(uid_t uid, DOM_SID *sid);
-  bool (*get_sid_from_gid)(gid_t gid, DOM_SID *sid);
+  bool (*get_sid_from_uid)(uid_t uid, struct dom_sid *sid);
+  bool (*get_sid_from_gid)(gid_t gid, struct dom_sid *sid);
 
-  bool (*get_uid_from_sid)(DOM_SID *sid, uid_t *uid);
-  bool (*get_gid_from_sid)(DOM_SID *sid, gid_t *gid);
+  bool (*get_uid_from_sid)(struct dom_sid *sid, uid_t *uid);
+  bool (*get_gid_from_sid)(struct dom_sid *sid, gid_t *gid);
 
   /* Called when backend is unloaded */
   bool (*close)(void);
@@ -356,12 +341,44 @@ struct winbindd_idmap_methods {
 struct winbindd_tdc_domain {
        const char *domain_name;
        const char *dns_name;
-        DOM_SID sid;
+        struct dom_sid sid;
        uint32 trust_flags;
        uint32 trust_attribs;
        uint32 trust_type;
 };
 
+/* Switch for listing users or groups */
+enum ent_type {
+       LIST_USERS = 0,
+       LIST_GROUPS,
+};
+
+struct WINBINDD_MEMORY_CREDS {
+       struct WINBINDD_MEMORY_CREDS *next, *prev;
+       const char *username; /* lookup key. */
+       uid_t uid;
+       int ref_count;
+       size_t len;
+       uint8_t *nt_hash; /* Base pointer for the following 2 */
+       uint8_t *lm_hash;
+       char *pass;
+};
+
+struct WINBINDD_CCACHE_ENTRY {
+       struct WINBINDD_CCACHE_ENTRY *next, *prev;
+       const char *principal_name;
+       const char *ccname;
+       const char *service;
+       const char *username;
+       const char *realm;
+       struct WINBINDD_MEMORY_CREDS *cred_ptr;
+       int ref_count;
+       uid_t uid;
+       time_t create_time;
+       time_t renew_until;
+       time_t refresh_time;
+       struct timed_event *event;
+};
 
 #include "winbindd/winbindd_proto.h"
 
@@ -370,7 +387,7 @@ struct winbindd_tdc_domain {
 #define WINBINDD_PAM_AUTH_KRB5_RENEW_TIME 2592000 /* one month */
 #define DOM_SEQUENCE_NONE ((uint32)-1)
 
-#define IS_DOMAIN_OFFLINE(x) ( lp_winbind_offline_logon() && \
-                              ( get_global_winbindd_state_offline() \
-                                || !(x)->online ) )
+#define winbind_event_context server_event_context
+#define winbind_messaging_context server_messaging_context
+
 #endif /* _WINBINDD_H */