Coverage Report

Created: 2026-09-14 06:25

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/php-src/main/php_network.h
Line
Count
Source
1
/*
2
   +----------------------------------------------------------------------+
3
   | Copyright © The PHP Group and Contributors.                          |
4
   +----------------------------------------------------------------------+
5
   | This source file is subject to the Modified BSD License that is      |
6
   | bundled with this package in the file LICENSE, and is available      |
7
   | through the World Wide Web at <https://www.php.net/license/>.        |
8
   |                                                                      |
9
   | SPDX-License-Identifier: BSD-3-Clause                                |
10
   +----------------------------------------------------------------------+
11
   | Author: Stig Venaas <venaas@uninett.no>                              |
12
   +----------------------------------------------------------------------+
13
 */
14
15
#ifndef _PHP_NETWORK_H
16
#define _PHP_NETWORK_H
17
18
#include <php.h>
19
20
#ifndef PHP_WIN32
21
# undef closesocket
22
0
# define closesocket close
23
# include <netinet/tcp.h>
24
#endif
25
26
#ifndef HAVE_SHUTDOWN
27
#undef shutdown
28
#define shutdown(s,n) /* nothing */
29
#endif
30
31
#ifdef PHP_WIN32
32
# ifdef EWOULDBLOCK
33
#  undef EWOULDBLOCK
34
# endif
35
# ifdef EINPROGRESS
36
#  undef EINPROGRESS
37
# endif
38
# define EWOULDBLOCK WSAEWOULDBLOCK
39
# define EINPROGRESS  WSAEWOULDBLOCK
40
# define fsync _commit
41
# define ftruncate(a, b) chsize(a, b)
42
#endif /* defined(PHP_WIN32) */
43
44
#ifndef EWOULDBLOCK
45
# define EWOULDBLOCK EAGAIN
46
#endif
47
48
/* This is a workaround for GCC bug 69602: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69602 */
49
#if EAGAIN != EWOULDBLOCK
50
# define PHP_IS_TRANSIENT_ERROR(err) (err == EAGAIN || err == EWOULDBLOCK)
51
#else
52
0
# define PHP_IS_TRANSIENT_ERROR(err) (err == EAGAIN)
53
#endif
54
55
#ifdef PHP_WIN32
56
#define php_socket_errno() WSAGetLastError()
57
#else
58
0
#define php_socket_errno() errno
59
#endif
60
61
/* like strerror, but caller must efree the returned string,
62
 * unless buf is not NULL.
63
 * Also works sensibly for win32 */
64
BEGIN_EXTERN_C()
65
#ifdef PHP_WIN32
66
char *php_socket_strerror_s(long err, char *buf, size_t bufsize);
67
#else
68
1.32k
#define php_socket_strerror_s php_socket_strerror
69
#endif
70
PHPAPI char *php_socket_strerror(long err, char *buf, size_t bufsize);
71
PHPAPI zend_string *php_socket_error_str(long err);
72
END_EXTERN_C()
73
74
#ifdef HAVE_NETINET_IN_H
75
# include <netinet/in.h>
76
#endif
77
78
#ifdef HAVE_SYS_SOCKET_H
79
#include <sys/socket.h>
80
#endif
81
82
#ifdef HAVE_GETHOSTBYNAME_R
83
#include <netdb.h>
84
#endif
85
86
/* These are here, rather than with the win32 counterparts above,
87
 * since <sys/socket.h> defines them. */
