]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/conn-zip.c
28abcdd269f333bc2558d4d7c57e8626c7071b81
[ngircd-alex.git] / src / ngircd / conn-zip.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2006 Alexander Barton (alex@barton.de)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  *
11  * Connection compression using ZLIB
12  */
13
14
15 #include "portab.h"
16
17 #define CONN_MODULE
18
19
20 #ifdef ZLIB
21
22 /* enable more zlib related debug messages: */
23 /* #define DEBUG_ZLIB */
24
25 static char UNUSED id[] = "$Id: conn-zip.c,v 1.12 2007/05/09 08:55:14 fw Exp $";
26
27 #include "imp.h"
28 #include <assert.h>
29 #include <string.h>
30 #include <zlib.h>
31
32 #include "conn.h"
33 #include "conn-func.h"
34 #include "log.h"
35
36 #include "array.h"
37 #include "exp.h"
38 #include "conn-zip.h"
39
40
41 GLOBAL bool
42 Zip_InitConn( CONN_ID Idx )
43 {
44         /* Kompression fuer Link initialisieren */
45
46         assert( Idx > NONE );
47
48         My_Connections[Idx].zip.in.avail_in = 0;
49         My_Connections[Idx].zip.in.total_in = 0;
50         My_Connections[Idx].zip.in.total_out = 0;
51         My_Connections[Idx].zip.in.zalloc = NULL;
52         My_Connections[Idx].zip.in.zfree = NULL;
53         My_Connections[Idx].zip.in.data_type = Z_ASCII;
54
55         if( inflateInit( &My_Connections[Idx].zip.in ) != Z_OK )
56         {
57                 /* Fehler! */
58                 Log( LOG_ALERT, "Can't initialize compression on connection %d (zlib inflate)!", Idx );
59                 return false;
60         }
61
62         My_Connections[Idx].zip.out.total_in = 0;
63         My_Connections[Idx].zip.out.total_in = 0;
64         My_Connections[Idx].zip.out.zalloc = NULL;
65         My_Connections[Idx].zip.out.zfree = NULL;
66         My_Connections[Idx].zip.out.data_type = Z_ASCII;
67
68         if( deflateInit( &My_Connections[Idx].zip.out, Z_DEFAULT_COMPRESSION ) != Z_OK )
69         {
70                 /* Fehler! */
71                 Log( LOG_ALERT, "Can't initialize compression on connection %d (zlib deflate)!", Idx );
72                 return false;
73         }
74
75         My_Connections[Idx].zip.bytes_in = My_Connections[Idx].bytes_in;
76         My_Connections[Idx].zip.bytes_out = My_Connections[Idx].bytes_out;
77
78         Log( LOG_INFO, "Enabled link compression (zlib) on connection %d.", Idx );
79         Conn_OPTION_ADD( &My_Connections[Idx], CONN_ZIP );
80
81         return true;
82 } /* Zip_InitConn */
83
84
85 GLOBAL bool
86 Zip_Buffer( CONN_ID Idx, char *Data, size_t Len )
87 {
88         size_t buflen;
89
90         assert( Idx > NONE );
91         assert( Data != NULL );
92         assert( Len > 0 );
93
94         buflen = array_bytes(&My_Connections[Idx].zip.wbuf);
95         if (buflen >= WRITEBUFFER_LEN) {
96                 /* compression buffer is full, flush */
97                 if( ! Zip_Flush( Idx )) return false;
98         }
99
100         /* check again; if zip buf is still too large do not append data:
101          * otherwise the zip wbuf would grow too large */
102         buflen = array_bytes(&My_Connections[Idx].zip.wbuf);
103         if (buflen >= WRITEBUFFER_LEN)
104                 return false;
105         return array_catb(&My_Connections[Idx].zip.wbuf, Data, Len);
106 } /* Zip_Buffer */
107
108
109 GLOBAL bool
110 Zip_Flush( CONN_ID Idx )
111 {
112         /* Daten komprimieren und in Schreibpuffer kopieren.
113         * Es wird true bei Erfolg, sonst false geliefert. */
114
115         int result;
116         unsigned char zipbuf[WRITEBUFFER_LEN];
117         int zipbuf_used = 0;
118         z_stream *out;
119
120         out = &My_Connections[Idx].zip.out;
121
122         out->next_in = array_start(&My_Connections[Idx].zip.wbuf);
123         if (!out->next_in)
124                 return false;
125
126         out->avail_in = (uInt)array_bytes(&My_Connections[Idx].zip.wbuf);
127
128         out->next_out = zipbuf;
129         out->avail_out = (uInt)sizeof zipbuf;
130
131 #ifdef DEBUG_ZIP
132         Log(LOG_DEBUG, "out->avail_in %d, out->avail_out %d",
133                 out->avail_in, out->avail_out);
134 #endif
135         result = deflate( out, Z_SYNC_FLUSH );
136         if(( result != Z_OK ) || ( out->avail_in > 0 ))
137         {
138                 Log( LOG_ALERT, "Compression error: code %d!?", result );
139                 Conn_Close( Idx, "Compression error!", NULL, false );
140                 return false;
141         }
142
143         assert(out->avail_out <= WRITEBUFFER_LEN);
144         assert(out->avail_out > 0); /* 0 might indicate not all data was compressed... */
145         zipbuf_used = WRITEBUFFER_LEN - out->avail_out;
146 #ifdef DEBUG_ZIP
147         Log(LOG_DEBUG, "zipbuf_used: %d", zipbuf_used);
148 #endif
149         if (!array_catb(&My_Connections[Idx].wbuf,
150                         (char *)zipbuf, (size_t) zipbuf_used))
151                 return false;
152
153         My_Connections[Idx].bytes_out += zipbuf_used;
154         My_Connections[Idx].zip.bytes_out += array_bytes(&My_Connections[Idx].zip.wbuf); 
155         array_trunc(&My_Connections[Idx].zip.wbuf);
156
157         return true;
158 } /* Zip_Flush */
159
160
161 GLOBAL bool
162 Unzip_Buffer( CONN_ID Idx )
163 {
164         /* Daten entpacken und in Lesepuffer kopieren. Bei Fehlern
165         * wird false geliefert, ansonsten true. Der Fall, dass keine
166         * Daten mehr zu entpacken sind, ist _kein_ Fehler! */
167
168         int result;
169         unsigned char unzipbuf[READBUFFER_LEN];
170         int unzipbuf_used = 0;
171         unsigned int z_rdatalen;
172         unsigned int in_len;
173         
174         z_stream *in;
175
176         assert( Idx > NONE );
177
178         z_rdatalen = (unsigned int)array_bytes(&My_Connections[Idx].zip.rbuf);
179         if (z_rdatalen == 0)
180                 return true;
181
182         in = &My_Connections[Idx].zip.in;
183         
184         in->next_in = array_start(&My_Connections[Idx].zip.rbuf);
185         if (!in->next_in)
186                 return false;
187
188         in->avail_in = z_rdatalen;
189         in->next_out = unzipbuf;
190         in->avail_out = (uInt)sizeof unzipbuf;
191
192 #ifdef DEBUG_ZIP
193         Log(LOG_DEBUG, "in->avail_in %d, in->avail_out %d",
194                 in->avail_in, in->avail_out);
195 #endif
196         result = inflate( in, Z_SYNC_FLUSH );
197         if( result != Z_OK )
198         {
199                 Log( LOG_ALERT, "Decompression error: %s (code=%d, ni=%d, ai=%d, no=%d, ao=%d)!?", in->msg, result, in->next_in, in->avail_in, in->next_out, in->avail_out );
200                 Conn_Close( Idx, "Decompression error!", NULL, false );
201                 return false;
202         }
203
204         assert(z_rdatalen >= in->avail_in);
205         in_len = z_rdatalen - in->avail_in;
206         unzipbuf_used = READBUFFER_LEN - in->avail_out;
207 #ifdef DEBUG_ZIP
208         Log(LOG_DEBUG, "unzipbuf_used: %d - %d = %d", READBUFFER_LEN,
209                 in->avail_out, unzipbuf_used);
210 #endif
211         assert(unzipbuf_used <= READBUFFER_LEN);
212         if (!array_catb(&My_Connections[Idx].rbuf, (char*) unzipbuf,
213                         (size_t)unzipbuf_used))
214                 return false;
215
216         if( in->avail_in > 0 ) {
217                 array_moveleft(&My_Connections[Idx].zip.rbuf, 1, in_len );
218         } else {
219                 array_trunc( &My_Connections[Idx].zip.rbuf );
220                 My_Connections[Idx].zip.bytes_in += unzipbuf_used;
221         }
222
223         return true;
224 } /* Unzip_Buffer */
225
226
227 GLOBAL long
228 Zip_SendBytes( CONN_ID Idx )
229 {
230         /* Anzahl gesendeter Bytes (komprimiert!) liefern */
231
232         assert( Idx > NONE );
233         return My_Connections[Idx].zip.bytes_out;
234 } /* Zip_SendBytes */
235
236
237 GLOBAL long
238 Zip_RecvBytes( CONN_ID Idx )
239 {
240         /* Anzahl gesendeter Bytes (komprimiert!) liefern */
241
242         assert( Idx > NONE );
243         return My_Connections[Idx].zip.bytes_in;
244 } /* Zip_RecvBytes */
245
246
247 #endif
248
249
250 /* -eof- */