]> andersk Git - openssh.git/blobdiff - packet.c
- djm@cvs.openbsd.org 2001/03/13 22:42:54
[openssh.git] / packet.c
index bf3a7ee0b7ab42468b440927299ea0ccb9b74613..1a634cff45e35b7af5e2517f59860040df446455 100644 (file)
--- a/packet.c
+++ b/packet.c
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: packet.c,v 1.44 2001/01/13 18:36:45 markus Exp $");
+RCSID("$OpenBSD: packet.c,v 1.56 2001/03/03 21:41:07 millert Exp $");
 
 #include "xmalloc.h"
 #include "buffer.h"
 #include "packet.h"
 #include "bufaux.h"
-#include "ssh.h"
 #include "crc32.h"
 #include "getput.h"
 
@@ -52,15 +51,14 @@ RCSID("$OpenBSD: packet.c,v 1.44 2001/01/13 18:36:45 markus Exp $");
 #include "channels.h"
 
 #include "compat.h"
+#include "ssh1.h"
 #include "ssh2.h"
 
-#include <openssl/bn.h>
-#include <openssl/dh.h>
-#include <openssl/hmac.h>
-#include "buffer.h"
 #include "cipher.h"
 #include "kex.h"
-#include "hmac.h"
+#include "mac.h"
+#include "log.h"
+#include "canohost.h"
 
 #ifdef PACKET_DEBUG
 #define DBG(x) x
@@ -391,7 +389,7 @@ packet_start2(int type)
 void
 packet_start(int type)
 {
-       DBG(debug("packet_start[%d]",type));
+       DBG(debug("packet_start[%d]", type));
        if (use_ssh2_packet_format)
                packet_start2(type);
        else
@@ -454,7 +452,7 @@ packet_put_bignum2(BIGNUM * value)
  */
 
 void
-packet_send1()
+packet_send1(void)
 {
        char buf[8], *cp;
        int i, padding, len;
@@ -528,14 +526,14 @@ packet_send1()
  * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
  */
 void
-packet_send2()
+packet_send2(void)
 {
+       static u_int32_t seqnr = 0;
        u_char *macbuf = NULL;
        char *cp;
        u_int packet_length = 0;
        u_int i, padlen, len;
        u_int32_t rand = 0;
-       static u_int seqnr = 0;
        int type;
        Enc *enc   = NULL;
        Mac *mac   = NULL;
@@ -588,7 +586,7 @@ packet_send2()
                        if (i % 4 == 0)
                                rand = arc4random();
                        cp[i] = rand & 0xff;
-                       rand <<= 8;
+                       rand >>= 8;
                }
        } else {
                /* clear padding */
@@ -603,11 +601,9 @@ packet_send2()
 
        /* compute MAC over seqnr and packet(length fields, payload, padding) */
        if (mac && mac->enabled) {
-               macbuf = hmac( mac->md, seqnr,
+               macbuf = mac_compute(mac, seqnr,
                    (u_char *) buffer_ptr(&outgoing_packet),
-                   buffer_len(&outgoing_packet),
-                   mac->key, mac->key_len
-               );
+                   buffer_len(&outgoing_packet));
                DBG(debug("done calc MAC out #%d", seqnr));
        }
        /* encrypt packet and append to output buffer. */
@@ -664,10 +660,13 @@ int
 packet_read(int *payload_len_ptr)
 {
        int type, len;
-       fd_set set;
+       fd_set *setp;
        char buf[8192];
        DBG(debug("packet_read()"));
 
+       setp = (fd_set *)xmalloc(howmany(connection_in+1, NFDBITS) *
+           sizeof(fd_mask));
+
        /* Since we are blocking, ensure that all written packets have been sent. */
        packet_write_wait();
 
@@ -682,17 +681,22 @@ packet_read(int *payload_len_ptr)
                    || type == SSH_CMSG_EXIT_CONFIRMATION))
                        packet_integrity_check(*payload_len_ptr, 0, type);
                /* If we got a packet, return it. */
-               if (type != SSH_MSG_NONE)
+               if (type != SSH_MSG_NONE) {
+                       xfree(setp);
                        return type;
+               }
                /*
                 * Otherwise, wait for some data to arrive, add it to the
                 * buffer, and try again.
                 */
-               FD_ZERO(&set);
-               FD_SET(connection_in, &set);
+               memset(setp, 0, howmany(connection_in + 1, NFDBITS) *
+                   sizeof(fd_mask));
+               FD_SET(connection_in, setp);
 
                /* Wait for some data to arrive. */
-               select(connection_in + 1, &set, NULL, NULL, NULL);
+               while (select(connection_in + 1, setp, NULL, NULL, NULL) == -1 &&
+                   (errno == EAGAIN || errno == EINTR))
+                       ;
 
                /* Read data from the socket. */
                len = read(connection_in, buf, sizeof(buf));
@@ -817,12 +821,12 @@ packet_read_poll1(int *payload_len_ptr)
 int
 packet_read_poll2(int *payload_len_ptr)
 {
+       static u_int32_t seqnr = 0;
+       static u_int packet_length = 0;
        u_int padlen, need;
        u_char buf[8], *macbuf;
        u_char *ucp;
        char *cp;
-       static u_int packet_length = 0;
-       static u_int seqnr = 0;
        int type;
        int maclen, block_size;
        Enc *enc   = NULL;
@@ -882,11 +886,9 @@ packet_read_poll2(int *payload_len_ptr)
         * increment sequence number for incoming packet
         */
        if (mac && mac->enabled) {
-               macbuf = hmac( mac->md, seqnr,
+               macbuf = mac_compute(mac, seqnr,
                    (u_char *) buffer_ptr(&incoming_packet),
-                   buffer_len(&incoming_packet),
-                   mac->key, mac->key_len
-               );
+                   buffer_len(&incoming_packet));
                if (memcmp(macbuf, buffer_ptr(&input), mac->mac_len) != 0)
                        packet_disconnect("Corrupted MAC on input.");
                DBG(debug("MAC #%d ok", seqnr));
@@ -946,7 +948,7 @@ packet_read_poll2(int *payload_len_ptr)
        }
 
 #ifdef PACKET_DEBUG
-       fprintf(stderr, "read/plain[%d]:\r\n",type);
+       fprintf(stderr, "read/plain[%d]:\r\n", type);
        buffer_dump(&incoming_packet);
 #endif
        return (u_char)type;
@@ -987,7 +989,7 @@ packet_read_poll(int *payload_len_ptr)
                        default:
                                return type;
                                break;
-                       }       
+                       }
                } else {
                        switch(type) {
                        case SSH_MSG_IGNORE:
@@ -1009,7 +1011,7 @@ packet_read_poll(int *payload_len_ptr)
                                        DBG(debug("received packet type %d", type));
                                return type;
                                break;
-                       }       
+                       }
                }
        }
 }
