Since AB has been changing the winbind interface it's time to add the "mock
[jra/samba/.git] / source / nsswitch / winbindd_nss.h
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 2.0
4
5    Winbind daemon for ntdom nss module
6
7    Copyright (C) Tim Potter 2000
8    
9    This library is free software; you can redistribute it and/or
10    modify it under the terms of the GNU Library General Public
11    License as published by the Free Software Foundation; either
12    version 2 of the License, or (at your option) any later version.
13    
14    This library is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17    Library General Public License for more details.
18    
19    You should have received a copy of the GNU Library General Public
20    License along with this library; if not, write to the
21    Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22    Boston, MA  02111-1307, USA.   
23 */
24
25 #ifndef SAFE_FREE
26 #define SAFE_FREE(x) do { if(x) {free(x); x=NULL;} } while(0)
27 #endif
28
29 #ifndef _WINBINDD_NTDOM_H
30 #define _WINBINDD_NTDOM_H
31
32 #define WINBINDD_SOCKET_NAME "pipe"            /* Name of PF_UNIX socket */
33 #define WINBINDD_SOCKET_DIR  "/tmp/.winbindd"  /* Name of PF_UNIX dir */
34
35 #define WINBINDD_DOMAIN_ENV  "WINBINDD_DOMAIN" /* Environment variables */
36 #define WINBINDD_DONT_ENV    "_NO_WINBINDD"
37
38 /* Update this when you change the interface.  */
39
40 #define WINBIND_INTERFACE_VERSION 2
41
42 /* Socket commands */
43
44 enum winbindd_cmd {
45
46         WINBINDD_INTERFACE_VERSION,    /* Always a well known value */
47
48         /* Get users and groups */
49
50         WINBINDD_GETPWNAM,
51         WINBINDD_GETPWUID,
52         WINBINDD_GETGRNAM,
53         WINBINDD_GETGRGID,
54         WINBINDD_GETGROUPS,
55
56         /* Enumerate users and groups */
57
58         WINBINDD_SETPWENT,
59         WINBINDD_ENDPWENT,
60         WINBINDD_GETPWENT,
61         WINBINDD_SETGRENT,
62         WINBINDD_ENDGRENT,
63         WINBINDD_GETGRENT,
64
65         /* PAM authenticate and password change */
66
67         WINBINDD_PAM_AUTH,
68         WINBINDD_PAM_AUTH_CRAP,
69         WINBINDD_PAM_CHAUTHTOK,
70
71         /* List various things */
72
73         WINBINDD_LIST_USERS,         /* List w/o rid->id mapping */
74         WINBINDD_LIST_GROUPS,        /* Ditto */
75         WINBINDD_LIST_TRUSTDOM,
76
77         /* SID conversion */
78
79         WINBINDD_LOOKUPSID,
80         WINBINDD_LOOKUPNAME,
81
82         /* Lookup functions */
83
84         WINBINDD_SID_TO_UID,       
85         WINBINDD_SID_TO_GID,
86         WINBINDD_UID_TO_SID,
87         WINBINDD_GID_TO_SID,
88
89         /* Miscellaneous other stuff */
90
91         WINBINDD_CHECK_MACHACC,     /* Check machine account pw works */
92         WINBINDD_PING,              /* Just tell me winbind is running */
93         WINBINDD_INFO,              /* Various bit of info.  Currently just tidbits */
94
95         /* Placeholder for end of cmd list */
96
97         WINBINDD_NUM_CMDS
98 };
99
100 /* Winbind request structure */
101
102 struct winbindd_request {
103         uint32 length;
104         enum winbindd_cmd cmd;   /* Winbindd command to execute */
105         pid_t pid;               /* pid of calling process */
106
107         union {
108                 fstring username;    /* getpwnam */
109                 fstring groupname;   /* getgrnam */
110                 uid_t uid;           /* getpwuid, uid_to_sid */
111                 gid_t gid;           /* getgrgid, gid_to_sid */
112                 struct {
113                         fstring user;
114                         fstring pass;
115                 } auth;              /* pam_winbind auth module */
116                 struct {
117                         unsigned char chal[8];
118                         fstring user;
119                         fstring domain;
120                         fstring lm_resp;
121                         uint16 lm_resp_len;
122                         fstring nt_resp;
123                         uint16 nt_resp_len;
124                 } auth_crap;
125                 struct {
126                     fstring user;
127                     fstring oldpass;
128                     fstring newpass;
129                 } chauthtok;         /* pam_winbind passwd module */
130                 fstring sid;         /* lookupsid, sid_to_[ug]id */
131                 fstring name;        /* lookupname */
132                 uint32 num_entries;  /* getpwent, getgrent */
133         } data;
134         fstring domain;      /* {set,get,end}{pw,gr}ent() */
135 };
136
137 /* Response values */
138
139 enum winbindd_result {
140         WINBINDD_ERROR,
141         WINBINDD_OK
142 };
143
144 /* Winbind response structure */
145
146 struct winbindd_response {
147     
148         /* Header information */
149
150         uint32 length;                        /* Length of response */
151         enum winbindd_result result;          /* Result code */
152
153         /* Fixed length return data */
154         
155         union {
156                 int interface_version;  /* Try to ensure this is always in the same spot... */
157                 
158                 /* getpwnam, getpwuid */
159                 
160                 struct winbindd_pw {
161                         fstring pw_name;
162                         fstring pw_passwd;
163                         uid_t pw_uid;
164                         gid_t pw_gid;
165                         fstring pw_gecos;
166                         fstring pw_dir;
167                         fstring pw_shell;
168                 } pw;
169
170                 /* getgrnam, getgrgid */
171
172                 struct winbindd_gr {
173                         fstring gr_name;
174                         fstring gr_passwd;
175                         gid_t gr_gid;
176                         int num_gr_mem;
177                         int gr_mem_ofs;   /* offset to group membership */
178                 } gr;
179
180                 uint32 num_entries; /* getpwent, getgrent */
181                 struct winbindd_sid {
182                         fstring sid;        /* lookupname, [ug]id_to_sid */
183                         int type;
184                 } sid;
185                 struct winbindd_name {
186                         fstring name;       /* lookupsid */
187                         int type;
188                 } name;
189                 uid_t uid;          /* sid_to_uid */
190                 gid_t gid;          /* sid_to_gid */
191                 struct winbindd_info {
192                         char winbind_separator;
193                         fstring samba_version;
194                 } info;
195         } data;
196
197         /* Variable length return data */
198
199         void *extra_data;               /* getgrnam, getgrgid, getgrent */
200 };
201
202 #endif