xref: /onnv-gate/usr/src/cmd/idmap/idmapd/idmapd.c (revision 6414:da0c57d29c32)
14520Snw141292 /*
24520Snw141292  * CDDL HEADER START
34520Snw141292  *
44520Snw141292  * The contents of this file are subject to the terms of the
54520Snw141292  * Common Development and Distribution License (the "License").
64520Snw141292  * You may not use this file except in compliance with the License.
74520Snw141292  *
84520Snw141292  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
94520Snw141292  * or http://www.opensolaris.org/os/licensing.
104520Snw141292  * See the License for the specific language governing permissions
114520Snw141292  * and limitations under the License.
124520Snw141292  *
134520Snw141292  * When distributing Covered Code, include this CDDL HEADER in each
144520Snw141292  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
154520Snw141292  * If applicable, add the following below this CDDL HEADER, with the
164520Snw141292  * fields enclosed by brackets "[]" replaced with your own identifying
174520Snw141292  * information: Portions Copyright [yyyy] [name of copyright owner]
184520Snw141292  *
194520Snw141292  * CDDL HEADER END
204520Snw141292  */
214520Snw141292 /*
225771Sjp151216  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
234520Snw141292  * Use is subject to license terms.
244520Snw141292  */
254520Snw141292 
264520Snw141292 #pragma ident	"%Z%%M%	%I%	%E% SMI"
274520Snw141292 
284520Snw141292 /*
294520Snw141292  * main() of idmapd(1M)
304520Snw141292  */
314520Snw141292 
324520Snw141292 #include "idmapd.h"
336017Snw141292 #include <atomic.h>
344520Snw141292 #include <signal.h>
354520Snw141292 #include <rpc/pmap_clnt.h> /* for pmap_unset */
364520Snw141292 #include <string.h> /* strcmp */
374520Snw141292 #include <unistd.h> /* setsid */
384520Snw141292 #include <sys/types.h>
394520Snw141292 #include <memory.h>
404520Snw141292 #include <stropts.h>
414520Snw141292 #include <netconfig.h>
424520Snw141292 #include <sys/resource.h> /* rlimit */
434520Snw141292 #include <syslog.h>
444520Snw141292 #include <rpcsvc/daemon_utils.h> /* DAEMON_UID and DAEMON_GID */
454520Snw141292 #include <priv_utils.h> /* privileges */
464520Snw141292 #include <locale.h>
474520Snw141292 #include <sys/systeminfo.h>
484520Snw141292 #include <errno.h>
494520Snw141292 #include <sys/wait.h>
504520Snw141292 #include <sys/time.h>
514520Snw141292 #include <zone.h>
524520Snw141292 #include <door.h>
535317Sjp151216 #include <port.h>
544520Snw141292 #include <tsol/label.h>
554520Snw141292 #include <sys/resource.h>
564520Snw141292 #include <sys/sid.h>
574520Snw141292 #include <sys/idmap.h>
584520Snw141292 
594520Snw141292 static void	term_handler(int);
604520Snw141292 static void	init_idmapd();
614520Snw141292 static void	fini_idmapd();
624520Snw141292 
634520Snw141292 #define	_RPCSVC_CLOSEDOWN 120
644520Snw141292 
654520Snw141292 int _rpcsvcstate = _IDLE;	/* Set when a request is serviced */
664520Snw141292 int _rpcsvccount = 0;		/* Number of requests being serviced */
674520Snw141292 mutex_t _svcstate_lock;		/* lock for _rpcsvcstate, _rpcsvccount */
684520Snw141292 idmapd_state_t	_idmapdstate;
694520Snw141292 
704520Snw141292 SVCXPRT *xprt = NULL;
714520Snw141292 
724520Snw141292 static int dfd = -1;		/* our door server fildes, for unregistration */
736017Snw141292 static int degraded = 0;	/* whether the FMRI has been marked degraded */
744520Snw141292 
754520Snw141292 /*
764520Snw141292  * This is needed for mech_krb5 -- we run as daemon, yes, but we want
775034Snw141292  * mech_krb5 to think we're root so it can get host/nodename.fqdn
785034Snw141292  * tickets for us so we can authenticate to AD as the machine account
795034Snw141292  * that we are.  For more details look at the entry point in mech_krb5
805034Snw141292  * corresponding to gss_init_sec_context().
815034Snw141292  *
825034Snw141292  * As a side effect of faking our effective UID to mech_krb5 we will use
835034Snw141292  * root's default ccache (/tmp/krb5cc_0).  But if that's created by
845034Snw141292  * another process then we won't have access to it: we run as daemon and
855034Snw141292  * keep PRIV_FILE_DAC_READ, which is insufficient to share the ccache
865034Snw141292  * with others.  We putenv("KRB5CCNAME=/var/run/idmap/ccache") in main()
875034Snw141292  * to avoid this issue; see main().
884520Snw141292  *
894520Snw141292  * Someday we'll have gss/mech_krb5 extensions for acquiring initiator
904520Snw141292  * creds with keytabs/raw keys, and someday we'll have extensions to
914520Snw141292  * libsasl to specify creds/name to use on the initiator side, and
924520Snw141292  * someday we'll have extensions to libldap to pass those through to
934520Snw141292  * libsasl.  Until then this interposer will have to do.
944520Snw141292  *
954520Snw141292  * Also, we have to tell lint to shut up: it thinks app_krb5_user_uid()
964520Snw141292  * is defined but not used.
974520Snw141292  */
984520Snw141292 /*LINTLIBRARY*/
994520Snw141292 uid_t
1004520Snw141292 app_krb5_user_uid(void)
1014520Snw141292 {
1024520Snw141292 	return (0);
1034520Snw141292 }
1044520Snw141292 
1054520Snw141292 /*ARGSUSED*/
1064520Snw141292 static void
1075908Sjp151216 term_handler(int sig)
1085908Sjp151216 {
1096017Snw141292 	idmapdlog(LOG_INFO, "Terminating.");
1104520Snw141292 	fini_idmapd();
1114520Snw141292 	_exit(0);
1124520Snw141292 }
1134520Snw141292 
1146017Snw141292 /*ARGSUSED*/
1156017Snw141292 static void
1166017Snw141292 usr1_handler(int sig)
1176017Snw141292 {
1186017Snw141292 	bool_t saved_debug_mode = _idmapdstate.debug_mode;
1196017Snw141292 
1206017Snw141292 	_idmapdstate.debug_mode = TRUE;
1216017Snw141292 	print_idmapdstate();
1226017Snw141292 	_idmapdstate.debug_mode = saved_debug_mode;
1236017Snw141292 }
1246017Snw141292 
1254520Snw141292 static int pipe_fd = -1;
1264520Snw141292 
1274520Snw141292 static void
1285908Sjp151216 daemonize_ready(void)
1295908Sjp151216 {
1304520Snw141292 	char data = '\0';
1314520Snw141292 	/*
1324520Snw141292 	 * wake the parent
1334520Snw141292 	 */
1344520Snw141292 	(void) write(pipe_fd, &data, 1);
1354520Snw141292 	(void) close(pipe_fd);
1364520Snw141292 }
1374520Snw141292 
1384520Snw141292 static int
1395908Sjp151216 daemonize_start(void)
1405908Sjp151216 {
1414520Snw141292 	char	data;
1424520Snw141292 	int	status;
1434520Snw141292 	int	devnull;
1444520Snw141292 	int	filedes[2];
1454520Snw141292 	pid_t	pid;
1464520Snw141292 
1475034Snw141292 	(void) sigset(SIGPIPE, SIG_IGN);
1484520Snw141292 	devnull = open("/dev/null", O_RDONLY);
1494520Snw141292 	if (devnull < 0)
1504520Snw141292 		return (-1);
1514520Snw141292 	(void) dup2(devnull, 0);
1524520Snw141292 	(void) dup2(2, 1);	/* stderr only */
1534520Snw141292 	if (pipe(filedes) < 0)
1544520Snw141292 		return (-1);
1554520Snw141292 	if ((pid = fork1()) < 0)
1564520Snw141292 		return (-1);
1574520Snw141292 	if (pid != 0) {
1584520Snw141292 		/*
1594520Snw141292 		 * parent
1604520Snw141292 		 */
1614520Snw141292 		(void) close(filedes[1]);
1624520Snw141292 		if (read(filedes[0], &data, 1) == 1) {
1634520Snw141292 			/* presume success */
1644520Snw141292 			_exit(0);
1654520Snw141292 		}
1664520Snw141292 		status = -1;
1674520Snw141292 		(void) wait4(pid, &status, 0, NULL);
1684520Snw141292 		if (WIFEXITED(status))
1694520Snw141292 			_exit(WEXITSTATUS(status));
1704520Snw141292 		else
1714520Snw141292 			_exit(-1);
1724520Snw141292 	}
1734520Snw141292 
1744520Snw141292 	/*
1754520Snw141292 	 * child
1764520Snw141292 	 */
1774520Snw141292 	pipe_fd = filedes[1];
1784520Snw141292 	(void) close(filedes[0]);
1794520Snw141292 	(void) setsid();
1804520Snw141292 	(void) umask(0077);
1814520Snw141292 	openlog("idmap", LOG_PID, LOG_DAEMON);
1824520Snw141292 	return (0);
1834520Snw141292 }
1844520Snw141292 
1854520Snw141292 
1864520Snw141292 int
1874520Snw141292 main(int argc, char **argv)
1884520Snw141292 {
1894520Snw141292 	int c;
190*6414Sjp151216 	struct rlimit rl;
1914520Snw141292 
1926017Snw141292 	_idmapdstate.daemon_mode = TRUE;
1936017Snw141292 	_idmapdstate.debug_mode = FALSE;
1946017Snw141292 	while ((c = getopt(argc, argv, "d")) != -1) {
1954520Snw141292 		switch (c) {
1964520Snw141292 			case 'd':
1976017Snw141292 				_idmapdstate.daemon_mode = FALSE;
1984520Snw141292 				break;
1994520Snw141292 			default:
2006017Snw141292 				fprintf(stderr, "Usage: /usr/lib/idmapd");
2016017Snw141292 				return (SMF_EXIT_ERR_CONFIG);
2024520Snw141292 				break;
2034520Snw141292 		}
2044520Snw141292 	}
2054520Snw141292 
2064520Snw141292 	/* set locale and domain for internationalization */
2074520Snw141292 	(void) setlocale(LC_ALL, "");
2084520Snw141292 	(void) textdomain(TEXT_DOMAIN);
2094520Snw141292 
2105771Sjp151216 	if (is_system_labeled() && getzoneid() != GLOBAL_ZONEID) {
2116017Snw141292 		idmapdlog(LOG_ERR,
2126017Snw141292 		    "with Trusted Extensions idmapd runs only in the "
2135771Sjp151216 		    "global zone");
2144520Snw141292 		exit(1);
2154520Snw141292 	}
2164520Snw141292 
217*6414Sjp151216 	/*
218*6414Sjp151216 	 * Raise the fd limit to max
219*6414Sjp151216 	 */
220*6414Sjp151216 	if (getrlimit(RLIMIT_NOFILE, &rl) != 0) {
221*6414Sjp151216 		idmapdlog(LOG_ERR, "getrlimit failed");
222*6414Sjp151216 	} else if (rl.rlim_cur < rl.rlim_max) {
223*6414Sjp151216 		rl.rlim_cur = rl.rlim_max;
224*6414Sjp151216 		if (setrlimit(RLIMIT_NOFILE, &rl) != 0)
225*6414Sjp151216 			idmapdlog(LOG_ERR,
226*6414Sjp151216 			    "Unable to raise RLIMIT_NOFILE to %d",
227*6414Sjp151216 			    rl.rlim_cur);
228*6414Sjp151216 	}
229*6414Sjp151216 
2304520Snw141292 	(void) mutex_init(&_svcstate_lock, USYNC_THREAD, NULL);
2314520Snw141292 
2326017Snw141292 	if (_idmapdstate.daemon_mode == TRUE) {
2334520Snw141292 		if (daemonize_start() < 0) {
2346017Snw141292 			(void) idmapdlog(LOG_ERR, "unable to daemonize");
2354520Snw141292 			exit(-1);
2364520Snw141292 		}
2374520Snw141292 	} else
2384520Snw141292 		(void) umask(0077);
2394520Snw141292 
2404884Sjp151216 	idmap_init_tsd_key();
2414884Sjp151216 
2424520Snw141292 	init_idmapd();
2434520Snw141292 
2445034Snw141292 	/* signal handlers that should run only after we're initialized */
2455034Snw141292 	(void) sigset(SIGTERM, term_handler);
2466017Snw141292 	(void) sigset(SIGUSR1, usr1_handler);
2475968Snw141292 	(void) sigset(SIGHUP, idmap_cfg_hup_handler);
2485034Snw141292 
2494520Snw141292 	if (__init_daemon_priv(PU_RESETGROUPS|PU_CLEARLIMITSET,
2504520Snw141292 	    DAEMON_UID, DAEMON_GID,
2514520Snw141292 	    PRIV_PROC_AUDIT, PRIV_FILE_DAC_READ,
2524520Snw141292 	    (char *)NULL) == -1) {
2536017Snw141292 		idmapdlog(LOG_ERR, "unable to drop privileges");
2544520Snw141292 		exit(1);
2554520Snw141292 	}
2564520Snw141292 
2574520Snw141292 	__fini_daemon_priv(PRIV_PROC_FORK, PRIV_PROC_EXEC, PRIV_PROC_SESSION,
2584520Snw141292 	    PRIV_FILE_LINK_ANY, PRIV_PROC_INFO, (char *)NULL);
2594520Snw141292 
2606017Snw141292 	if (_idmapdstate.daemon_mode == TRUE)
2614520Snw141292 		daemonize_ready();
2624520Snw141292 
2634520Snw141292 	/* With doors RPC this just wastes this thread, oh well */
2644520Snw141292 	svc_run();
2654520Snw141292 	return (0);
2664520Snw141292 }
2674520Snw141292 
2684520Snw141292 static void
2695908Sjp151216 init_idmapd()
2705908Sjp151216 {
2714520Snw141292 	int	error;
2725232Snw141292 	int connmaxrec = IDMAP_MAX_DOOR_RPC;
2734520Snw141292 
2745034Snw141292 	/* create directories as root and chown to daemon uid */
2755034Snw141292 	if (create_directory(IDMAP_DBDIR, DAEMON_UID, DAEMON_GID) < 0)
2765034Snw141292 		exit(1);
2775034Snw141292 	if (create_directory(IDMAP_CACHEDIR, DAEMON_UID, DAEMON_GID) < 0)
2785034Snw141292 		exit(1);
2795034Snw141292 
2805034Snw141292 	/*
2815034Snw141292 	 * Set KRB5CCNAME in the environment.  See app_krb5_user_uid()
2825447Snw141292 	 * for more details.  We blow away the existing one, if there is
2835447Snw141292 	 * one.
2845034Snw141292 	 */
2855447Snw141292 	(void) unlink(IDMAP_CACHEDIR "/ccache");
2865034Snw141292 	putenv("KRB5CCNAME=" IDMAP_CACHEDIR "/ccache");
2875034Snw141292 
2884520Snw141292 	if (sysinfo(SI_HOSTNAME, _idmapdstate.hostname,
2895908Sjp151216 	    sizeof (_idmapdstate.hostname)) == -1) {
2904520Snw141292 		error = errno;
2916017Snw141292 		idmapdlog(LOG_ERR, "unable to determine hostname, error: %d",
2925908Sjp151216 		    error);
2934520Snw141292 		exit(1);
2944520Snw141292 	}
2954520Snw141292 
2965731Sbaban 	if ((error = init_mapping_system()) < 0) {
2976017Snw141292 		idmapdlog(LOG_ERR, "unable to initialize mapping system");
2985731Sbaban 		exit(error < -2 ? SMF_EXIT_ERR_CONFIG : 1);
2994520Snw141292 	}
3004520Snw141292 
3015232Snw141292 	xprt = svc_door_create(idmap_prog_1, IDMAP_PROG, IDMAP_V1, connmaxrec);
3024520Snw141292 	if (xprt == NULL) {
3036017Snw141292 		idmapdlog(LOG_ERR, "unable to create door RPC service");
3044520Snw141292 		goto errout;
3054520Snw141292 	}
3064520Snw141292 
3075064Sdm199847 	if (!svc_control(xprt, SVCSET_CONNMAXREC, &connmaxrec)) {
3086017Snw141292 		idmapdlog(LOG_ERR, "unable to limit RPC request size");
3095064Sdm199847 		goto errout;
3105064Sdm199847 	}
3115064Sdm199847 
3124520Snw141292 	dfd = xprt->xp_fd;
3134520Snw141292 
3144520Snw141292 	if (dfd == -1) {
3156017Snw141292 		idmapdlog(LOG_ERR, "unable to register door");
3164520Snw141292 		goto errout;
3174520Snw141292 	}
3184520Snw141292 	if ((error = idmap_reg(dfd)) != 0) {
3196017Snw141292 		idmapdlog(LOG_ERR, "unable to register door (%s)",
3205908Sjp151216 		    strerror(errno));
3214520Snw141292 		goto errout;
3224520Snw141292 	}
3234520Snw141292 
3244520Snw141292 	if ((error = allocids(_idmapdstate.new_eph_db,
3255908Sjp151216 	    8192, &_idmapdstate.next_uid,
3265908Sjp151216 	    8192, &_idmapdstate.next_gid)) != 0) {
3276017Snw141292 		idmapdlog(LOG_ERR, "unable to allocate ephemeral IDs (%s)",
3286017Snw141292 		    strerror(errno));
3294520Snw141292 		_idmapdstate.next_uid = _idmapdstate.limit_uid = SENTINEL_PID;
3304520Snw141292 		_idmapdstate.next_gid = _idmapdstate.limit_gid = SENTINEL_PID;
3314520Snw141292 	} else {
3324520Snw141292 		_idmapdstate.limit_uid = _idmapdstate.next_uid + 8192;
3334520Snw141292 		_idmapdstate.limit_gid = _idmapdstate.next_gid + 8192;
3344520Snw141292 	}
3354520Snw141292 
3364520Snw141292 	print_idmapdstate();
3374520Snw141292 
3384520Snw141292 	return;
3394520Snw141292 
3404520Snw141292 errout:
3414520Snw141292 	fini_idmapd();
3424520Snw141292 	exit(1);
3434520Snw141292 }
3444520Snw141292 
3454520Snw141292 static void
3465908Sjp151216 fini_idmapd()
3475908Sjp151216 {
3484520Snw141292 	idmap_unreg(dfd);
3494520Snw141292 	fini_mapping_system();
3504520Snw141292 	if (xprt != NULL)
3514520Snw141292 		svc_destroy(xprt);
3524520Snw141292 }
3534520Snw141292 
3546017Snw141292 static
3556017Snw141292 const char *
3566017Snw141292 get_fmri(void)
3576017Snw141292 {
3586017Snw141292 	static char *fmri = NULL;
3596017Snw141292 	static char buf[60];
3606017Snw141292 	char *s;
3616017Snw141292 
3626017Snw141292 	membar_consumer();
3636017Snw141292 	s = fmri;
3646017Snw141292 	if (s != NULL && *s == '\0')
3656017Snw141292 		return (NULL);
3666017Snw141292 	else if (s != NULL)
3676017Snw141292 		return (s);
3686017Snw141292 
3696017Snw141292 	if ((s = getenv("SMF_FMRI")) == NULL || strlen(s) >= sizeof (buf))
3706017Snw141292 		buf[0] = '\0';
3716017Snw141292 	else
3726017Snw141292 		(void) strlcpy(buf, s, sizeof (buf));
3736017Snw141292 
3746017Snw141292 	membar_producer();
3756017Snw141292 	fmri = buf;
3766017Snw141292 
3776017Snw141292 	return (get_fmri());
3786017Snw141292 }
3796017Snw141292 
3806017Snw141292 /*
3816017Snw141292  * Wrappers for smf_degrade/restore_instance()
3826017Snw141292  *
3836017Snw141292  * smf_restore_instance() is too heavy duty to be calling every time we
3846017Snw141292  * have a successful AD name<->SID lookup.
3856017Snw141292  */
3866017Snw141292 void
3876097Snw141292 degrade_svc(int poke_discovery, const char *reason)
3886017Snw141292 {
3896017Snw141292 	const char *fmri;
3906017Snw141292 
3916017Snw141292 	/*
3926017Snw141292 	 * If the config update thread is in a state where auto-discovery could
3936017Snw141292 	 * be re-tried, then this will make it try it -- a sort of auto-refresh.
3946017Snw141292 	 */
3956097Snw141292 	if (poke_discovery)
3966097Snw141292 		idmap_cfg_poke_updates();
3976017Snw141292 
3986017Snw141292 	membar_consumer();
3996017Snw141292 	if (degraded)
4006017Snw141292 		return;
4016097Snw141292 
4026097Snw141292 	idmapdlog(LOG_ERR, "Degraded operation (%s).  If you are running an "
4036097Snw141292 	    "SMB server in workgroup mode, or if you're not running an SMB "
4046097Snw141292 	    "server, then you can ignore this message", reason);
4056097Snw141292 
4066017Snw141292 	membar_producer();
4076017Snw141292 	degraded = 1;
4086017Snw141292 
4096017Snw141292 	if ((fmri = get_fmri()) != NULL)
4106017Snw141292 		(void) smf_degrade_instance(fmri, 0);
4116017Snw141292 }
4126017Snw141292 
4136017Snw141292 void
4146017Snw141292 restore_svc(void)
4156017Snw141292 {
4166017Snw141292 	const char *fmri;
4176017Snw141292 
4186017Snw141292 	membar_consumer();
4196017Snw141292 	if (!degraded)
4206017Snw141292 		return;
4216017Snw141292 
4226017Snw141292 	if ((fmri = get_fmri()) == NULL)
4236017Snw141292 		(void) smf_restore_instance(fmri);
4246017Snw141292 
4256017Snw141292 	membar_producer();
4266017Snw141292 	degraded = 0;
4276097Snw141292 	idmapdlog(LOG_NOTICE, "Normal operation restored");
4286017Snw141292 }
4296017Snw141292 
4304520Snw141292 void
4315908Sjp151216 idmapdlog(int pri, const char *format, ...)
4325908Sjp151216 {
4334520Snw141292 	va_list args;
4344520Snw141292 
4354520Snw141292 	va_start(args, format);
4366017Snw141292 
4376017Snw141292 	if (_idmapdstate.debug_mode == TRUE ||
4386017Snw141292 	    _idmapdstate.daemon_mode == FALSE) {
4394520Snw141292 		(void) vfprintf(stderr, format, args);
4404520Snw141292 		(void) fprintf(stderr, "\n");
4414520Snw141292 	}
4426017Snw141292 
4436017Snw141292 	/*
4446017Snw141292 	 * We don't want to fill up the logs with useless messages when
4456017Snw141292 	 * we're degraded, but we still want to log.
4466017Snw141292 	 */
4476017Snw141292 	if (degraded)
4486017Snw141292 		pri = LOG_DEBUG;
4496017Snw141292 
4504520Snw141292 	(void) vsyslog(pri, format, args);
4514520Snw141292 	va_end(args);
4524520Snw141292 }
453