@@ -1198,14 +1200,21 @@ packet_write_poll()
 void
 packet_write_wait()
 {
+       fd_set *setp;
+
+       setp = (fd_set *)xmalloc(howmany(connection_out + 1, NFDBITS) *
+           sizeof(fd_mask));
        packet_write_poll();
        while (packet_have_data_to_write()) {
-               fd_set set;
-               FD_ZERO(&set);
-               FD_SET(connection_out, &set);
-               select(connection_out + 1, NULL, &set, NULL, NULL);
+               memset(setp, 0, howmany(connection_out + 1, NFDBITS) *
+                   sizeof(fd_mask));
+               FD_SET(connection_out, setp);
+               while (select(connection_out + 1, NULL, setp, NULL, NULL) == -1 &&
+                   (errno == EAGAIN || errno == EINTR))
+                       ;
                packet_write_poll();
        }
+       xfree(setp);
 }
 
 /* Returns true if there is buffered data to write to the connection. */
@@ -1233,8 +1242,10 @@ void
 packet_set_interactive(int interactive)
 {
        static int called = 0;
+#if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)
        int lowdelay = IPTOS_LOWDELAY;
        int throughput = IPTOS_THROUGHPUT;
+#endif
        int on = 1;
 
        if (called)
@@ -1257,9 +1268,9 @@ packet_set_interactive(int interactive)
                 */
 #if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)
                if (packet_connection_is_ipv4()) {
-                       if (setsockopt(connection_in, IPPROTO_IP, IP_TOS, 
+                       if (setsockopt(connection_in, IPPROTO_IP, IP_TOS,
                            (void *) &lowdelay, sizeof(lowdelay)) < 0)
-                               error("setsockopt IPTOS_LOWDELAY: %.100s", 
+                               error("setsockopt IPTOS_LOWDELAY: %.100s",
                                    strerror(errno));
                }
 #endif
@@ -1304,3 +1315,65 @@ packet_set_maxsize(int s)
        max_packet_size = s;
        return s;
 }
+
+/*
+ * 9.2.  Ignored Data Message
+ * 
+ *   byte      SSH_MSG_IGNORE
+ *   string    data
+ * 
+ * All implementations MUST understand (and ignore) this message at any
+ * time (after receiving the protocol version). No implementation is
+ * required to send them. This message can be used as an additional
+ * protection measure against advanced traffic analysis techniques.
+ */
+/* size of current + ignore message should be n*sumlen bytes (w/o mac) */
+void
+packet_inject_ignore(int sumlen)
+{
+       int blocksize, padlen, have, need, nb, mini, nbytes;
+       Enc *enc = NULL;
+
+       if (use_ssh2_packet_format == 0)
+               return;
+
+       have = buffer_len(&outgoing_packet);
+       debug2("packet_inject_ignore: current %d", have);
+       if (kex != NULL)
+       enc  = &kex->enc[MODE_OUT];
+       blocksize = enc ? enc->cipher->block_size : 8;
+       padlen = blocksize - (have % blocksize);
+       if (padlen < 4)
+               padlen += blocksize;
+       have += padlen;
+       have /= blocksize;      /* # of blocks for current message */
+
+       nb   = roundup(sumlen,  blocksize) / blocksize; /* blocks for both */
+       mini = roundup(5+1+4+4, blocksize) / blocksize; /* minsize ignore msg */
+       need = nb - (have % nb);                        /* blocks for ignore */
+       if (need <= mini)
+               need += nb;
+       nbytes = (need - mini) * blocksize;     /* size of ignore payload */
+       debug2("packet_inject_ignore: block %d have %d nb %d mini %d need %d",
+           blocksize, have, nb, mini, need);
+
+       /* enqueue current message and append a ignore message */
+       packet_send();
+       packet_send_ignore(nbytes);
+}
+
+void
+packet_send_ignore(int nbytes)
+{
+       u_int32_t rand = 0;
+       int i;
+
+       packet_start(compat20 ? SSH2_MSG_IGNORE : SSH_MSG_IGNORE);
+       packet_put_int(nbytes);
+       for(i = 0; i < nbytes; i++) {
+               if (i % 4 == 0)
+                       rand = arc4random();
+               packet_put_char(rand & 0xff);
+               rand >>= 8;
+       }
+}
This page took 0.12706 seconds and 4 git commands to generate.