summaryrefslogtreecommitdiff
path: root/src/login
diff options
context:
space:
mode:
authorMatthew Monaco <matthew.monaco@0x01b.net>2012-12-24 06:25:58 -0700
committerLennart Poettering <lennart@poettering.net>2012-12-24 19:17:48 +0100
commit485507b8c031e0c75f43c4b4fce5a0082a812fbb (patch)
treeb9fc431bfb4773349c0f51a7aabd155353538ff8 /src/login
parenta78a8c43376dde67a98ca275f4d917a71f48e672 (diff)
pam_systemd: new option for the session class
Diffstat (limited to 'src/login')
-rw-r--r--src/login/pam-module.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/login/pam-module.c b/src/login/pam-module.c
index e6764a197a..88b0ef9e45 100644
--- a/src/login/pam-module.c
+++ b/src/login/pam-module.c
@@ -49,6 +49,7 @@ static int parse_argv(pam_handle_t *handle,
bool *kill_processes,
char ***kill_only_users,
char ***kill_exclude_users,
+ const char **class,
bool *debug) {
unsigned i;
@@ -135,6 +136,11 @@ static int parse_argv(pam_handle_t *handle,
*kill_exclude_users = l;
}
+ } else if (startswith(argv[i], "class=")) {
+
+ if (class)
+ *class = argv[i] + 6;
+
} else if (startswith(argv[i], "debug=")) {
if ((k = parse_boolean(argv[i] + 6)) < 0) {
pam_syslog(handle, LOG_ERR, "Failed to parse debug= argument.");
@@ -322,7 +328,7 @@ _public_ PAM_EXTERN int pam_sm_open_session(
struct passwd *pw;
bool kill_processes = false, debug = false;
- const char *username, *id, *object_path, *runtime_path, *service = NULL, *tty = NULL, *display = NULL, *remote_user = NULL, *remote_host = NULL, *seat = NULL, *type = NULL, *class, *cvtnr = NULL;
+ const char *username, *id, *object_path, *runtime_path, *service = NULL, *tty = NULL, *display = NULL, *remote_user = NULL, *remote_host = NULL, *seat = NULL, *type = NULL, *class = NULL, *class_pam = NULL, *cvtnr = NULL;
char **controllers = NULL, **reset_controllers = NULL, **kill_only_users = NULL, **kill_exclude_users = NULL;
DBusError error;
uint32_t uid, pid;
@@ -349,7 +355,7 @@ _public_ PAM_EXTERN int pam_sm_open_session(
argc, argv,
&controllers, &reset_controllers,
&kill_processes, &kill_only_users, &kill_exclude_users,
- &debug) < 0) {
+ &class_pam, &debug) < 0) {
r = PAM_SESSION_ERR;
goto finish;
}
@@ -485,6 +491,8 @@ _public_ PAM_EXTERN int pam_sm_open_session(
if (isempty(class))
class = getenv("XDG_SESSION_CLASS");
if (isempty(class))
+ class = class_pam;
+ if (isempty(class))
class = "user";
remote = !isempty(remote_host) &&