aboutsummaryrefslogtreecommitdiff
path: root/src/pam-freerdp.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2012-08-21 18:42:14 -0500
committerTed Gould <ted@gould.cx>2012-08-21 18:42:14 -0500
commitf3f91422403aed739e098a6988ad62e16368a5d5 (patch)
treeef72c431700c25e7753a52539b9f682b80bcbb0c /src/pam-freerdp.c
parent56aabdcc67e9cf7c4442bb11a27e2d8d9d355852 (diff)
parent558ba6b7af07ffede8aebbdfe4c7114129d018b3 (diff)
downloadlibpam-x2go-f3f91422403aed739e098a6988ad62e16368a5d5.tar.gz
libpam-x2go-f3f91422403aed739e098a6988ad62e16368a5d5.tar.bz2
libpam-x2go-f3f91422403aed739e098a6988ad62e16368a5d5.zip
Adding an auth helper
Diffstat (limited to 'src/pam-freerdp.c')
-rw-r--r--src/pam-freerdp.c22
1 files changed, 7 insertions, 15 deletions
diff --git a/src/pam-freerdp.c b/src/pam-freerdp.c
index 9fc43ed..5295098 100644
--- a/src/pam-freerdp.c
+++ b/src/pam-freerdp.c
@@ -130,15 +130,13 @@ pam_sm_authenticate (pam_handle_t *pamh, int flags, int argc, const char **argv)
case 0: { /* child */
dup2(stdinpipe[0], 0);
- char * args[7];
+ char * args[5];
- args[0] = XFREERDP;
- args[1] = "--plugin";
- args[2] = "rdpsnd.so";
- args[3] = "--no-nla";
- args[4] = "-f";
- args[5] = "--from-stdin";
- args[6] = NULL;
+ args[0] = AUTH_CHECK;
+ args[1] = rhost;
+ args[2] = ruser;
+ args[3] = rdomain;
+ args[4] = NULL;
struct passwd * pwdent = getpwnam(username);
if (pwdent == NULL) {
@@ -164,14 +162,8 @@ pam_sm_authenticate (pam_handle_t *pamh, int flags, int argc, const char **argv)
int forkret = 0;
int bytesout = 0;
- bytesout += write(stdinpipe[1], ruser, strlen(ruser));
- bytesout += write(stdinpipe[1], " ", 1);
bytesout += write(stdinpipe[1], password, strlen(password));
- bytesout += write(stdinpipe[1], " ", 1);
- bytesout += write(stdinpipe[1], rdomain, strlen(rdomain));
- bytesout += write(stdinpipe[1], " ", 1);
- bytesout += write(stdinpipe[1], rhost, strlen(rhost));
- bytesout += write(stdinpipe[1], " ", 1);
+ bytesout += write(stdinpipe[1], "\n", 1);
close(stdinpipe[1]);