file_stream.c
14.3 KB
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
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <mailutils/stream.h>
#include <mailutils/error.h>
#include <mailutils/nls.h>
struct _file_stream
{
FILE *file;
int offset;
char *filename;
stream_t cache;
};
static void
_file_destroy (stream_t stream)
{
struct _file_stream *fs = stream_get_owner (stream);
if (fs->filename)
free (fs->filename);
if (fs->cache)
stream_destroy (&fs->cache, stream_get_owner (fs->cache));
free (fs);
}
static int
_file_read (stream_t stream, char *optr, size_t osize,
off_t offset, size_t *nbytes)
{
struct _file_stream *fs = stream_get_owner (stream);
size_t n;
int err = 0;
if (!fs->file)
{
if (nbytes)
*nbytes = 0;
return 0;
}
if (fs->offset != offset)
{
if (fseek (fs->file, offset, SEEK_SET) != 0)
return errno;
fs->offset = offset;
}
n = fread (optr, sizeof(char), osize, fs->file);
if (n == 0)
{
if (ferror(fs->file))
err = errno;
}
else
fs->offset += n;
if (nbytes)
*nbytes = n;
return err;
}
static int
_file_readline (stream_t stream, char *optr, size_t osize,
off_t offset, size_t *nbytes)
{
struct _file_stream *fs = stream_get_owner (stream);
size_t n = 0;
int err = 0;
if (!fs->file)
{
optr[0] = 0;
if (nbytes)
*nbytes = 0;
return 0;
}
if (fs->offset != offset)
{
if (fseek (fs->file, offset, SEEK_SET) != 0)
return errno;
fs->offset = offset;
}
if (fgets (optr, osize, fs->file) != NULL)
{
char *tmp = optr;
while (*tmp) tmp++; /* strlen(optr) */
n = tmp - optr;
/* !!!!! WTF ??? */
if (n == 0)
n++;
else
fs->offset += n;
}
else
{
if (ferror (fs->file))
err = errno;
}
optr[n] = 0;
if (nbytes)
*nbytes = n;
return err;
}
static int
_file_write (stream_t stream, const char *iptr, size_t isize,
off_t offset, size_t *nbytes)
{
struct _file_stream *fs = stream_get_owner (stream);
size_t n;
int err = 0;
if (!fs->file)
{
if (nbytes)
*nbytes = 0;
return 0;
}
if (fs->offset != offset)
{
if (fseek (fs->file, offset, SEEK_SET) != 0)
return errno;
fs->offset = offset;
}
n = fwrite (iptr, sizeof(char), isize, fs->file);
if (n != isize)
{
if (feof (fs->file) == 0)
err = EIO;
clearerr(fs->file);
n = 0;
}
else
fs->offset += n;
if (nbytes)
*nbytes = n;
return err;
}
static int
_stdin_file_read (stream_t stream, char *optr, size_t osize,
off_t offset, size_t *pnbytes)
{
int status = 0;
size_t nbytes;
struct _file_stream *fs = stream_get_owner (stream);
int fs_offset = fs->offset;
if (offset < fs_offset)
return stream_read (fs->cache, optr, osize, offset, pnbytes);
else if (offset > fs_offset)
{
int status = 0;
size_t n, left = offset - fs_offset + 1;
char *buf = malloc (left);
if (!buf)
return ENOMEM;
while (left > 0
&& (status = stream_read (stream, buf, left, fs_offset, &n)) == 0
&& n > 0)
{
size_t k;
status = stream_write (fs->cache, buf, n, fs_offset, &k);
if (status)
break;
if (k != n)
{
status = EIO;
break;
}
fs_offset += n;
left -= n;
}
free (buf);
if (status)
return status;
}
if (feof (fs->file))
nbytes = 0;
else
{
status = _file_read (stream, optr, osize, fs_offset, &nbytes);
if (status == 0 && nbytes)
{
size_t k;
status = stream_write (fs->cache, optr, nbytes, fs_offset, &k);
if (status)
return status;
if (k != nbytes)
return EIO;
}
}
if (pnbytes)
*pnbytes = nbytes;
return status;
}
static int
_stdin_file_readline (stream_t stream, char *optr, size_t osize,
off_t offset, size_t *pnbytes)
{
int status;
size_t nbytes;
struct _file_stream *fs = stream_get_owner (stream);
int fs_offset = fs->offset;
if (offset < fs->offset)
return stream_readline (fs->cache, optr, osize, offset, pnbytes);
else if (offset > fs->offset)
return ESPIPE;
fs_offset = fs->offset;
status = _file_readline (stream, optr, osize, fs_offset, &nbytes);
if (status == 0)
{
size_t k;
status = stream_write (fs->cache, optr, nbytes, fs_offset, &k);
if (status)
return status;
if (k != nbytes)
return EIO;
}
if (pnbytes)
*pnbytes = nbytes;
return status;
}
static int
_stdout_file_write (stream_t stream, const char *iptr, size_t isize,
off_t offset, size_t *nbytes)
{
struct _file_stream *fs = stream_get_owner (stream);
return _file_write (stream, iptr, isize, fs->offset, nbytes);
}
static int
_file_truncate (stream_t stream, off_t len)
{
struct _file_stream *fs = stream_get_owner (stream);
if (fs->file && ftruncate (fileno(fs->file), len) != 0)
return errno;
return 0;
}
static int
_file_size (stream_t stream, off_t *psize)
{
struct _file_stream *fs = stream_get_owner (stream);
struct stat stbuf;
if (!fs->file)
{
if (psize)
*psize = 0;
return 0;
}
fflush (fs->file);
if (fstat(fileno(fs->file), &stbuf) == -1)
return errno;
if (psize)
*psize = stbuf.st_size;
return 0;
}
static int
_file_flush (stream_t stream)
{
struct _file_stream *fs = stream_get_owner (stream);
if (fs->file)
return fflush (fs->file);
return 0;
}
static int
_file_get_fd (stream_t stream, int *pfd)
{
struct _file_stream *fs = stream_get_owner (stream);
int status = 0;
if (pfd)
{
if (fs->file)
*pfd = fileno (fs->file);
else
status = EINVAL;
}
return status;
}
static int
_file_close (stream_t stream)
{
struct _file_stream *fs = stream_get_owner (stream);
int err = 0;
if (!stream)
return EINVAL;
if (fs->file)
{
int flags = 0;
stream_get_flags (stream, &flags);
if ((flags & MU_STREAM_NO_CLOSE) == 0)
{
if (fclose (fs->file) != 0)
err = errno;
}
fs->file = NULL;
}
return err;
}
static int
_file_open (stream_t stream)
{
struct _file_stream *fs = stream_get_owner (stream);
int flg;
int fd;
const char *mode;
char* filename = 0;
int flags = 0;
assert(fs);
filename = fs->filename;
assert(filename);
if (fs->file)
{
fclose (fs->file);
fs->file = NULL;
}
stream_get_flags(stream, &flags);
/* Map the flags to the system equivalent. */
if (flags & MU_STREAM_WRITE && flags & MU_STREAM_READ)
return EINVAL;
else if (flags & MU_STREAM_WRITE)
flg = O_WRONLY;
else if (flags & MU_STREAM_RDWR)
flg = O_RDWR;
else /* default */
flg = O_RDONLY;
/* Local folders should not block it is local disk ???
We simply ignore the O_NONBLOCK flag
But take care of the APPEND. */
if (flags & MU_STREAM_APPEND)
flg |= O_APPEND;
/* Handle CREAT with care, not to follow symlinks. */
if (flags & MU_STREAM_CREAT)
{
/* First see if the file already exists. */
fd = open(filename, flg);
if (fd == -1)
{
/* Oops bail out. */
if (errno != ENOENT)
return errno;
/* Race condition here when creating the file ??. */
fd = open(filename, flg|O_CREAT|O_EXCL, 0600);
if (fd < 0)
return errno;
}
}
else
{
fd = open (filename, flg);
if (fd < 0)
return errno;
}
/* We have to make sure that We did not open
a symlink. From Casper D. in bugtraq. */
if ((flg & MU_STREAM_CREAT) ||
(flg & MU_STREAM_RDWR) ||
(flg & MU_STREAM_WRITE))
{
struct stat fdbuf, filebuf;
/* The next two stats should never fail. */
if (fstat(fd, &fdbuf) == -1)
return errno;
if (lstat(filename, &filebuf) == -1)
return errno;
/* Now check that: file and fd reference the same file,
file only has one link, file is plain file. */
if (!(flags & MU_STREAM_ALLOW_LINKS)
&& (fdbuf.st_dev != filebuf.st_dev
|| fdbuf.st_ino != filebuf.st_ino
|| fdbuf.st_nlink != 1
|| filebuf.st_nlink != 1
|| (fdbuf.st_mode & S_IFMT) != S_IFREG))
{
mu_error (_("%s must be a plain file with one link\n"), filename);
close (fd);
return EINVAL;
}
}
/* We use FILE * object. */
if (flags & MU_STREAM_APPEND)
mode = "a";
else if (flags & MU_STREAM_RDWR)
mode = "r+b";
else if (flags & MU_STREAM_WRITE)
mode = "wb";
else /* Default readonly. */
mode = "rb";
fs->file = fdopen (fd, mode);
if (fs->file == NULL)
return errno;
return 0;
}
int
_file_strerror (stream_t unused, char **pstr)
{
*pstr = strerror (errno);
return 0;
}
int
file_stream_create (stream_t *stream, const char* filename, int flags)
{
struct _file_stream *fs;
int ret;
if (stream == NULL)
return EINVAL;
fs = calloc (1, sizeof (struct _file_stream));
if (fs == NULL)
return ENOMEM;
if ((fs->filename = strdup(filename)) == NULL)
{
free (fs);
return ENOMEM;
}
ret = stream_create (stream, flags|MU_STREAM_NO_CHECK, fs);
if (ret != 0)
{
free (fs);
free (fs->filename);
return ret;
}
stream_set_open (*stream, _file_open, fs);
stream_set_close (*stream, _file_close, fs);
stream_set_fd (*stream, _file_get_fd, fs);
stream_set_read (*stream, _file_read, fs);
stream_set_readline (*stream, _file_readline, fs);
stream_set_write (*stream, _file_write, fs);
stream_set_truncate (*stream, _file_truncate, fs);
stream_set_size (*stream, _file_size, fs);
stream_set_flush (*stream, _file_flush, fs);
stream_set_destroy (*stream, _file_destroy, fs);
stream_set_strerror (*stream, _file_strerror, fs);
return 0;
}
int
stdio_stream_create (stream_t *stream, FILE *file, int flags)
{
struct _file_stream *fs;
int ret;
if (stream == NULL)
return EINVAL;
if (file == NULL)
return EINVAL;
fs = calloc (1, sizeof (struct _file_stream));
if (fs == NULL)
return ENOMEM;
fs->file = file;
ret = stream_create (stream, flags|MU_STREAM_NO_CHECK, fs);
if (ret != 0)
{
free (fs);
return ret;
}
/* Check if we need to enable caching */
if ((flags & MU_STREAM_SEEKABLE) && lseek (fileno (file), 0, 0))
{
if ((ret = memory_stream_create (&fs->cache, 0, MU_STREAM_RDWR))
|| (ret = stream_open (fs->cache)))
{
stream_destroy (stream, fs);
free (fs);
return ret;
}
stream_set_read (*stream, _stdin_file_read, fs);
stream_set_readline (*stream, _stdin_file_readline, fs);
stream_set_write (*stream, _stdout_file_write, fs);
}
else
{
stream_set_read (*stream, _file_read, fs);
stream_set_readline (*stream, _file_readline, fs);
stream_set_write (*stream, _file_write, fs);
}
/* We don't need to open the FILE, just return success. */
stream_set_open (*stream, NULL, fs);
stream_set_close (*stream, _file_close, fs);
stream_set_fd (*stream, _file_get_fd, fs);
stream_set_flush (*stream, _file_flush, fs);
stream_set_destroy (*stream, _file_destroy, fs);
return 0;
}
static int
_prog_close (stream_t stream)
{
struct _file_stream *fs = stream_get_owner (stream);
int err = 0;
if (!stream)
return EINVAL;
if (fs->file)
{
int flags = 0;
stream_get_flags (stream, &flags);
if ((flags & MU_STREAM_NO_CLOSE) == 0)
{
if (pclose (fs->file) != 0)
err = errno;
}
fs->file = NULL;
}
return err;
}
static int
_prog_open (stream_t stream)
{
struct _file_stream *fs = stream_get_owner (stream);
const char *mode;
int flags = 0;
if (!fs || !fs->filename)
return EINVAL;
if (fs->file)
{
pclose (fs->file);
fs->file = NULL;
}
stream_get_flags(stream, &flags);
if (flags & MU_STREAM_APPEND)
mode = "w";
else if (flags & MU_STREAM_READ)
mode = "r";
else if (flags & MU_STREAM_WRITE)
mode = "w";
else /* Default readonly. */
mode = "r";
fs->file = popen (fs->filename, mode);
if (!fs->file)
return errno;
return 0;
}
int
prog_stream_create (stream_t *stream, char *progname, int flags)
{
struct _file_stream *fs;
int ret;
if (stream == NULL)
return EINVAL;
if (progname == NULL
|| (flags & MU_STREAM_RDWR)
|| (flags & (MU_STREAM_READ|MU_STREAM_WRITE)) ==
(MU_STREAM_READ|MU_STREAM_WRITE))
return EINVAL;
fs = calloc (1, sizeof (struct _file_stream));
if (fs == NULL)
return ENOMEM;
fs->filename = strdup (progname);
ret = stream_create (stream, flags|MU_STREAM_NO_CHECK, fs);
if (ret != 0)
{
free (fs);
return ret;
}
/* Check if we need to enable caching */
if (flags & MU_STREAM_SEEKABLE)
{
if ((ret = memory_stream_create (&fs->cache, 0, MU_STREAM_RDWR))
|| (ret = stream_open (fs->cache)))
{
stream_destroy (stream, fs);
free (fs);
return ret;
}
stream_set_read (*stream, _stdin_file_read, fs);
stream_set_readline (*stream, _stdin_file_readline, fs);
stream_set_write (*stream, _stdout_file_write, fs);
}
else
{
stream_set_read (*stream, _file_read, fs);
stream_set_readline (*stream, _file_readline, fs);
stream_set_write (*stream, _file_write, fs);
}
/* We don't need to open the FILE, just return success. */
stream_set_open (*stream, _prog_open, fs);
stream_set_close (*stream, _prog_close, fs);
stream_set_fd (*stream, _file_get_fd, fs);
stream_set_flush (*stream, _file_flush, fs);
stream_set_destroy (*stream, _file_destroy, fs);
return 0;
}