forked from brong/cyrus-imapd-legacy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprot.c
1788 lines (1500 loc) · 41.7 KB
/
prot.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* prot.c -- stdio-like module that handles SASL protection mechanisms
*
* Copyright (c) 1994-2008 Carnegie Mellon University. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The name "Carnegie Mellon University" must not be used to
* endorse or promote products derived from this software without
* prior written permission. For permission or any legal
* details, please contact
* Carnegie Mellon University
* Center for Technology Transfer and Enterprise Creation
* 4615 Forbes Avenue
* Suite 302
* Pittsburgh, PA 15213
* (412) 268-7393, fax: (412) 268-7395
*
* 4. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by Computing Services
* at Carnegie Mellon University (http://www.cmu.edu/computing/)."
*
* CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
* THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
* FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
* AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* $Id: prot.c,v 1.100 2010/06/28 12:06:43 brong Exp $
*/
#include <config.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <syslog.h>
#include <signal.h>
#include <stdarg.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <netinet/in.h>
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#include "assert.h"
#include "exitcodes.h"
#include "imparse.h"
#include "libcyr_cfg.h"
#include "map.h"
#include "nonblock.h"
#include "prot.h"
#include "signals.h"
#include "util.h"
#include "xmalloc.h"
/* Transparant protgroup structure */
struct protgroup
{
size_t nalloced; /* Number of nodes in the group */
size_t next_element; /* Node number of next group member */
struct protstream **group;
};
/*
* Create a new protection stream for file descriptor 'fd'. Stream
* will be used for writing iff 'write' is nonzero.
*/
struct protstream *prot_new(int fd, int write)
{
struct protstream *newstream;
newstream = (struct protstream *) xzmalloc(sizeof(struct protstream));
newstream->buf = (unsigned char *)
xmalloc(sizeof(char) * (PROT_BUFSIZE));
newstream->buf_size = PROT_BUFSIZE;
newstream->ptr = newstream->buf;
newstream->maxplain = PROT_BUFSIZE;
newstream->fd = fd;
newstream->write = write;
newstream->logfd = PROT_NO_FD;
newstream->big_buffer = PROT_NO_FD;
if(write)
newstream->cnt = PROT_BUFSIZE;
return newstream;
}
struct protstream *prot_writebuf(struct buf *buf)
{
struct protstream *newstream;
newstream = (struct protstream *) xzmalloc(sizeof(struct protstream));
/* dodgy, but the alternative is two pointers */
newstream->buf = (unsigned char *)
xmalloc(sizeof(char) * (PROT_BUFSIZE));
newstream->buf_size = PROT_BUFSIZE;
newstream->ptr = newstream->buf;
newstream->cnt = PROT_BUFSIZE;
newstream->maxplain = PROT_BUFSIZE;
newstream->write = 1;
newstream->writetobuf = buf;
newstream->fd = PROT_NO_FD;
newstream->logfd = PROT_NO_FD;
newstream->big_buffer = PROT_NO_FD;
return newstream;
}
/* Create a protstream which is just an interface to a mapped piece of
* memory, allowing prot commands to be used to read from it */
struct protstream *prot_readmap(const char *base, uint32_t len)
{
struct protstream *newstream;
newstream = (struct protstream *) xzmalloc(sizeof(struct protstream));
/* dodgy, but the alternative is two pointers */
newstream->ptr = (unsigned char *)base;
newstream->cnt = len;
newstream->fixedsize = 1;
newstream->fd = PROT_NO_FD;
newstream->logfd = PROT_NO_FD;
newstream->big_buffer = PROT_NO_FD;
return newstream;
}
/*
* Free a protection stream
*/
int prot_free(struct protstream *s)
{
if (s->error) free(s->error);
free(s->buf);
if(s->big_buffer != PROT_NO_FD) {
map_free(&(s->bigbuf_base), &(s->bigbuf_siz));
close(s->big_buffer);
}
#ifdef HAVE_ZLIB
if (s->zstrm) {
if (s->write) deflateEnd(s->zstrm);
else inflateEnd(s->zstrm);
free(s->zstrm);
}
if (s->zbuf) free(s->zbuf);
#endif
free(s);
return 0;
}
/*
* Set the logging file descriptor for stream 's' to be 'fd'.
*/
int prot_setlog(struct protstream *s, int fd)
{
s->logfd = fd;
return 0;
}
int prot_setisclient(struct protstream *s, int val)
{
s->isclient = val;
return 0;
}
#ifdef HAVE_SSL
/*
* Turn on TLS for this connection
*/
int prot_settls(struct protstream *s, SSL *tlsconn)
{
s->tls_conn = tlsconn;
/* Make nonblocking stuff to work similar to write() */
SSL_set_mode(tlsconn,
SSL_MODE_ENABLE_PARTIAL_WRITE
| SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER);
return 0;
}
#endif /* HAVE_SSL */
/*
* Decode data sent via a SASL security layer. Returns EOF on error.
*/
int prot_sasldecode(struct protstream *s, int n)
{
int result;
const char *out;
unsigned outlen;
assert(!s->write);
/* decode the input */
result = sasl_decode(s->conn, (const char *) s->buf, n,
&out, &outlen);
if (result != SASL_OK) {
char errbuf[256];
const char *ed = sasl_errdetail(s->conn);
snprintf(errbuf, 256, "decoding error: %s; %s",
sasl_errstring(result, NULL, NULL),
ed ? ed : "no detail");
s->error = xstrdup(errbuf);
return EOF;
}
if (outlen > 0) {
/* The contents of 'out' is static until next call to
sasl_decode(), so serve data directly from 'out' */
s->ptr = (unsigned char *) out;
s->cnt = outlen;
} else { /* didn't decode anything */
s->cnt = 0;
}
return 0;
}
/*
* Turn on SASL for this connection
*/
int prot_setsasl(struct protstream *s, sasl_conn_t *conn)
{
const void *ssfp;
int result;
if (s->write && s->ptr != s->buf) {
/* flush any pending output */
if (prot_flush_internal(s, 0) == EOF)
return EOF;
}
s->conn = conn;
result = sasl_getprop(conn, SASL_SSF, &ssfp);
if (result != SASL_OK) {
return -1;
}
s->saslssf = *((const int *) ssfp);
if (s->write) {
const void *maxp;
unsigned int max;
/* ask SASL for layer max */
result = sasl_getprop(conn, SASL_MAXOUTBUF, &maxp);
max = *((const unsigned int *) maxp);
if (result != SASL_OK) {
return -1;
}
if (max == 0 || max > PROT_BUFSIZE) {
/* max = 0 means unlimited, and we can't go bigger */
max = PROT_BUFSIZE;
}
s->maxplain = max;
s->cnt = max;
}
else if (s->cnt) {
/* decode any pending input */
if (prot_sasldecode(s, s->cnt) == EOF) return EOF;
}
return 0;
}
/*
* Turn off SASL for this connection
*/
void prot_unsetsasl(struct protstream *s)
{
s->conn = NULL;
s->maxplain = PROT_BUFSIZE;
s->saslssf = 0;
}
#ifdef HAVE_ZLIB
#define ZLARGE_DIFF_CHUNK (5120) /* 5K */
/* Wrappers for our memory management functions */
static voidpf zalloc(voidpf opaque __attribute__((unused)),
uInt items, uInt size)
{
return (voidpf) xmalloc(items * size);
}
static void zfree(voidpf opaque __attribute__((unused)),
voidpf address)
{
free(address);
}
/*
* Turn on (de)compression for this connection
* If its an output stream, initialize a compressor,
* otherwise initialize a decompressor.
*/
int prot_setcompress(struct protstream *s)
{
int zr = Z_OK;
z_stream *zstrm = (z_stream *) xmalloc(sizeof(z_stream));
zstrm->zalloc = zalloc;
zstrm->zfree = zfree;
zstrm->opaque = Z_NULL;
if (s->write) {
if (s->ptr != s->buf) {
/* flush any pending output */
if (prot_flush_internal(s, 0) == EOF)
goto error;
}
s->zlevel = Z_DEFAULT_COMPRESSION;
zr = deflateInit2(zstrm, s->zlevel, Z_DEFLATED,
-MAX_WBITS, /* raw deflate */
MAX_MEM_LEVEL, Z_DEFAULT_STRATEGY);
}
else {
zstrm->next_in = Z_NULL;
zstrm->avail_in = 0;
zr = inflateInit2(zstrm, -MAX_WBITS); /* raw inflate */
}
if (zr != Z_OK)
goto error;
/* RFC 1951 says:
* A simple counting argument shows that no lossless compression
* algorithm can compress every possible input data set. For the
* format defined here, the worst case expansion is 5 bytes per 32K-
* byte block, i.e., a size increase of 0.015% for large data sets.
*
* We say: maxplain can never be bigger than PROT_BUFSIZE, which
* is currently 4096, so adding 5 bytes will do it!
*
* Add another spare byte and we'll never totally fill the buffer,
* which saves a loop.
*
* NOTE: we do double check and handle buffer filling gracefully
* anyway, but starting with the right size is good.
*/
s->zbuf_size = s->maxplain + 6;
s->zbuf = (unsigned char *) xmalloc(sizeof(unsigned char) * s->zbuf_size);
syslog(LOG_DEBUG, "created %scompress buffer of %u bytes",
s->write ? "" : "de", s->zbuf_size);
s->zstrm = zstrm;
return 0;
error:
syslog(LOG_NOTICE, "failed to start %scompression",
s->write ? "" : "de");
free(zstrm);
return EOF;
}
/* Table of incompressible file type signatures */
static struct file_sig {
const char *type;
size_t len;
const char *sig;
} sig_tbl[] = {
{ "GIF87a", 6, "GIF87a" },
{ "GIF89a", 6, "GIF89a" },
{ "GZIP", 2, "\x1F\x8B" },
{ "JPEG", 4, "\xFF\xD8\xFF\xE0" },
{ "PNG", 8, "\x89\x50\x4E\x47\x0D\x0A\x1A\x0A" },
{ NULL, 0, NULL }
};
/* Check if a chunk of data is incompressible */
static int is_incompressible(const char *p, size_t n)
{
struct file_sig *sig = sig_tbl;
/* is it worth checking? */
if (n < ZLARGE_DIFF_CHUNK) return 0;
while (sig->type) {
if (n >= sig->len && !memcmp(p, sig->sig, sig->len)) {
syslog(LOG_DEBUG, "data is %s", sig->type);
return 1;
}
sig++;
}
return 0;
}
#endif /* HAVE_ZLIB */
/* Tell the protstream that the type of data is about to change.
* Since we might want to look at the data, we only set a flag and delay
* any changes to the stream layers until the next prot_write().
*/
int prot_data_boundary(struct protstream *s)
{
s->boundary = 1;
return 0;
}
/*
* Set the read timeout for the stream 's' to 'timeout' seconds.
* 's' must have been created for reading.
*/
int prot_settimeout(struct protstream *s, int timeout)
{
assert(!s->write);
s->read_timeout = timeout;
s->timeout_mark = time(NULL) + timeout;
return 0;
}
/*
* Reset the read timeout_mark for the stream 's'.
* 'S' must have been created for reading.
*/
int prot_resettimeout(struct protstream *s)
{
assert(!s->write);
s->timeout_mark = time(NULL) + s->read_timeout;
return 0;
}
/*
* Set the stream 's' to flush the stream 'flushs' before
* blocking for reading. 's' must have been created for reading,
* 'flushs' for writing.
*/
int prot_setflushonread(struct protstream *s, struct protstream *flushs)
{
assert(!s->write);
if(flushs) assert(flushs->write);
s->flushonread = flushs;
return 0;
}
/*
* Set on stream 's' the callback 'proc' and 'rock'
* to make the next time we have to wait for input.
*/
int prot_setreadcallback(struct protstream *s,
prot_readcallback_t *proc, void *rock)
{
assert(!s->write);
s->readcallback_proc = proc;
s->readcallback_rock = rock;
return 0;
}
/*
* Add an event on stream 's' so that the callback 'proc' taking
* argument 'rock' will be called at 'mark' (in seconds) while
* waiting for input.
*/
struct prot_waitevent *prot_addwaitevent(struct protstream *s, time_t mark,
prot_waiteventcallback_t *proc,
void *rock)
{
struct prot_waitevent *new, *cur;
/* if we aren't passed a callback function, don't bother */
if (!proc) return s->waitevent;
/* create new timer struct */
new = (struct prot_waitevent *) xmalloc(sizeof(struct prot_waitevent));
new->mark = mark;
new->proc = proc;
new->rock = rock;
new->next = NULL;
/* add the new event to the end of the list */
if (!s->waitevent)
s->waitevent = new;
else {
cur = s->waitevent;
while (cur && cur->next) cur = cur->next;
cur->next = new;
}
return new;
}
/*
* Remove 'event' from stream 's'.
*/
void prot_removewaitevent(struct protstream *s, struct prot_waitevent *event)
{
struct prot_waitevent *prev, *cur;
prev = NULL;
cur = s->waitevent;
while (cur && cur != event) {
prev = cur;
cur = cur->next;
}
if (!cur) return;
if (!prev)
s->waitevent = cur->next;
else
prev->next = cur->next;
free(cur);
}
/*
* Return a pointer to a statically-allocated string describing the
* error encountered on 's'. If there is no error condition, return a
* null pointer.
*/
const char *prot_error(struct protstream *s)
{
if(!s) return "bad protstream passed to prot_error";
else if(s->error) return s->error;
else if(s->eof) return PROT_EOF_STRING;
else return NULL;
}
/*
* Rewind the stream 's'. 's' must have been created for reading.
*/
int prot_rewind(struct protstream *s)
{
assert(!s->write);
if (lseek(s->fd, 0L, 0) == -1) {
s->error = xstrdup(strerror(errno));
return EOF;
}
s->cnt = 0;
s->error = 0;
s->eof = 0;
s->can_unget = 0;
s->bytes_in = 0;
return 0;
}
/*
* Read data into the empty buffer for the stream 's' and return the
* first character. Returns EOF on EOF or error.
*/
int prot_fill(struct protstream *s)
{
int n;
unsigned char *ptr;
int left;
int r;
struct timeval timeout;
fd_set rfds;
int haveinput;
time_t read_timeout;
struct prot_waitevent *event, *next;
assert(!s->write);
/* Zero errno just in case */
errno = 0;
if (s->fixedsize) s->eof = 1;
if (s->eof || s->error) return EOF;
do {
#ifdef HAVE_ZLIB
/* check if there's anything in the zlib buffer already */
if (s->zstrm && s->zstrm->avail_in) {
/* Decompress the data */
int zr = Z_OK;
s->zstrm->next_out = s->zbuf;
s->zstrm->avail_out = s->zbuf_size;
zr = inflate(s->zstrm, Z_SYNC_FLUSH);
if (!(zr == Z_OK || zr == Z_BUF_ERROR || zr == Z_STREAM_END)) {
/* Error decompressing */
syslog(LOG_ERR, "zlib inflate error: %d %s", zr, s->zstrm->msg);
s->error = xstrdup("Error decompressing data");
return EOF;
}
if (s->zstrm->avail_out < s->zbuf_size) {
/* inflated some data */
s->ptr = s->zbuf;
s->cnt = s->zbuf_size - s->zstrm->avail_out;
/* drop straight to logging and returning the first char */
break;
}
}
#endif
/* wait until get input */
haveinput = 0;
#ifdef HAVE_SSL
/* maybe there's data stuck in the SSL buffer? */
if (s->tls_conn != NULL) {
haveinput = SSL_pending(s->tls_conn);
}
#endif
/* if we've promised to call something before blocking or
flush an output stream, check to see if we're going to block */
if (s->readcallback_proc ||
(s->flushonread && s->flushonread->ptr != s->flushonread->buf)) {
timeout.tv_sec = timeout.tv_usec = 0;
FD_ZERO(&rfds);
FD_SET(s->fd, &rfds);
if (!haveinput &&
(select(s->fd + 1, &rfds, (fd_set *)0, (fd_set *)0,
&timeout) <= 0)) {
if (s->readcallback_proc) {
(*s->readcallback_proc)(s, s->readcallback_rock);
s->readcallback_proc = 0;
s->readcallback_rock = 0;
}
/* Request a flush of the buffer. If we are a blocking
read stream, force the flush */
if (s->flushonread)
prot_flush_internal(s->flushonread, !s->dontblock);
}
else {
haveinput = 1;
}
}
if (!haveinput && (s->read_timeout || s->dontblock)) {
time_t now = time(NULL);
time_t sleepfor;
read_timeout = s->dontblock ? now : s->timeout_mark;
do {
if (read_timeout < now)
sleepfor = 0;
else
sleepfor = read_timeout - now;
/* execute each callback that has timed out */
for (event = s->waitevent; event; event = next)
{
next = event->next;
if (now >= event->mark) {
event = (*event->proc)(s, event, event->rock);
}
/* if event == NULL, the callback has removed itself */
if (event && sleepfor > (event->mark - now)) {
sleepfor = event->mark - now;
}
}
/* check for input */
timeout.tv_sec = sleepfor;
timeout.tv_usec = 0;
FD_ZERO(&rfds);
FD_SET(s->fd, &rfds);
r = select(s->fd + 1, &rfds, (fd_set *)0, (fd_set *)0,
&timeout);
now = time(NULL);
} while ((r == 0 || (r == -1 && errno == EINTR && !signals_poll())) &&
(now < read_timeout));
if ((r == 0) ||
/* ignore EINTR if we've timed out */
(r == -1 && errno == EINTR && !signals_poll() && now >= read_timeout)) {
if (!s->dontblock) {
s->error = xstrdup("idle for too long");
return EOF;
} else {
errno = EAGAIN;
return EOF;
}
}
else if (r == -1) {
syslog(LOG_ERR, "select() failed: %m");
s->error = xstrdup(strerror(errno));
return EOF;
}
}
/* we have data, reset the timeout_mark */
s->timeout_mark = time(NULL) + s->read_timeout;
do {
cmdtime_netstart();
#ifdef HAVE_SSL
/* just do a SSL read instead if we're under a tls layer */
if (s->tls_conn != NULL) {
n = SSL_read(s->tls_conn, (char *) s->buf, PROT_BUFSIZE);
} else {
n = read(s->fd, s->buf, PROT_BUFSIZE);
}
#else /* HAVE_SSL */
n = read(s->fd, s->buf, PROT_BUFSIZE);
#endif /* HAVE_SSL */
cmdtime_netend();
} while (n == -1 && errno == EINTR && !signals_poll());
if (n <= 0) {
if (n) s->error = xstrdup(strerror(errno));
else s->eof = 1;
return EOF;
}
if (s->saslssf) { /* decode it */
if (prot_sasldecode(s, n) == EOF) return EOF;
} else {
/* No protection function, just use the raw data */
s->ptr = s->buf;
s->cnt = n;
}
#ifdef HAVE_ZLIB
if (s->zstrm) {
/* transfer the data we have to the input of
* the z_stream and loop to process it */
s->zstrm->next_in = s->ptr;
s->zstrm->avail_in = s->cnt;
s->cnt = 0;
}
#endif /* HAVE_ZLIB */
} while (!s->cnt);
if (s->logfd != -1) {
time_t newtime;
char timebuf[20];
time(&newtime);
snprintf(timebuf, sizeof(timebuf), "<%ld<", newtime);
n = write(s->logfd, timebuf, strlen(timebuf));
left = s->cnt;
ptr = s->ptr;
do {
n = write(s->logfd, ptr, left);
if (n == -1 && (errno != EINTR || signals_poll())) {
break;
}
if (n > 0) {
ptr += n;
left -= n;
}
} while (left);
}
s->cnt--; /* we return the first char */
s->can_unget = 1;
s->bytes_in++;
return *s->ptr++;
}
/*
* If 's' is an input stream, discard any pending/buffered data. Otherwise,
* Write out any buffered data in the stream 's'
*/
int prot_flush(struct protstream *s)
{
if (!s->write) {
int c, save_dontblock = s->dontblock;
/* Set stream to nonblocking mode */
if (!save_dontblock) nonblock(s->fd, (s->dontblock = 1));
/* Ingest any pending input */
while ((c = prot_fill(s)) != EOF);
/* Reset stream to previous blocking mode */
if (!save_dontblock) nonblock(s->fd, (s->dontblock = 0));
/* Discard any buffered input */
s->cnt = 0;
s->can_unget = 0;
return 0;
}
return prot_flush_internal(s, 1);
}
/* Do the logging part of prot_flush */
static void prot_flush_log(struct protstream *s)
{
if(s->logfd != PROT_NO_FD) {
unsigned char *ptr = s->buf;
int left = s->ptr - s->buf;
int n;
time_t newtime;
char timebuf[20];
time(&newtime);
snprintf(timebuf, sizeof(timebuf), ">%ld>", newtime);
n = write(s->logfd, timebuf, strlen(timebuf));
do {
n = write(s->logfd, ptr, left);
if (n == -1 && (errno != EINTR || signals_poll())) {
break;
}
if (n > 0) {
ptr += n;
left -= n;
}
} while (left);
(void)fsync(s->logfd);
}
}
/* Do the encoding part of prot_flush */
static int prot_flush_encode(struct protstream *s,
const char **output_buf,
unsigned *output_len)
{
unsigned char *ptr = s->buf;
int left = s->ptr - s->buf;
#ifdef HAVE_ZLIB
if (s->zstrm) {
/* Compress the data */
int zr = Z_OK;
s->zstrm->next_in = ptr;
s->zstrm->avail_in = left;
s->zstrm->next_out = s->zbuf;
s->zstrm->avail_out = s->zbuf_size;
do {
/* should never be needed, but it's better to always check! */
if (!s->zstrm->avail_out) {
syslog(LOG_DEBUG, "growing compress buffer from %u to %u bytes",
s->zbuf_size, s->zbuf_size + PROT_BUFSIZE);
s->zbuf = (unsigned char *)
xrealloc(s->zbuf, s->zbuf_size + PROT_BUFSIZE);
s->zstrm->next_out = s->zbuf + s->zbuf_size;
s->zstrm->avail_out = PROT_BUFSIZE;
s->zbuf_size += PROT_BUFSIZE;
}
zr = deflate(s->zstrm, Z_SYNC_FLUSH);
if (!(zr == Z_OK || zr == Z_STREAM_END || zr == Z_BUF_ERROR)) {
/* something went wrong */
syslog(LOG_ERR, "zlib deflate error: %d %s", zr, s->zstrm->msg);
s->error = xstrdup("Error compressing data");
return EOF;
}
/* http://www.zlib.net/manual.html says:
* If deflate returns with avail_out == 0, this function must be
* called again with the same value of the flush parameter and
* more output space (updated avail_out), until the flush is
* complete (deflate returns with non-zero avail_out).
*/
} while (!s->zstrm->avail_out);
ptr = s->zbuf;
left = s->zbuf_size - s->zstrm->avail_out;
}
#endif /* HAVE_ZLIB */
if (s->saslssf != 0) {
/* encode the data */
int result = sasl_encode(s->conn, (char *) ptr, left,
output_buf, output_len);
if (result != SASL_OK) {
char errbuf[256];
const char *ed = sasl_errdetail(s->conn);
snprintf(errbuf, 256, "encoding error: %s; %s",
sasl_errstring(result, NULL, NULL),
ed ? ed : "no detail");
s->error = xstrdup(errbuf);
return EOF;
}
} else {
*output_buf = (char *) ptr;
*output_len = left;
}
return 0;
}
/* A wrapper for write() that handles SSL and EINTR */
static int prot_flush_writebuffer(struct protstream *s,
const char *buf, size_t len)
{
int n;
do {
cmdtime_netstart();
#ifdef HAVE_SSL
if (s->tls_conn != NULL) {
n = SSL_write(s->tls_conn, (char *)buf, len);
} else {
n = write(s->fd, buf, len);
}
#else /* HAVE_SSL */
n = write(s->fd, buf, len);
#endif /* HAVE_SSL */
cmdtime_netend();
} while (n == -1 && errno == EINTR && !signals_poll());
return n;
}
int prot_flush_internal(struct protstream *s, int force)
{
int n;
int save_dontblock = s->dontblock;
const char *ptr = (char *) s->buf; /* Memory buffer info */
unsigned left = s->ptr - s->buf;
assert(s->write);
/* Is this protstream finished? */
if (s->eof || s->error) {
s->ptr = s->buf;
s->cnt = 1;
return EOF;
}
/* make sure that the main file descriptor is set up to
* be blocking or nonblocking based on the configuration of the
* protstream and the force flag */
if(force)
s->dontblock = 0;
if(s->dontblock != s->dontblock_isset) {
nonblock(s->fd,s->dontblock);
s->dontblock_isset = s->dontblock;
}
/* end protstream setup */
/* if writing to a buffer, just append the lot. Always works */
if (s->writetobuf) {
buf_appendmap(s->writetobuf, ptr, left);
}
/* If we're doing a blocking write, flush the buffers, bigbuffer first */
else if (!s->dontblock) {
if(s->big_buffer != PROT_NO_FD) {
/* Write the bigbuffer */
do {
n = prot_flush_writebuffer(s, s->bigbuf_base + s->bigbuf_pos,
s->bigbuf_len - s->bigbuf_pos);
if(n == -1) {
s->error = xstrdup(strerror(errno));
goto done;
} else if (n > 0) {
s->bigbuf_pos += n;
}
} while(s->bigbuf_len != s->bigbuf_pos);
/* Free the bigbuffer */
map_free(&(s->bigbuf_base), &(s->bigbuf_siz));
close(s->big_buffer);
s->bigbuf_len = s->bigbuf_pos = 0;
s->big_buffer = PROT_NO_FD;
}
/* Is there anything in the memory buffer? */
if(!left) {