2 * Copyright (c) 2006 Darren Tucker. All rights reserved.
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.
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.
32 #include "openbsd-compat/openbsd-compat.h"
34 extern int use_privsep
;
35 extern ServerOptions options
;
38 platform_pre_listen(void)
40 #ifdef LINUX_OOM_ADJUST
41 /* Adjust out-of-memory killer so listening process is not killed */
47 platform_pre_fork(void)
49 #ifdef USE_SOLARIS_PROCESS_CONTRACTS
50 solaris_contract_pre_fork();
55 platform_pre_restart(void)
57 #ifdef LINUX_OOM_ADJUST
63 platform_post_fork_parent(pid_t child_pid
)
65 #ifdef USE_SOLARIS_PROCESS_CONTRACTS
66 solaris_contract_post_fork_parent(child_pid
);
71 platform_post_fork_child(void)
73 #ifdef USE_SOLARIS_PROCESS_CONTRACTS
74 solaris_contract_post_fork_child();
76 #ifdef LINUX_OOM_ADJUST
81 /* return 1 if we are running with privilege to swap UIDs, 0 otherwise */
83 platform_privileged_uidswap(void)
86 /* uid 0 is not special on Cygwin so always try */
89 return (getuid() == 0 || geteuid() == 0);
94 * This gets called before switching UIDs, and is called even when sshd is
95 * not running as root.
98 platform_setusercontext(struct passwd
*pw
)
101 /* Cache selinux status for later use */
102 (void)ssh_selinux_enabled();
105 #ifdef USE_SOLARIS_PROJECTS
107 * If solaris projects were detected, set the default now, unless
108 * we are using PAM in which case it is the responsibility of the
111 if (!options
.use_pam
&& (getuid() == 0 || geteuid() == 0))
112 solaris_set_default_project(pw
);
115 #if defined(HAVE_LOGIN_CAP) && defined (__bsdi__)
116 if (getuid() == 0 || geteuid() == 0)
120 #if defined(HAVE_LOGIN_CAP) && defined(USE_PAM)
122 * If we have both LOGIN_CAP and PAM, we want to establish creds
123 * before calling setusercontext (in session.c:do_setusercontext).
125 if (getuid() == 0 || geteuid() == 0) {
126 if (options
.use_pam
) {
127 do_pam_setcred(use_privsep
);
130 # endif /* USE_PAM */
132 #if !defined(HAVE_LOGIN_CAP) && defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
133 if (getuid() == 0 || geteuid() == 0) {
134 /* Sets login uid for accounting */
135 if (getluid() == -1 && setluid(pw
->pw_uid
) == -1)
136 error("setluid: %s", strerror(errno
));
142 * This gets called after we've established the user's groups, and is only
143 * called if sshd is running as root.
146 platform_setusercontext_post_groups(struct passwd
*pw
)
148 #if !defined(HAVE_LOGIN_CAP) && defined(USE_PAM)
150 * PAM credentials may take the form of supplementary groups.
151 * These will have been wiped by the above initgroups() call.
152 * Reestablish them here.
154 if (options
.use_pam
) {
155 do_pam_setcred(use_privsep
);
159 #if !defined(HAVE_LOGIN_CAP) && (defined(WITH_IRIX_PROJECT) || \
160 defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY))
161 irix_setusercontext(pw
);
162 #endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
170 * If we have a chroot directory, we set all creds except real
171 * uid which we will need for chroot. If we don't have a
172 * chroot directory, we don't override anything.
175 char **creds
= NULL
, *chroot_creds
[] =
176 { "REAL_USER=root", NULL
};
178 if (options
.chroot_directory
!= NULL
&&
179 strcasecmp(options
.chroot_directory
, "none") != 0)
180 creds
= chroot_creds
;
182 if (setpcred(pw
->pw_name
, creds
) == -1)
183 fatal("Failed to set process credentials");
185 #endif /* HAVE_SETPCRED */
187 ssh_selinux_setup_exec_context(pw
->pw_name
);
192 platform_krb5_get_principal_name(const char *pw_name
)
194 #ifdef USE_AIX_KRB_NAME
195 return aix_krb5_get_principal_name(pw_name
);