aboutsummaryrefslogtreecommitdiff
path: root/src/openrc-pam/openrc-pam.c
blob: eba3846bd9b2e569800fbdd26017bf99bd6f731e (plain)
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
#include <stdio.h>
#include <pwd.h>
#include <security/pam_modules.h>
#include <unistd.h>
#include <librc.h>
#include <stdbool.h>
#include <syslog.h>
#ifdef __FreeBSD__
#include <security/pam_appl.h>
#endif

#include "einfo.h"

static bool exec_openrc(pam_handle_t *pamh, const char *runlevel) {
	char *cmd = NULL;
	const char *username;
	struct passwd *pw = NULL;

	if (pam_get_user(pamh, &username, "username:") != PAM_SUCCESS)
		return false;
	pw = getpwnam(username);
	if (!pw)
		return false;

	elog(LOG_INFO, "Executing %s runlevel for user %s", runlevel, username);

	xasprintf(&cmd, "openrc --user %s", runlevel);
	switch (fork()) {
		case 0:
			setgid(pw->pw_gid);
			setuid(pw->pw_uid);

			execl(pw->pw_shell, "-", "-c", cmd, NULL);

			free(cmd);
			return false;
			break;
		case -1:
			free(cmd);
			return false;
			break;
	}
	wait(NULL);
	free(cmd);
	return true;
}

PAM_EXTERN int pam_sm_open_session(pam_handle_t *pamh, int flags, int argc, const char **argv) {
	(void)flags;
	(void)argc;
	(void)argv;

	setenv("EINFO_LOG", "openrc-pam", 1);
	elog(LOG_INFO, "Opening openrc session");

	setenv("RC_PAM_STARTING", "YES", true);
	if (exec_openrc(pamh, "default")) {
		elog(LOG_INFO, "Openrc session opened");
		unsetenv("RC_PAM_STARTING");
		unsetenv("EINFO_LOG");
		return PAM_SUCCESS;
	} else {
		elog(LOG_ERR, "Failed to open session");
		unsetenv("RC_PAM_STARTING");
		unsetenv("EINFO_LOG");
		return PAM_SESSION_ERR;
	}
}

PAM_EXTERN int pam_sm_close_session(pam_handle_t *pamh, int flags, int argc, const char **argv) {
	(void)flags;
	(void)argc;
	(void)argv;

	setenv("EINFO_LOG", "openrc-pam", 1);
	elog(LOG_INFO, "Closing openrc session");

	setenv("RC_PAM_STOPPING", "YES", true);
	if (exec_openrc(pamh, "none")) {
		elog(LOG_INFO, "Openrc session closed");
		unsetenv("RC_PAM_STOPPING");
		unsetenv("EINFO_LOG");
		return PAM_SUCCESS;
	} else {
		elog(LOG_ERR, "Failed to close session");
		unsetenv("RC_PAM_STOPPING");
		unsetenv("EINFO_LOG");
		return PAM_SESSION_ERR;
	}
}