2016-05-30 03:36:18 +02:00
|
|
|
# HG changeset patch
|
2016-09-30 22:34:19 +02:00
|
|
|
# Parent ff8f0a192e120430204441cdcd18ff130f85a61e
|
2016-07-07 09:07:23 +02:00
|
|
|
# --used to be called '-xauth'
|
2016-05-30 03:36:18 +02:00
|
|
|
try to remove xauth cookies on logout
|
2013-09-19 06:09:33 +02:00
|
|
|
|
2016-05-30 03:36:18 +02:00
|
|
|
bnc#98815
|
|
|
|
|
|
|
|
diff --git a/openssh-7.2p2/session.c b/openssh-7.2p2/session.c
|
|
|
|
--- a/openssh-7.2p2/session.c
|
|
|
|
+++ b/openssh-7.2p2/session.c
|
|
|
|
@@ -2540,16 +2540,44 @@ session_close(Session *s)
|
2007-01-07 17:26:05 +01:00
|
|
|
u_int i;
|
|
|
|
|
2016-05-30 03:36:18 +02:00
|
|
|
verbose("Close session: user %s from %.200s port %d id %d",
|
|
|
|
s->pw->pw_name,
|
|
|
|
get_remote_ipaddr(),
|
|
|
|
get_remote_port(),
|
|
|
|
s->self);
|
|
|
|
|
|
|
|
+ if ((s->display != NULL) && (s->auth_proto != NULL) &&
|
|
|
|
+ (s->auth_data != NULL) && (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",
|
2016-05-30 03:36:18 +02:00
|
|
|
+ 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 -",
|
2016-05-30 03:36:18 +02:00
|
|
|
+ s->pw->pw_dir, options.xauth_location);
|
2007-01-07 17:26:05 +01:00
|
|
|
+ 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) {
|
2016-05-30 03:36:18 +02:00
|
|
|
+ waitpid(pid, NULL, 0);
|
2007-01-07 17:26:05 +01:00
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
if (s->ttyfd != -1)
|
|
|
|
session_pty_cleanup(s);
|
2014-01-31 13:18:41 +01:00
|
|
|
free(s->term);
|
|
|
|
free(s->display);
|
|
|
|
free(s->x11_chanids);
|
|
|
|
free(s->auth_display);
|
|
|
|
free(s->auth_data);
|
|
|
|
free(s->auth_proto);
|