diff options
author | Ted Gould <ted@gould.cx> | 2012-08-28 15:11:07 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2012-08-28 15:11:07 -0500 |
commit | 626a5ed1cc6421c00f103fa769ac19f867e7ed1f (patch) | |
tree | e8c82f86c9e712de4f697da7a76ca9740f525fee /src | |
parent | 733fde7fe2415f983ed8f2045dffda16d30d1c14 (diff) | |
download | libpam-x2go-626a5ed1cc6421c00f103fa769ac19f867e7ed1f.tar.gz libpam-x2go-626a5ed1cc6421c00f103fa769ac19f867e7ed1f.tar.bz2 libpam-x2go-626a5ed1cc6421c00f103fa769ac19f867e7ed1f.zip |
Set the permissions on the socket
Diffstat (limited to 'src')
-rw-r--r-- | src/pam-freerdp.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/pam-freerdp.c b/src/pam-freerdp.c index d1a6578..2261a20 100644 --- a/src/pam-freerdp.c +++ b/src/pam-freerdp.c @@ -23,6 +23,7 @@ #include <sys/wait.h> #include <sys/types.h> #include <sys/socket.h> +#include <sys/stat.h> #include <sys/un.h> #include <pwd.h> @@ -262,6 +263,15 @@ pam_sm_open_session (pam_handle_t *pamh, int flags, int argc, const char ** argv goto done; } + /* Set the socket file permissions to be 600 and the user and group + to be the guest user. NOTE: This won't protect on BSD */ + if (chmod(socket_addr.sun_path, S_IRUSR | S_IWUSR) != 0 || + chown(socket_addr.sun_path, pwdent->pw_uid, pwdent->pw_gid) != 0) { + close(socketfd); + retval = PAM_SYSTEM_ERR; + goto done; + } + /* Build this up as a buffer so we can just write it and see that very, very clearly */ int buffer_len = 0; |