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
|
/*
* Copyright (C) 2000-2002, 2004, 2005, 2006, 2007 Red Hat, Inc.
*
* This is free software; you can redistribute it and/or modify it under
* the terms of the GNU Library General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <config.h>
#include <glib.h>
#include <libintl.h>
#include <security/pam_appl.h>
#include <security/pam_misc.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#ifdef WITH_SELINUX
#include <selinux/selinux.h>
#include <selinux/context.h>
#endif
#include "../lib/error.h"
#include "../lib/user.h"
#include "../lib/user_private.h"
#include "apputil.h"
#ifdef WITH_SELINUX
static int
check_access(const char *chuser, access_vector_t access)
{
int status;
char * user_context;
status = -1;
if (getprevcon(&user_context) == 0) {
context_t c;
const char *user;
c = context_new(user_context);
user = context_user_get(c);
if (strcmp(chuser, user) == 0)
status = 0;
else {
struct av_decision avd;
int retval;
retval = security_compute_av(user_context,
user_context,
string_to_security_class("passwd"),
access, &avd);
if (retval == 0 && (avd.allowed & access) == access)
status = 0;
}
context_free(c);
freecon(user_context);
}
return status;
}
#endif
#if 0
/* Concatenate a string onto another string on the heap. */
static char *
lu_strconcat(char *existing, const char *appendee)
{
if (existing == NULL) {
existing = g_strdup(appendee);
} else {
char *tmp;
tmp = g_strconcat(existing, appendee, NULL);
g_free(existing);
existing = tmp;
}
return existing;
}
struct conv_data {
lu_prompt_fn *prompt;
gpointer callback_data;
};
/* PAM callback information. */
static int
lu_converse(int num_msg, const struct pam_message **msg,
struct pam_response **resp, void *appdata_ptr)
{
struct conv_data *data = appdata_ptr;
struct lu_prompt prompts[num_msg];
struct lu_error *error = NULL;
struct pam_response *responses;
char *pending = NULL, *p;
int i;
memset(&prompts, 0, sizeof(prompts));
/* Convert the PAM prompts to our own prompter type. */
for (i = 0; i < num_msg; i++) {
switch ((*msg)[i].msg_style) {
case PAM_PROMPT_ECHO_ON:
/* Append this text to any pending output text
* we already have. */
prompts[i].prompt = lu_strconcat(pending,
(*msg)[i].msg);
p = strrchr(prompts[i].prompt, ':');
if (p != NULL) {
*p = '\0';
}
prompts[i].visible = TRUE;
pending = NULL;
break;
case PAM_PROMPT_ECHO_OFF:
/* Append this text to any pending output text
* we already have. */
prompts[i].prompt = lu_strconcat(pending,
(*msg)[i].msg);
p = strrchr(prompts[i].prompt, ':');
if (p != NULL) {
*p = '\0';
}
prompts[i].visible = FALSE;
pending = NULL;
break;
default:
/* Make this pending output text. */
pending = lu_strconcat(pending, (*msg)[i].msg);
break;
}
}
g_free(pending); /* Discards trailing PAM_ERROR_MSG or PAM_TEXT_INFO */
/* Prompt the user. */
if (data->prompt(prompts, num_msg, data->callback_data, &error)) {
/* Allocate room for responses. This memory will be
* freed by the calling application, so use malloc() instead
* of g_malloc() and friends. */
responses = calloc(num_msg, sizeof(*responses));
if (responses == NULL)
return PAM_BUF_ERR;
/* Transcribe the responses into the PAM structure. */
for (i = 0; i < num_msg; i++) {
/* Set the response code and text (if we have text),
* and free the prompt text. */
responses[i].resp_retcode = PAM_SUCCESS;
if (prompts[i].value != NULL) {
responses[i].resp = strdup(prompts[i].value);
prompts[i].free_value(prompts[i].value);
}
g_free((gpointer) prompts[i].prompt);
}
/* Set the return pointer. */
*resp = responses;
}
if (error != NULL) {
lu_error_free(&error);
}
return PAM_CONV_ERR;
}
#endif
/* Authenticate the user if the invoking user is not privileged. If
* authentication fails, exit immediately. */
void
lu_authenticate_unprivileged(struct lu_context *ctx, const char *user,
const char *appname)
{
pam_handle_t *pamh;
struct pam_conv conv;
const void *puser;
int ret;
/* Don't bother (us and the user) if none of the modules makes use of
* elevated privileges and the program is not set*id. */
if (lu_uses_elevated_privileges(ctx) == FALSE
&& geteuid() == getuid() && getegid() == getgid())
return;
#if 0
struct conv_data data;
/* Don't bother if none of the modules makes use of elevated
* privileges. */
if (lu_uses_elevated_privileges(ctx) == FALSE) {
/* Great! We can drop privileges. */
if (setegid(getgid()) == -1) {
fprintf(stderr, _("Failed to drop privileges.\n"));
goto err;
}
if (seteuid(getuid()) == -1) {
fprintf(stderr, _("Failed to drop privileges.\n"));
goto err;
}
return;
}
/* Get the address of the glue conversation function. */
lu_get_prompter(ctx, &data.prompt, &data.callback_data);
if (data.prompt == NULL) {
fprintf(stderr, _("Internal error.\n"));
goto err;
}
conv.conv = lu_converse;
conv.appdata_ptr = &data;
#endif
conv.conv = misc_conv;
conv.appdata_ptr = NULL;
#ifdef WITH_SELINUX
if (is_selinux_enabled() > 0) {
/* FIXME: PASSWD_CHSH, PASSWD_PASSWD ? */
if (getuid() == 0) {
security_class_t class;
access_vector_t perm;
class = string_to_security_class("passwd");
perm = string_to_av_perm(class, "chfn");
if (check_access(user, perm) != 0) {
char *user_context;
if (getprevcon(&user_context) < 0)
user_context = NULL;
/* FIXME: "change the finger info?" */
fprintf(stderr,
_("%s is not authorized to change the finger "
"info of %s\n"), user_context ? user_context
: _("Unknown user context"), user);
if (user_context != NULL)
freecon(user_context);
goto err;
}
}
/* FIXME: is this right for lpasswd? */
if (!lu_util_fscreate_from_file("/etc/passwd", NULL)) {
fprintf(stderr,
_("Can't set default context for "
"/etc/passwd\n"));
goto err;
}
}
#endif
/* Start up PAM. */
if (pam_start(appname, user, &conv, &pamh) != PAM_SUCCESS) {
fprintf(stderr, _("Error initializing PAM.\n"));
goto err;
}
/* Use PAM to authenticate the user. */
ret = pam_authenticate(pamh, 0);
if (ret != PAM_SUCCESS) {
if (pam_get_item(pamh, PAM_USER, &puser) != PAM_SUCCESS
|| puser == NULL)
puser = user;
fprintf(stderr, _("Authentication failed for %s.\n"),
(const char *)puser);
goto err_pam;
}
/* Make sure we authenticated the user we wanted to authenticate. */
ret = pam_get_item(pamh, PAM_USER, &puser);
if (ret != PAM_SUCCESS) {
fprintf(stderr, _("Internal PAM error `%s'.\n"),
pam_strerror(pamh, ret));
goto err_pam;
}
if (puser == NULL) {
fprintf(stderr, _("Unknown user authenticated.\n"));
goto err_pam;
}
if (strcmp(puser, user) != 0) {
fprintf(stderr, _("User mismatch.\n"));
goto err_pam;
}
/* Check if the user is allowed to run this program. */
ret = pam_acct_mgmt(pamh, 0);
if (ret != PAM_SUCCESS) {
if (pam_get_item(pamh, PAM_USER, &puser) != PAM_SUCCESS
|| puser == NULL)
puser = user;
fprintf(stderr, _("Authentication failed for %s.\n"),
(const char *)puser);
goto err_pam;
}
/* Clean up -- we're done. */
pam_end(pamh, PAM_SUCCESS);
return;
err_pam:
pam_end(pamh, ret);
err:
exit(1);
}
|