s3:dom_sid Global replace of DOM_SID with struct dom_sid
[sfrench/samba-autobuild/.git] / source3 / include / nss_info.h
index 6f93c2ce81ab4d5c0f62528c7684cf5e5a6966da..9b910ca256728d09799b6b5c928a46069886ffd7 100644 (file)
@@ -5,24 +5,28 @@
    Copyright (C) Gerald Carter             2006
 
    This library is free software; you can redistribute it and/or
-   modify it under the terms of the GNU Library General Public
+   modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
-   version 2 of the License, or (at your option) any later version.
-   
+   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 Library General Public
-   License along with this library; if not, write to the
-   Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-   Boston, MA  02111-1307, USA.   
+
+   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/>.
 */
 
 #ifndef _IDMAP_NSS_H
 #define _IDMAP_NSS_H
 
+#ifndef HAVE_LDAP
+#  ifndef LDAPMessage
+#    define LDAPMessage void
+#  endif
+#endif
+
 /* The interface version specifier */
 
 #define SMB_NSS_INFO_INTERFACE_VERSION   1
@@ -32,7 +36,7 @@
 
 struct nss_function_entry {
        struct nss_function_entry *prev, *next;
-       
+
        const char *name;
        struct nss_info_methods *methods;
 };
@@ -58,15 +62,40 @@ struct nss_domain_entry {
 struct nss_info_methods {
        NTSTATUS (*init)( struct nss_domain_entry *e );
        NTSTATUS (*get_nss_info)( struct nss_domain_entry *e, 
-                                 const DOM_SID *sid, 
+                                 const struct dom_sid *sid,
                                  TALLOC_CTX *ctx, 
-#ifdef WITH_ADS
                                  ADS_STRUCT *ads, LDAPMessage *msg,
-#else
-                                 void *ads, void *msg,
-#endif
-                                 char **homedir, char **shell, char **gecos, gid_t *p_gid);
+                                 const char **homedir, const char **shell,
+                                 const char **gecos, gid_t *p_gid);
+       NTSTATUS (*map_to_alias)(TALLOC_CTX *mem_ctx,
+                                struct nss_domain_entry *e,
+                                const char *name, char **alias);
+       NTSTATUS (*map_from_alias)(TALLOC_CTX *mem_ctx,
+                                  struct nss_domain_entry *e,
+                                  const char *alias, char **name);
        NTSTATUS (*close_fn)( void );
 };
 
+
+/* The following definitions come from nsswitch/nss_info.c  */
+
+NTSTATUS smb_register_idmap_nss(int version, 
+                               const char *name, 
+                               struct nss_info_methods *methods);
+
+NTSTATUS nss_get_info( const char *domain, const struct dom_sid *user_sid,
+                      TALLOC_CTX *ctx,
+                      ADS_STRUCT *ads, LDAPMessage *msg,
+                      const char **homedir, const char **shell,
+                      const char **gecos, gid_t *p_gid);
+
+NTSTATUS nss_map_to_alias( TALLOC_CTX *mem_ctx, const char *domain,
+                          const char *name, char **alias );
+
+NTSTATUS nss_map_from_alias( TALLOC_CTX *mem_ctx, const char *domain,
+                            const char *alias, char **name );
+
+NTSTATUS nss_close( const char *parameters );
+
 #endif /* _IDMAP_NSS_H_ */
+