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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
*/
#include <syslog.h>
#include <synch.h>
#include <pthread.h>
#include <unistd.h>
#include <string.h>
#include <strings.h>
#include <sys/errno.h>
#include <smbsrv/libsmb.h>
#include <smbsrv/libsmbns.h>
#include <smbsrv/libmlsvc.h>
#include <smbsrv/smbinfo.h>
#include "smbd.h"
#define SMBD_DC_MONITOR_ATTEMPTS 3
#define SMBD_DC_MONITOR_RETRY_INTERVAL 3 /* seconds */
#define SMBD_DC_MONITOR_INTERVAL 60 /* seconds */
extern smbd_t smbd;
static mutex_t smbd_dc_mutex;
static cond_t smbd_dc_cv;
static void *smbd_dc_monitor(void *);
static void smbd_dc_update(void);
static boolean_t smbd_set_netlogon_cred(void);
static int smbd_get_kpasswd_srv(char *, size_t);
static uint32_t smbd_join_workgroup(smb_joininfo_t *);
static uint32_t smbd_join_domain(smb_joininfo_t *);
/*
* Launch the DC discovery and monitor thread.
*/
int
smbd_dc_monitor_init(void)
{
pthread_attr_t attr;
int rc;
(void) smb_config_getstr(SMB_CI_ADS_SITE, smbd.s_site,
MAXHOSTNAMELEN);
(void) smb_config_getip(SMB_CI_DOMAIN_SRV, &smbd.s_pdc);
smb_ads_init();
if (smbd.s_secmode != SMB_SECMODE_DOMAIN)
return (0);
(void) pthread_attr_init(&attr);
(void) pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
rc = pthread_create(&smbd.s_dc_monitor_tid, &attr, smbd_dc_monitor,
NULL);
(void) pthread_attr_destroy(&attr);
return (rc);
}
void
smbd_dc_monitor_refresh(void)
{
char site[MAXHOSTNAMELEN];
smb_inaddr_t pdc;
site[0] = '\0';
bzero(&pdc, sizeof (smb_inaddr_t));
(void) smb_config_getstr(SMB_CI_ADS_SITE, site, MAXHOSTNAMELEN);
(void) smb_config_getip(SMB_CI_DOMAIN_SRV, &pdc);
(void) mutex_lock(&smbd_dc_mutex);
if ((bcmp(&smbd.s_pdc, &pdc, sizeof (smb_inaddr_t)) != 0) ||
(smb_strcasecmp(smbd.s_site, site, 0) != 0)) {
bcopy(&pdc, &smbd.s_pdc, sizeof (smb_inaddr_t));
(void) strlcpy(smbd.s_site, site, MAXHOSTNAMELEN);
smbd.s_pdc_changed = B_TRUE;
(void) cond_signal(&smbd_dc_cv);
}
(void) mutex_unlock(&smbd_dc_mutex);
}
/*ARGSUSED*/
static void *
smbd_dc_monitor(void *arg)
{
boolean_t ds_not_responding = B_FALSE;
boolean_t ds_cfg_changed = B_FALSE;
timestruc_t delay;
int i;
smbd_dc_update();
smbd_online_wait("smbd_dc_monitor");
while (smbd_online()) {
delay.tv_sec = SMBD_DC_MONITOR_INTERVAL;
delay.tv_nsec = 0;
(void) mutex_lock(&smbd_dc_mutex);
(void) cond_reltimedwait(&smbd_dc_cv, &smbd_dc_mutex, &delay);
if (smbd.s_pdc_changed) {
smbd.s_pdc_changed = B_FALSE;
ds_cfg_changed = B_TRUE;
}
(void) mutex_unlock(&smbd_dc_mutex);
for (i = 0; i < SMBD_DC_MONITOR_ATTEMPTS; ++i) {
if (dssetup_check_service() == 0) {
ds_not_responding = B_FALSE;
break;
}
ds_not_responding = B_TRUE;
(void) sleep(SMBD_DC_MONITOR_RETRY_INTERVAL);
}
if (ds_not_responding)
smb_log(smbd.s_loghd, LOG_NOTICE,
"smbd_dc_monitor: domain service not responding");
if (ds_not_responding || ds_cfg_changed) {
ds_cfg_changed = B_FALSE;
smb_ads_refresh();
smbd_dc_update();
}
}
smbd.s_dc_monitor_tid = 0;
return (NULL);
}
/*
* Locate a domain controller in the current resource domain and Update
* the Netlogon credential chain.
*
* The domain configuration will be updated upon successful DC discovery.
*/
static void
smbd_dc_update(void)
{
char domain[MAXHOSTNAMELEN];
smb_domainex_t info;
smb_domain_t *primary;
if (smb_getfqdomainname(domain, MAXHOSTNAMELEN) != 0) {
(void) smb_getdomainname(domain, MAXHOSTNAMELEN);
(void) smb_strupr(domain);
}
if (!smb_locate_dc(domain, "", &info)) {
smb_log(smbd.s_loghd, LOG_NOTICE,
"smbd_dc_update: %s: locate failed", domain);
} else {
primary = &info.d_primary;
smb_config_setdomaininfo(primary->di_nbname,
primary->di_fqname,
primary->di_sid,
primary->di_u.di_dns.ddi_forest,
primary->di_u.di_dns.ddi_guid);
smb_log(smbd.s_loghd, LOG_NOTICE,
"smbd_dc_update: %s: located %s", domain, info.d_dc);
}
if (smbd_set_netlogon_cred()) {
/*
* Restart required because the domain changed
* or the credential chain setup failed.
*/
smb_log(smbd.s_loghd, LOG_NOTICE,
"smbd_dc_update: %s: smb/server restart required");
if (smb_smf_restart_service() != 0)
smb_log(smbd.s_loghd, LOG_ERR,
"restart failed: run 'svcs -xv smb/server'"
" for more information");
}
}
/*
* smbd_join
*
* Joins the specified domain/workgroup.
*
* If the security mode or domain name is being changed,
* the caller must restart the service.
*/
uint32_t
smbd_join(smb_joininfo_t *info)
{
uint32_t status;
dssetup_clear_domain_info();
if (info->mode == SMB_SECMODE_WORKGRP)
status = smbd_join_workgroup(info);
else
status = smbd_join_domain(info);
return (status);
}
/*
* smbd_set_netlogon_cred
*
* If the system is joined to an AD domain via kclient, SMB daemon will need
* to establish the NETLOGON credential chain.
*
* Since the kclient has updated the machine password stored in SMF
* repository, the cached ipc_info must be updated accordingly by calling
* smb_ipc_commit.
*
* Due to potential replication delays in a multiple DC environment, the
* NETLOGON rpc request must be sent to the DC, to which the KPASSWD request
* is sent. If the DC discovered by the SMB daemon is different than the
* kpasswd server, the current connection with the DC will be torn down
* and a DC discovery process will be triggered to locate the kpasswd
* server.
*
* If joining a new domain, the domain_name property must be set after a
* successful credential chain setup.
*/
static boolean_t
smbd_set_netlogon_cred(void)
{
char kpasswd_srv[MAXHOSTNAMELEN];
char kpasswd_domain[MAXHOSTNAMELEN];
char sam_acct[SMB_SAMACCT_MAXLEN];
char ipc_usr[SMB_USERNAME_MAXLEN];
char *dom;
boolean_t new_domain = B_FALSE;
smb_domainex_t dxi;
smb_domain_t *di;
if (smb_match_netlogon_seqnum())
return (B_FALSE);
(void) smb_config_getstr(SMB_CI_KPASSWD_SRV, kpasswd_srv,
sizeof (kpasswd_srv));
if (*kpasswd_srv == '\0')
return (B_FALSE);
/*
* If the domain join initiated by smbadm join CLI is in
* progress, don't do anything.
*/
(void) smb_getsamaccount(sam_acct, sizeof (sam_acct));
smb_ipc_get_user(ipc_usr, SMB_USERNAME_MAXLEN);
if (smb_strcasecmp(ipc_usr, sam_acct, 0))
return (B_FALSE);
di = &dxi.d_primary;
if (!smb_domain_getinfo(&dxi))
(void) smb_getfqdomainname(di->di_fqname, MAXHOSTNAMELEN);
(void) smb_config_getstr(SMB_CI_KPASSWD_DOMAIN, kpasswd_domain,
sizeof (kpasswd_domain));
if (*kpasswd_domain != '\0' &&
smb_strcasecmp(kpasswd_domain, di->di_fqname, 0)) {
dom = kpasswd_domain;
new_domain = B_TRUE;
} else {
dom = di->di_fqname;
}
/*
* DC discovery will be triggered if the domain info is not
* currently cached or the SMB daemon has previously discovered a DC
* that is different than the kpasswd server.
*/
if (new_domain || smb_strcasecmp(dxi.d_dc, kpasswd_srv, 0) != 0) {
if (*dxi.d_dc != '\0')
mlsvc_disconnect(dxi.d_dc);
if (!smb_locate_dc(dom, kpasswd_srv, &dxi)) {
if (!smb_locate_dc(di->di_fqname, "", &dxi)) {
smb_ipc_commit();
return (B_FALSE);
}
}
}
smb_ipc_commit();
if (mlsvc_netlogon(dxi.d_dc, di->di_nbname)) {
syslog(LOG_NOTICE,
"failed to establish NETLOGON credential chain");
return (B_TRUE);
} else {
if (new_domain) {
smb_config_setdomaininfo(di->di_nbname, di->di_fqname,
di->di_sid,
di->di_u.di_dns.ddi_forest,
di->di_u.di_dns.ddi_guid);
(void) smb_config_setstr(SMB_CI_KPASSWD_DOMAIN, "");
}
}
return (new_domain);
}
/*
* Retrieve the kpasswd server from krb5.conf.
*
* Initialization of the locate dc thread.
* Returns 0 on success, an error number if thread creation fails.
*/
static int
smbd_get_kpasswd_srv(char *srv, size_t len)
{
FILE *fp;
static char buf[512];
char *p;
*srv = '\0';
p = getenv("KRB5_CONFIG");
if (p == NULL || *p == '\0')
p = "/etc/krb5/krb5.conf";
if ((fp = fopen(p, "r")) == NULL)
return (-1);
while (fgets(buf, sizeof (buf), fp)) {
/* Weed out any comment text */
(void) trim_whitespace(buf);
if (*buf == '#')
continue;
if ((p = strstr(buf, "kpasswd_server")) != NULL) {
if ((p = strchr(p, '=')) != NULL) {
(void) trim_whitespace(++p);
(void) strlcpy(srv, p, len);
}
break;
}
}
(void) fclose(fp);
return ((*srv == '\0') ? -1 : 0);
}
static uint32_t
smbd_join_workgroup(smb_joininfo_t *info)
{
char nb_domain[SMB_PI_MAX_DOMAIN];
(void) smb_config_getstr(SMB_CI_DOMAIN_NAME, nb_domain,
sizeof (nb_domain));
smbd_set_secmode(SMB_SECMODE_WORKGRP);
smb_config_setdomaininfo(info->domain_name, "", "", "", "");
if (strcasecmp(nb_domain, info->domain_name))
smb_browser_reconfig();
return (NT_STATUS_SUCCESS);
}
static uint32_t
smbd_join_domain(smb_joininfo_t *info)
{
uint32_t status;
unsigned char passwd_hash[SMBAUTH_HASH_SZ];
char dc[MAXHOSTNAMELEN];
smb_domainex_t dxi;
smb_domain_t *di;
/*
* Ensure that any previous membership of this domain has
* been cleared from the environment before we start. This
* will ensure that we don't attempt a NETLOGON_SAMLOGON
* when attempting to find the PDC.
*/
(void) smb_config_setbool(SMB_CI_DOMAIN_MEMB, B_FALSE);
if (smb_auth_ntlm_hash(info->domain_passwd, passwd_hash)
!= SMBAUTH_SUCCESS) {
syslog(LOG_ERR, "smbd: could not compute ntlm hash for '%s'",
info->domain_username);
return (NT_STATUS_INTERNAL_ERROR);
}
smb_ipc_set(info->domain_username, passwd_hash);
(void) smbd_get_kpasswd_srv(dc, sizeof (dc));
/* info->domain_name could either be NetBIOS domain name or FQDN */
if (smb_locate_dc(info->domain_name, dc, &dxi)) {
status = mlsvc_join(&dxi, info->domain_username,
info->domain_passwd);
if (status == NT_STATUS_SUCCESS) {
di = &dxi.d_primary;
smbd_set_secmode(SMB_SECMODE_DOMAIN);
smb_config_setdomaininfo(di->di_nbname, di->di_fqname,
di->di_sid,
di->di_u.di_dns.ddi_forest,
di->di_u.di_dns.ddi_guid);
smb_ipc_commit();
return (status);
}
smb_ipc_rollback();
syslog(LOG_ERR, "smbd: failed joining %s (%s)",
info->domain_name, xlate_nt_status(status));
return (status);
}
smb_ipc_rollback();
syslog(LOG_ERR, "smbd: failed locating domain controller for %s",
info->domain_name);
return (NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND);
}
|