-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
if get_option('pam') and pam_dep.found() | ||
shared_module('pam_openrc', | ||
['pam_openrc.c', misc_c, version_h], | ||
c_args : [cc_branding_flags], | ||
dependencies : [pam_dep], | ||
name_prefix : '', | ||
link_with : [libeinfo, librc], | ||
include_directories : [incdir, einfo_incdir, rc_incdir], | ||
install : true, | ||
install_dir : libdir / 'security') | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
#include <fcntl.h> | ||
#include <pwd.h> | ||
#include <security/pam_modules.h> | ||
#include <sys/file.h> | ||
#include <syslog.h> | ||
#include <unistd.h> | ||
|
||
#include <einfo.h> | ||
#include <rc.h> | ||
#include "helpers.h" | ||
|
||
static int lock_user(struct passwd *pw) { | ||
char *file; | ||
int fd; | ||
|
||
xasprintf(&file, "%s/users/%s", rc_svcdir(), pw->pw_name); | ||
elog(LOG_INFO, "Opening %s.", file); | ||
fd = open(file, O_RDWR | O_CREAT | O_CLOEXEC, 0664); | ||
free(file); | ||
|
||
if (fd == -1 || flock(fd, LOCK_EX | LOCK_NB) == -1) { | ||
elog(LOG_ERR, "Failed to lock lockfile."); | ||
return -1; | ||
} | ||
|
||
return fd; | ||
} | ||
|
||
static int exec_openrc(pam_handle_t *pamh, bool start) { | ||
const char *username, *session; | ||
struct passwd *user; | ||
char *elog_name; | ||
int lockfile; | ||
|
||
if (pam_get_item(pamh, PAM_SERVICE, (const void **)&session) != PAM_SUCCESS) | ||
return PAM_SESSION_ERR; | ||
/* noop if the current stack was started by openrc-user, to avoid looping */ | ||
if (strcmp(session, "openrc-user") == 0) | ||
return PAM_SUCCESS; | ||
|
||
if (pam_get_user(pamh, &username, "") != PAM_SUCCESS || !(user = getpwnam(username))) | ||
return PAM_SESSION_ERR; | ||
|
||
if (user->pw_uid == 0) | ||
return PAM_SUCCESS; | ||
|
||
xasprintf(&elog_name, "pam_openrc[%s]", user->pw_name); | ||
setenv("EINFO_LOG", elog_name, true); | ||
free(elog_name); | ||
|
||
if ((lockfile = lock_user(user)) == -1) { | ||
unsetenv("EINFO_LOG"); | ||
return PAM_SESSION_ERR; | ||
} | ||
|
||
if (fork() == 0) { | ||
if (fork() == 0) { | ||
execl(RC_LIBEXECDIR "/bin/openrc-user", "openrc-user", user->pw_name, start ? "start" : "stop", NULL); | ||
elog(LOG_ERR, "Failed to exec openrc-user"); | ||
close(lockfile); | ||
exit(1); | ||
} | ||
exit(0); | ||
} | ||
|
||
close(lockfile); | ||
unsetenv("EINFO_LOG"); | ||
return PAM_SUCCESS; | ||
} | ||
|
||
PAM_EXTERN int pam_sm_open_session(pam_handle_t *pamh, int flags, int argc, const char **argv) { | ||
(void) flags; (void) argc; (void) argv; | ||
return exec_openrc(pamh, true); | ||
} | ||
|
||
PAM_EXTERN int pam_sm_close_session(pam_handle_t *pamh, int flags, int argc, const char **argv) { | ||
(void) flags; (void) argc; (void) argv; | ||
return exec_openrc(pamh, false); | ||
} |