/* * pam_loginuid module * * Copyright 2005 Red Hat Inc., Durham, North Carolina. * All Rights Reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU 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 General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Suite 500 * Boston, MA 02110-1335 USA * * Authors: * Steve Grubb * * PAM module that sets the login uid introduced in kernel 2.6.11 */ #include "config.h" #include #include #include #include #include #include #include #include #include #include #include #include #ifdef HAVE_LIBAUDIT #include #include #endif /* * This function writes the loginuid to the /proc system. It returns * PAM_SUCCESS on success, * PAM_IGNORE when /proc/self/loginuid does not exist, * PAM_SESSION_ERR in case of any other error. */ static int set_loginuid(pam_handle_t *pamh, uid_t uid) { int fd, count, rc = PAM_SESSION_ERR; char loginuid[24], buf[24]; static const char host_uid_map[] = " 0 0 4294967295\n"; char uid_map[sizeof(host_uid_map)]; /* loginuid in user namespaces currently isn't writable and in some case, not even readable, so consider any failure as ignorable (but try anyway, in case we hit a kernel which supports it). */ fd = open("/proc/self/uid_map", O_RDONLY); if (fd >= 0) { count = pam_modutil_read(fd, uid_map, sizeof(uid_map)); if (count <= 0 || strncmp(uid_map, host_uid_map, count) != 0) rc = PAM_IGNORE; close(fd); } fd = open("/proc/self/loginuid", O_NOFOLLOW|O_RDWR); if (fd < 0) { if (errno == ENOENT) { rc = PAM_IGNORE; } if (rc != PAM_IGNORE) { pam_syslog(pamh, LOG_ERR, "Cannot open %s: %m", "/proc/self/loginuid"); } return rc; } count = snprintf(loginuid, sizeof(loginuid), "%lu", (unsigned long)uid); if (pam_modutil_read(fd, buf, sizeof(buf)) == count && memcmp(buf, loginuid, count) == 0) { rc = PAM_SUCCESS; goto done; /* already correct */ } if (lseek(fd, 0, SEEK_SET) == 0 && ftruncate(fd, 0) == 0 && pam_modutil_write(fd, loginuid, count) == count) { rc = PAM_SUCCESS; } else { if (rc != PAM_IGNORE) { pam_syslog(pamh, LOG_ERR, "Error writing %s: %m", "/proc/self/loginuid"); } } done: close(fd); return rc; } #ifdef HAVE_LIBAUDIT /* * This function is called only if "require_auditd" option is passed. It is * called after loginuid has been set. The purpose is to disallow logins * should the audit daemon not be running or crashed. It returns PAM_SUCCESS * if the audit daemon is running and PAM_SESSION_ERR otherwise. */ static int check_auditd(void) { int fd, retval; fd = audit_open(); if (fd < 0) { /* This is here to let people that build their own kernel and disable the audit system get in. You get these error codes only when the kernel doesn't have audit compiled in. */ if (errno == EINVAL || errno == EPROTONOSUPPORT || errno == EAFNOSUPPORT) return PAM_SUCCESS; return PAM_SESSION_ERR; } retval = audit_request_status(fd); if (retval > 0) { struct audit_reply rep; int i; int timeout = 30; /* tenths of seconds */ fd_set read_mask; FD_ZERO(&read_mask); FD_SET(fd, &read_mask); for (i = 0; i < timeout; i++) { struct timeval t; int rc; t.tv_sec = 0; t.tv_usec = 100000; do { rc = select(fd+1, &read_mask, NULL, NULL, &t); } while (rc < 0 && errno == EINTR); rc = audit_get_reply(fd, &rep, GET_REPLY_NONBLOCKING,0); if (rc > 0) { /* If we get done or error, break out */ if (rep.type == NLMSG_DONE || rep.type == NLMSG_ERROR) break; /* If its not status, keep looping */ if (rep.type != AUDIT_GET) continue; /* Found it... */ close(fd); if (rep.status->pid == 0) return PAM_SESSION_ERR; else return PAM_SUCCESS; } } } close(fd); if (retval == -ECONNREFUSED) { /* This is here to let people that build their own kernel and disable the audit system get in. ECONNREFUSED is issued by the kernel when there is "no on listening". */ return PAM_SUCCESS; } else if (retval == -EPERM && getuid() != 0) { /* If we get this, then the kernel supports auditing * but we don't have enough privilege to write to the * socket. Therefore, we have already been authenticated * and we are a common user. Just act as though auditing * is not enabled. Any other error we take seriously. */ return PAM_SUCCESS; } return PAM_SESSION_ERR; } #endif /* * Initialize audit session for user */ static int _pam_loginuid(pam_handle_t *pamh, int flags UNUSED, #ifdef HAVE_LIBAUDIT int argc, const char **argv #else int argc UNUSED, const char **argv UNUSED #endif ) { const char *user = NULL; struct passwd *pwd; int ret; #ifdef HAVE_LIBAUDIT int require_auditd = 0; #endif /* get user name */ if (pam_get_user(pamh, &user, NULL) != PAM_SUCCESS) { pam_syslog(pamh, LOG_NOTICE, "cannot determine user name"); return PAM_SESSION_ERR; } /* get user info */ if ((pwd = pam_modutil_getpwnam(pamh, user)) == NULL) { pam_syslog(pamh, LOG_NOTICE, "error: login user-name '%s' does not exist", user); return PAM_SESSION_ERR; } ret = set_loginuid(pamh, pwd->pw_uid); switch (ret) { case PAM_SUCCESS: case PAM_IGNORE: break; default: pam_syslog(pamh, LOG_ERR, "set_loginuid failed"); return ret; } #ifdef HAVE_LIBAUDIT while (argc-- > 0) { if (strcmp(*argv, "require_auditd") == 0) require_auditd = 1; argv++; } if (require_auditd) { int rc = check_auditd(); if (rc != PAM_SUCCESS) pam_syslog(pamh, LOG_ERR, "required running auditd not detected"); return rc != PAM_SUCCESS ? rc : ret; } else #endif return ret; } /* * PAM routines * * This is here for vsftpd which doesn't seem to run the session stack */ int pam_sm_acct_mgmt(pam_handle_t *pamh, int flags, int argc, const char **argv) { return _pam_loginuid(pamh, flags, argc, argv); } int pam_sm_open_session(pam_handle_t *pamh, int flags, int argc, const char **argv) { return _pam_loginuid(pamh, flags, argc, argv); } int pam_sm_close_session(pam_handle_t *pamh UNUSED, int flags UNUSED, int argc UNUSED, const char **argv UNUSED) { return PAM_SUCCESS; }