88
#ifndef SHUT_RD
89
# define SHUT_RD 0
90
# define SHUT_WR 1
91
# define SHUT_RDWR 2
92
#endif
93
94
#ifdef HAVE_SYS_TIME_H
95
#include <sys/time.h>
96
#endif
97
98
#include <stddef.h>
99
100
#ifdef PHP_WIN32
101
typedef SOCKET php_socket_t;
102
#define PHP_SOCKET_FMT "%" PRIxPTR
103
#else
104
typedef int php_socket_t;
105
#define PHP_SOCKET_FMT "%d"
106
#endif
107
108
#ifdef PHP_WIN32
109
# define SOCK_ERR INVALID_SOCKET
110
# define SOCK_CONN_ERR SOCKET_ERROR
111
# define SOCK_RECV_ERR SOCKET_ERROR
112
#else
113
0
# define SOCK_ERR -1
114
0
# define SOCK_CONN_ERR -1
115
# define SOCK_RECV_ERR -1
116
#endif
117
118
0
#define STREAM_SOCKOP_NONE                (1 << 0)
119
0
#define STREAM_SOCKOP_SO_REUSEPORT        (1 << 1)
120
0
#define STREAM_SOCKOP_SO_BROADCAST        (1 << 2)
121
0
#define STREAM_SOCKOP_IPV6_V6ONLY         (1 << 3)
122
0
#define STREAM_SOCKOP_IPV6_V6ONLY_ENABLED (1 << 4)
123
0
#define STREAM_SOCKOP_TCP_NODELAY         (1 << 5)
124
0
#define STREAM_SOCKOP_SO_REUSEADDR        (1 << 6)
125
0
#define STREAM_SOCKOP_SO_KEEPALIVE        (1 << 7)
126
127
/* uncomment this to debug poll(2) emulation on systems that have poll(2) */
128
/* #define PHP_USE_POLL_2_EMULATION 1 */
129
130
#if defined(HAVE_POLL)
131
# if defined(HAVE_POLL_H)
132
#  include <poll.h>
133
# elif defined(HAVE_SYS_POLL_H)
134
#  include <sys/poll.h>
135
# endif
136
typedef struct pollfd php_pollfd;
137
#else
138
typedef struct _php_pollfd {
139
  php_socket_t fd;
140
  short events;
141
  short revents;
142
} php_pollfd;
143
144
PHPAPI int php_poll2(php_pollfd *ufds, unsigned int nfds, int timeout);
145
146
#ifndef POLLIN
147
# define POLLIN      0x0001    /* There is data to read */
148
# define POLLPRI     0x0002    /* There is urgent data to read */
149
# define POLLOUT     0x0004    /* Writing now will not block */
150
# define POLLERR     0x0008    /* Error condition */
151
# define POLLHUP     0x0010    /* Hung up */
152
# define POLLNVAL    0x0020    /* Invalid request: fd not open */
153
#endif
154
155
# ifndef PHP_USE_POLL_2_EMULATION
156
#  define PHP_USE_POLL_2_EMULATION 1
157
# endif
158
#endif
159
160
0
#define PHP_POLLREADABLE  (POLLIN|POLLERR|POLLHUP)
161
162
#ifndef PHP_USE_POLL_2_EMULATION
163
0
# define php_poll2(ufds, nfds, timeout)   poll(ufds, nfds, timeout)
164
#endif
165
166
/* timeval-to-timeout (for poll(2)) */
167
static inline int php_tvtoto(struct timeval *timeouttv)
168
0
{
169
0
  if (timeouttv && timeouttv->tv_sec >= 0 && timeouttv->tv_sec <= ((INT_MAX - 1000) / 1000)) {
170
0
    return (timeouttv->tv_sec * 1000) + (timeouttv->tv_usec / 1000);
171
0
  }
172
0
  return -1;
173
0
}
Unexecuted instantiation: exif.c:php_tvtoto
Unexecuted instantiation: hash.c:php_tvtoto
Unexecuted instantiation: spl_directory.c:php_tvtoto
Unexecuted instantiation: basic_functions.c:php_tvtoto
Unexecuted instantiation: dir.c:php_tvtoto
Unexecuted instantiation: dns.c:php_tvtoto
Unexecuted instantiation: exec.c:php_tvtoto
Unexecuted instantiation: file.c:php_tvtoto
Unexecuted instantiation: filters.c:php_tvtoto
Unexecuted instantiation: fsock.c:php_tvtoto
Unexecuted instantiation: ftp_fopen_wrapper.c:php_tvtoto
Unexecuted instantiation: head.c:php_tvtoto
Unexecuted instantiation: html.c:php_tvtoto
Unexecuted instantiation: http_fopen_wrapper.c:php_tvtoto
Unexecuted instantiation: image.c:php_tvtoto
Unexecuted instantiation: io_poll.c:php_tvtoto
Unexecuted instantiation: net.c:php_tvtoto
Unexecuted instantiation: php_fopen_wrapper.c:php_tvtoto
Unexecuted instantiation: proc_open.c:php_tvtoto
Unexecuted instantiation: streamsfuncs.c:php_tvtoto
Unexecuted instantiation: string.c:php_tvtoto
Unexecuted instantiation: url.c:php_tvtoto
Unexecuted instantiation: user_filters.c:php_tvtoto
Unexecuted instantiation: fopen_wrappers.c:php_tvtoto
Unexecuted instantiation: main.c:php_tvtoto
Unexecuted instantiation: network.c:php_tvtoto
Unexecuted instantiation: php_variables.c:php_tvtoto
Unexecuted instantiation: php_io.c:php_tvtoto
Unexecuted instantiation: php_io_copy_linux.c:php_tvtoto
Unexecuted instantiation: poll_backend_epoll.c:php_tvtoto
Unexecuted instantiation: poll_backend_eventport.c:php_tvtoto
Unexecuted instantiation: poll_backend_kqueue.c:php_tvtoto
Unexecuted instantiation: poll_backend_poll.c:php_tvtoto
Unexecuted instantiation: poll_core.c:php_tvtoto
Unexecuted instantiation: poll_fd_table.c:php_tvtoto
Unexecuted instantiation: poll_handle.c:php_tvtoto
Unexecuted instantiation: cast.c:php_tvtoto
Unexecuted instantiation: filter.c:php_tvtoto
Unexecuted instantiation: plain_wrapper.c:php_tvtoto
Unexecuted instantiation: stream_errors.c:php_tvtoto
Unexecuted instantiation: streams.c:php_tvtoto
Unexecuted instantiation: transports.c:php_tvtoto
Unexecuted instantiation: userspace.c:php_tvtoto
Unexecuted instantiation: xp_socket.c:php_tvtoto
Unexecuted instantiation: internal_functions_cli.c:php_tvtoto
174
175
/* hybrid select(2)/poll(2) for a single descriptor.
176
 * timeouttv follows same rules as select(2), but is reduced to millisecond accuracy.
177
 * Returns 0 on timeout, -1 on error, or the event mask (ala poll(2)).
178
 */
