kernel - CAM cleanup 3/N - Remove unnecessary mplocks
[dragonfly.git] / crypto / openssh / platform.c
blobacf8554cd8942f8dde82cc657224f37697783567
1 /* $Id: platform.c,v 1.22 2014/07/18 04:11:26 djm Exp $ */
3 /*
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.
19 #include "includes.h"
21 #include <stdarg.h>
22 #include <unistd.h>
24 #include "log.h"
25 #include "buffer.h"
26 #include "misc.h"
27 #include "servconf.h"
28 #include "key.h"
29 #include "hostfile.h"
30 #include "auth.h"
31 #include "auth-pam.h"
32 #include "platform.h"
34 #include "openbsd-compat/openbsd-compat.h"
36 extern int use_privsep;
37 extern ServerOptions options;
39 void
40 platform_pre_listen(void)
42 #ifdef LINUX_OOM_ADJUST
43 /* Adjust out-of-memory killer so listening process is not killed */
44 oom_adjust_setup();
45 #endif
48 void
49 platform_pre_fork(void)
51 #ifdef USE_SOLARIS_PROCESS_CONTRACTS
52 solaris_contract_pre_fork();
53 #endif
56 void
57 platform_pre_restart(void)
59 #ifdef LINUX_OOM_ADJUST
60 oom_adjust_restore();
61 #endif
64 void
65 platform_post_fork_parent(pid_t child_pid)
67 #ifdef USE_SOLARIS_PROCESS_CONTRACTS
68 solaris_contract_post_fork_parent(child_pid);
69 #endif
72 void
73 platform_post_fork_child(void)
75 #ifdef USE_SOLARIS_PROCESS_CONTRACTS
76 solaris_contract_post_fork_child();
77 #endif
78 #ifdef LINUX_OOM_ADJUST
79 oom_adjust_restore();
80 #endif
83 /* return 1 if we are running with privilege to swap UIDs, 0 otherwise */
84 int
85 platform_privileged_uidswap(void)
87 #ifdef HAVE_CYGWIN
88 /* uid 0 is not special on Cygwin so always try */
89 return 1;
90 #else
91 return (getuid() == 0 || geteuid() == 0);
92 #endif
96 * This gets called before switching UIDs, and is called even when sshd is
97 * not running as root.
99 void
100 platform_setusercontext(struct passwd *pw)
102 #ifdef WITH_SELINUX
103 /* Cache selinux status for later use */
104 (void)ssh_selinux_enabled();
105 #endif
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
111 * PAM stack.
113 if (!options.use_pam && (getuid() == 0 || geteuid() == 0))
114 solaris_set_default_project(pw);
115 #endif
117 #if defined(HAVE_LOGIN_CAP) && defined (__bsdi__)
118 if (getuid() == 0 || geteuid() == 0)
119 setpgid(0, 0);
120 # endif
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));
140 #endif
144 * This gets called after we've established the user's groups, and is only
145 * called if sshd is running as root.
147 void
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);
159 #endif /* USE_PAM */
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) */
166 #ifdef _AIX
167 aix_usrinfo(pw);
168 #endif /* _AIX */
170 #ifdef HAVE_SETPCRED
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 */
188 #ifdef WITH_SELINUX
189 ssh_selinux_setup_exec_context(pw->pw_name);
190 #endif
193 char *
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);
198 #else
199 return NULL;
200 #endif
204 * return 1 if the specified uid is a uid that may own a system directory
205 * otherwise 0.
208 platform_sys_dir_uid(uid_t uid)
210 if (uid == 0)
211 return 1;
212 #ifdef PLATFORM_SYS_DIR_UID
213 if (uid == PLATFORM_SYS_DIR_UID)
214 return 1;
215 #endif
216 return 0;