openssh/openssh-4.5p1-xauth.diff

41 lines
1.0 KiB
Diff

--- session.c
+++ session.c
@@ -2250,8 +2250,37 @@
session_close(Session *s)
{
u_int i;
+ pid_t pid;
+ FILE *f = NULL;
+ char cmd[1024];
+ int do_xauth;
+ struct passwd * pw = s->pw;
+ do_xauth = s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
debug("session_close: session %d pid %ld", s->self, (long)s->pid);
+
+ if (do_xauth && options.xauth_location != NULL) {
+
+ if ((pid = fork()) == 0) {
+ permanently_set_uid(pw);
+
+ /* Remove authority data from .Xauthority if appropriate. */
+ debug("Running %.500s remove %.100s\n",
+ options.xauth_location, s->auth_display);
+
+ 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);
+ }
+ }
+
+
if (s->ttyfd != -1)
session_pty_cleanup(s);
if (s->term)