blob: 41acc9370d5eb6a5bd804466200ce01b024812d3 [file] [log] [blame]
Damien Miller1b06dc32006-08-31 03:24:41 +10001/*
2 * Copyright (c) 2006 Darren Tucker. All rights reserved.
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Darren Tuckerd1ece6e2010-11-07 18:05:54 +110017#include "includes.h"
Darren Tuckerb12fe272010-11-05 14:47:01 +110018
Darren Tucker9283d8c2010-11-05 18:56:08 +110019#include <stdarg.h>
Darren Tuckerb12fe272010-11-05 14:47:01 +110020#include <unistd.h>
21
Darren Tucker9283d8c2010-11-05 18:56:08 +110022#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100023#include "misc.h"
Darren Tucker9283d8c2010-11-05 18:56:08 +110024#include "servconf.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +000025#include "sshkey.h"
Damien Miller81ad4b12011-01-11 17:02:23 +110026#include "hostfile.h"
27#include "auth.h"
28#include "auth-pam.h"
Damien Miller1b06dc32006-08-31 03:24:41 +100029#include "platform.h"
30
31#include "openbsd-compat/openbsd-compat.h"
32
Darren Tucker728d8372010-11-05 13:00:05 +110033extern int use_privsep;
Darren Tucker9283d8c2010-11-05 18:56:08 +110034extern ServerOptions options;
Darren Tucker728d8372010-11-05 13:00:05 +110035
Damien Miller1b06dc32006-08-31 03:24:41 +100036void
Darren Tuckerc8802aa2009-12-08 13:39:48 +110037platform_pre_listen(void)
38{
39#ifdef LINUX_OOM_ADJUST
40 /* Adjust out-of-memory killer so listening process is not killed */
41 oom_adjust_setup();
42#endif
43}
44
45void
Damien Miller1b06dc32006-08-31 03:24:41 +100046platform_pre_fork(void)
47{
48#ifdef USE_SOLARIS_PROCESS_CONTRACTS
49 solaris_contract_pre_fork();
50#endif
51}
52
53void
Darren Tuckerf2bf36c2013-09-22 19:02:40 +100054platform_pre_restart(void)
55{
56#ifdef LINUX_OOM_ADJUST
57 oom_adjust_restore();
58#endif
59}
60
61void
Damien Miller1b06dc32006-08-31 03:24:41 +100062platform_post_fork_parent(pid_t child_pid)
63{
64#ifdef USE_SOLARIS_PROCESS_CONTRACTS
65 solaris_contract_post_fork_parent(child_pid);
66#endif
67}
68
69void
70platform_post_fork_child(void)
71{
72#ifdef USE_SOLARIS_PROCESS_CONTRACTS
73 solaris_contract_post_fork_child();
74#endif
Darren Tuckerc8802aa2009-12-08 13:39:48 +110075#ifdef LINUX_OOM_ADJUST
76 oom_adjust_restore();
77#endif
Damien Miller1b06dc32006-08-31 03:24:41 +100078}
Darren Tucker1bf35032009-12-21 10:49:21 +110079
Darren Tuckerb12fe272010-11-05 14:47:01 +110080/* return 1 if we are running with privilege to swap UIDs, 0 otherwise */
81int
82platform_privileged_uidswap(void)
83{
84#ifdef HAVE_CYGWIN
85 /* uid 0 is not special on Cygwin so always try */
86 return 1;
87#else
88 return (getuid() == 0 || geteuid() == 0);
89#endif
90}
91
Darren Tucker920612e2010-11-05 12:36:15 +110092/*
93 * This gets called before switching UIDs, and is called even when sshd is
94 * not running as root.
95 */
Darren Tucker97528352010-11-05 12:03:05 +110096void
97platform_setusercontext(struct passwd *pw)
98{
Darren Tucker920612e2010-11-05 12:36:15 +110099#ifdef WITH_SELINUX
100 /* Cache selinux status for later use */
101 (void)ssh_selinux_enabled();
102#endif
103
Darren Tucker97528352010-11-05 12:03:05 +1100104#ifdef USE_SOLARIS_PROJECTS
Darren Tucker8c473932016-03-15 09:24:43 +1100105 /*
106 * If solaris projects were detected, set the default now, unless
107 * we are using PAM in which case it is the responsibility of the
108 * PAM stack.
109 */
110 if (!options.use_pam && (getuid() == 0 || geteuid() == 0))
Darren Tucker97528352010-11-05 12:03:05 +1100111 solaris_set_default_project(pw);
112#endif
Darren Tucker44a97be2010-11-05 12:45:18 +1100113
114#if defined(HAVE_LOGIN_CAP) && defined (__bsdi__)
Darren Tuckerfd4d8aa2010-11-05 12:50:41 +1100115 if (getuid() == 0 || geteuid() == 0)
116 setpgid(0, 0);
Darren Tucker44a97be2010-11-05 12:45:18 +1100117# endif
Darren Tucker728d8372010-11-05 13:00:05 +1100118
119#if defined(HAVE_LOGIN_CAP) && defined(USE_PAM)
120 /*
121 * If we have both LOGIN_CAP and PAM, we want to establish creds
122 * before calling setusercontext (in session.c:do_setusercontext).
123 */
124 if (getuid() == 0 || geteuid() == 0) {
125 if (options.use_pam) {
126 do_pam_setcred(use_privsep);
127 }
128 }
129# endif /* USE_PAM */
Darren Tuckerd9957122010-11-24 10:09:13 +1100130
131#if !defined(HAVE_LOGIN_CAP) && defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
132 if (getuid() == 0 || geteuid() == 0) {
133 /* Sets login uid for accounting */
134 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
135 error("setluid: %s", strerror(errno));
136 }
137#endif
Darren Tucker97528352010-11-05 12:03:05 +1100138}
139
Darren Tucker920612e2010-11-05 12:36:15 +1100140/*
141 * This gets called after we've established the user's groups, and is only
142 * called if sshd is running as root.
143 */
144void
145platform_setusercontext_post_groups(struct passwd *pw)
146{
Darren Tuckercc124182010-11-05 13:32:52 +1100147#if !defined(HAVE_LOGIN_CAP) && defined(USE_PAM)
148 /*
149 * PAM credentials may take the form of supplementary groups.
150 * These will have been wiped by the above initgroups() call.
151 * Reestablish them here.
152 */
153 if (options.use_pam) {
154 do_pam_setcred(use_privsep);
155 }
156#endif /* USE_PAM */
157
Darren Tucker0b2ee642010-11-05 13:29:25 +1100158#if !defined(HAVE_LOGIN_CAP) && (defined(WITH_IRIX_PROJECT) || \
159 defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY))
160 irix_setusercontext(pw);
161#endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
162
Darren Tucker676b9122010-11-05 13:11:04 +1100163#ifdef _AIX
164 aix_usrinfo(pw);
165#endif /* _AIX */
166
Darren Tucker4db38072010-11-05 12:41:13 +1100167#ifdef HAVE_SETPCRED
168 /*
169 * If we have a chroot directory, we set all creds except real
170 * uid which we will need for chroot. If we don't have a
171 * chroot directory, we don't override anything.
172 */
173 {
174 char **creds = NULL, *chroot_creds[] =
175 { "REAL_USER=root", NULL };
176
177 if (options.chroot_directory != NULL &&
178 strcasecmp(options.chroot_directory, "none") != 0)
179 creds = chroot_creds;
180
181 if (setpcred(pw->pw_name, creds) == -1)
182 fatal("Failed to set process credentials");
183 }
184#endif /* HAVE_SETPCRED */
Darren Tucker920612e2010-11-05 12:36:15 +1100185#ifdef WITH_SELINUX
186 ssh_selinux_setup_exec_context(pw->pw_name);
187#endif
188}
189
Darren Tucker1bf35032009-12-21 10:49:21 +1100190char *
191platform_krb5_get_principal_name(const char *pw_name)
192{
193#ifdef USE_AIX_KRB_NAME
194 return aix_krb5_get_principal_name(pw_name);
195#else
196 return NULL;
197#endif
198}