-
Notifications
You must be signed in to change notification settings - Fork 0
/
fio.c
1148 lines (850 loc) · 28 KB
/
fio.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
/*
# libslack - https://libslack.org
*
* Copyright (C) 1999-2004, 2010, 2020-2023 raf <raf@raf.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses/>.
*
* 20230824 raf <raf@raf.org>
*/
/*
=head1 NAME
I<libslack(fio)> - fifo and file control module and some I/O
=head1 SYNOPSIS
#include <slack/std.h>
#include <slack/fio.h>
char *fgetline(char *line, size_t size, FILE *stream);
char *fgetline_unlocked(char *line, size_t size, FILE *stream);
int read_timeout(int fd, long sec, long usec);
int write_timeout(int fd, long sec, long usec);
int rw_timeout(int fd, long sec, long usec);
int nap(long sec, long usec);
int fcntl_set_flag(int fd, int flag);
int fcntl_clear_flag(int fd, int flag);
int fcntl_set_fdflag(int fd, int flag);
int fcntl_clear_fdflag(int fd, int flag);
int fcntl_lock(int fd, int cmd, int type, int whence, int start, int len);
int nonblock_set(int fd, int arg);
int nonblock_on(int fd);
int nonblock_off(int fd);
int fifo_exists(const char *path, int prepare);
int fifo_has_reader(const char *path, int prepare);
int fifo_open(const char *path, mode_t mode, int lock, int *writefd);
=head1 DESCRIPTION
This module provides various I/O related functions: reading a line of text
no matter what line endings are used; timeouts for read/write operations
without signals; exclusively opening a fifo for reading; and some random
shorthand functions for manipulating file flags and locks.
=over 4
=cut
*/
#include "config.h"
#ifndef NO_POSIX_SOURCE
#define NO_POSIX_SOURCE /* For ETIMEDOUT, EADDRINUSE, EOPNOTSUPP on FreeBSD-8.0 */
#endif
#include "std.h"
#include <fcntl.h>
#include <sys/types.h>
#if HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#include <sys/time.h>
#include <sys/stat.h>
#include "err.h"
#include "fio.h"
#ifndef TEST
void (flockfile)(FILE *stream); /* Missing from old glibc headers */
void (funlockfile)(FILE *stream);
#ifndef HAVE_FLOCKFILE
#define flockfile(stream)
#define funlockfile(stream)
#define getc_unlocked(stream) getc(stream)
#endif
/*
=item C<char *fgetline(char *line, size_t size, FILE *stream)>
Similar to I<fgets(3)> except that it recognises UNIX (C<"\n">), DOS/Windows
(C<"\r\n">) and old Macintosh (C<"\r">) line endings (even different line
endings in the same file). Reads bytes from C<stream> and stores them in the
buffer pointed to by C<line>. Reading stops after an C<EOF>, or the end of
the line is reached, or when C<size - 1> bytes have been stored. If the end
of the line was reached, it is stored as a C<"\n"> byte. A C<nul> byte is
stored after the last byte in the buffer. On success, returns C<line>. On
error, or when the end of file occurs while no bytes have been read, returns
C<null>. Note that even when C<null> is returned, C<line> is modified and
will always be C<nul>-terminated. So it is safe to examine C<line> even when
this function returns C<null>. Calls to this function can be mixed with
calls to other input functions from the I<stdio> library for the same input
stream. This is a drop-in replacement for I<fgets(3)>.
char line[BUFSIZ];
while (fgetline(line, BUFSIZ, stdin))
printf("%s", line);
=cut
*/
char *fgetline(char *line, size_t size, FILE *stream)
{
char *ret;
flockfile(stream);
ret = fgetline_unlocked(line, size, stream);
funlockfile(stream);
return ret;
}
/*
=item C<char *fgetline_unlocked(char *line, size_t size, FILE *stream)>
Equivalent to I<fgetline(3)> except that C<stream> is not locked.
=cut
*/
char *fgetline_unlocked(char *line, size_t size, FILE *stream)
{
char *s = line;
char *end = line + size - 1;
int c = '\0', c2;
if (!s)
return NULL;
while (s < end && (c = getc_unlocked(stream)) != EOF)
{
if (c == '\n')
{
*s++ = c;
break;
}
else if (c == '\r')
{
*s++ = '\n';
if ((c2 = getc_unlocked(stream)) == '\n')
break;
ungetc(c2, stream);
break;
}
else
*s++ = c;
}
*s = '\0';
if (c == EOF && (s == line || ferror(stream)))
return NULL;
return line;
}
/*
=item C<int read_timeout(int fd, long sec, long usec)>
Performs a I<select(2)> on a single file descriptor, C<fd>, for reading and
exceptions (i.e. arrival of urgent data), that times out after C<sec>
seconds and C<usec> microseconds. This is just a shorthand function to
provide a simple timed I<read(2)> (or I<readv(2)> or I<accept(2)> or
I<recv(2)> or I<recvfrom(2)> or I<recvmsg(2)> without resorting to
I<alarm(3)> and C<SIGALRM> signals (best avoided). On success, returns C<0>.
On error, returns C<-1> with C<errno> set appropriately (C<ETIMEDOUT> if it
timed out, otherwise set by I<select(2)>). Usage:
if (read_timeout(fd, 5, 0) == -1 || (bytes = read(fd, buf, count)) == -1)
return -1;
=cut
*/
int read_timeout(int fd, long sec, long usec)
{
fd_set readfds[1];
fd_set exceptfds[1];
struct timeval timeout[1];
if (fd < 0 || sec < 0 || usec < 0)
return set_errno(EINVAL);
FD_ZERO(readfds);
FD_SET(fd, readfds);
*exceptfds = *readfds;
timeout->tv_sec = sec;
timeout->tv_usec = usec;
switch (select(fd + 1, readfds, NULL, exceptfds, timeout))
{
case -1:
return -1;
case 0:
return set_errno(ETIMEDOUT);
}
return 0;
}
/*
=item C<int write_timeout(int fd, long sec, long usec)>
Performs a I<select(2)> on a single file descriptor, C<fd>, for writing,
that times out after C<sec> seconds and C<usec> microseconds. This is just a
shorthand function to provide a simple timed I<write(2)> (or I<writev(2)> or
I<send(2)> or I<sendto(2)> or I<sendmsg(2)>) without resorting to
I<alarm(3)> and C<SIGALRM> signals (best avoided). On success, returns C<0>.
On error, returns C<-1> with C<errno> set appropriately (C<ETIMEDOUT> if it
timed out, otherwise set by I<select(2)>). Usage:
if (write_timeout(fd, 5, 0) == -1 || (bytes = write(fd, buf, count)) == -1)
return -1;
=cut
*/
int write_timeout(int fd, long sec, long usec)
{
fd_set writefds[1];
struct timeval timeout[1];
if (fd < 0 || sec < 0 || usec < 0)
return set_errno(EINVAL);
FD_ZERO(writefds);
FD_SET(fd, writefds);
timeout->tv_sec = sec;
timeout->tv_usec = usec;
switch (select(fd + 1, NULL, writefds, NULL, timeout))
{
case -1:
return -1;
case 0:
return set_errno(ETIMEDOUT);
}
return 0;
}
/*
=item C<int rw_timeout(int fd, long sec, long usec)>
Performs a I<select(2)> on a single file descriptor, C<fd>, for reading,
writing and exceptions (i.e. arrival of urgent data), that times out after
C<sec> seconds and C<usec> microseconds. This is just a shorthand function
to provide a simple timed I<read(2)> or I<write(2)> without resorting to
I<alarm(3)> and C<SIGALRM> signals (best avoided). On success, returns a bit
mask indicating whether C<fd> is readable (C<R_OK>), writable (C<W_OK>)
and/or has urgent data available (C<X_OK>). On error, returns C<-1> with
C<errno> set appropriately (C<ETIMEDOUT> if it timed out, otherwise set by
I<select(2)>).
if ((mask = rw_timeout(fd, 5, 0)) == -1)
return -1;
if ((mask & W_OK) && (bytes = write(fd, buf, count)) == -1)
return -1;
if ((mask & R_OK) && (bytes = read(fd, buf, count)) == -1)
return -1;
=cut
*/
int rw_timeout(int fd, long sec, long usec)
{
fd_set readfds[1];
fd_set writefds[1];
fd_set exceptfds[1];
struct timeval timeout[1];
int rc = 0;
if (fd < 0 || sec < 0 || usec < 0)
return set_errno(EINVAL);
FD_ZERO(readfds);
FD_SET(fd, readfds);
*writefds = *readfds;
*exceptfds = *readfds;
timeout->tv_sec = sec;
timeout->tv_usec = usec;
switch (select(fd + 1, readfds, writefds, exceptfds, timeout))
{
case -1:
return -1;
case 0:
return set_errno(ETIMEDOUT);
}
if (FD_ISSET(fd, readfds))
rc |= R_OK;
if (FD_ISSET(fd, writefds))
rc |= W_OK;
if (FD_ISSET(fd, exceptfds))
rc |= X_OK;
return rc;
}
/*
=item C<int nap(long sec, long usec)>
Puts the process to sleep for C<sec> seconds and C<usec> microseconds. Note,
however, that many systems' timers only have 10ms resolution. This uses
I<select(3)> to ensure that I<alarm(3)> and C<SIGALRM> signals are not used
(best avoided). On success, returns C<0>. On error, returns C<-1> with
C<errno> set appropriately.
nap(1, 500000); // Sleep for 1.5 seconds
nap(0, 100000); // Sleep for 0.1 seconds
=cut
*/
int nap(long sec, long usec)
{
struct timeval tv[1];
if (sec < 0 || usec < 0)
return set_errno(EINVAL);
tv->tv_sec = sec;
tv->tv_usec = usec;
return select(0, NULL, NULL, NULL, tv);
}
/*
=item C<int fcntl_set_flag(int fd, int flag)>
Shorthand for setting the file status flag, C<flag>, on the file descriptor,
C<fd>, using I<fcntl(2)>. All other file status flags are unaffected. On
success, returns C<0>. On error, returns C<-1> with C<errno> set by
I<fcntl(2)> with C<F_GETFL> or C<F_SETFL> as the command. Example file
status flags are C<O_APPEND>, C<O_ASYNC>, C<O_DIRECT>, C<O_NOATIME>, and
C<O_NONBLOCK> depending on the system.
=cut
*/
int fcntl_set_flag(int fd, int flag)
{
int flags;
if ((flags = fcntl(fd, F_GETFL, 0)) == -1)
return -1;
return fcntl(fd, F_SETFL, flags | flag);
}
/*
=item C<int fcntl_clear_flag(int fd, int flag)>
Shorthand for clearing the file status flag, C<flag>, from the file
descriptor, C<fd>, using I<fcntl(2)>. All other file status flags are
unaffected. On success, returns C<0>. On error, returns C<-1> with C<errno>
set by I<fcntl(2)> with C<F_GETFL> or C<F_SETFL> as the command. Example
file status flags are C<O_APPEND>, C<O_ASYNC>, C<O_DIRECT>, C<O_NOATIME>,
and C<O_NONBLOCK> depending on the system.
=cut
*/
int fcntl_clear_flag(int fd, int flag)
{
int flags;
if ((flags = fcntl(fd, F_GETFL, 0)) == -1)
return -1;
return fcntl(fd, F_SETFL, flags & ~flag);
}
/*
=item C<int fcntl_set_fdflag(int fd, int flag)>
Shorthand for setting the file descriptor flag, C<flag>, on the file
descriptor, C<fd>, using I<fcntl(2)>. All other file descriptor flags are
unaffected. On success, returns C<0>. On error, returns C<-1> with C<errno>
set by I<fcntl(2)> with C<F_GETFD> or C<F_SETFD> as the command. The only
file descriptor flag at time of writing is C<FD_CLOEXEC>.
=cut
*/
int fcntl_set_fdflag(int fd, int flag)
{
int flags;
if ((flags = fcntl(fd, F_GETFD, 0)) == -1)
return -1;
return fcntl(fd, F_SETFD, flags | flag);
}
/*
=item C<int fcntl_clear_fdflag(int fd, int flag)>
Shorthand for clearing the file descriptor flag, C<flag>, from the file
descriptor, C<fd>, using I<fcntl(2)>. All other file descriptor flags are
unaffected. On success, returns C<0>. On error, returns C<-1> with C<errno>
set by I<fcntl(2)> with C<F_GETFD> or C<F_SETFD> as the command. The only
file descriptor flag at time of writing is C<FD_CLOEXEC>.
=cut
*/
int fcntl_clear_fdflag(int fd, int flag)
{
int flags;
if ((flags = fcntl(fd, F_GETFL, 0)) == -1)
return -1;
return fcntl(fd, F_SETFL, flags & ~flag);
}
/*
=item C<int fcntl_lock(int fd, int cmd, int type, int whence, int start, int len)>
Shorthand for performing discretionary file locking operations on the file
descriptor, C<fd>. C<cmd> is the locking command and is passed to
I<fcntl(2)>. C<type>, C<whence>, C<start> and C<len> are used to fill a
I<flock> structure which is passed to I<fcntl(2)>. Returns the same as
I<fcntl(2)> with C<cmd> as the command.
if (fcntl_lock(fd, F_SETLK, F_WRLCK, SEEK_SET, 0, 0) == -1)
return -1;
=cut
*/
int fcntl_lock(int fd, int cmd, int type, int whence, int start, int len)
{
struct flock lock[1];
lock->l_type = type;
lock->l_whence = whence;
lock->l_start = start;
lock->l_len = len;
return fcntl(fd, cmd, lock);
}
/*
=item C<int nonblock_set(int fd, int arg)>
Sets non-blocking mode for the file descriptor, C<fd>, if C<arg> is
non-zero. Sets blocking mode if C<arg> is zero. On success, returns C<0>. On
error, returns C<-1> with C<errno> set by I<fcntl(2)> with C<F_GETFL> or
C<F_SETFL> as the command.
=cut
*/
int nonblock_set(int fd, int arg)
{
return (arg) ? nonblock_on(fd) : nonblock_off(fd);
}
/*
=item C<int nonblock_on(int fd)>
Sets non-blocking mode for the file descriptor, C<fd>. On success, returns
C<0>. On error, returns C<-1> with C<errno> set by I<fcntl(2)> with
C<F_GETFL> or C<F_SETFL> as the command.
=cut
*/
int nonblock_on(int fd)
{
return fcntl_set_flag(fd, O_NONBLOCK);
}
/*
=item C<int nonblock_off(int fd)>
Sets blocking mode for the file descriptor, C<fd>. On success, returns C<0>.
On error, returns C<-1> with C<errno> set by I<fcntl(2)> with C<F_GETFL> or
C<F_SETFL> as the command.
=cut
*/
int nonblock_off(int fd)
{
return fcntl_clear_flag(fd, O_NONBLOCK);
}
/*
=item C<int fifo_exists(const char *path, int prepare)>
Determines whether or not C<path> refers to a fifo. Returns C<0> if C<path>
doesn't exist or doesn't refer to a fifo. If C<path> refers to a fifo,
returns 1. If C<prepare> is non-zero, and C<path> refers to a non-fifo, it
will be unlinked. On error, returns C<-1> with C<errno> set by I<stat(2)>.
=cut
*/
int fifo_exists(const char *path, int prepare)
{
struct stat status[1];
if (stat(path, status) == -1)
return (errno == ENOENT) ? 0 : -1;
if (S_ISFIFO(status->st_mode) == 0)
{
if (prepare)
unlink(path);
return 0;
}
return 1;
}
/*
=item C<int fifo_has_reader(const char *path, int prepare)>
Determines whether or not C<path> refers to a fifo that is being read by
another process. If C<path> does not exist, or does not refer to a fifo, or
if the fifo can't be opened for non-blocking I<write(2)>, returns C<0>. If
C<prepare> is non-zero, and path refers to a non-fifo, it will be unlinked.
On error, returns C<-1> with C<errno> set by I<stat(2)> or I<open(2)>.
=cut
*/
int fifo_has_reader(const char *path, int prepare)
{
int fd;
/*
** Check that fifo exists and is a fifo.
** If not, there can be no reader process.
*/
switch (fifo_exists(path, prepare))
{
case 0: return 0;
case -1: return -1;
}
/*
** Open the fifo for non-blocking write.
** If there is no reader process, open()
** will fail with errno == ENXIO.
*/
if ((fd = open(path, O_WRONLY | O_NONBLOCK)) == -1)
return (errno == ENXIO) ? 0 : -1;
if (close(fd) == -1)
return -1;
return 1;
}
/*
=item C<int fifo_open(const char *path, mode_t mode, int lock, int *writefd)>
Creates a fifo named C<path> with creation mode C<mode> for reading. If
C<path> already exists, is a fifo, and has a reader process, returns C<-1>
with C<errno> set to C<EADDRINUSE>. If the fifo is created (or an existing
one can be reused), two file descriptors are opened to the fifo. A read
descriptor and a write descriptor. On success, returns the read descriptor.
The write descriptor only exists to ensure that there is always at least one
writer process for the fifo. This allows a I<read(2)> on the read descriptor
to block until another process writes to the fifo rather than returning an
C<EOF> condition. This is done in a I<POSIX>-compliant way. If C<lock> is
non-zero, the fifo is exclusively locked. If C<writefd> is not C<null>, the
write descriptor is stored there. On error, returns C<-1> with C<errno> set
by I<stat(2)>, I<open(2)>, I<mkfifo(2)>, I<fstat(2)> or I<fcntl(2)>.
char *fifopath = "/tmp/fifo";
int fd, wfd;
if ((fd = fifo_open(fifopath, S_IRUSR | S_IWUSR | S_IWGRP | S_IWOTH, 1, &wfd)) == -1)
return -1;
// Read from fd...
close(fd);
close(wfd);
unlink(fifopath);
=cut
*/
int fifo_open(const char *path, mode_t mode, int lock, int *writefd)
{
struct stat status[1];
int rfd, wfd, mine = 0;
/* Don't open the fifo for reading twice. */
switch (fifo_has_reader(path, 1))
{
case 1: return set_errno(EADDRINUSE);
case -1: return -1;
}
/* Create the fifo. */
if (mkfifo(path, mode) != -1)
mine = 1;
else if (errno != EEXIST)
return -1;
/*
** Open the fifo for non-blocking read only.
** This prevents blocking while waiting for a
** writer process. We are about to supply our
** own writer.
*/
if ((rfd = open(path, O_RDONLY | O_NONBLOCK)) == -1)
{
if (mine)
unlink(path);
return -1;
}
/*
** A sanity check to make sure that what we have just
** opened is really a fifo. Someone may have just replaced
** the fifo with a file between fifo_has_reader and here.
*/
if (fstat(rfd, status) == -1 || S_ISFIFO(status->st_mode) == 0)
{
if (mine)
unlink(path);
close(rfd);
return -1;
}
/*
** Open the fifo for write only and leave this fd open.
** This guarantees that there is always at least one
** writer process. This prevents EOF indications being
** returned from read() when there are no other writer
** processes.
**
** Just opening the fifo "rw" should work but it's undefined
** by POSIX.
*/
if ((wfd = open(path, O_WRONLY)) == -1)
{
if (mine)
unlink(path);
close(rfd);
return -1;
}
/*
** Exclusively lock the fifo to prevent two invocations
** deciding that there's no reader and opening this fifo
** at the same time.
**
** Note: some systems (e.g. FreeBSD, Mac OS X) can't lock fifos :(
*/
/* On MacOSX-10.6 these are different numbers */
#ifndef ENOTSUP
#define ENOTSUP EOPNOTSUPP
#endif
if (lock && fcntl_lock(wfd, F_SETLK, F_WRLCK, SEEK_SET, 0, 0) == -1 && errno != EOPNOTSUPP && errno != ENOTSUP && errno != EBADF)
{
if (mine)
unlink(path);
close(rfd);
close(wfd);
return (errno == EACCES) ? set_errno(EADDRINUSE) : -1;
}
/* A sanity test on the write descriptor we have just opened and locked. */
if (fstat(wfd, status) == -1 || S_ISFIFO(status->st_mode) == 0)
{
if (mine)
unlink(path);
close(rfd);
close(wfd);
return -1;
}
/* Now put the reader into blocking mode. */
if (nonblock_off(rfd) == -1)
{
if (mine)
unlink(path);
close(rfd);
close(wfd);
return -1;
}
/*
** Flaw: If someone unceremoniously unlinks our fifo, we won't know
** about it and nothing will stop another invocation from creating a new
** fifo and handling it. This process would sleep forever in select().
*/
if (writefd)
*writefd = wfd;
return rfd;
}
/*
=back
=head1 ERRORS
These functions set C<errno> to the following values. C<errno> may also be
set by the underlying system calls. See their manpages for details.
=over 4
=item C<ETIMEDOUT>
The I<read_timeout(3)>, I<write_timeout(3)> and I<rw_timeout(3)> functions
set this when a timeout occurs.
=item C<EADDRINUSE>
I<fifo_open(3)> sets this when the path refers to a fifo that already has
another process reading from it.
=back
=head1 MT-Level
I<MT-Safe>
I<Mac OS X> doesn't have I<flockfile(3)>, I<funlockfile(3)> or
I<getc_unlocked(3)> so I<fgetline(3)> is not I<MT-Safe> on such platforms.
You must guard all I<stdio> calls in multi-threaded programs with explicit
synchronisation variables.
=head1 EXAMPLES
A paranoid I<fgetline()> example:
#include <slack/std.h>
#include <slack/fio.h>
int main()
{
char line[BUFSIZ];
while (fgetline(line, BUFSIZ, stdin))
printf("%s", line);
if (ferror(stdin))
{
if (!*line)
printf("%s\n", line);
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
Read from stdin but give up after 5 seconds:
#include <slack/std.h>
#include <slack/fio.h>
int main()
{
char buf[BUFSIZ];
ssize_t bytes;
if (read_timeout(STDIN_FILENO, 5, 0) == -1 ||
(bytes = read(STDIN_FILENO, buf, BUFSIZ)) == -1 ||
write(STDOUT_FILENO, buf, bytes) != bytes)
return EXIT_FAILURE;
return EXIT_SUCCESS;
}
A command line sub-second sleep command:
#include <slack/std.h>
#include <slack/fio.h>
int main(int ac, char **av)
{
if (ac != 3)
return EXIT_FAILURE;
nap(atoi(av[1]), atoi(av[2]));
return EXIT_SUCCESS;
}
Setting file flags:
#include <slack/std.h>
#include <slack/fio.h>
int main()
{
if (fcntl_set_flag(STDIN_FILENO, O_NONBLOCK | O_ASYNC) == -1)
return EXIT_FAILURE;
if (fcntl_set_flag(STDOUT_FILENO, O_APPEND) == -1)
return EXIT_FAILURE;
if (fcntl_set_fdflag(STDOUT_FILENO, FD_CLOEXEC) == -1)
return EXIT_FAILURE;
if (nonblock_on(STDOUT_FILENO) == -1)
return EXIT_FAILURE;
if (fcntl_clear_flag(STDIN_FILENO, O_NONBLOCK | O_ASYNC) == -1)
return EXIT_FAILURE;
if (fcntl_clear_flag(STDOUT_FILENO, O_APPEND) == -1)
return EXIT_FAILURE;
if (fcntl_clear_fdflag(STDOUT_FILENO, FD_CLOEXEC) == -1)
return EXIT_FAILURE;
if (nonblock_off(STDOUT_FILENO) == -1)
return EXIT_FAILURE;
return EXIT_SUCCESS;
}
File locking:
#include <slack/std.h>
#include <slack/fio.h>
int main(int ac, char **av)
{
int fd;
if ((fd = open(av[1], O_RDWR)) == -1)
return EXIT_FAILURE;
if (fcntl_lock(fd, F_SETLK, F_WRLCK, SEEK_SET, 0, 0) == -1)
return close(fd), EXIT_FAILURE;
// Write to the file...
if (fcntl_lock(fd, F_SETLK, F_UNLCK, SEEK_SET, 0, 0) == -1)
return close(fd), EXIT_FAILURE;
close(fd);
return EXIT_SUCCESS;
}
Turn a logfile into a fifo that sends log messages to syslog instead:
#include <slack/std.h>
#include <slack/fio.h>
#include <syslog.h>
int main()
{
char *fifopath = "/tmp/log2syslog";
char buf[BUFSIZ];
ssize_t bytes;
int fd, wfd;
if ((fd = fifo_open(fifopath, S_IRUSR | S_IWUSR | S_IWGRP | S_IWOTH, 1, &wfd)) == -1)
return EXIT_FAILURE;
while ((bytes = read(fd, buf, BUFSIZ)) > 0)
{
buf[bytes] = '\0';
syslog(LOG_DAEMON | LOG_ERR, "%s", buf);
}
close(fd);
close(wfd);
unlink(fifopath);
}
=head1 BUGS
Some systems, such as I<Mac OS X>, can't lock fifos. On these systems,
I<fifo_open(3)> ignores the locking failure and returns successfully. This
means that there is no guarantee of a unique reader process on these
systems. You will need to lock an ordinary file yourself to provide this
guarantee.
=head1 SEE ALSO
I<libslack(3)>,
I<fcntl(2)>,
I<stat(2)>,
I<fstat(2)>,
I<open(2)>,
I<write(2)>,
I<read(2)>,
I<mkfifo(2)>
=head1 AUTHOR
20230824 raf <raf@raf.org>
=cut
*/
#endif
#ifdef TEST
#include <slack/fio.h>
int main(int ac, char **av)
{
const char * const fifoname = "./fio.fifo";
const char * const filename = "./fio.file";
const mode_t mode = S_IRUSR | S_IWUSR | S_IWGRP | S_IWOTH;
FILE *file;
char line[BUFSIZ];
const int lock = 1;
int errors = 0;
int fd, wfd;
if (ac == 2 && !strcmp(av[1], "help"))
{
printf("usage: %s\n", *av);
return EXIT_SUCCESS;
}
printf("Testing: %s\n", "fio");