X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fpam-module.c;h=7f915847052b061dd0de370aad67b615dbf36532;hp=52507a4cbdb94b0a0516be3e277450c7b36ccf1a;hb=e527618da5f4521e884a9b0c8c7d0a7a8e859749;hpb=3add4d215b30c746ee617d7412ee007ed3c87249 diff --git a/src/pam-module.c b/src/pam-module.c index 52507a4cb..7f9158470 100644 --- a/src/pam-module.c +++ b/src/pam-module.c @@ -42,11 +42,14 @@ static int parse_argv(pam_handle_t *handle, bool *create_session, bool *kill_session, bool *kill_user, - bool *keep_root, - char ***controllers) { + char ***controllers, + char ***reset_controllers, + char ***kill_only_users, + char ***kill_exclude_users) { unsigned i; - bool controller_set = false; + bool reset_controller_set = false; + bool kill_exclude_users_set = false; assert(argc >= 0); assert(argc == 0 || argv); @@ -81,15 +84,6 @@ static int parse_argv(pam_handle_t *handle, if (kill_user) *kill_user = k; - } else if (startswith(argv[i], "keep-root=")) { - if ((k = parse_boolean(argv[i] + 10)) < 0) { - pam_syslog(handle, LOG_ERR, "Failed to parse keep-root= argument."); - return k; - } - - if (keep_root) - *keep_root = k; - } else if (startswith(argv[i], "controllers=")) { if (controllers) { @@ -104,7 +98,51 @@ static int parse_argv(pam_handle_t *handle, *controllers = l; } - controller_set = true; + } else if (startswith(argv[i], "reset-controllers=")) { + + if (reset_controllers) { + char **l; + + if (!(l = strv_split(argv[i] + 18, ","))) { + pam_syslog(handle, LOG_ERR, "Out of memory."); + return -ENOMEM; + } + + strv_free(*reset_controllers); + *reset_controllers = l; + } + + reset_controller_set = true; + + } else if (startswith(argv[i], "kill-only-users=")) { + + if (kill_only_users) { + char **l; + + if (!(l = strv_split(argv[i] + 16, ","))) { + pam_syslog(handle, LOG_ERR, "Out of memory."); + return -ENOMEM; + } + + strv_free(*kill_only_users); + *kill_only_users = l; + } + + } else if (startswith(argv[i], "kill-exclude-users=")) { + + if (kill_exclude_users) { + char **l; + + if (!(l = strv_split(argv[i] + 19, ","))) { + pam_syslog(handle, LOG_ERR, "Out of memory."); + return -ENOMEM; + } + + strv_free(*kill_exclude_users); + *kill_exclude_users = l; + } + + kill_exclude_users_set = true; } else { pam_syslog(handle, LOG_ERR, "Unknown parameter '%s'.", argv[i]); @@ -112,8 +150,7 @@ static int parse_argv(pam_handle_t *handle, } } -#if 0 - if (!controller_set && controllers) { + if (!reset_controller_set && reset_controllers) { char **l; if (!(l = strv_new("cpu", NULL))) { @@ -121,16 +158,29 @@ static int parse_argv(pam_handle_t *handle, return -ENOMEM; } - *controllers = l; + *reset_controllers = l; } -#endif if (controllers) strv_remove(*controllers, "name=systemd"); + if (reset_controllers) + strv_remove(*reset_controllers, "name=systemd"); + if (kill_session && *kill_session && kill_user) *kill_user = true; + if (!kill_exclude_users_set && kill_exclude_users) { + char **l; + + if (!(l = strv_new("root", NULL))) { + pam_syslog(handle, LOG_ERR, "Out of memory"); + return -ENOMEM; + } + + *kill_exclude_users = l; + } + return 0; } @@ -316,6 +366,22 @@ static int create_user_group( return PAM_SUCCESS; } +static int reset_group( + pam_handle_t *handle, + const char *controller) { + + int r; + + assert(handle); + + if ((r = cg_attach(controller, "/", 0)) < 0) { + pam_syslog(handle, LOG_ERR, "Failed to reset cgroup for controller %s: %s", controller, strerror(-r)); + return PAM_SESSION_ERR; + } + + return PAM_SUCCESS; +} + _public_ PAM_EXTERN int pam_sm_open_session( pam_handle_t *handle, int flags, @@ -327,7 +393,7 @@ _public_ PAM_EXTERN int pam_sm_open_session( char *buf = NULL; int lock_fd = -1; bool create_session = true; - char **controllers = NULL, **c; + char **controllers = NULL, **reset_controllers = NULL, **c; assert(handle); @@ -337,7 +403,11 @@ _public_ PAM_EXTERN int pam_sm_open_session( if (sd_booted() <= 0) return PAM_SUCCESS; - if (parse_argv(handle, argc, argv, &create_session, NULL, NULL, NULL, &controllers) < 0) + if (parse_argv(handle, + argc, argv, + &create_session, NULL, NULL, + &controllers, &reset_controllers, + NULL, NULL) < 0) return PAM_SESSION_ERR; if ((r = get_user_data(handle, &username, &pw)) != PAM_SUCCESS) @@ -425,6 +495,9 @@ _public_ PAM_EXTERN int pam_sm_open_session( STRV_FOREACH(c, controllers) create_user_group(handle, *c, buf, pw, true, false); + STRV_FOREACH(c, reset_controllers) + reset_group(handle, *c); + r = PAM_SUCCESS; finish: @@ -434,6 +507,7 @@ finish: close_nointr_nofail(lock_fd); strv_free(controllers); + strv_free(reset_controllers); return r; } @@ -464,6 +538,54 @@ static int session_remains(pam_handle_t *handle, const char *user_path) { return !!remains; } +static bool check_user_lists( + pam_handle_t *handle, + uid_t uid, + char **kill_only_users, + char **kill_exclude_users) { + + const char *name = NULL; + char **l; + + assert(handle); + + if (uid == 0) + name = "root"; /* Avoid obvious NSS requests, to suppress network traffic */ + else { + struct passwd *pw; + + if ((pw = pam_modutil_getpwuid(handle, uid))) + name = pw->pw_name; + } + + STRV_FOREACH(l, kill_exclude_users) { + uint32_t id; + + if (safe_atou32(*l, &id) >= 0) + if ((uid_t) id == uid) + return false; + + if (name && streq(name, *l)) + return false; + } + + if (strv_isempty(kill_only_users)) + return true; + + STRV_FOREACH(l, kill_only_users) { + uint32_t id; + + if (safe_atou32(*l, &id) >= 0) + if ((uid_t) id == uid) + return true; + + if (name && streq(name, *l)) + return true; + } + + return false; +} + _public_ PAM_EXTERN int pam_sm_close_session( pam_handle_t *handle, int flags, @@ -472,13 +594,12 @@ _public_ PAM_EXTERN int pam_sm_close_session( const char *username = NULL; bool kill_session = false; bool kill_user = false; - bool keep_root = true; int lock_fd = -1, r; char *session_path = NULL, *nosession_path = NULL, *user_path = NULL; const char *id; struct passwd *pw; const void *created = NULL; - char **controllers = NULL, **c; + char **controllers = NULL, **c, **kill_only_users = NULL, **kill_exclude_users = NULL; assert(handle); @@ -486,7 +607,11 @@ _public_ PAM_EXTERN int pam_sm_close_session( if (sd_booted() <= 0) return PAM_SUCCESS; - if (parse_argv(handle, argc, argv, NULL, &kill_session, &kill_user, &keep_root, &controllers) < 0) + if (parse_argv(handle, + argc, argv, + NULL, &kill_session, &kill_user, + &controllers, NULL, + &kill_only_users, &kill_exclude_users) < 0) return PAM_SESSION_ERR; if ((r = get_user_data(handle, &username, &pw)) != PAM_SUCCESS) @@ -521,7 +646,7 @@ _public_ PAM_EXTERN int pam_sm_close_session( goto finish; } - if (kill_session && (pw->pw_uid != 0 || !keep_root)) { + if (kill_session && check_user_lists(handle, pw->pw_uid, kill_only_users, kill_exclude_users)) { pam_syslog(handle, LOG_INFO, "Killing remaining processes of user session %s of %s.", id, username); /* Kill processes in session cgroup, and delete it */ @@ -555,7 +680,7 @@ _public_ PAM_EXTERN int pam_sm_close_session( pam_syslog(handle, LOG_ERR, "Failed to determine whether a session remains: %s", strerror(-r)); /* Kill user processes not attached to any session */ - if (kill_user && r == 0 && (pw->pw_uid != 0 || !keep_root)) { + if (kill_user && r == 0 && check_user_lists(handle, pw->pw_uid, kill_only_users, kill_exclude_users)) { /* Kill user cgroup */ if ((r = cg_kill_recursive_and_wait(SYSTEMD_CGROUP_CONTROLLER, user_path, true)) < 0) @@ -599,6 +724,8 @@ finish: free(user_path); strv_free(controllers); + strv_free(kill_exclude_users); + strv_free(kill_only_users); return r; }