diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2012-11-11 13:28:33 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2012-11-11 13:28:33 +0100 |
commit | c4dbf5d89df4828137aeb5fc3bc8d9d0bf28a471 (patch) | |
tree | 34344c79375feb208de3941657a127499ab5b938 /src | |
parent | 482b1f21434d33edc8685da1ddbe14f2c5b72508 (diff) | |
download | libpam-x2go-c4dbf5d89df4828137aeb5fc3bc8d9d0bf28a471.tar.gz libpam-x2go-c4dbf5d89df4828137aeb5fc3bc8d9d0bf28a471.tar.bz2 libpam-x2go-c4dbf5d89df4828137aeb5fc3bc8d9d0bf28a471.zip |
Send EOL+EOF at end of socket transmission.
Diffstat (limited to 'src')
-rw-r--r-- | src/pam-x2go-children.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pam-x2go-children.c b/src/pam-x2go-children.c index e161ca3..67d3af1 100644 --- a/src/pam-x2go-children.c +++ b/src/pam-x2go-children.c @@ -65,7 +65,7 @@ pam_sm_authenticate_helper (int *stdinpipe, const char* username, const char* rh } if (setgid(pwdent->pw_gid) < 0 || setuid(pwdent->pw_uid) < 0 || - setegid(pwdent->pw_gid) < 0 || seteuid(pwdent->pw_uid) < 0) { + setegid(pwdent->pw_gid) < 0 || seteuid(pwdent->pw_uid) < 0) { _exit(EXIT_FAILURE); } @@ -138,6 +138,7 @@ session_socket_handler (struct passwd * pwdent, int readypipe, const char * ruse buffer_len += strlen(rhost) + 1; /* Add one for the space */ buffer_len += strlen(rsession) + 1; /* Add one for the space */ buffer_len += strlen(password) + 1; /* Add one for the NULL */ + buffer_len += 2 /* one for EOL, another for EOF */ if (buffer_len < 5) { /* Don't need to clean up yet */ @@ -157,7 +158,7 @@ session_socket_handler (struct passwd * pwdent, int readypipe, const char * ruse goto cleanup; } - buffer_fill = snprintf(buffer, buffer_len, "%s %s %s %s", ruser, rhost, rsession, password); + buffer_fill = snprintf(buffer, buffer_len, "%s %s %s %s%s%s", ruser, rhost, rsession, password, EOL, EOF); if (buffer_fill > buffer_len) { /* This really shouldn't happen, but if for some reason we have an difference between they way that the lengths are calculated we want |