blob: 047b4e7c9023fcb13de76efa2f52c17c18c1e119 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/*
* Unix SMB/CIFS implementation.
* tdbsam2 genstruct enabled header file
* Copyright (C) Simo Sorce 2002
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program 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 General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 675
* Mass Ave, Cambridge, MA 02139, USA.
*/
/* ALL strings assumes UTF8 as encoding */
GENSTRUCT struct tdbsam2_domain_data {
uint32 xcounter; /* counter to be updated at any change */
SEC_DESC *sec_desc; /* Security Descriptor */
DOM_SID *dom_sid; /* The Domain SID */
char *name; _NULLTERM /* NT Domain Name */
char *description; _NULLTERM /* Descritpion (Gecos) */
uint32 next_rid; /* The Next free RID */
};
GENSTRUCT struct tdbsam2_user_data {
uint32 xcounter; /* counter to be updated at any change */
SEC_DESC *sec_desc; /* Security Descriptor */
DOM_SID *user_sid; /* The User SID */
char *name; _NULLTERM /* NT User Name */
char *description; _NULLTERM /* Descritpion (Gecos) */
DOM_SID *group_sid; /* The Primary Group SID */
NTTIME *logon_time;
NTTIME *logoff_time;
NTTIME *kickoff_time;
NTTIME *pass_last_set_time;
NTTIME *pass_can_change_time;
NTTIME *pass_must_change_time;
char *full_name; _NULLTERM /* The Full Name */
char *home_dir; _NULLTERM /* Home Directory */
char *dir_drive; _NULLTERM /* Drive Letter the home should be mapped to */
char *logon_script; _NULLTERM /* Logon script path */
char *profile_path; _NULLTERM /* Profile is stored here */
char *workstations; _NULLTERM /* List of Workstation names the user is allowed to LogIn */
char *unknown_str; _NULLTERM /* Guess ... Unknown */
char *munged_dial; _NULLTERM /* Callback Number */
/* passwords are 16 byte leght, pointer is null if no password */
uint8 *lm_pw_ptr; _LEN(16) /* Lanman hashed password */
uint8 *nt_pw_ptr; _LEN(16) /* NT hashed password */
uint16 logon_divs; /* 168 - num of hours in a week */
uint32 hours_len; /* normally 21 */
uint8 *hours; _LEN(hours_len) /* normally 21 bytes (depends on hours_len) */
uint32 unknown_3; /* 0x00ff ffff */
uint32 unknown_5; /* 0x0002 0000 */
uint32 unknown_6; /* 0x0000 04ec */
};
GENSTRUCT struct tdbsam2_group_data {
uint32 xcounter; /* counter to be updated at any change */
SEC_DESC *sec_desc; /* Security Descriptor */
DOM_SID *group_sid; /* The Group SID */
char *name; _NULLTERM /* NT Group Name */
char *description; _NULLTERM /* Descritpion (Gecos) */
uint32 count; /* number of sids */
DOM_SID **members; _LEN(count) /* SID array */
};
GENSTRUCT struct tdbsam2_privilege_data {
uint32 xcounter; /* counter to be updated at any change */
LUID_ATTR *privilege; /* Privilege */
char *name; _NULLTERM /* NT User Name */
char *description; _NULLTERM /* Descritpion (Gecos) */
uint32 count; /* number of sids */
DOM_SID **members; _LEN(count) /* SID array */
};
|