xref: /titanic_51/usr/src/cmd/idmap/idmapd/init.c (revision 71590c90e239661c113497da3ca8b7301dfbe24c)
1c5c4113dSnw141292 /*
2c5c4113dSnw141292  * CDDL HEADER START
3c5c4113dSnw141292  *
4c5c4113dSnw141292  * The contents of this file are subject to the terms of the
5c5c4113dSnw141292  * Common Development and Distribution License (the "License").
6c5c4113dSnw141292  * You may not use this file except in compliance with the License.
7c5c4113dSnw141292  *
8c5c4113dSnw141292  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9c5c4113dSnw141292  * or http://www.opensolaris.org/os/licensing.
10c5c4113dSnw141292  * See the License for the specific language governing permissions
11c5c4113dSnw141292  * and limitations under the License.
12c5c4113dSnw141292  *
13c5c4113dSnw141292  * When distributing Covered Code, include this CDDL HEADER in each
14c5c4113dSnw141292  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15c5c4113dSnw141292  * If applicable, add the following below this CDDL HEADER, with the
16c5c4113dSnw141292  * fields enclosed by brackets "[]" replaced with your own identifying
17c5c4113dSnw141292  * information: Portions Copyright [yyyy] [name of copyright owner]
18c5c4113dSnw141292  *
19c5c4113dSnw141292  * CDDL HEADER END
20c5c4113dSnw141292  */
21c5c4113dSnw141292 /*
224edd44c5Sjp151216  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23c5c4113dSnw141292  * Use is subject to license terms.
24c5c4113dSnw141292  */
25c5c4113dSnw141292 
26c5c4113dSnw141292 #pragma ident	"%Z%%M%	%I%	%E% SMI"
27c5c4113dSnw141292 
28c5c4113dSnw141292 /*
29c5c4113dSnw141292  * Initialization routines
30c5c4113dSnw141292  */
31c5c4113dSnw141292 
32c5c4113dSnw141292 #include "idmapd.h"
33c5c4113dSnw141292 #include <signal.h>
34c5c4113dSnw141292 #include <thread.h>
35c5c4113dSnw141292 #include <string.h>
36c5c4113dSnw141292 #include <errno.h>
37c5c4113dSnw141292 #include <assert.h>
38c5c4113dSnw141292 #include <unistd.h>
39c5c4113dSnw141292 #include <sys/types.h>
40c5c4113dSnw141292 #include <sys/stat.h>
418edda628Sbaban #include <rpcsvc/daemon_utils.h>
42c5c4113dSnw141292 
43c5c4113dSnw141292 
44c5c4113dSnw141292 int
454edd44c5Sjp151216 init_mapping_system()
464edd44c5Sjp151216 {
478edda628Sbaban 	int rc = 0;
488edda628Sbaban 
49c5c4113dSnw141292 	if (rwlock_init(&_idmapdstate.rwlk_cfg, USYNC_THREAD, NULL) != 0)
50c5c4113dSnw141292 		return (-1);
51e8c27ec8Sbaban 	if ((rc = load_config()) < 0)
52e8c27ec8Sbaban 		return (rc);
538edda628Sbaban 
548edda628Sbaban 	(void) setegid(DAEMON_GID);
558edda628Sbaban 	(void) seteuid(DAEMON_UID);
56c5c4113dSnw141292 	if (init_dbs() < 0) {
578edda628Sbaban 		rc = -1;
58c5c4113dSnw141292 		fini_mapping_system();
59c5c4113dSnw141292 	}
608edda628Sbaban 	(void) seteuid(0);
618edda628Sbaban 	(void) setegid(0);
628edda628Sbaban 
638edda628Sbaban 	return (rc);
64c5c4113dSnw141292 }
65c5c4113dSnw141292 
66c5c4113dSnw141292 void
674edd44c5Sjp151216 fini_mapping_system()
684edd44c5Sjp151216 {
69c5c4113dSnw141292 	fini_dbs();
70c5c4113dSnw141292 }
71c5c4113dSnw141292 
72c5c4113dSnw141292 int
734edd44c5Sjp151216 load_config()
744edd44c5Sjp151216 {
75e3c2d6aaSnw141292 	int rc;
76c8e26105Sjp151216 	idmap_pg_config_t *pgcfg;
77c5c4113dSnw141292 	if ((_idmapdstate.cfg = idmap_cfg_init()) == NULL) {
780dcc7149Snw141292 		degrade_svc("failed to initialize config");
79c5c4113dSnw141292 		return (-1);
80c5c4113dSnw141292 	}
81c8e26105Sjp151216 	pgcfg = &_idmapdstate.cfg->pgcfg;
82c8e26105Sjp151216 
83e3c2d6aaSnw141292 	rc = idmap_cfg_load(&_idmapdstate.cfg->handles,
84e3c2d6aaSnw141292 	    &_idmapdstate.cfg->pgcfg, 0);
85e3c2d6aaSnw141292 	if (rc < -1) {
86e3c2d6aaSnw141292 		/* Total failure */
870dcc7149Snw141292 		degrade_svc("fatal error while loading configuration");
88e8c27ec8Sbaban 		return (rc);
89c5c4113dSnw141292 	}
90c8e26105Sjp151216 
91e3c2d6aaSnw141292 	if (rc != 0)
92e3c2d6aaSnw141292 		/* Partial failure */
93*71590c90Snw141292 		idmapdlog(LOG_ERR, "Various errors occurred while loading "
94*71590c90Snw141292 		    "the configuration; check the logs");
95e3c2d6aaSnw141292 
96c8e26105Sjp151216 	if (pgcfg->global_catalog == NULL ||
97c8e26105Sjp151216 	    pgcfg->global_catalog[0].host[0] == '\0') {
980dcc7149Snw141292 		degrade_svc(
990dcc7149Snw141292 		    "global catalog server is not configured; AD lookup "
100e3c2d6aaSnw141292 		    "will fail until one or more global catalog server names "
101e3c2d6aaSnw141292 		    "are configured or discovered; auto-discovery will begin "
1020dcc7149Snw141292 		    "shortly");
103e3c2d6aaSnw141292 	} else {
104e3c2d6aaSnw141292 		restore_svc();
105c5c4113dSnw141292 	}
106c8e26105Sjp151216 
107c8e26105Sjp151216 	(void) reload_ad();
108c8e26105Sjp151216 
1090dcc7149Snw141292 	if ((rc = idmap_cfg_start_updates()) < 0) {
1100dcc7149Snw141292 		/* Total failure */
1110dcc7149Snw141292 		degrade_svc("could not start config updater");
1120dcc7149Snw141292 		return (rc);
1130dcc7149Snw141292 	}
114e3c2d6aaSnw141292 
115*71590c90Snw141292 	idmapdlog(LOG_DEBUG, "Initial configuration loaded");
116e3c2d6aaSnw141292 
117c5c4113dSnw141292 	return (0);
118c5c4113dSnw141292 }
119c5c4113dSnw141292 
120c8e26105Sjp151216 
121c8e26105Sjp151216 int
1224edd44c5Sjp151216 reload_ad()
1234edd44c5Sjp151216 {
124c8e26105Sjp151216 	int	i;
125c8e26105Sjp151216 	ad_t	*old;
126c8e26105Sjp151216 	ad_t	*new;
127c8e26105Sjp151216 
128c8e26105Sjp151216 	idmap_pg_config_t *pgcfg = &_idmapdstate.cfg->pgcfg;
129c8e26105Sjp151216 
130c8e26105Sjp151216 	if (pgcfg->default_domain == NULL ||
131c8e26105Sjp151216 	    pgcfg->global_catalog == NULL) {
132c8e26105Sjp151216 		if (_idmapdstate.ad == NULL)
133*71590c90Snw141292 			idmapdlog(LOG_ERR, "AD lookup disabled");
134c8e26105Sjp151216 		else
135*71590c90Snw141292 			idmapdlog(LOG_ERR, "cannot update AD context");
136c8e26105Sjp151216 		return (-1);
137c8e26105Sjp151216 	}
138c8e26105Sjp151216 
139c8e26105Sjp151216 	old = _idmapdstate.ad;
140c8e26105Sjp151216 
141c8e26105Sjp151216 	if (idmap_ad_alloc(&new, pgcfg->default_domain,
142c8e26105Sjp151216 	    IDMAP_AD_GLOBAL_CATALOG) != 0) {
1430dcc7149Snw141292 		degrade_svc("could not initialize AD context");
144c8e26105Sjp151216 		return (-1);
145c8e26105Sjp151216 	}
146c8e26105Sjp151216 
147c8e26105Sjp151216 	for (i = 0; pgcfg->global_catalog[i].host[0] != '\0'; i++) {
148c8e26105Sjp151216 		if (idmap_add_ds(new,
149c8e26105Sjp151216 		    pgcfg->global_catalog[i].host,
150c8e26105Sjp151216 		    pgcfg->global_catalog[i].port) != 0) {
151c8e26105Sjp151216 			idmap_ad_free(&new);
1520dcc7149Snw141292 			degrade_svc("could not initialize AD GC context");
153c8e26105Sjp151216 			return (-1);
154c8e26105Sjp151216 		}
155c8e26105Sjp151216 	}
156c8e26105Sjp151216 
157c8e26105Sjp151216 	_idmapdstate.ad = new;
158c8e26105Sjp151216 
159c8e26105Sjp151216 	if (old != NULL)
160c8e26105Sjp151216 		idmap_ad_free(&old);
161c8e26105Sjp151216 
162c8e26105Sjp151216 	return (0);
163c8e26105Sjp151216 }
164c8e26105Sjp151216 
165c8e26105Sjp151216 
166c5c4113dSnw141292 void
1674edd44c5Sjp151216 print_idmapdstate()
1684edd44c5Sjp151216 {
169c8e26105Sjp151216 	int i;
170e8c27ec8Sbaban 	idmap_pg_config_t *pgcfg;
171c8e26105Sjp151216 
172c5c4113dSnw141292 	RDLOCK_CONFIG();
173c5c4113dSnw141292 
174c8e26105Sjp151216 	if (_idmapdstate.cfg == NULL) {
175*71590c90Snw141292 		idmapdlog(LOG_INFO, "Null configuration");
176c8e26105Sjp151216 		UNLOCK_CONFIG();
177c8e26105Sjp151216 		return;
178c5c4113dSnw141292 	}
179c8e26105Sjp151216 
180e8c27ec8Sbaban 	pgcfg = &_idmapdstate.cfg->pgcfg;
181e8c27ec8Sbaban 
182*71590c90Snw141292 	idmapdlog(LOG_DEBUG, "list_size_limit=%llu", pgcfg->list_size_limit);
183*71590c90Snw141292 	idmapdlog(LOG_DEBUG, "default_domain=%s",
184c8e26105Sjp151216 	    CHECK_NULL(pgcfg->default_domain));
185*71590c90Snw141292 	idmapdlog(LOG_DEBUG, "domain_name=%s", CHECK_NULL(pgcfg->domain_name));
186*71590c90Snw141292 	idmapdlog(LOG_DEBUG, "machine_sid=%s", CHECK_NULL(pgcfg->machine_sid));
187c8e26105Sjp151216 	if (pgcfg->domain_controller == NULL ||
188c8e26105Sjp151216 	    pgcfg->domain_controller[0].host[0] == '\0') {
189*71590c90Snw141292 		idmapdlog(LOG_DEBUG, "No domain controllers known");
190c8e26105Sjp151216 	} else {
191c8e26105Sjp151216 		for (i = 0; pgcfg->domain_controller[i].host[0] != '\0'; i++)
192*71590c90Snw141292 			idmapdlog(LOG_DEBUG, "domain_controller=%s port=%d",
193*71590c90Snw141292 			    pgcfg->domain_controller[i].host,
194c8e26105Sjp151216 			    pgcfg->domain_controller[i].port);
195c8e26105Sjp151216 	}
196*71590c90Snw141292 	idmapdlog(LOG_DEBUG, "forest_name=%s", CHECK_NULL(pgcfg->forest_name));
197*71590c90Snw141292 	idmapdlog(LOG_DEBUG, "site_name=%s", CHECK_NULL(pgcfg->site_name));
198c8e26105Sjp151216 	if (pgcfg->global_catalog == NULL ||
199c8e26105Sjp151216 	    pgcfg->global_catalog[0].host[0] == '\0') {
200*71590c90Snw141292 		idmapdlog(LOG_DEBUG, "No global catalog servers known");
201c8e26105Sjp151216 	} else {
202c8e26105Sjp151216 		for (i = 0; pgcfg->global_catalog[i].host[0] != '\0'; i++)
203*71590c90Snw141292 			idmapdlog(LOG_DEBUG, "global_catalog=%s port=%d",
204c8e26105Sjp151216 			    pgcfg->global_catalog[i].host,
205c8e26105Sjp151216 			    pgcfg->global_catalog[i].port);
206c8e26105Sjp151216 	}
207*71590c90Snw141292 	idmapdlog(LOG_DEBUG, "ds_name_mapping_enabled=%s",
208e8c27ec8Sbaban 	    (pgcfg->ds_name_mapping_enabled == TRUE) ? "true" : "false");
209*71590c90Snw141292 	idmapdlog(LOG_DEBUG, "ad_unixuser_attr=%s",
210e8c27ec8Sbaban 	    CHECK_NULL(pgcfg->ad_unixuser_attr));
211*71590c90Snw141292 	idmapdlog(LOG_DEBUG, "ad_unixgroup_attr=%s",
212e8c27ec8Sbaban 	    CHECK_NULL(pgcfg->ad_unixgroup_attr));
213*71590c90Snw141292 	idmapdlog(LOG_DEBUG, "nldap_winname_attr=%s",
214e8c27ec8Sbaban 	    CHECK_NULL(pgcfg->nldap_winname_attr));
215c8e26105Sjp151216 
216c5c4113dSnw141292 	UNLOCK_CONFIG();
217c5c4113dSnw141292 }
218c5c4113dSnw141292 
219c5c4113dSnw141292 int
2204edd44c5Sjp151216 create_directory(const char *path, uid_t uid, gid_t gid)
2214edd44c5Sjp151216 {
222c5c4113dSnw141292 	int	rc;
223c5c4113dSnw141292 
224c5c4113dSnw141292 	if ((rc = mkdir(path, 0700)) < 0 && errno != EEXIST) {
225*71590c90Snw141292 		idmapdlog(LOG_ERR, "Error creating directory %s (%s)",
226*71590c90Snw141292 		    path, strerror(errno));
227c5c4113dSnw141292 		return (-1);
228c5c4113dSnw141292 	}
229c5c4113dSnw141292 
230c5c4113dSnw141292 	if (lchown(path, uid, gid) < 0) {
231*71590c90Snw141292 		idmapdlog(LOG_ERR, "Error creating directory %s (%s)",
232*71590c90Snw141292 		    path, strerror(errno));
233c5c4113dSnw141292 		if (rc == 0)
234c5c4113dSnw141292 			(void) rmdir(path);
235c5c4113dSnw141292 		return (-1);
236c5c4113dSnw141292 	}
237c5c4113dSnw141292 	return (0);
238c5c4113dSnw141292 }
239