Removed unused var.
[kai/samba.git] / source3 / passdb / machine_sid.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Password and authentication handling
4    Copyright (C) Jeremy Allison                 1996-2002
5    Copyright (C) Andrew Tridgell                2002
6    Copyright (C) Gerald (Jerry) Carter          2000
7       
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24
25
26 /****************************************************************************
27  Read a SID from a file. This is for compatibility with the old MACHINE.SID
28  style of SID storage
29 ****************************************************************************/
30 static BOOL read_sid_from_file(const char *fname, DOM_SID *sid)
31 {
32         char **lines;
33         int numlines;
34         BOOL ret;
35
36         lines = file_lines_load(fname, &numlines);
37         
38         if (!lines || numlines < 1) {
39                 if (lines) file_lines_free(lines);
40                 return False;
41         }
42         
43         ret = string_to_sid(sid, lines[0]);
44         file_lines_free(lines);
45         return ret;
46 }
47
48 /*
49   generate a random sid - used to build our own sid if we don't have one
50 */
51 static void generate_random_sid(DOM_SID *sid)
52 {
53         int i;
54         uchar raw_sid_data[12];
55
56         memset((char *)sid, '\0', sizeof(*sid));
57         sid->sid_rev_num = 1;
58         sid->id_auth[5] = 5;
59         sid->num_auths = 0;
60         sid->sub_auths[sid->num_auths++] = 21;
61
62         generate_random_buffer(raw_sid_data, 12, True);
63         for (i = 0; i < 3; i++)
64                 sid->sub_auths[sid->num_auths++] = IVAL(raw_sid_data, i*4);
65 }
66
67 static BOOL read_sam_sid(void)
68 {
69         extern pstring global_myname;
70         extern fstring global_myworkgroup;
71 }
72
73 /****************************************************************************
74  Generate the global machine sid.
75 ****************************************************************************/
76
77 BOOL pdb_generate_sam_sid(void)
78 {
79         char *fname = NULL;
80         extern pstring global_myname;
81         extern fstring global_myworkgroup;
82         BOOL is_dc = False;
83
84         generate_wellknown_sids();
85
86         switch (lp_server_role()) {
87         case ROLE_DOMAIN_PDC:
88         case ROLE_DOMAIN_BDC:
89                 is_dc = True;
90                 break;
91         default:
92                 is_dc = False;
93                 break;
94         }
95
96         if (secrets_fetch_domain_sid(global_myname, &global_sam_sid)) {
97                 DOM_SID domain_sid;
98
99                 /* We got our sid. If not a pdc/bdc, we're done. */
100                 if (!is_dc)
101                         return True;
102
103                 if (!secrets_fetch_domain_sid(global_myworkgroup, &domain_sid)) {
104
105                         /* No domain sid and we're a pdc/bdc. Store it */
106
107                         if (!secrets_store_domain_sid(global_myworkgroup, &global_sam_sid)) {
108                                 DEBUG(0,("pdb_generate_sam_sid: Can't store domain SID as a pdc/bdc.\n"));
109                                 return False;
110                         }
111                         return True;
112                 }
113
114                 if (!sid_equal(&domain_sid, &global_sam_sid)) {
115
116                         /* Domain name sid doesn't match global sam sid. Re-store global sam sid as domain sid. */
117
118                         DEBUG(0,("pdb_generate_sam_sid: Mismatched SIDs as a pdc/bdc.\n"));
119                         if (!secrets_store_domain_sid(global_myworkgroup, &global_sam_sid)) {
120                                 DEBUG(0,("pdb_generate_sam_sid: Can't re-store domain SID as a pdc/bdc.\n"));
121                                 return False;
122                         }
123                         return True;
124                 }
125
126                 return True;
127                 
128         }
129
130         /* check for an old MACHINE.SID file for backwards compatibility */
131         asprintf(&fname, "%s/MACHINE.SID", lp_private_dir());
132
133         if (read_sid_from_file(fname, &global_sam_sid)) {
134                 /* remember it for future reference and unlink the old MACHINE.SID */
135                 if (!secrets_store_domain_sid(global_myname, &global_sam_sid)) {
136                         DEBUG(0,("pdb_generate_sam_sid: Failed to store SID from file.\n"));
137                         SAFE_FREE(fname);
138                         return False;
139                 }
140                 unlink(fname);
141                 if (is_dc) {
142                         if (!secrets_store_domain_sid(global_myworkgroup, &global_sam_sid)) {
143                                 DEBUG(0,("pdb_generate_sam_sid: Failed to store domain SID from file.\n"));
144                                 SAFE_FREE(fname);
145                                 return False;
146                         }
147                 }
148         }
149
150         SAFE_FREE(fname);
151
152         /* we don't have the SID in secrets.tdb, we will need to
153            generate one and save it */
154         generate_random_sid(&global_sam_sid);
155
156         if (!secrets_store_domain_sid(global_myname, &global_sam_sid)) {
157                 DEBUG(0,("pdb_generate_sam_sid: Failed to store generated machine SID.\n"));
158                 return False;
159         }
160         if (is_dc) {
161                 if (!secrets_store_domain_sid(global_myworkgroup, &global_sam_sid)) {
162                         DEBUG(0,("pdb_generate_sam_sid: Failed to store generated domain SID.\n"));
163                         return False;
164                 }
165         }
166
167         return True;
168 }