179
static inline int php_pollfd_for(php_socket_t fd, int events, struct timeval *timeouttv)
180
0
{
181
0
  php_pollfd p;
182
0
  int n;
183
184
0
  p.fd = fd;
185
0
  p.events = events;
186
0
  p.revents = 0;
187
188
0
  n = php_poll2(&p, 1, php_tvtoto(timeouttv));
189
190
0
  if (n > 0) {
191
0
    return p.revents;
192
0
  }
193
194
0
  return n;
195
0
}
Unexecuted instantiation: exif.c:php_pollfd_for
Unexecuted instantiation: hash.c:php_pollfd_for
Unexecuted instantiation: spl_directory.c:php_pollfd_for
Unexecuted instantiation: basic_functions.c:php_pollfd_for
Unexecuted instantiation: dir.c:php_pollfd_for
Unexecuted instantiation: dns.c:php_pollfd_for
Unexecuted instantiation: exec.c:php_pollfd_for
Unexecuted instantiation: file.c:php_pollfd_for
Unexecuted instantiation: filters.c:php_pollfd_for
Unexecuted instantiation: fsock.c:php_pollfd_for
Unexecuted instantiation: ftp_fopen_wrapper.c:php_pollfd_for
Unexecuted instantiation: head.c:php_pollfd_for
Unexecuted instantiation: html.c:php_pollfd_for
Unexecuted instantiation: http_fopen_wrapper.c:php_pollfd_for
Unexecuted instantiation: image.c:php_pollfd_for
Unexecuted instantiation: io_poll.c:php_pollfd_for
Unexecuted instantiation: net.c:php_pollfd_for
Unexecuted instantiation: php_fopen_wrapper.c:php_pollfd_for
Unexecuted instantiation: proc_open.c:php_pollfd_for
Unexecuted instantiation: streamsfuncs.c:php_pollfd_for
Unexecuted instantiation: string.c:php_pollfd_for
Unexecuted instantiation: url.c:php_pollfd_for
Unexecuted instantiation: user_filters.c:php_pollfd_for
Unexecuted instantiation: fopen_wrappers.c:php_pollfd_for
Unexecuted instantiation: main.c:php_pollfd_for
Unexecuted instantiation: network.c:php_pollfd_for
Unexecuted instantiation: php_variables.c:php_pollfd_for
Unexecuted instantiation: php_io.c:php_pollfd_for
Unexecuted instantiation: php_io_copy_linux.c:php_pollfd_for
Unexecuted instantiation: poll_backend_epoll.c:php_pollfd_for
Unexecuted instantiation: poll_backend_eventport.c:php_pollfd_for
Unexecuted instantiation: poll_backend_kqueue.c:php_pollfd_for
Unexecuted instantiation: poll_backend_poll.c:php_pollfd_for
Unexecuted instantiation: poll_core.c:php_pollfd_for
Unexecuted instantiation: poll_fd_table.c:php_pollfd_for
Unexecuted instantiation: poll_handle.c:php_pollfd_for
Unexecuted instantiation: cast.c:php_pollfd_for
Unexecuted instantiation: filter.c:php_pollfd_for
Unexecuted instantiation: plain_wrapper.c:php_pollfd_for
Unexecuted instantiation: stream_errors.c:php_pollfd_for
Unexecuted instantiation: streams.c:php_pollfd_for
Unexecuted instantiation: transports.c:php_pollfd_for
Unexecuted instantiation: userspace.c:php_pollfd_for
Unexecuted instantiation: xp_socket.c:php_pollfd_for
Unexecuted instantiation: internal_functions_cli.c:php_pollfd_for
196
197
static inline int php_pollfd_for_ms(php_socket_t fd, int events, int timeout)
198
0
{
199
0
  php_pollfd p;
200
0
  int n;
201
202
0
  p.fd = fd;
203
0
  p.events = events;
204
0
  p.revents = 0;
205
206
0
  n = php_poll2(&p, 1, timeout);
207
208
0
  if (n > 0) {
209
0
    return p.revents;
210
0
  }
211
212
0
  return n;
213
0
}
Unexecuted instantiation: exif.c:php_pollfd_for_ms
Unexecuted instantiation: hash.c:php_pollfd_for_ms
Unexecuted instantiation: spl_directory.c:php_pollfd_for_ms
Unexecuted instantiation: basic_functions.c:php_pollfd_for_ms
Unexecuted instantiation: dir.c:php_pollfd_for_ms
Unexecuted instantiation: dns.c:php_pollfd_for_ms
Unexecuted instantiation: exec.c:php_pollfd_for_ms
Unexecuted instantiation: file.c:php_pollfd_for_ms
Unexecuted instantiation: filters.c:php_pollfd_for_ms
Unexecuted instantiation: fsock.c:php_pollfd_for_ms
Unexecuted instantiation: ftp_fopen_wrapper.c:php_pollfd_for_ms
Unexecuted instantiation: head.c:php_pollfd_for_ms
Unexecuted instantiation: html.c:php_pollfd_for_ms
Unexecuted instantiation: http_fopen_wrapper.c:php_pollfd_for_ms
Unexecuted instantiation: image.c:php_pollfd_for_ms
Unexecuted instantiation: io_poll.c:php_pollfd_for_ms
Unexecuted instantiation: net.c:php_pollfd_for_ms
Unexecuted instantiation: php_fopen_wrapper.c:php_pollfd_for_ms
Unexecuted instantiation: proc_open.c:php_pollfd_for_ms
Unexecuted instantiation: streamsfuncs.c:php_pollfd_for_ms
Unexecuted instantiation: string.c:php_pollfd_for_ms
Unexecuted instantiation: url.c:php_pollfd_for_ms
Unexecuted instantiation: user_filters.c:php_pollfd_for_ms
Unexecuted instantiation: fopen_wrappers.c:php_pollfd_for_ms
Unexecuted instantiation: main.c:php_pollfd_for_ms
Unexecuted instantiation: network.c:php_pollfd_for_ms
Unexecuted instantiation: php_variables.c:php_pollfd_for_ms
Unexecuted instantiation: php_io.c:php_pollfd_for_ms
Unexecuted instantiation: php_io_copy_linux.c:php_pollfd_for_ms
Unexecuted instantiation: poll_backend_epoll.c:php_pollfd_for_ms
Unexecuted instantiation: poll_backend_eventport.c:php_pollfd_for_ms
Unexecuted instantiation: poll_backend_kqueue.c:php_pollfd_for_ms
Unexecuted instantiation: poll_backend_poll.c:php_pollfd_for_ms
Unexecuted instantiation: poll_core.c:php_pollfd_for_ms
Unexecuted instantiation: poll_fd_table.c:php_pollfd_for_ms
Unexecuted instantiation: poll_handle.c:php_pollfd_for_ms
Unexecuted instantiation: cast.c:php_pollfd_for_ms
Unexecuted instantiation: filter.c:php_pollfd_for_ms
Unexecuted instantiation: plain_wrapper.c:php_pollfd_for_ms
Unexecuted instantiation: stream_errors.c:php_pollfd_for_ms
Unexecuted instantiation: streams.c:php_pollfd_for_ms
Unexecuted instantiation: transports.c:php_pollfd_for_ms
Unexecuted instantiation: userspace.c:php_pollfd_for_ms
Unexecuted instantiation: xp_socket.c:php_pollfd_for_ms
Unexecuted instantiation: internal_functions_cli.c:php_pollfd_for_ms
214
215
/* emit warning and suggestion for unsafe select(2) usage */
216
PHPAPI void _php_emit_fd_setsize_warning(int max_fd);
217
218
static inline bool _php_check_fd_setsize(php_socket_t *max_fd, int setsize)
219
0
{
220
#ifdef PHP_WIN32
221
  (void)(max_fd); // Unused
222
  if (setsize + 1 >= FD_SETSIZE) {
223
    _php_emit_fd_setsize_warning(setsize);
224
    return false;
225
  }
226
#else
227
0
  (void)(setsize); // Unused
228
0
  if (*max_fd >= FD_SETSIZE) {
229
0
    _php_emit_fd_setsize_warning(*max_fd);
230
0
    *max_fd = FD_SETSIZE - 1;
231
0
    return false;
232
0
  }
233
0
#endif
234
0
  return true;
235
0
}
Unexecuted instantiation: exif.c:_php_check_fd_setsize
Unexecuted instantiation: hash.c:_php_check_fd_setsize
Unexecuted instantiation: spl_directory.c:_php_check_fd_setsize
Unexecuted instantiation: basic_functions.c:_php_check_fd_setsize
Unexecuted instantiation: dir.c:_php_check_fd_setsize
Unexecuted instantiation: dns.c:_php_check_fd_setsize
Unexecuted instantiation: exec.c:_php_check_fd_setsize
Unexecuted instantiation: file.c:_php_check_fd_setsize
Unexecuted instantiation: filters.c:_php_check_fd_setsize
Unexecuted instantiation: fsock.c:_php_check_fd_setsize
Unexecuted instantiation: ftp_fopen_wrapper.c:_php_check_fd_setsize
Unexecuted instantiation: head.c:_php_check_fd_setsize
Unexecuted instantiation: html.c:_php_check_fd_setsize
Unexecuted instantiation: http_fopen_wrapper.c:_php_check_fd_setsize
Unexecuted instantiation: image.c:_php_check_fd_setsize
Unexecuted instantiation: io_poll.c:_php_check_fd_setsize
Unexecuted instantiation: net.c:_php_check_fd_setsize
Unexecuted instantiation: php_fopen_wrapper.c:_php_check_fd_setsize
Unexecuted instantiation: proc_open.c:_php_check_fd_setsize
Unexecuted instantiation: streamsfuncs.c:_php_check_fd_setsize
Unexecuted instantiation: string.c:_php_check_fd_setsize
Unexecuted instantiation: url.c:_php_check_fd_setsize
Unexecuted instantiation: user_filters.c:_php_check_fd_setsize
Unexecuted instantiation: fopen_wrappers.c:_php_check_fd_setsize
Unexecuted instantiation: main.c:_php_check_fd_setsize
Unexecuted instantiation: network.c:_php_check_fd_setsize
Unexecuted instantiation: php_variables.c:_php_check_fd_setsize
Unexecuted instantiation: php_io.c:_php_check_fd_setsize
Unexecuted instantiation: php_io_copy_linux.c:_php_check_fd_setsize
Unexecuted instantiation: poll_backend_epoll.c:_php_check_fd_setsize
Unexecuted instantiation: poll_backend_eventport.c:_php_check_fd_setsize
Unexecuted instantiation: poll_backend_kqueue.c:_php_check_fd_setsize
Unexecuted instantiation: poll_backend_poll.c:_php_check_fd_setsize
Unexecuted instantiation: poll_core.c:_php_check_fd_setsize
Unexecuted instantiation: poll_fd_table.c:_php_check_fd_setsize
Unexecuted instantiation: poll_handle.c:_php_check_fd_setsize
Unexecuted instantiation: cast.c:_php_check_fd_setsize
Unexecuted instantiation: filter.c:_php_check_fd_setsize
Unexecuted instantiation: plain_wrapper.c:_php_check_fd_setsize
Unexecuted instantiation: stream_errors.c:_php_check_fd_setsize
Unexecuted instantiation: streams.c:_php_check_fd_setsize
Unexecuted instantiation: transports.c:_php_check_fd_setsize
Unexecuted instantiation: userspace.c:_php_check_fd_setsize
Unexecuted instantiation: xp_socket.c:_php_check_fd_setsize
Unexecuted instantiation: internal_functions_cli.c:_php_check_fd_setsize
236
237
#ifdef PHP_WIN32
238
/* it is safe to FD_SET too many fd's under win32; the macro will simply ignore
239
 * descriptors that go beyond the default FD_SETSIZE */
