r23792: convert Samba4 to GPLv3
[ira/wip.git] / source4 / lib / samba3 / samba3.h
1 /* 
2    Unix SMB/CIFS implementation.
3    Samba3 interfaces
4    Copyright (C) Jelmer Vernooij                        2005.
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef _SAMBA3_H /* _SAMBA3_H */
21 #define _SAMBA3_H 
22
23 #include "librpc/gen_ndr/security.h"
24 #include "librpc/gen_ndr/samr.h"
25 #include "param/param.h"
26
27 struct samba3_samaccount {
28         uint32_t logon_time,
29                 logoff_time,
30                 kickoff_time,
31                 bad_password_time,
32                 pass_last_set_time,
33                 pass_can_change_time,
34                 pass_must_change_time;
35         char *username;
36         char *domain;
37         char *nt_username;
38         char *dir_drive;
39         char *unknown_str;
40         char *munged_dial;
41         char *fullname;
42         char *homedir;
43         char *logon_script;
44         char *profile_path;
45         char *acct_desc;
46         char *workstations;
47         uint32_t user_rid, group_rid, hours_len, unknown_6;
48         uint16_t acct_ctrl, logon_divs;
49         uint16_t bad_password_count, logon_count;
50         struct samr_Password lm_pw, nt_pw;
51         uint8_t *nt_pw_hist_ptr;
52         uint8_t *hours;
53 };
54
55 struct samba3_groupmapping {
56         gid_t gid;
57         struct dom_sid *sid;
58         int sid_name_use;
59         const char *nt_name;
60         const char *comment;
61 };
62
63 struct samba3_alias {
64         struct dom_sid *sid;
65         uint32_t member_count;
66         struct dom_sid **members;
67 };
68
69 struct samba3_groupdb {
70         uint32_t groupmap_count;
71         struct samba3_groupmapping *groupmappings;
72
73         uint32_t alias_count;
74         struct samba3_alias *aliases;
75 };
76
77 struct samba3_idmap_mapping
78 {
79         enum { IDMAP_GROUP, IDMAP_USER } type;
80         uint32_t unix_id;
81         struct dom_sid *sid;
82 };
83
84 struct samba3_idmapdb
85 {
86         /* High water marks */
87         uint32_t user_hwm;
88         uint32_t group_hwm;
89
90         uint32_t mapping_count;
91         struct samba3_idmap_mapping *mappings;
92 };
93
94 struct samba3_winsdb_entry 
95 {
96         char *name;
97         int nb_flags;
98         int type;
99         time_t ttl;
100         uint32_t ip_count;
101         struct ipv4_addr *ips;
102 };
103
104 struct samba3_policy
105 {
106         uint32_t min_password_length;
107         uint32_t password_history;
108         uint32_t user_must_logon_to_change_password;
109         uint32_t maximum_password_age;
110         uint32_t minimum_password_age;
111         uint32_t lockout_duration;
112         uint32_t reset_count_minutes;
113         uint32_t bad_lockout_minutes;
114         uint32_t disconnect_time;
115         uint32_t refuse_machine_password_change;
116 };
117
118 struct samba3_regval {
119         char *name;
120         uint16_t                type;
121         DATA_BLOB               data;
122 };
123
124 struct samba3_regkey {
125         char *name;
126         
127         uint32_t value_count;
128         struct samba3_regval *values;
129
130         uint32_t subkey_count;
131         char **subkeys;
132 };
133
134 struct samba3_regdb
135 {
136         uint32_t key_count;
137         struct samba3_regkey *keys;
138 };
139
140 struct samba3_secrets
141 {
142         struct cli_credentials *ipc_cred;
143         
144         uint32_t ldappw_count;
145         struct samba3_ldappw 
146         {
147                 char *dn;
148                 char *password;
149         } *ldappws;
150
151         uint32_t domain_count;
152         struct samba3_domainsecrets 
153         {
154                 char *name;
155                 struct dom_sid sid;
156                 struct GUID guid;
157                 char *plaintext_pw;
158                 time_t last_change_time;
159                 struct {
160                         uint8_t hash[16];
161                         time_t mod_time;
162                 } hash_pw;
163                 int sec_channel_type;
164         } *domains;
165
166         uint32_t trusted_domain_count;
167         struct samba3_trusted_dom_pass {
168                 uint32_t uni_name_len;
169                 const char *uni_name[32]; /* unicode domain name */
170                 const char *pass;               /* trust relationship's password */
171                 time_t mod_time;
172                 struct dom_sid domain_sid;      /* remote domain's sid */
173         } *trusted_domains;
174
175         uint32_t afs_keyfile_count;
176
177         struct samba3_afs_keyfile {
178                 uint32_t nkeys;
179                 struct {
180                         uint32_t kvno;
181                         char key[8];
182                 } entry[8];
183                 char *cell;
184         } *afs_keyfiles;
185 };
186
187 struct samba3_share_info {
188         char *name;
189         struct security_descriptor secdesc;
190 };
191
192 struct samba3 
193 {
194         struct param_context *configuration;
195
196         uint32_t winsdb_count;
197         struct samba3_winsdb_entry *winsdb_entries;
198         
199         uint32_t samaccount_count;
200         struct samba3_samaccount *samaccounts;
201
202         uint32_t share_count;
203         struct samba3_share_info *shares;
204
205         struct samba3_secrets secrets;
206         struct samba3_groupdb group;
207         struct samba3_idmapdb idmap;
208         struct samba3_policy policy;
209         struct samba3_regdb registry;
210 };
211
212 #include "lib/samba3/samba3_proto.h"
213 #include "lib/samba3/samba3_smbpasswd_proto.h"
214
215 #endif /* _SAMBA3_H */