1 /* $Id: platform.c,v 1.22 2014/07/18 04:11:26 djm Exp $ */
4 * Copyright (c) 2006 Darren Tucker. All rights reserved.
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
34 #include "openbsd-compat/openbsd-compat.h"
36 extern int use_privsep
;
37 extern ServerOptions options
;
40 platform_pre_listen(void)
42 #ifdef LINUX_OOM_ADJUST
43 /* Adjust out-of-memory killer so listening process is not killed */
49 platform_pre_fork(void)
51 #ifdef USE_SOLARIS_PROCESS_CONTRACTS
52 solaris_contract_pre_fork();
57 platform_pre_restart(void)
59 #ifdef LINUX_OOM_ADJUST
65 platform_post_fork_parent(pid_t child_pid
)
67 #ifdef USE_SOLARIS_PROCESS_CONTRACTS
68 solaris_contract_post_fork_parent(child_pid
);
73 platform_post_fork_child(void)
75 #ifdef USE_SOLARIS_PROCESS_CONTRACTS
76 solaris_contract_post_fork_child();
78 #ifdef LINUX_OOM_ADJUST
83 /* return 1 if we are running with privilege to swap UIDs, 0 otherwise */
85 platform_privileged_uidswap(void)
88 /* uid 0 is not special on Cygwin so always try */
91 return (getuid() == 0 || geteuid() == 0);
96 * This gets called before switching UIDs, and is called even when sshd is
97 * not running as root.
100 platform_setusercontext(struct passwd
*pw
)
103 /* Cache selinux status for later use */
104 (void)ssh_selinux_enabled();
107 #ifdef USE_SOLARIS_PROJECTS
109 * If solaris projects were detected, set the default now, unless
110 * we are using PAM in which case it is the responsibility of the
113 if (!options
.use_pam
&& (getuid() == 0 || geteuid() == 0))
114 solaris_set_default_project(pw
);
117 #if defined(HAVE_LOGIN_CAP) && defined (__bsdi__)
118 if (getuid() == 0 || geteuid() == 0)
122 #if defined(HAVE_LOGIN_CAP) && defined(USE_PAM)
124 * If we have both LOGIN_CAP and PAM, we want to establish creds
125 * before calling setusercontext (in session.c:do_setusercontext).
127 if (getuid() == 0 || geteuid() == 0) {
128 if (options
.use_pam
) {
129 do_pam_setcred(use_privsep
);
132 # endif /* USE_PAM */
134 #if !defined(HAVE_LOGIN_CAP) && defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
135 if (getuid() == 0 || geteuid() == 0) {
136 /* Sets login uid for accounting */
137 if (getluid() == -1 && setluid(pw
->pw_uid
) == -1)
138 error("setluid: %s", strerror(errno
));
144 * This gets called after we've established the user's groups, and is only
145 * called if sshd is running as root.
148 platform_setusercontext_post_groups(struct passwd
*pw
)
150 #if !defined(HAVE_LOGIN_CAP) && defined(USE_PAM)
152 * PAM credentials may take the form of supplementary groups.
153 * These will have been wiped by the above initgroups() call.
154 * Reestablish them here.
156 if (options
.use_pam
) {
157 do_pam_setcred(use_privsep
);
161 #if !defined(HAVE_LOGIN_CAP) && (defined(WITH_IRIX_PROJECT) || \
162 defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY))
163 irix_setusercontext(pw
);
164 #endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
172 * If we have a chroot directory, we set all creds except real
173 * uid which we will need for chroot. If we don't have a
174 * chroot directory, we don't override anything.
177 char **creds
= NULL
, *chroot_creds
[] =
178 { "REAL_USER=root", NULL
};
180 if (options
.chroot_directory
!= NULL
&&
181 strcasecmp(options
.chroot_directory
, "none") != 0)
182 creds
= chroot_creds
;
184 if (setpcred(pw
->pw_name
, creds
) == -1)
185 fatal("Failed to set process credentials");
187 #endif /* HAVE_SETPCRED */
189 ssh_selinux_setup_exec_context(pw
->pw_name
);
194 platform_krb5_get_principal_name(const char *pw_name
)
196 #ifdef USE_AIX_KRB_NAME
197 return aix_krb5_get_principal_name(pw_name
);
204 * return 1 if the specified uid is a uid that may own a system directory
208 platform_sys_dir_uid(uid_t uid
)
212 #ifdef PLATFORM_SYS_DIR_UID
213 if (uid
== PLATFORM_SYS_DIR_UID
)