Darren Tucker | f2bf36c | 2013-09-22 19:02:40 +1000 | [diff] [blame] | 1 | /* $Id: platform.c,v 1.20 2013/09/22 09:02:40 dtucker Exp $ */ |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 2 | |
| 3 | /* |
| 4 | * Copyright (c) 2006 Darren Tucker. All rights reserved. |
| 5 | * |
| 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. |
| 9 | * |
| 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. |
| 17 | */ |
| 18 | |
Darren Tucker | d1ece6e | 2010-11-07 18:05:54 +1100 | [diff] [blame] | 19 | #include "includes.h" |
Darren Tucker | b12fe27 | 2010-11-05 14:47:01 +1100 | [diff] [blame] | 20 | |
| 21 | #include <sys/types.h> |
Darren Tucker | 9283d8c | 2010-11-05 18:56:08 +1100 | [diff] [blame] | 22 | |
| 23 | #include <stdarg.h> |
Darren Tucker | b12fe27 | 2010-11-05 14:47:01 +1100 | [diff] [blame] | 24 | #include <unistd.h> |
| 25 | |
Darren Tucker | 9283d8c | 2010-11-05 18:56:08 +1100 | [diff] [blame] | 26 | #include "log.h" |
| 27 | #include "buffer.h" |
| 28 | #include "servconf.h" |
Damien Miller | 81ad4b1 | 2011-01-11 17:02:23 +1100 | [diff] [blame] | 29 | #include "key.h" |
| 30 | #include "hostfile.h" |
| 31 | #include "auth.h" |
| 32 | #include "auth-pam.h" |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 33 | #include "platform.h" |
| 34 | |
| 35 | #include "openbsd-compat/openbsd-compat.h" |
| 36 | |
Darren Tucker | 728d837 | 2010-11-05 13:00:05 +1100 | [diff] [blame] | 37 | extern int use_privsep; |
Darren Tucker | 9283d8c | 2010-11-05 18:56:08 +1100 | [diff] [blame] | 38 | extern ServerOptions options; |
Darren Tucker | 728d837 | 2010-11-05 13:00:05 +1100 | [diff] [blame] | 39 | |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 40 | void |
Darren Tucker | c8802aa | 2009-12-08 13:39:48 +1100 | [diff] [blame] | 41 | platform_pre_listen(void) |
| 42 | { |
| 43 | #ifdef LINUX_OOM_ADJUST |
| 44 | /* Adjust out-of-memory killer so listening process is not killed */ |
| 45 | oom_adjust_setup(); |
| 46 | #endif |
| 47 | } |
| 48 | |
| 49 | void |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 50 | platform_pre_fork(void) |
| 51 | { |
| 52 | #ifdef USE_SOLARIS_PROCESS_CONTRACTS |
| 53 | solaris_contract_pre_fork(); |
| 54 | #endif |
| 55 | } |
| 56 | |
| 57 | void |
Darren Tucker | f2bf36c | 2013-09-22 19:02:40 +1000 | [diff] [blame] | 58 | platform_pre_restart(void) |
| 59 | { |
| 60 | #ifdef LINUX_OOM_ADJUST |
| 61 | oom_adjust_restore(); |
| 62 | #endif |
| 63 | } |
| 64 | |
| 65 | void |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 66 | platform_post_fork_parent(pid_t child_pid) |
| 67 | { |
| 68 | #ifdef USE_SOLARIS_PROCESS_CONTRACTS |
| 69 | solaris_contract_post_fork_parent(child_pid); |
| 70 | #endif |
| 71 | } |
| 72 | |
| 73 | void |
| 74 | platform_post_fork_child(void) |
| 75 | { |
| 76 | #ifdef USE_SOLARIS_PROCESS_CONTRACTS |
| 77 | solaris_contract_post_fork_child(); |
| 78 | #endif |
Darren Tucker | c8802aa | 2009-12-08 13:39:48 +1100 | [diff] [blame] | 79 | #ifdef LINUX_OOM_ADJUST |
| 80 | oom_adjust_restore(); |
| 81 | #endif |
Damien Miller | 1b06dc3 | 2006-08-31 03:24:41 +1000 | [diff] [blame] | 82 | } |
Darren Tucker | 1bf3503 | 2009-12-21 10:49:21 +1100 | [diff] [blame] | 83 | |
Darren Tucker | b12fe27 | 2010-11-05 14:47:01 +1100 | [diff] [blame] | 84 | /* return 1 if we are running with privilege to swap UIDs, 0 otherwise */ |
| 85 | int |
| 86 | platform_privileged_uidswap(void) |
| 87 | { |
| 88 | #ifdef HAVE_CYGWIN |
| 89 | /* uid 0 is not special on Cygwin so always try */ |
| 90 | return 1; |
| 91 | #else |
| 92 | return (getuid() == 0 || geteuid() == 0); |
| 93 | #endif |
| 94 | } |
| 95 | |
Darren Tucker | 920612e | 2010-11-05 12:36:15 +1100 | [diff] [blame] | 96 | /* |
| 97 | * This gets called before switching UIDs, and is called even when sshd is |
| 98 | * not running as root. |
| 99 | */ |
Darren Tucker | 9752835 | 2010-11-05 12:03:05 +1100 | [diff] [blame] | 100 | void |
| 101 | platform_setusercontext(struct passwd *pw) |
| 102 | { |
Darren Tucker | 920612e | 2010-11-05 12:36:15 +1100 | [diff] [blame] | 103 | #ifdef WITH_SELINUX |
| 104 | /* Cache selinux status for later use */ |
| 105 | (void)ssh_selinux_enabled(); |
| 106 | #endif |
| 107 | |
Darren Tucker | 9752835 | 2010-11-05 12:03:05 +1100 | [diff] [blame] | 108 | #ifdef USE_SOLARIS_PROJECTS |
| 109 | /* if solaris projects were detected, set the default now */ |
| 110 | if (getuid() == 0 || geteuid() == 0) |
| 111 | solaris_set_default_project(pw); |
| 112 | #endif |
Darren Tucker | 44a97be | 2010-11-05 12:45:18 +1100 | [diff] [blame] | 113 | |
| 114 | #if defined(HAVE_LOGIN_CAP) && defined (__bsdi__) |
Darren Tucker | fd4d8aa | 2010-11-05 12:50:41 +1100 | [diff] [blame] | 115 | if (getuid() == 0 || geteuid() == 0) |
| 116 | setpgid(0, 0); |
Darren Tucker | 44a97be | 2010-11-05 12:45:18 +1100 | [diff] [blame] | 117 | # endif |
Darren Tucker | 728d837 | 2010-11-05 13:00:05 +1100 | [diff] [blame] | 118 | |
| 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 Tucker | d995712 | 2010-11-24 10:09:13 +1100 | [diff] [blame] | 130 | |
| 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 Tucker | 9752835 | 2010-11-05 12:03:05 +1100 | [diff] [blame] | 138 | } |
| 139 | |
Darren Tucker | 920612e | 2010-11-05 12:36:15 +1100 | [diff] [blame] | 140 | /* |
| 141 | * This gets called after we've established the user's groups, and is only |
| 142 | * called if sshd is running as root. |
| 143 | */ |
| 144 | void |
| 145 | platform_setusercontext_post_groups(struct passwd *pw) |
| 146 | { |
Darren Tucker | cc12418 | 2010-11-05 13:32:52 +1100 | [diff] [blame] | 147 | #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 Tucker | 0b2ee64 | 2010-11-05 13:29:25 +1100 | [diff] [blame] | 158 | #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 Tucker | 676b912 | 2010-11-05 13:11:04 +1100 | [diff] [blame] | 163 | #ifdef _AIX |
| 164 | aix_usrinfo(pw); |
| 165 | #endif /* _AIX */ |
| 166 | |
Darren Tucker | 7a8afe3 | 2010-11-05 13:07:24 +1100 | [diff] [blame] | 167 | #if !defined(HAVE_LOGIN_CAP) && defined(USE_LIBIAF) |
| 168 | if (set_id(pw->pw_name) != 0) { |
| 169 | exit(1); |
| 170 | } |
| 171 | # endif /* USE_LIBIAF */ |
| 172 | |
Darren Tucker | 4db3807 | 2010-11-05 12:41:13 +1100 | [diff] [blame] | 173 | #ifdef HAVE_SETPCRED |
| 174 | /* |
| 175 | * If we have a chroot directory, we set all creds except real |
| 176 | * uid which we will need for chroot. If we don't have a |
| 177 | * chroot directory, we don't override anything. |
| 178 | */ |
| 179 | { |
| 180 | char **creds = NULL, *chroot_creds[] = |
| 181 | { "REAL_USER=root", NULL }; |
| 182 | |
| 183 | if (options.chroot_directory != NULL && |
| 184 | strcasecmp(options.chroot_directory, "none") != 0) |
| 185 | creds = chroot_creds; |
| 186 | |
| 187 | if (setpcred(pw->pw_name, creds) == -1) |
| 188 | fatal("Failed to set process credentials"); |
| 189 | } |
| 190 | #endif /* HAVE_SETPCRED */ |
Darren Tucker | 920612e | 2010-11-05 12:36:15 +1100 | [diff] [blame] | 191 | #ifdef WITH_SELINUX |
| 192 | ssh_selinux_setup_exec_context(pw->pw_name); |
| 193 | #endif |
| 194 | } |
| 195 | |
Darren Tucker | 1bf3503 | 2009-12-21 10:49:21 +1100 | [diff] [blame] | 196 | char * |
| 197 | platform_krb5_get_principal_name(const char *pw_name) |
| 198 | { |
| 199 | #ifdef USE_AIX_KRB_NAME |
| 200 | return aix_krb5_get_principal_name(pw_name); |
| 201 | #else |
| 202 | return NULL; |
| 203 | #endif |
| 204 | } |
Darren Tucker | aa97d13 | 2013-03-12 11:31:05 +1100 | [diff] [blame] | 205 | |
| 206 | /* |
| 207 | * return 1 if the specified uid is a uid that may own a system directory |
| 208 | * otherwise 0. |
| 209 | */ |
| 210 | int |
| 211 | platform_sys_dir_uid(uid_t uid) |
| 212 | { |
| 213 | if (uid == 0) |
| 214 | return 1; |
| 215 | #ifdef PLATFORM_SYS_DIR_UID |
| 216 | if (uid == PLATFORM_SYS_DIR_UID) |
| 217 | return 1; |
| 218 | #endif |
| 219 | return 0; |
| 220 | } |