]> andersk Git - openssh.git/blame - compress.c
- (tim) [configure.ac] corrections to libedit tests. Report and patches
[openssh.git] / compress.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5260325f 5 * Interface to packet compression for ssh.
6ae2364d 6 *
bcbf86ec 7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
5260325f 12 */
8efc0c15 13
14#include "includes.h"
33623c65 15RCSID("$OpenBSD: compress.c,v 1.21 2004/01/13 19:45:15 markus Exp $");
8efc0c15 16
42f11eb2 17#include "log.h"
8efc0c15 18#include "buffer.h"
19#include "zlib.h"
5ca51e19 20#include "compress.h"
8efc0c15 21
3d6fc2f8 22z_stream incoming_stream;
23z_stream outgoing_stream;
6ba22c93 24static int compress_init_send_called = 0;
25static int compress_init_recv_called = 0;
bcb68a8f 26static int inflate_failed = 0;
27static int deflate_failed = 0;
8efc0c15 28
aa3378df 29/*
30 * Initializes compression; level is compression level from 1 to 9
31 * (as in gzip).
32 */
8efc0c15 33
6ae2364d 34void
6ba22c93 35buffer_compress_init_send(int level)
8efc0c15 36{
6ba22c93 37 if (compress_init_send_called == 1)
c71a16ee 38 deflateEnd(&outgoing_stream);
6ba22c93 39 compress_init_send_called = 1;
5260325f 40 debug("Enabling compression at level %d.", level);
41 if (level < 1 || level > 9)
42 fatal("Bad compression level %d.", level);
5260325f 43 deflateInit(&outgoing_stream, level);
8efc0c15 44}
6ba22c93 45void
46buffer_compress_init_recv(void)
47{
48 if (compress_init_recv_called == 1)
49 inflateEnd(&incoming_stream);
50 compress_init_recv_called = 1;
51 inflateInit(&incoming_stream);
52}
8efc0c15 53
54/* Frees any data structures allocated for compression. */
55
6ae2364d 56void
c52c7082 57buffer_compress_uninit(void)
8efc0c15 58{
39dfceeb 59 debug("compress outgoing: raw data %llu, compressed %llu, factor %.2f",
33623c65 60 (unsigned long long)outgoing_stream.total_in,
61 (unsigned long long)outgoing_stream.total_out,
184eed6a 62 outgoing_stream.total_in == 0 ? 0.0 :
63 (double) outgoing_stream.total_out / outgoing_stream.total_in);
39dfceeb 64 debug("compress incoming: raw data %llu, compressed %llu, factor %.2f",
33623c65 65 (unsigned long long)incoming_stream.total_out,
66 (unsigned long long)incoming_stream.total_in,
184eed6a 67 incoming_stream.total_out == 0 ? 0.0 :
68 (double) incoming_stream.total_in / incoming_stream.total_out);
bcb68a8f 69 if (compress_init_recv_called == 1 && inflate_failed == 0)
6ba22c93 70 inflateEnd(&incoming_stream);
bcb68a8f 71 if (compress_init_send_called == 1 && deflate_failed == 0)
6ba22c93 72 deflateEnd(&outgoing_stream);
8efc0c15 73}
74
aa3378df 75/*
76 * Compresses the contents of input_buffer into output_buffer. All packets
77 * compressed using this function will form a single compressed data stream;
78 * however, data will be flushed at the end of every call so that each
79 * output_buffer can be decompressed independently (but in the appropriate
80 * order since they together form a single compression stream) by the
81 * receiver. This appends the compressed data to the output buffer.
82 */
8efc0c15 83
6ae2364d 84void
5260325f 85buffer_compress(Buffer * input_buffer, Buffer * output_buffer)
8efc0c15 86{
20905a8e 87 u_char buf[4096];
5260325f 88 int status;
89
90 /* This case is not handled below. */
91 if (buffer_len(input_buffer) == 0)
92 return;
93
94 /* Input is the contents of the input buffer. */
20905a8e 95 outgoing_stream.next_in = buffer_ptr(input_buffer);
5260325f 96 outgoing_stream.avail_in = buffer_len(input_buffer);
97
98 /* Loop compressing until deflate() returns with avail_out != 0. */
99 do {
100 /* Set up fixed-size output buffer. */
20905a8e 101 outgoing_stream.next_out = buf;
5260325f 102 outgoing_stream.avail_out = sizeof(buf);
103
104 /* Compress as much data into the buffer as possible. */
105 status = deflate(&outgoing_stream, Z_PARTIAL_FLUSH);
106 switch (status) {
107 case Z_OK:
108 /* Append compressed data to output_buffer. */
109 buffer_append(output_buffer, buf,
7368a6c8 110 sizeof(buf) - outgoing_stream.avail_out);
5260325f 111 break;
5260325f 112 default:
bcb68a8f 113 deflate_failed = 1;
5260325f 114 fatal("buffer_compress: deflate returned %d", status);
115 /* NOTREACHED */
116 }
7368a6c8 117 } while (outgoing_stream.avail_out == 0);
8efc0c15 118}
119
aa3378df 120/*
121 * Uncompresses the contents of input_buffer into output_buffer. All packets
122 * uncompressed using this function will form a single compressed data
123 * stream; however, data will be flushed at the end of every call so that
124 * each output_buffer. This must be called for the same size units that the
125 * buffer_compress was called, and in the same order that buffers compressed
126 * with that. This appends the uncompressed data to the output buffer.
127 */
8efc0c15 128
6ae2364d 129void
5260325f 130buffer_uncompress(Buffer * input_buffer, Buffer * output_buffer)
8efc0c15 131{
20905a8e 132 u_char buf[4096];
5260325f 133 int status;
134
20905a8e 135 incoming_stream.next_in = buffer_ptr(input_buffer);
5260325f 136 incoming_stream.avail_in = buffer_len(input_buffer);
137
5260325f 138 for (;;) {
7368a6c8 139 /* Set up fixed-size output buffer. */
20905a8e 140 incoming_stream.next_out = buf;
7368a6c8 141 incoming_stream.avail_out = sizeof(buf);
142
5260325f 143 status = inflate(&incoming_stream, Z_PARTIAL_FLUSH);
144 switch (status) {
145 case Z_OK:
146 buffer_append(output_buffer, buf,
7368a6c8 147 sizeof(buf) - incoming_stream.avail_out);
5260325f 148 break;
5260325f 149 case Z_BUF_ERROR:
aa3378df 150 /*
151 * Comments in zlib.h say that we should keep calling
152 * inflate() until we get an error. This appears to
153 * be the error that we get.
154 */
5260325f 155 return;
5260325f 156 default:
bcb68a8f 157 inflate_failed = 1;
5260325f 158 fatal("buffer_uncompress: inflate returned %d", status);
7368a6c8 159 /* NOTREACHED */
5260325f 160 }
8efc0c15 161 }
8efc0c15 162}
This page took 0.203243 seconds and 5 git commands to generate.