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
|
/*++
/* NAME
/* peekfd 3
/* SUMMARY
/* determine amount of data ready to read
/* SYNOPSIS
/* #include <iostuff.h>
/*
/* ssize_t peekfd(fd)
/* int fd;
/* DESCRIPTION
/* peekfd() attempts to find out how many bytes are available to
/* be read from the named file descriptor. The result value is
/* the number of available bytes.
/* DIAGNOSTICS
/* peekfd() returns -1 in case of trouble. The global \fIerrno\fR
/* variable reflects the nature of the problem.
/* BUGS
/* On some systems, non-blocking read() may fail even after a
/* positive return from peekfd(). The smtp-sink program works
/* around this by using the readable() function instead.
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*
/* Wietse Venema
/* Google, Inc.
/* 111 8th Avenue
/* New York, NY 10011, USA
/*--*/
/* System library. */
#include <sys_defs.h>
#include <sys/ioctl.h>
#ifdef FIONREAD_IN_SYS_FILIO_H
#include <sys/filio.h>
#endif
#ifdef FIONREAD_IN_TERMIOS_H
#include <termios.h>
#endif
#include <unistd.h>
#ifndef SHUT_RDWR
#define SHUT_RDWR 2
#endif
/* Utility library. */
#include "iostuff.h"
/* peekfd - return amount of data ready to read */
ssize_t peekfd(int fd)
{
/*
* Anticipate a series of system-dependent code fragments.
*/
#ifdef FIONREAD
int count;
#ifdef SUNOS5
/*
* With Solaris10, write_wait() hangs in poll() until timeout, when
* invoked after peekfd() has received an ECONNRESET error indication.
* This happens when a client sends QUIT and closes the connection
* immediately.
*/
if (ioctl(fd, FIONREAD, (char *) &count) < 0) {
(void) shutdown(fd, SHUT_RDWR);
return (-1);
} else {
return (count);
}
#else /* SUNOS5 */
return (ioctl(fd, FIONREAD, (char *) &count) < 0 ? -1 : count);
#endif /* SUNOS5 */
#else
#error "don't know how to look ahead"
#endif
}
|