2010-03-26 16:29:14 +01:00
|
|
|
Index: session.c
|
|
|
|
===================================================================
|
|
|
|
--- session.c.orig
|
2007-01-07 17:26:05 +01:00
|
|
|
+++ session.c
|
2011-02-04 14:58:22 +01:00
|
|
|
@@ -2463,8 +2463,40 @@ void
|
2007-01-07 17:26:05 +01:00
|
|
|
session_close(Session *s)
|
|
|
|
{
|
|
|
|
u_int i;
|
|
|
|
+ int do_xauth;
|
|
|
|
|
|
|
|
debug("session_close: session %d pid %ld", s->self, (long)s->pid);
|
|
|
|
+
|
2007-12-11 00:29:55 +01:00
|
|
|
+ do_xauth = s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
|
2007-01-07 17:26:05 +01:00
|
|
|
+ if (do_xauth && options.xauth_location != NULL) {
|
2007-12-11 00:29:55 +01:00
|
|
|
+ pid_t pid;
|
|
|
|
+ FILE *f;
|
|
|
|
+ char cmd[1024];
|
|
|
|
+ struct passwd * pw = s->pw;
|
2007-01-07 17:26:05 +01:00
|
|
|
+
|
2007-12-11 00:29:55 +01:00
|
|
|
+ if (!(pid = fork())) {
|
2007-01-07 17:26:05 +01:00
|
|
|
+ permanently_set_uid(pw);
|
|
|
|
+
|
|
|
|
+ /* Remove authority data from .Xauthority if appropriate. */
|
|
|
|
+ debug("Running %.500s remove %.100s\n",
|
|
|
|
+ options.xauth_location, s->auth_display);
|
2011-02-04 14:58:22 +01:00
|
|
|
+
|
2007-01-07 17:26:05 +01:00
|
|
|
+ snprintf(cmd, sizeof cmd, "unset XAUTHORITY && HOME=\"%.200s\" %s -q -",
|
|
|
|
+ s->pw->pw_dir, options.xauth_location);
|
|
|
|
+ f = popen(cmd, "w");
|
|
|
|
+ if (f) {
|
|
|
|
+ fprintf(f, "remove %s\n", s->auth_display);
|
|
|
|
+ pclose(f);
|
|
|
|
+ } else
|
|
|
|
+ error("Could not run %s\n", cmd);
|
|
|
|
+ exit(0);
|
2007-12-11 00:29:55 +01:00
|
|
|
+ } else if (pid > 0) {
|
|
|
|
+ int status;
|
|
|
|
+
|
|
|
|
+ waitpid(pid, &status, 0);
|
2007-01-07 17:26:05 +01:00
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
if (s->ttyfd != -1)
|
|
|
|
session_pty_cleanup(s);
|
|
|
|
if (s->term)
|