d3e03cf923d1c850e73fac8a6cb966c934b82823
[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 2 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, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #ifndef _SAMBA3_H /* _SAMBA3_H */
22 #define _SAMBA3_H 
23
24 #include "librpc/gen_ndr/security.h"
25
26 struct samba3_samaccount {
27         uint32_t logon_time,
28                 logoff_time,
29                 kickoff_time,
30                 bad_password_time,
31                 pass_last_set_time,
32                 pass_can_change_time,
33                 pass_must_change_time;
34         char *username;
35         char *domain;
36         char *nt_username;
37         char *dir_drive;
38         char *unknown_str;
39         char *munged_dial;
40         char *fullname;
41         char *homedir;
42         char *logon_script;
43         char *profile_path;
44         char *acct_desc;
45         char *workstations;
46         uint32_t user_rid, group_rid, hours_len, unknown_6;
47         uint16_t acct_ctrl, logon_divs;
48         uint16_t bad_password_count, logon_count;
49         uint8_t *lm_pw_ptr, *nt_pw_ptr;
50         uint8_t *nt_pw_hist_ptr;
51         uint8_t *hours;
52 };
53
54 /* SID Types */
55 enum SID_NAME_USE
56 {
57         SID_NAME_USE_NONE = 0,
58         SID_NAME_USER    = 1, /* user */
59         SID_NAME_DOM_GRP,     /* domain group */
60         SID_NAME_DOMAIN,      /* domain sid */
61         SID_NAME_ALIAS,       /* local group */
62         SID_NAME_WKN_GRP,     /* well-known group */
63         SID_NAME_DELETED,     /* deleted account: needed for c2 rating */
64         SID_NAME_INVALID,     /* invalid account */
65         SID_NAME_UNKNOWN,     /* unknown sid type */
66         SID_NAME_COMPUTER     /* sid for a computer */
67 };
68
69 struct samba3_groupmapping {
70         struct pdb_methods *methods;
71         gid_t gid;
72         struct dom_sid *sid;
73         enum SID_NAME_USE sid_name_use;
74         const char *nt_name;
75         const char *comment;
76 };
77
78 struct samba3_idmap_mapping
79 {
80         enum { IDMAP_GROUP, IDMAP_USER } type;
81         uint32_t unix_id;
82         struct dom_sid *sid;
83 };
84
85 struct samba3_idmap 
86 {
87         /* High water marks */
88         uint32_t user_hwm;
89         uint32_t group_hwm;
90
91         uint32_t mapping_count;
92         struct samba3_idmap_mapping *mappings;
93 };
94
95 struct samba3_winsdb_entry 
96 {
97         char *name;
98         int nb_flags;
99         int type;
100         time_t ttl;
101         uint32_t ip_count;
102         struct ipv4_addr *ips;
103 };
104
105 struct samba3_policy
106 {
107         uint32_t min_password_length;
108         uint32_t password_history;
109         uint32_t user_must_logon_to_change_password;
110         uint32_t maximum_password_age;
111         uint32_t minimum_password_age;
112         uint32_t lockout_duration;
113         uint32_t reset_count_minutes;
114         uint32_t bad_lockout_minutes;
115         uint32_t disconnect_time;
116         uint32_t refuse_machine_password_change;
117 };
118
119 #endif /* _SAMBA3_H */