mirror of git://anongit.mindrot.org/openssh.git
Missed some bits of the OpenBSD patch somewhere (?!)
This commit is contained in:
parent
9e11089afb
commit
0c043c1fd3
35
session.c
35
session.c
|
@ -8,7 +8,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: session.c,v 1.14 2000/05/25 03:10:18 deraadt Exp $");
|
RCSID("$OpenBSD: session.c,v 1.17 2000/06/05 19:53:40 markus Exp $");
|
||||||
|
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "ssh.h"
|
#include "ssh.h"
|
||||||
|
@ -257,7 +257,10 @@ do_authenticated(struct passwd * pw)
|
||||||
packet_send_debug("X11 forwarding disabled in server configuration file.");
|
packet_send_debug("X11 forwarding disabled in server configuration file.");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#ifdef XAUTH_PATH
|
if (!options.xauth_location) {
|
||||||
|
packet_send_debug("No xauth program; cannot forward with spoofing.");
|
||||||
|
break;
|
||||||
|
}
|
||||||
if (no_x11_forwarding_flag) {
|
if (no_x11_forwarding_flag) {
|
||||||
packet_send_debug("X11 forwarding not permitted for this authentication.");
|
packet_send_debug("X11 forwarding not permitted for this authentication.");
|
||||||
break;
|
break;
|
||||||
|
@ -298,10 +301,6 @@ do_authenticated(struct passwd * pw)
|
||||||
fatal_add_cleanup(xauthfile_cleanup_proc, NULL);
|
fatal_add_cleanup(xauthfile_cleanup_proc, NULL);
|
||||||
success = 1;
|
success = 1;
|
||||||
break;
|
break;
|
||||||
#else /* XAUTH_PATH */
|
|
||||||
packet_send_debug("No xauth program; cannot forward with spoofing.");
|
|
||||||
break;
|
|
||||||
#endif /* XAUTH_PATH */
|
|
||||||
|
|
||||||
case SSH_CMSG_AGENT_REQUEST_FORWARDING:
|
case SSH_CMSG_AGENT_REQUEST_FORWARDING:
|
||||||
if (no_agent_forwarding_flag || compat13) {
|
if (no_agent_forwarding_flag || compat13) {
|
||||||
|
@ -309,8 +308,7 @@ do_authenticated(struct passwd * pw)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
debug("Received authentication agent forwarding request.");
|
debug("Received authentication agent forwarding request.");
|
||||||
auth_input_request_forwarding(pw);
|
success = auth_input_request_forwarding(pw);
|
||||||
success = 1;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SSH_CMSG_PORT_FORWARD_REQUEST:
|
case SSH_CMSG_PORT_FORWARD_REQUEST:
|
||||||
|
@ -805,6 +803,7 @@ do_child(const char *command, struct passwd * pw, const char *term,
|
||||||
{
|
{
|
||||||
const char *shell, *cp = NULL;
|
const char *shell, *cp = NULL;
|
||||||
char buf[256];
|
char buf[256];
|
||||||
|
char cmd[1024];
|
||||||
FILE *f;
|
FILE *f;
|
||||||
unsigned int envsize, i;
|
unsigned int envsize, i;
|
||||||
char **env;
|
char **env;
|
||||||
|
@ -1039,23 +1038,24 @@ do_child(const char *command, struct passwd * pw, const char *term,
|
||||||
pclose(f);
|
pclose(f);
|
||||||
} else
|
} else
|
||||||
fprintf(stderr, "Could not run %s\n", SSH_SYSTEM_RC);
|
fprintf(stderr, "Could not run %s\n", SSH_SYSTEM_RC);
|
||||||
}
|
} else if (options.xauth_location != NULL) {
|
||||||
#ifdef XAUTH_PATH
|
|
||||||
else {
|
|
||||||
/* Add authority data to .Xauthority if appropriate. */
|
/* Add authority data to .Xauthority if appropriate. */
|
||||||
if (auth_proto != NULL && auth_data != NULL) {
|
if (auth_proto != NULL && auth_data != NULL) {
|
||||||
char *screen = strchr(display, ':');
|
char *screen = strchr(display, ':');
|
||||||
if (debug_flag) {
|
if (debug_flag) {
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"Running %.100s add %.100s %.100s %.100s\n",
|
"Running %.100s add %.100s %.100s %.100s\n",
|
||||||
XAUTH_PATH, display, auth_proto, auth_data);
|
options.xauth_location, display,
|
||||||
|
auth_proto, auth_data);
|
||||||
if (screen != NULL)
|
if (screen != NULL)
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"Adding %.*s/unix%s %s %s\n",
|
"Adding %.*s/unix%s %s %s\n",
|
||||||
screen-display, display,
|
screen-display, display,
|
||||||
screen, auth_proto, auth_data);
|
screen, auth_proto, auth_data);
|
||||||
}
|
}
|
||||||
f = popen(XAUTH_PATH " -q -", "w");
|
snprintf(cmd, sizeof cmd, "%s -q -",
|
||||||
|
options.xauth_location);
|
||||||
|
f = popen(cmd, "w");
|
||||||
if (f) {
|
if (f) {
|
||||||
fprintf(f, "add %s %s %s\n", display,
|
fprintf(f, "add %s %s %s\n", display,
|
||||||
auth_proto, auth_data);
|
auth_proto, auth_data);
|
||||||
|
@ -1064,13 +1064,12 @@ do_child(const char *command, struct passwd * pw, const char *term,
|
||||||
screen-display, display,
|
screen-display, display,
|
||||||
screen, auth_proto, auth_data);
|
screen, auth_proto, auth_data);
|
||||||
pclose(f);
|
pclose(f);
|
||||||
} else
|
} else {
|
||||||
fprintf(stderr, "Could not run %s -q -\n",
|
fprintf(stderr, "Could not run %s\n",
|
||||||
XAUTH_PATH);
|
cmd);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif /* XAUTH_PATH */
|
|
||||||
|
|
||||||
/* Get the last component of the shell name. */
|
/* Get the last component of the shell name. */
|
||||||
cp = strrchr(shell, '/');
|
cp = strrchr(shell, '/');
|
||||||
if (cp)
|
if (cp)
|
||||||
|
|
Loading…
Reference in New Issue