240
# define PHP_SAFE_FD_SET(fd, set) FD_SET(fd, set)
241
# define PHP_SAFE_FD_CLR(fd, set) FD_CLR(fd, set)
242
# define PHP_SAFE_FD_ISSET(fd, set) FD_ISSET(fd, set)
243
# define PHP_SAFE_MAX_FD(m, n)    _php_check_fd_setsize(&m, n)
244
#else
245
0
# define PHP_SAFE_FD_SET(fd, set) do { if (fd < FD_SETSIZE) FD_SET(fd, set); } while(0)
246
# define PHP_SAFE_FD_CLR(fd, set) do { if (fd < FD_SETSIZE) FD_CLR(fd, set); } while(0)
247
0
# define PHP_SAFE_FD_ISSET(fd, set) ((fd < FD_SETSIZE) && FD_ISSET(fd, set))
248
0
# define PHP_SAFE_MAX_FD(m, n)    _php_check_fd_setsize(&m, n)
249
#endif
250
251
252
16
#define PHP_SOCK_CHUNK_SIZE 8192
253
254
#ifdef HAVE_STRUCT_SOCKADDR_STORAGE
255
typedef struct sockaddr_storage php_sockaddr_storage;
256
#else
257
typedef struct {
258
#ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
259
    unsigned char ss_len;
260
    unsigned char ss_family;
261
#else
262
        unsigned short ss_family;
263
#endif
264
        char info[126];
265
} php_sockaddr_storage;
266
#endif
267
268
0
#define PHP_SOCKVAL_TCP_NODELAY   (1 << 0)
269
0
#define PHP_SOCKVAL_TCP_KEEPIDLE  (1 << 1)
270
0
#define PHP_SOCKVAL_TCP_KEEPCNT   (1 << 2)
271
0
#define PHP_SOCKVAL_TCP_KEEPINTVL (1 << 3)
272
0
#define PHP_SOCKVAL_SO_LINGER     (1 << 4)
273
0
#define PHP_SOCKVAL_SO_RCVBUF     (1 << 5)
274
0
#define PHP_SOCKVAL_SO_SNDBUF     (1 << 6)
275
276
0
#define PHP_SOCKVAL_IS_SET(sockvals, opt) ((sockvals)->mask & (opt))
277
278
typedef struct {
279
  unsigned int mask;
280
  int tcp_nodelay;
281
  int linger;
282
  int rcvbuf;
283
  int sndbuf;
284
  struct {
285
    int keepidle;
286
    int keepcnt;
287
    int keepintvl;
288
  } keepalive;
289
} php_sockvals;
290
291
BEGIN_EXTERN_C()
292
PHPAPI int php_network_getaddresses(const char *host, int socktype, struct sockaddr ***sal, zend_string **error_string);
293
PHPAPI void php_network_freeaddresses(struct sockaddr **sal);
294
295
PHPAPI php_socket_t php_network_connect_socket_to_host_ex(const char *host, unsigned short port,
296
    int socktype, int asynchronous, struct timeval *timeout, zend_string **error_string,
297
    int *error_code, const char *bindto, unsigned short bindport, long sockopts, php_sockvals *sockvals
298
    );
