1 | /*
|
---|
2 | * Unix SMB/CIFS implementation.
|
---|
3 | * secrets.tdb file format info
|
---|
4 | * Copyright (C) Andrew Tridgell 2000
|
---|
5 | *
|
---|
6 | * This program is free software; you can redistribute it and/or modify it
|
---|
7 | * under the terms of the GNU General Public License as published by the
|
---|
8 | * Free Software Foundation; either version 3 of the License, or (at your
|
---|
9 | * option) any later version.
|
---|
10 | *
|
---|
11 | * This program is distributed in the hope that it will be useful, but WITHOUT
|
---|
12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
---|
13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
---|
14 | * more details.
|
---|
15 | *
|
---|
16 | * You should have received a copy of the GNU General Public License along with
|
---|
17 | * this program; if not, see <http://www.gnu.org/licenses/>.
|
---|
18 | */
|
---|
19 |
|
---|
20 | #ifndef _SECRETS_H
|
---|
21 | #define _SECRETS_H
|
---|
22 |
|
---|
23 | /* the first one is for the hashed password (NT4 style) the latter
|
---|
24 | for plaintext (ADS)
|
---|
25 | */
|
---|
26 | #define SECRETS_MACHINE_ACCT_PASS "SECRETS/$MACHINE.ACC"
|
---|
27 | #define SECRETS_MACHINE_PASSWORD "SECRETS/MACHINE_PASSWORD"
|
---|
28 | #define SECRETS_MACHINE_PASSWORD_PREV "SECRETS/MACHINE_PASSWORD.PREV"
|
---|
29 | #define SECRETS_MACHINE_LAST_CHANGE_TIME "SECRETS/MACHINE_LAST_CHANGE_TIME"
|
---|
30 | #define SECRETS_MACHINE_SEC_CHANNEL_TYPE "SECRETS/MACHINE_SEC_CHANNEL_TYPE"
|
---|
31 | #define SECRETS_MACHINE_TRUST_ACCOUNT_NAME "SECRETS/SECRETS_MACHINE_TRUST_ACCOUNT_NAME"
|
---|
32 | /* this one is for storing trusted domain account password */
|
---|
33 | #define SECRETS_DOMTRUST_ACCT_PASS "SECRETS/$DOMTRUST.ACC"
|
---|
34 |
|
---|
35 | /* Store the principal name used for Kerberos DES key salt under this key name. */
|
---|
36 | #define SECRETS_SALTING_PRINCIPAL "SECRETS/SALTING_PRINCIPAL"
|
---|
37 |
|
---|
38 | /* The domain sid and our sid are stored here even though they aren't
|
---|
39 | really secret. */
|
---|
40 | #define SECRETS_DOMAIN_SID "SECRETS/SID"
|
---|
41 | #define SECRETS_SAM_SID "SAM/SID"
|
---|
42 |
|
---|
43 | /* The domain GUID and server GUID (NOT the same) are also not secret */
|
---|
44 | #define SECRETS_DOMAIN_GUID "SECRETS/DOMGUID"
|
---|
45 | #define SECRETS_SERVER_GUID "SECRETS/GUID"
|
---|
46 |
|
---|
47 | #define SECRETS_LDAP_BIND_PW "SECRETS/LDAP_BIND_PW"
|
---|
48 |
|
---|
49 | #define SECRETS_LOCAL_SCHANNEL_KEY "SECRETS/LOCAL_SCHANNEL_KEY"
|
---|
50 |
|
---|
51 | /* Authenticated user info is stored in secrets.tdb under these keys */
|
---|
52 |
|
---|
53 | #define SECRETS_AUTH_USER "SECRETS/AUTH_USER"
|
---|
54 | #define SECRETS_AUTH_DOMAIN "SECRETS/AUTH_DOMAIN"
|
---|
55 | #define SECRETS_AUTH_PASSWORD "SECRETS/AUTH_PASSWORD"
|
---|
56 |
|
---|
57 | /* structure for storing machine account password
|
---|
58 | (ie. when samba server is member of a domain */
|
---|
59 | struct machine_acct_pass {
|
---|
60 | uint8 hash[16];
|
---|
61 | time_t mod_time;
|
---|
62 | };
|
---|
63 |
|
---|
64 | /*
|
---|
65 | * trusted domain entry/entries returned by secrets_get_trusted_domains
|
---|
66 | * (used in _lsa_enum_trust_dom call)
|
---|
67 | */
|
---|
68 | struct trustdom_info {
|
---|
69 | char *name;
|
---|
70 | DOM_SID sid;
|
---|
71 | };
|
---|
72 |
|
---|
73 | /*
|
---|
74 | * Format of an OpenAFS keyfile
|
---|
75 | */
|
---|
76 |
|
---|
77 | #define SECRETS_AFS_MAXKEYS 8
|
---|
78 |
|
---|
79 | struct afs_key {
|
---|
80 | uint32 kvno;
|
---|
81 | char key[8];
|
---|
82 | };
|
---|
83 |
|
---|
84 | struct afs_keyfile {
|
---|
85 | uint32 nkeys;
|
---|
86 | struct afs_key entry[SECRETS_AFS_MAXKEYS];
|
---|
87 | };
|
---|
88 |
|
---|
89 | #define SECRETS_AFS_KEYFILE "SECRETS/AFS_KEYFILE"
|
---|
90 |
|
---|
91 | #define SECRETS_SCHANNEL_STATE "SECRETS/SCHANNEL"
|
---|
92 |
|
---|
93 | #endif /* _SECRETS_H */
|
---|