]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/conn-zip.c
Make Zip_Flush() more graceful.
[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.13 2007/05/17 13:49:49 alex 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 /**
110  * Compress data in ZIP buffer and move result to the write buffer of
111  * the connection.
112  * @param Idx Connection handle.
113  * @retrun true on success, false otherwise.
114  */
115 GLOBAL bool
116 Zip_Flush( CONN_ID Idx )
117 {
118         int result;
119         unsigned char zipbuf[WRITEBUFFER_LEN];
120         int zipbuf_used = 0;
121         z_stream *out;
122
123         out = &My_Connections[Idx].zip.out;
124
125         out->next_in = array_start(&My_Connections[Idx].zip.wbuf);
126         if (!out->next_in)
127                 return false;
128
129         out->avail_in = (uInt)array_bytes(&My_Connections[Idx].zip.wbuf);
130         if (!out->avail_in)
131                 return true;    /* nothing to do. */
132
133         out->next_out = zipbuf;
134         out->avail_out = (uInt)sizeof zipbuf;
135
136 #ifdef DEBUG_ZIP
137         Log(LOG_DEBUG, "out->avail_in %d, out->avail_out %d",
138                 out->avail_in, out->avail_out);
139 #endif
140         result = deflate( out, Z_SYNC_FLUSH );
141         if(( result != Z_OK ) || ( out->avail_in > 0 ))
142         {
143                 Log( LOG_ALERT, "Compression error: code %d!?", result );
144                 Conn_Close( Idx, "Compression error!", NULL, false );
145                 return false;
146         }
147
148         if (out->avail_out <= 0) {
149                 /* Not all data was compressed, because data became
150                  * bigger while compressing it. */
151                 Log (LOG_ALERT, "Compression error: buffer overvlow!?");
152                 Conn_Close(Idx, "Compression error!", NULL, false);
153                 return false;
154         }
155
156         assert(out->avail_out <= WRITEBUFFER_LEN);
157
158         zipbuf_used = WRITEBUFFER_LEN - out->avail_out;
159 #ifdef DEBUG_ZIP
160         Log(LOG_DEBUG, "zipbuf_used: %d", zipbuf_used);
161 #endif
162         if (!array_catb(&My_Connections[Idx].wbuf,
163                         (char *)zipbuf, (size_t) zipbuf_used))
164                 return false;
165
166         My_Connections[Idx].bytes_out += zipbuf_used;
167         My_Connections[Idx].zip.bytes_out += array_bytes(&My_Connections[Idx].zip.wbuf); 
168         array_trunc(&My_Connections[Idx].zip.wbuf);
169
170         return true;
171 } /* Zip_Flush */
172
173
174 GLOBAL bool
175 Unzip_Buffer( CONN_ID Idx )
176 {
177         /* Daten entpacken und in Lesepuffer kopieren. Bei Fehlern
178         * wird false geliefert, ansonsten true. Der Fall, dass keine
179         * Daten mehr zu entpacken sind, ist _kein_ Fehler! */
180
181         int result;
182         unsigned char unzipbuf[READBUFFER_LEN];
183         int unzipbuf_used = 0;
184         unsigned int z_rdatalen;
185         unsigned int in_len;
186         
187         z_stream *in;
188
189         assert( Idx > NONE );
190
191         z_rdatalen = (unsigned int)array_bytes(&My_Connections[Idx].zip.rbuf);
192         if (z_rdatalen == 0)
193                 return true;
194
195         in = &My_Connections[Idx].zip.in;
196         
197         in->next_in = array_start(&My_Connections[Idx].zip.rbuf);
198         if (!in->next_in)
199                 return false;
200
201         in->avail_in = z_rdatalen;
202         in->next_out = unzipbuf;
203         in->avail_out = (uInt)sizeof unzipbuf;
204
205 #ifdef DEBUG_ZIP
206         Log(LOG_DEBUG, "in->avail_in %d, in->avail_out %d",
207                 in->avail_in, in->avail_out);
208 #endif
209         result = inflate( in, Z_SYNC_FLUSH );
210         if( result != Z_OK )
211         {
212                 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 );
213                 Conn_Close( Idx, "Decompression error!", NULL, false );
214                 return false;
215         }
216
217         assert(z_rdatalen >= in->avail_in);
218         in_len = z_rdatalen - in->avail_in;
219         unzipbuf_used = READBUFFER_LEN - in->avail_out;
220 #ifdef DEBUG_ZIP
221         Log(LOG_DEBUG, "unzipbuf_used: %d - %d = %d", READBUFFER_LEN,
222                 in->avail_out, unzipbuf_used);
223 #endif
224         assert(unzipbuf_used <= READBUFFER_LEN);
225         if (!array_catb(&My_Connections[Idx].rbuf, (char*) unzipbuf,
226                         (size_t)unzipbuf_used))
227                 return false;
228
229         if( in->avail_in > 0 ) {
230                 array_moveleft(&My_Connections[Idx].zip.rbuf, 1, in_len );
231         } else {
232                 array_trunc( &My_Connections[Idx].zip.rbuf );
233                 My_Connections[Idx].zip.bytes_in += unzipbuf_used;
234         }
235
236         return true;
237 } /* Unzip_Buffer */
238
239
240 GLOBAL long
241 Zip_SendBytes( CONN_ID Idx )
242 {
243         /* Anzahl gesendeter Bytes (komprimiert!) liefern */
244
245         assert( Idx > NONE );
246         return My_Connections[Idx].zip.bytes_out;
247 } /* Zip_SendBytes */
248
249
250 GLOBAL long
251 Zip_RecvBytes( CONN_ID Idx )
252 {
253         /* Anzahl gesendeter Bytes (komprimiert!) liefern */
254
255         assert( Idx > NONE );
256         return My_Connections[Idx].zip.bytes_in;
257 } /* Zip_RecvBytes */
258
259
260 #endif
261
262
263 /* -eof- */