]> andersk Git - openssh.git/blobdiff - ssh.c
- markus@cvs.openbsd.org 2001/10/09 10:12:08
[openssh.git] / ssh.c
diff --git a/ssh.c b/ssh.c
index 9ccd9d8f19b7f00475eaa342be753aee6ff9428f..a19b06b211f7f2f34fc1b34027f7d9b3d8a86c94 100644 (file)
--- a/ssh.c
+++ b/ssh.c
@@ -39,7 +39,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: ssh.c,v 1.142 2001/09/03 20:58:33 stevesk Exp $");
+RCSID("$OpenBSD: ssh.c,v 1.147 2001/10/08 19:05:05 markus Exp $");
 
 #include <openssl/evp.h>
 #include <openssl/err.h>
@@ -264,9 +264,7 @@ main(int ac, char **av)
        struct passwd *pw;
        int dummy;
        uid_t original_effective_uid;
-       extern int optopt;
-       extern int optind;
-       extern int optreset;
+       extern int optind, optreset;
        extern char *optarg;
 
        __progname = get_progname(av[0]);
@@ -566,6 +564,7 @@ again:
 
        SSLeay_add_all_algorithms();
        ERR_load_crypto_strings();
+       channel_set_af(IPv4or6);
 
        /* Initialize the command to execute on remote host. */
        buffer_init(&command);
@@ -628,10 +627,10 @@ again:
        } else  {
                snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
                    _PATH_SSH_USER_CONFFILE);
+               (void)read_config_file(buf, host, &options);
 
-               /* Read systemwide configuration file. */
+               /* Read systemwide configuration file after use config. */
                (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
-               (void)read_config_file(buf, host, &options);
        }
 
        /* Fill configuration defaults. */
@@ -682,7 +681,7 @@ again:
 
        /* Open a connection to the remote host. */
 
-       cerr = ssh_connect(host, &hostaddr, options.port,
+       cerr = ssh_connect(host, &hostaddr, options.port, IPv4or6,
            options.connection_attempts,
            original_effective_uid != 0 || !options.use_privileged_port,
            pw, options.proxy_command);
@@ -1032,14 +1031,15 @@ client_subsystem_reply(int type, int plen, void *ctxt)
                    len, buffer_ptr(&command), id);
 }
 
+/* request pty/x11/agent/tcpfwd/shell for channel */
 static void
-ssh_session2_callback(int id, void *arg)
+ssh_session2_setup(int id, void *arg)
 {
        int len;
        int interactive = 0;
        struct termios tio;
 
-       debug("client_init id %d arg %ld", id, (long)arg);
+       debug("ssh_session2_setup: id %d", id);
 
        if (tty_flag) {
                struct winsize ws;
@@ -1108,8 +1108,9 @@ ssh_session2_callback(int id, void *arg)
        packet_set_interactive(interactive);
 }
 
+/* open new channel for a session */
 static int
-ssh_session2_command(void)
+ssh_session2_open(void)
 {
        Channel *c;
        int window, packetmax, in, out, err;
@@ -1144,13 +1145,15 @@ ssh_session2_command(void)
            window, packetmax, CHAN_EXTENDED_WRITE,
            xstrdup("client-session"), /*nonblock*/0);
        if (c == NULL)
-               fatal("ssh_session2_command: channel_new failed");
+               fatal("ssh_session2_open: channel_new failed");
 
-       debug3("ssh_session2_command: channel_new: %d", c->self);
+       debug3("ssh_session2_open: channel_new: %d", c->self);
 
        channel_send_open(c->self);
-       channel_register_callback(c->self, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
-            ssh_session2_callback, (void *)0);
+       if (!no_shell_flag)
+               channel_register_callback(c->self,
+                    SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
+                    ssh_session2_setup, (void *)0);
 
        return c->self;
 }
@@ -1158,12 +1161,13 @@ ssh_session2_command(void)
 static int
 ssh_session2(void)
 {
-       int id;
+       int id = -1;
 
        /* XXX should be pre-session */
        ssh_init_forwarding();
 
-       id = no_shell_flag ? -1 : ssh_session2_command();
+       if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
+               id = ssh_session2_open();
 
        /* If requested, let ssh continue in the background. */
        if (fork_after_authentication_flag)
This page took 0.035426 seconds and 4 git commands to generate.