299
300
PHPAPI php_socket_t php_network_connect_socket_to_host(const char *host, unsigned short port,
301
    int socktype, int asynchronous, struct timeval *timeout, zend_string **error_string,
302
    int *error_code, const char *bindto, unsigned short bindport, long sockopts
303
    );
304
305
PHPAPI int php_network_connect_socket(php_socket_t sockfd,
306
    const struct sockaddr *addr,
307
    socklen_t addrlen,
308
    int asynchronous,
309
    struct timeval *timeout,
310
    zend_string **error_string,
311
    int *error_code);
312
313
#define php_connect_nonb(sock, addr, addrlen, timeout) \
314
  php_network_connect_socket((sock), (addr), (addrlen), 0, (timeout), NULL, NULL)
315
316
PHPAPI php_socket_t php_network_bind_socket_to_local_addr_ex(const char *host, unsigned port,
317
    int socktype, long sockopts, php_sockvals *sockvals, zend_string **error_string, int *error_code
318
    );
319
320
PHPAPI php_socket_t php_network_bind_socket_to_local_addr(const char *host, unsigned port,
321
    int socktype, long sockopts, zend_string **error_string, int *error_code
322
    );
323
324
PHPAPI php_socket_t php_network_accept_incoming_ex(php_socket_t srvsock,
325
    zend_string **textaddr,
326
    struct sockaddr **addr,
327
    socklen_t *addrlen,
328
    struct timeval *timeout,
329
    zend_string **error_string,
330
    int *error_code,
331
    php_sockvals *sockvals
332
    );
