diff options
author | Ted Gould <ted@gould.cx> | 2012-08-29 07:54:37 +0000 |
---|---|---|
committer | Tarmac <Unknown> | 2012-08-29 07:54:37 +0000 |
commit | 20faf070cca3cae00e494a0f067df07ea27fa62f (patch) | |
tree | b9fbc4e9de0258ae6cffa1f69a5ee7654e07973c | |
parent | b315eb605c786b868a8acb71f9132e5825436328 (diff) | |
parent | 68df6996f7643a3de42bd56017eace016c3743e2 (diff) | |
download | libpam-freerdp2-20faf070cca3cae00e494a0f067df07ea27fa62f.tar.gz libpam-freerdp2-20faf070cca3cae00e494a0f067df07ea27fa62f.tar.bz2 libpam-freerdp2-20faf070cca3cae00e494a0f067df07ea27fa62f.zip |
Set the permissions on the socket. Approved by Albert Astals Cid, jenkins.
-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 9774bfb..df2f3c5 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; |