1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
|
/*
* SPDX-License-Identifier: ISC
*
* Copyright (c) 1993-1996,1998-2005, 2007-2024
* Todd C. Miller <Todd.Miller@sudo.ws>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Sponsored in part by the Defense Advanced Research Projects
* Agency (DARPA) and Air Force Research Laboratory, Air Force
* Materiel Command, USAF, under agreement number F39502-99-1-0512.
*/
/*
* This is an open source non-commercial project. Dear PVS-Studio, please check it.
* PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
*/
#include <config.h>
#include <sys/types.h> /* for ssize_t */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <time.h>
#include <errno.h>
#include <pwd.h>
#include <grp.h>
#include <sudoers.h>
#include <timestamp.h>
/*
* Get passwd entry for the user we are going to authenticate as.
* By default, this is the user invoking sudo. In the most common
* case, this matches ctx->user.pw or ctx->runas.pw.
*/
static struct passwd *
get_authpw(struct sudoers_context *ctx, unsigned int mode)
{
struct passwd *pw = NULL;
debug_decl(get_authpw, SUDOERS_DEBUG_AUTH);
if (ISSET(mode, (MODE_CHECK|MODE_LIST))) {
/* In list mode we always prompt for the user's password. */
sudo_pw_addref(ctx->user.pw);
pw = ctx->user.pw;
} else {
if (def_rootpw) {
if ((pw = sudo_getpwuid(ROOT_UID)) == NULL) {
log_warningx(ctx, SLOG_SEND_MAIL, N_("unknown uid %u"),
ROOT_UID);
}
} else if (def_runaspw) {
if ((pw = sudo_getpwnam(def_runas_default)) == NULL) {
log_warningx(ctx, SLOG_SEND_MAIL,
N_("unknown user %s"), def_runas_default);
}
} else if (def_targetpw) {
if (ctx->runas.pw->pw_name == NULL) {
/* This should never be NULL as we fake up the passwd struct */
log_warningx(ctx, SLOG_RAW_MSG, N_("unknown uid %u"),
(unsigned int) ctx->runas.pw->pw_uid);
} else {
sudo_pw_addref(ctx->runas.pw);
pw = ctx->runas.pw;
}
} else {
sudo_pw_addref(ctx->user.pw);
pw = ctx->user.pw;
}
}
debug_return_ptr(pw);
}
/*
* Returns true if the user is running the command as themselves
* and no SELinux type/role, AppArmor profile or Solaris privilege
* was specified.
*/
static bool
running_as_user(struct sudoers_context *ctx)
{
return ctx->user.uid == ctx->runas.pw->pw_uid && (ctx->runas.gr == NULL ||
user_in_group(ctx->user.pw, ctx->runas.gr->gr_name)) &&
ctx->runas.role == NULL && ctx->runas.type == NULL &&
ctx->runas.apparmor_profile == NULL &&
ctx->runas.privs == NULL && ctx->runas.limitprivs == NULL;
}
/*
* Returns AUTH_SUCCESS if the user successfully authenticates,
* AUTH_FAILURE if not or AUTH_ERROR on error.
*/
int
check_user(struct sudoers_context *ctx, unsigned int validated,
unsigned int mode)
{
struct getpass_closure closure = { 0 };
struct sudo_conv_callback callback;
int status = TS_ERROR;
int ret = AUTH_ERROR;
bool exempt = false;
char *prompt;
debug_decl(check_user, SUDOERS_DEBUG_AUTH);
/*
* In intercept mode, only check the user if configured to do so.
* We already have a session so no need to init the auth subsystem.
*/
if (ISSET(ctx->mode, MODE_POLICY_INTERCEPTED)) {
if (!def_intercept_authenticate) {
debug_return_int(AUTH_SUCCESS);
}
}
/*
* Init authentication system regardless of whether we need a password.
* Required for proper PAM session support.
*/
if ((closure.auth_pw = get_authpw(ctx, mode)) == NULL)
debug_return_int(AUTH_ERROR);
if (sudo_auth_init(ctx, closure.auth_pw, mode) != AUTH_SUCCESS) {
sudo_pw_delref(closure.auth_pw);
debug_return_int(AUTH_ERROR);
}
closure.ctx = ctx;
if (!def_authenticate || user_is_exempt(ctx)) {
sudo_debug_printf(SUDO_DEBUG_INFO, "%s: %s", __func__,
!def_authenticate ? "authentication disabled" :
"user exempt from authentication");
exempt = true;
goto success;
}
if (ctx->user.uid == ROOT_UID) {
/* Do not prompt for the root password. */
goto success;
}
if ((ISSET(mode, MODE_RUN|MODE_EDIT) && running_as_user(ctx))) {
/* If the user is not changing uid/gid, no need for a password. */
sudo_debug_printf(SUDO_DEBUG_INFO,
"%s: user running command as self", __func__);
goto success;
}
/* Construct callback for getpass function. */
memset(&callback, 0, sizeof(callback));
callback.version = SUDO_CONV_CALLBACK_VERSION;
callback.closure = &closure;
/* Open, lock and read time stamp file if we are using it. */
if (!ISSET(mode, MODE_IGNORE_TICKET)) {
/* Open time stamp file and check its status. */
closure.cookie = timestamp_open(ctx);
if (closure.cookie != NULL) {
if (timestamp_lock(closure.cookie, closure.auth_pw)) {
status = timestamp_status(closure.cookie, closure.auth_pw);
}
}
}
switch (status) {
case TS_FATAL:
/* Fatal error (usually setuid failure), unsafe to proceed. */
goto done;
case TS_CURRENT:
/* Time stamp file is valid and current. */
if (!ISSET(validated, FLAG_CHECK_USER)) {
ret = AUTH_SUCCESS;
break;
}
sudo_debug_printf(SUDO_DEBUG_INFO,
"%s: check user flag overrides time stamp", __func__);
FALLTHROUGH;
default:
if (ISSET(mode, MODE_NONINTERACTIVE) && !def_noninteractive_auth) {
validated |= FLAG_NO_USER_INPUT;
log_auth_failure(ctx, validated, 0);
goto done;
}
/* Expand any escapes in the prompt. */
prompt = expand_prompt(ctx,
ctx->user.prompt ? ctx->user.prompt : def_passprompt,
closure.auth_pw->pw_name);
if (prompt == NULL)
goto done;
ret = verify_user(ctx, closure.auth_pw, prompt, validated, &callback);
if (ret == AUTH_SUCCESS && closure.lectured)
(void)set_lectured(ctx); /* lecture error not fatal */
free(prompt);
break;
}
if (ret == AUTH_SUCCESS) {
success:
/* The approval function may disallow a user post-authentication. */
ret = sudo_auth_approval(ctx, closure.auth_pw, validated, exempt);
/*
* Only update time stamp if user validated and was approved.
* Failure to update the time stamp is not a fatal error.
*/
if (ret == AUTH_SUCCESS && ISSET(validated, VALIDATE_SUCCESS)) {
if (ISSET(mode, MODE_UPDATE_TICKET) && status != TS_ERROR)
(void)timestamp_update(closure.cookie, closure.auth_pw);
}
}
done:
timestamp_close(closure.cookie);
sudo_auth_cleanup(ctx, closure.auth_pw, !ISSET(validated, VALIDATE_SUCCESS));
sudo_pw_delref(closure.auth_pw);
debug_return_int(ret);
}
/*
* Display sudo lecture (standard or custom).
* Returns true if the user was lectured, else false.
*/
void
display_lecture(struct sudo_conv_callback *callback)
{
struct getpass_closure *closure;
struct sudo_conv_message msg[2];
struct sudo_conv_reply repl[2];
char buf[BUFSIZ];
struct stat sb;
ssize_t nread;
int fd, msgcount = 1;
debug_decl(lecture, SUDOERS_DEBUG_AUTH);
if (callback == NULL || (closure = callback->closure) == NULL)
debug_return;
if (closure->lectured)
debug_return;
if (def_lecture == never ||
(def_lecture == once && already_lectured(closure->ctx)))
debug_return;
memset(&msg, 0, sizeof(msg));
memset(&repl, 0, sizeof(repl));
if (def_lecture_file) {
fd = open(def_lecture_file, O_RDONLY|O_NONBLOCK);
if (fd != -1 && fstat(fd, &sb) == 0) {
if (S_ISREG(sb.st_mode)) {
(void) fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, 0) & ~O_NONBLOCK);
while ((nread = read(fd, buf, sizeof(buf) - 1)) > 0) {
buf[nread] = '\0';
msg[0].msg_type = SUDO_CONV_ERROR_MSG|SUDO_CONV_PREFER_TTY;
msg[0].msg = buf;
sudo_conv(1, msg, repl, NULL);
}
if (nread == 0) {
close(fd);
goto done;
}
log_warning(closure->ctx, SLOG_RAW_MSG,
N_("error reading lecture file %s"), def_lecture_file);
} else {
log_warningx(closure->ctx, SLOG_RAW_MSG,
N_("ignoring lecture file %s: not a regular file"),
def_lecture_file);
}
} else {
log_warning(closure->ctx, SLOG_RAW_MSG|SLOG_NO_STDERR,
N_("unable to open %s"), def_lecture_file);
}
if (fd != -1)
close(fd);
}
/* Default sudo lecture. */
msg[0].msg_type = SUDO_CONV_ERROR_MSG|SUDO_CONV_PREFER_TTY;
msg[0].msg = _("\n"
"We trust you have received the usual lecture from the local System\n"
"Administrator. It usually boils down to these three things:\n\n"
" #1) Respect the privacy of others.\n"
" #2) Think before you type.\n"
" #3) With great power comes great responsibility.\n\n");
if (!def_pwfeedback) {
msg[1].msg_type = SUDO_CONV_ERROR_MSG|SUDO_CONV_PREFER_TTY;
msg[1].msg = _("For security reasons, the password you type will not be visible.\n\n");
msgcount++;
}
sudo_conv(msgcount, msg, repl, NULL);
done:
closure->lectured = true;
debug_return;
}
/*
* Checks if the user is exempt from supplying a password.
*/
bool
user_is_exempt(const struct sudoers_context *ctx)
{
bool ret = false;
debug_decl(user_is_exempt, SUDOERS_DEBUG_AUTH);
if (def_exempt_group) {
if (user_in_group(ctx->user.pw, def_exempt_group))
ret = true;
}
debug_return_bool(ret);
}
|