333
334
PHPAPI php_socket_t php_network_accept_incoming(php_socket_t srvsock,
335
    zend_string **textaddr,
336
    struct sockaddr **addr,
337
    socklen_t *addrlen,
338
    struct timeval *timeout,
339
    zend_string **error_string,
340
    int *error_code,
341
    int tcp_nodelay
342
    );
343
344
PHPAPI int php_network_get_sock_name(php_socket_t sock,
345
    zend_string **textaddr,
346
    struct sockaddr **addr,
347
    socklen_t *addrlen
348
    );
349
350
PHPAPI int php_network_get_peer_name(php_socket_t sock,
351
    zend_string **textaddr,
352
    struct sockaddr **addr,
353
    socklen_t *addrlen
354
    );
355
356
PHPAPI void php_any_addr(int family, php_sockaddr_storage *addr, unsigned short port);
357
PHPAPI socklen_t php_sockaddr_size(php_sockaddr_storage *addr);
358
END_EXTERN_C()
359
360
struct _php_netstream_data_t  {
361
  php_socket_t socket;
362
  bool is_blocked;
363
  bool timeout_event;
364
  struct timeval timeout;
365
  size_t ownsize;
366
};
367
typedef struct _php_netstream_data_t php_netstream_data_t;
368
PHPAPI extern const php_stream_ops php_stream_socket_ops;
369
extern const php_stream_ops php_stream_generic_socket_ops;
370
#define PHP_STREAM_IS_SOCKET  (&php_stream_socket_ops)
371
372
BEGIN_EXTERN_C()
373
PHPAPI php_stream *_php_stream_sock_open_from_socket(php_socket_t socket, const char *persistent_id STREAMS_DC );
374
/* open a connection to a host using php_hostconnect and return a stream */
375
PHPAPI php_stream *_php_stream_sock_open_host(const char *host, unsigned short port,
376
    int socktype, struct timeval *timeout, const char *persistent_id STREAMS_DC);
377
PHPAPI void php_network_populate_name_from_sockaddr(
378
    /* input address */
379
    struct sockaddr *sa, socklen_t sl,
380
    /* output readable address */
381
    zend_string **textaddr,
382
    /* output address */
383
    struct sockaddr **addr,
384
    socklen_t *addrlen
385
    );
386
387
PHPAPI zend_result php_network_parse_network_address_with_port(const char *addr,
388
    size_t addrlen, struct sockaddr *sa, socklen_t *sl);
389
390
PHPAPI struct hostent*  php_network_gethostbyname(const char *name);
391
392
PHPAPI zend_result php_set_sock_blocking(php_socket_t socketd, bool block);
393
END_EXTERN_C()
394
395
0
#define php_stream_sock_open_from_socket(socket, persistent)  _php_stream_sock_open_from_socket((socket), (persistent) STREAMS_CC)
396
0
#define php_stream_sock_open_host(host, port, socktype, timeout, persistent)  _php_stream_sock_open_host((host), (port), (socktype), (timeout), (persistent) STREAMS_CC)
397
398
/* {{{ memory debug */
399
#define php_stream_sock_open_from_socket_rel(socket, persistent)  _php_stream_sock_open_from_socket((socket), (persistent) STREAMS_REL_CC)
400
#define php_stream_sock_open_host_rel(host, port, socktype, timeout, persistent)  _php_stream_sock_open_host((host), (port), (socktype), (timeout), (persistent) STREAMS_REL_CC)
401
#define php_stream_sock_open_unix_rel(path, pathlen, persistent, timeval) _php_stream_sock_open_unix((path), (pathlen), (persistent), (timeval) STREAMS_REL_CC)
402
403
/* }}} */
404
405
#ifndef MAXFQDNLEN
406
0
#define MAXFQDNLEN 255
407
#endif
408
409
#endif /* _PHP_NETWORK_H */