]> git.ipfire.org Git - thirdparty/squid.git/blob - compat/os/mswindows.h
Bug 5073: Compile error: index was not declared in this scope (#740)
[thirdparty/squid.git] / compat / os / mswindows.h
1 /*
2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 /*
10 * AUTHOR: Andrey Shorin <tolsty@tushino.com>
11 * AUTHOR: Guido Serassio <serassio@squid-cache.org>
12 */
13
14 #ifndef SQUID_OS_MSWINDOWS_H
15 #define SQUID_OS_MSWINDOWS_H
16
17 #if _SQUID_WINDOWS_
18
19 /****************************************************************************
20 *--------------------------------------------------------------------------*
21 * DO *NOT* MAKE ANY CHANGES below here unless you know what you're doing...*
22 *--------------------------------------------------------------------------*
23 ****************************************************************************/
24
25 /* we target Windows XP and later - some API are missing otherwise */
26 #if _SQUID_MINGW_
27 #if WINVER < 0x0501
28 #undef WINVER
29 #define WINVER 0x0501
30 #undef _WIN32_WINNT
31 #define _WIN32_WINNT WINVER
32 #endif
33 #endif /* _SQUID_MINGW_ */
34
35 #include "compat/initgroups.h"
36
37 #if HAVE_DIRECT_H
38 #include <direct.h>
39 #endif
40 #if HAVE_FCNTL_H
41 #include <fcntl.h>
42 #endif /* HAVE_FCNTL_H */
43 #if HAVE_STRING_H
44 #include <string.h>
45 #endif /* HAVE_FCNTL_H */
46 #if HAVE_SYS_STAT_H
47 #include <sys/stat.h>
48 #endif /* HAVE_SYS_STAT_H */
49
50 #define ACL WindowsACL
51 #if defined(_MSC_VER) /* Microsoft C Compiler ONLY */
52 #if _MSC_VER == 1400
53 #define _CRT_SECURE_NO_DEPRECATE
54 #pragma warning( disable : 4290 )
55 #pragma warning( disable : 4996 )
56 #endif
57 #endif
58
59 /* Some MinGW version defines min() and max() as macros
60 causing the fail of the build process. The following
61 #define will disable that definition
62 */
63 #if defined(__GNUC__) && !NOMINMAX
64 #define NOMINMAX
65 #endif
66
67 /// some builds of MinGW do not define IPV6_V6ONLY socket option
68 #if !defined(IPV6_V6ONLY)
69 #define IPV6_V6ONLY 27
70 #endif
71
72 #if defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64
73 # define __USE_FILE_OFFSET64 1
74 #endif
75
76 #if defined(_MSC_VER) /* Microsoft C Compiler ONLY */
77
78 #if defined(__USE_FILE_OFFSET64)
79 typedef uint64_t ino_t;
80 #else
81 typedef unsigned long ino_t;
82 #endif
83
84 #define INT64_MAX _I64_MAX
85 #define INT64_MIN _I64_MIN
86
87 #include "default_config_file.h"
88 /* Some tricks for MS Compilers */
89 #define __STDC__ 1
90 #define THREADLOCAL __declspec(thread)
91
92 #elif defined(__GNUC__) /* gcc environment */
93
94 #define THREADLOCAL __attribute__((section(".tls")))
95
96 #endif /* _MSC_VER */
97
98 /* ONLY Microsoft C Compiler needs these: */
99 #if defined(_MSC_VER)
100 #define alloca _alloca
101 #define fileno _fileno
102 #define fstat _fstati64
103 #define lseek _lseeki64
104 #define memccpy _memccpy
105 #define mktemp _mktemp
106 #define snprintf _snprintf
107 #define stat _stati64
108 #define strcasecmp _stricmp
109 #define strlwr _strlwr
110 #define strncasecmp _strnicmp
111 #define tempnam _tempnam
112 #define vsnprintf _vsnprintf
113 #endif
114
115 /* Microsoft C Compiler and CygWin need these. MinGW does not */
116 #if defined(_MSC_VER) || _SQUID_CYGWIN_
117 SQUIDCEXTERN int WIN32_ftruncate(int fd, off_t size);
118 #define ftruncate WIN32_ftruncate
119 SQUIDCEXTERN int WIN32_truncate(const char *pathname, off_t length);
120 #define truncate WIN32_truncate
121 #define chdir _chdir
122 #endif
123
124 /* All three compiler systems need these: */
125 #define dup _dup
126 #define dup2 _dup2
127 #define fdopen _fdopen
128 #define getcwd _getcwd
129 #define getpid _getpid
130 #define mkdir(p,F) mkdir((p))
131 #define pclose _pclose
132 #define popen _popen
133 #define putenv _putenv
134 #define setmode _setmode
135 #define sleep(t) Sleep((t)*1000)
136 #define umask _umask
137 #define unlink _unlink
138
139 #ifndef O_RDONLY
140 #define O_RDONLY _O_RDONLY
141 #endif
142 #ifndef O_WRONLY
143 #define O_WRONLY _O_WRONLY
144 #endif
145 #ifndef O_RDWR
146 #define O_RDWR _O_RDWR
147 #endif
148 #ifndef O_APPEND
149 #define O_APPEND _O_APPEND
150 #endif
151 #ifndef O_CREAT
152 #define O_CREAT _O_CREAT
153 #endif
154 #ifndef O_TRUNC
155 #define O_TRUNC _O_TRUNC
156 #endif
157 #ifndef O_EXCL
158 #define O_EXCL _O_EXCL
159 #endif
160 #ifndef O_TEXT
161 #define O_TEXT _O_TEXT
162 #endif
163 #ifndef O_BINARY
164 #define O_BINARY _O_BINARY
165 #endif
166 #ifndef O_RAW
167 #define O_RAW _O_BINARY
168 #endif
169 #ifndef O_TEMPORARY
170 #define O_TEMPORARY _O_TEMPORARY
171 #endif
172 #ifndef O_NOINHERIT
173 #define O_NOINHERIT _O_NOINHERIT
174 #endif
175 #ifndef O_SEQUENTIAL
176 #define O_SEQUENTIAL _O_SEQUENTIAL
177 #endif
178 #ifndef O_RANDOM
179 #define O_RANDOM _O_RANDOM
180 #endif
181 #ifndef O_NDELAY
182 #define O_NDELAY 0
183 #endif
184
185 #ifndef S_IFMT
186 #define S_IFMT _S_IFMT
187 #endif
188 #ifndef S_IFDIR
189 #define S_IFDIR _S_IFDIR
190 #endif
191 #ifndef S_IFCHR
192 #define S_IFCHR _S_IFCHR
193 #endif
194 #ifndef S_IFREG
195 #define S_IFREG _S_IFREG
196 #endif
197 #ifndef S_IREAD
198 #define S_IREAD _S_IREAD
199 #endif
200 #ifndef S_IWRITE
201 #define S_IWRITE _S_IWRITE
202 #endif
203 #ifndef S_IEXEC
204 #define S_IEXEC _S_IEXEC
205 #endif
206 #ifndef S_IRWXO
207 #define S_IRWXO 007
208 #endif
209
210 /* There are no group protection bits like these in Windows.
211 * The values are used by umask() to remove permissions so
212 * mapping to user permission bits will break file accesses.
213 * Map group permissions to harmless zero instead.
214 */
215 #ifndef S_IXGRP
216 #define S_IXGRP 0
217 #endif
218 #ifndef S_IWGRP
219 #define S_IWGRP 0
220 #endif
221 #ifndef S_IWOTH
222 #define S_IWOTH 0
223 #endif
224 #ifndef S_IXOTH
225 #define S_IXOTH 0
226 #endif
227
228 #if defined(_MSC_VER)
229 #define S_ISDIR(m) (((m) & _S_IFDIR) == _S_IFDIR)
230 #endif
231
232 #define SIGHUP 1 /* hangup */
233 #define SIGKILL 9 /* kill (cannot be caught or ignored) */
234 #define SIGBUS 10 /* bus error */
235 #define SIGPIPE 13 /* write on a pipe with no one to read it */
236 #define SIGCHLD 20 /* to parent on child stop or exit */
237 #define SIGUSR1 30 /* user defined signal 1 */
238 #define SIGUSR2 31 /* user defined signal 2 */
239
240 #if _SQUID_MINGW_
241 typedef unsigned char boolean;
242 typedef unsigned char u_char;
243 typedef unsigned int u_int;
244 #endif
245
246 #if defined(_MSC_VER)
247 typedef int uid_t;
248 typedef int gid_t;
249 #endif
250
251 struct passwd {
252 char *pw_name; /* user name */
253 char *pw_passwd; /* user password */
254 uid_t pw_uid; /* user id */
255 gid_t pw_gid; /* group id */
256 char *pw_gecos; /* real name */
257 char *pw_dir; /* home directory */
258 char *pw_shell; /* shell program */
259 };
260
261 struct group {
262 char *gr_name; /* group name */
263 char *gr_passwd; /* group password */
264 gid_t gr_gid; /* group id */
265 char **gr_mem; /* group members */
266 };
267
268 #if !HAVE_GETTIMEOFDAY
269 struct timezone {
270 int tz_minuteswest; /* minutes west of Greenwich */
271 int tz_dsttime; /* type of dst correction */
272 };
273 #endif
274
275 #define CHANGE_FD_SETSIZE 1
276 #if CHANGE_FD_SETSIZE && SQUID_MAXFD > DEFAULT_FD_SETSIZE
277 #define FD_SETSIZE SQUID_MAXFD
278 #endif
279
280 #include <process.h>
281 #include <errno.h>
282 #if HAVE_WINSOCK2_H
283 #include <winsock2.h>
284 #elif HAVE_WINSOCK_H
285 #include <winsock.h>
286 #endif
287
288 #if !_SQUID_CYGWIN_
289 #undef IN_ADDR
290 #include <ws2tcpip.h>
291 #endif
292
293 #if (EAI_NODATA == EAI_NONAME)
294 #undef EAI_NODATA
295 #define EAI_NODATA WSANO_DATA
296 #endif
297
298 #if defined(_MSC_VER)
299 /* Hack to suppress compiler warnings on FD_SET() & FD_CLR() */
300 #pragma warning (push)
301 #pragma warning (disable:4142)
302 #endif
303
304 /* prevent inclusion of wingdi.h */
305 #define NOGDI
306 #include <ws2spi.h>
307
308 #if defined(_MSC_VER)
309 #pragma warning (pop)
310 #endif
311
312 #include <io.h>
313
314 typedef char * caddr_t;
315
316 #ifndef _PATH_DEVNULL
317 #define _PATH_DEVNULL "NUL"
318 #endif
319
320 #undef FD_CLOSE
321 #undef FD_OPEN
322 #undef FD_READ
323 #undef FD_WRITE
324
325 #ifndef EISCONN
326 #define EISCONN WSAEISCONN
327 #endif
328 #ifndef EINPROGRESS
329 #define EINPROGRESS WSAEINPROGRESS
330 #endif
331 #ifndef EWOULDBLOCK
332 #define EWOULDBLOCK WSAEWOULDBLOCK
333 #endif
334 #ifndef EALREADY
335 #define EALREADY WSAEALREADY
336 #endif
337 #ifndef ETIMEDOUT
338 #define ETIMEDOUT WSAETIMEDOUT
339 #endif
340 #ifndef ECONNREFUSED
341 #define ECONNREFUSED WSAECONNREFUSED
342 #endif
343 #ifndef ECONNRESET
344 #define ECONNRESET WSAECONNRESET
345 #endif
346 #ifndef ENOTCONN
347 #define ENOTCONN WSAENOTCONN
348 #endif
349 #ifndef ERESTART
350 #define ERESTART WSATRY_AGAIN
351 #endif
352 #ifndef EAFNOSUPPORT
353 #define EAFNOSUPPORT WSAEAFNOSUPPORT
354 #endif
355 #ifndef ENETUNREACH
356 #define ENETUNREACH WSAENETUNREACH
357 #endif
358 #ifndef ENOTSUP
359 #define ENOTSUP WSAEOPNOTSUPP
360 #endif
361 #ifndef ECONNABORTED
362 #define ECONNABORTED WSAECONNABORTED
363 #endif
364
365 #undef h_errno
366 #define h_errno errno /* we'll set it ourselves */
367
368 #undef FD_CLR
369 #define FD_CLR(fd, set) do { \
370 u_int __i; \
371 SOCKET __sock = _get_osfhandle(fd); \
372 for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count ; __i++) { \
373 if (((fd_set FAR *)(set))->fd_array[__i] == __sock) { \
374 while (__i < ((fd_set FAR *)(set))->fd_count-1) { \
375 ((fd_set FAR *)(set))->fd_array[__i] = \
376 ((fd_set FAR *)(set))->fd_array[__i+1]; \
377 __i++; \
378 } \
379 ((fd_set FAR *)(set))->fd_count--; \
380 break; \
381 } \
382 } \
383 } while(0)
384
385 #undef FD_SET
386 #define FD_SET(fd, set) do { \
387 u_int __i; \
388 SOCKET __sock = _get_osfhandle(fd); \
389 for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count; __i++) { \
390 if (((fd_set FAR *)(set))->fd_array[__i] == (__sock)) { \
391 break; \
392 } \
393 } \
394 if (__i == ((fd_set FAR *)(set))->fd_count) { \
395 if (((fd_set FAR *)(set))->fd_count < FD_SETSIZE) { \
396 ((fd_set FAR *)(set))->fd_array[__i] = (__sock); \
397 ((fd_set FAR *)(set))->fd_count++; \
398 } \
399 } \
400 } while(0)
401
402 #undef FD_ISSET
403 #define FD_ISSET(fd, set) Win32__WSAFDIsSet(fd, (fd_set FAR *)(set))
404
405 /* internal to Microsoft CRTLIB */
406 typedef struct {
407 long osfhnd; /* underlying OS file HANDLE */
408 char osfile; /* attributes of file (e.g., open in text mode?) */
409 char pipech; /* one char buffer for handles opened on pipes */
410 #ifdef _MT
411 int lockinitflag;
412 CRITICAL_SECTION lock;
413 #endif /* _MT */
414 } ioinfo;
415 #define IOINFO_L2E 5
416 #define IOINFO_ARRAY_ELTS (1 << IOINFO_L2E)
417 #define _pioinfo(i) ( __pioinfo[(i) >> IOINFO_L2E] + ((i) & (IOINFO_ARRAY_ELTS - 1)) )
418 #define _osfile(i) ( _pioinfo(i)->osfile )
419 #define _osfhnd(i) ( _pioinfo(i)->osfhnd )
420 #if !defined(FOPEN)
421 #define FOPEN 0x01 /* file handle open */
422 #endif
423
424 #if defined(_MSC_VER)
425 SQUIDCEXTERN _CRTIMP ioinfo * __pioinfo[];
426 SQUIDCEXTERN int __cdecl _free_osfhnd(int);
427 #endif
428
429 #if _SQUID_MINGW_
430 __MINGW_IMPORT ioinfo * __pioinfo[];
431 SQUIDCEXTERN int _free_osfhnd(int);
432 #endif
433
434 SQUIDCEXTERN THREADLOCAL int ws32_result;
435
436 #if defined(__cplusplus)
437
438 inline int
439 close(int fd)
440 {
441 char l_so_type[sizeof(int)];
442 int l_so_type_siz = sizeof(l_so_type);
443 SOCKET sock = _get_osfhandle(fd);
444
445 if (::getsockopt(sock, SOL_SOCKET, SO_TYPE, l_so_type, &l_so_type_siz) == 0) {
446 int result = 0;
447 if (closesocket(sock) == SOCKET_ERROR) {
448 errno = WSAGetLastError();
449 result = 1;
450 }
451 _free_osfhnd(fd);
452 _osfile(fd) = 0;
453 return result;
454 } else
455 return _close(fd);
456 }
457
458 #if defined(_MSC_VER) /* Microsoft C Compiler ONLY */
459
460 #ifndef _S_IREAD
461 #define _S_IREAD 0x0100
462 #endif
463
464 #ifndef _S_IWRITE
465 #define _S_IWRITE 0x0080
466 #endif
467
468 inline int
469 open(const char *filename, int oflag, int pmode = 0)
470 {
471 return _open(filename, oflag, pmode & (_S_IREAD | _S_IWRITE));
472 }
473 #endif
474
475 inline int
476 read(int fd, void * buf, size_t siz)
477 {
478 char l_so_type[sizeof(int)];
479 int l_so_type_siz = sizeof(l_so_type);
480 SOCKET sock = _get_osfhandle(fd);
481
482 if (::getsockopt(sock, SOL_SOCKET, SO_TYPE, l_so_type, &l_so_type_siz) == 0)
483 return ::recv(sock, (char FAR *) buf, (int)siz, 0);
484 else
485 return _read(fd, buf, (unsigned int)siz);
486 }
487
488 inline int
489 write(int fd, const void * buf, size_t siz)
490 {
491 char l_so_type[sizeof(int)];
492 int l_so_type_siz = sizeof(l_so_type);
493 SOCKET sock = _get_osfhandle(fd);
494
495 if (::getsockopt(sock, SOL_SOCKET, SO_TYPE, l_so_type, &l_so_type_siz) == 0)
496 return ::send(sock, (char FAR *) buf, siz, 0);
497 else
498 return _write(fd, buf, siz);
499 }
500
501 // stdlib <functional> definitions are required before std API redefinitions.
502 #include <functional>
503
504 /** \cond AUTODOCS-IGNORE */
505 namespace Squid
506 {
507 /** \endcond */
508
509 /*
510 * Each of these functions is defined in the Squid namespace so as not to
511 * clash with the winsock.h and winsock2.h definitions.
512 * It is then paired with a #define to cause these wrappers to be used by
513 * the main code instead of those system definitions.
514 *
515 * We do this wrapper in order to:
516 * - cast the parameter types in only one place, and
517 * - record errors in POSIX errno variable, and
518 * - map the FD value used by Squid to the socket handes used by Windows.
519 */
520
521 inline int
522 accept(int s, struct sockaddr * a, socklen_t * l)
523 {
524 SOCKET result;
525 if ((result = ::accept(_get_osfhandle(s), a, l)) == INVALID_SOCKET) {
526 if (WSAEMFILE == (errno = WSAGetLastError()))
527 errno = EMFILE;
528 return -1;
529 } else
530 return _open_osfhandle(result, 0);
531 }
532 #define accept(s,a,l) Squid::accept(s,a,reinterpret_cast<socklen_t*>(l))
533
534 inline int
535 bind(int s, const struct sockaddr * n, socklen_t l)
536 {
537 if (::bind(_get_osfhandle(s),n,l) == SOCKET_ERROR) {
538 errno = WSAGetLastError();
539 return -1;
540 } else
541 return 0;
542 }
543 #define bind(s,n,l) Squid::bind(s,n,l)
544
545 inline int
546 connect(int s, const struct sockaddr * n, socklen_t l)
547 {
548 if (::connect(_get_osfhandle(s),n,l) == SOCKET_ERROR) {
549 if (WSAEMFILE == (errno = WSAGetLastError()))
550 errno = EMFILE;
551 return -1;
552 } else
553 return 0;
554 }
555 #define connect(s,n,l) Squid::connect(s,n,l)
556
557 inline struct hostent *
558 gethostbyname(const char *n) {
559 HOSTENT FAR * result;
560 if ((result = ::gethostbyname(n)) == NULL)
561 errno = WSAGetLastError();
562 return result;
563 }
564 #define gethostbyname(n) Squid::gethostbyname(n)
565
566 inline SERVENT FAR *
567 getservbyname(const char * n, const char * p)
568 {
569 SERVENT FAR * result;
570 if ((result = ::getservbyname(n, p)) == NULL)
571 errno = WSAGetLastError();
572 return result;
573 }
574 #define getservbyname(n,p) Squid::getservbyname(n,p)
575
576 inline HOSTENT FAR *
577 gethostbyaddr(const void * a, size_t l, int t)
578 {
579 HOSTENT FAR * result;
580 if ((result = ::gethostbyaddr((const char*)a, l, t)) == NULL)
581 errno = WSAGetLastError();
582 return result;
583 }
584 #define gethostbyaddr(a,l,t) Squid::gethostbyaddr(a,l,t)
585
586 inline int
587 getsockname(int s, struct sockaddr * n, socklen_t * l)
588 {
589 int i=*l;
590 if (::getsockname(_get_osfhandle(s), n, &i) == SOCKET_ERROR) {
591 errno = WSAGetLastError();
592 return -1;
593 } else
594 return 0;
595 }
596 #define getsockname(s,a,l) Squid::getsockname(s,a,reinterpret_cast<socklen_t*>(l))
597
598 inline int
599 gethostname(char * n, size_t l)
600 {
601 if ((::gethostname(n, l)) == SOCKET_ERROR) {
602 errno = WSAGetLastError();
603 return -1;
604 } else
605 return 0;
606 }
607 #define gethostname(n,l) Squid::gethostname(n,l)
608
609 inline int
610 getsockopt(int s, int l, int o, void * v, socklen_t * n)
611 {
612 Sleep(1);
613 if ((::getsockopt(_get_osfhandle(s), l, o,(char *) v, n)) == SOCKET_ERROR) {
614 errno = WSAGetLastError();
615 return -1;
616 } else
617 return 0;
618 }
619 #define getsockopt(s,l,o,v,n) Squid::getsockopt(s,l,o,v,n)
620
621 inline char *
622 inet_ntop(int af, const void *src, char *dst, size_t size)
623 {
624 #if HAVE_DECL_INETNTOPA
625 return (char*)InetNtopA(af, const_cast<void*>(src), dst, size);
626 #else
627 return ::inet_ntop(af, src, dst, size);
628 #endif
629 }
630 #define inet_ntop(a,s,d,l) Squid::inet_ntop(a,s,d,l)
631
632 inline char *
633 inet_pton(int af, const void *src, char *dst)
634 {
635 #if HAVE_DECL_INETPTONA
636 return (char*)InetPtonA(af, const_cast<void*>(src), dst);
637 #else
638 return ::inet_pton(af, src, dst);
639 #endif
640 }
641 #define inet_pton(a,s,d) Squid::inet_pton(a,s,d)
642
643 /* Simple ioctl() emulation */
644 inline int
645 ioctl(int s, int c, void * a)
646 {
647 if ((::ioctlsocket(_get_osfhandle(s), c, (u_long FAR *)a)) == SOCKET_ERROR) {
648 errno = WSAGetLastError();
649 return -1;
650 } else
651 return 0;
652 }
653 #define ioctl(s,c,a) Squid::ioctl(s,c,a)
654
655 inline int
656 ioctlsocket(int s, long c, u_long FAR * a)
657 {
658 if ((::ioctlsocket(_get_osfhandle(s), c, a)) == SOCKET_ERROR) {
659 errno = WSAGetLastError();
660 return -1;
661 } else
662 return 0;
663 }
664 #define ioctlsocket(s,c,a) Squid::ioctlsocket(s,c,a)
665
666 inline int
667 listen(int s, int b)
668 {
669 if (::listen(_get_osfhandle(s), b) == SOCKET_ERROR) {
670 if (WSAEMFILE == (errno = WSAGetLastError()))
671 errno = EMFILE;
672 return -1;
673 } else
674 return 0;
675 }
676 #define listen(s,b) Squid::listen(s,b)
677
678 inline ssize_t
679 recv(int s, void * b, size_t l, int f)
680 {
681 ssize_t result;
682 if ((result = ::recv(_get_osfhandle(s), (char *)b, l, f)) == SOCKET_ERROR) {
683 errno = WSAGetLastError();
684 return -1;
685 } else
686 return result;
687 }
688 #define recv(s,b,l,f) Squid::recv(s,b,l,f)
689
690 inline ssize_t
691 recvfrom(int s, void * b, size_t l, int f, struct sockaddr * fr, socklen_t * fl)
692 {
693 ssize_t result;
694 int ifl=*fl;
695 if ((result = ::recvfrom(_get_osfhandle(s), (char *)b, l, f, fr, &ifl)) == SOCKET_ERROR) {
696 errno = WSAGetLastError();
697 return -1;
698 } else
699 return result;
700 }
701 #define recvfrom(s,b,l,f,r,n) Squid::recvfrom(s,b,l,f,r,reinterpret_cast<socklen_t*>(n))
702
703 inline int
704 select(int n, fd_set * r, fd_set * w, fd_set * e, struct timeval * t)
705 {
706 int result;
707 if ((result = ::select(n,r,w,e,t)) == SOCKET_ERROR) {
708 errno = WSAGetLastError();
709 return -1;
710 } else
711 return result;
712 }
713 #define select(n,r,w,e,t) Squid::select(n,r,w,e,t)
714
715 inline ssize_t
716 send(int s, const char * b, size_t l, int f)
717 {
718 ssize_t result;
719 if ((result = ::send(_get_osfhandle(s), b, l, f)) == SOCKET_ERROR) {
720 errno = WSAGetLastError();
721 return -1;
722 } else
723 return result;
724 }
725 #define send(s,b,l,f) Squid::send(s,reinterpret_cast<const char*>(b),l,f)
726
727 inline ssize_t
728 sendto(int s, const void * b, size_t l, int f, const struct sockaddr * t, socklen_t tl)
729 {
730 ssize_t result;
731 if ((result = ::sendto(_get_osfhandle(s), (char *)b, l, f, t, tl)) == SOCKET_ERROR) {
732 errno = WSAGetLastError();
733 return -1;
734 } else
735 return result;
736 }
737 #define sendto(a,b,l,f,t,n) Squid::sendto(a,b,l,f,t,n)
738
739 inline int
740 setsockopt(SOCKET s, int l, int o, const void * v, socklen_t n)
741 {
742 SOCKET socket;
743
744 socket = ((s == INVALID_SOCKET) ? s : (SOCKET)_get_osfhandle((int)s));
745
746 if (::setsockopt(socket, l, o, (const char *)v, n) == SOCKET_ERROR) {
747 errno = WSAGetLastError();
748 return -1;
749 } else
750 return 0;
751 }
752 #define setsockopt(s,l,o,v,n) Squid::setsockopt(s,l,o,v,n)
753
754 inline int
755 shutdown(int s, int h)
756 {
757 if (::shutdown(_get_osfhandle(s),h) == SOCKET_ERROR) {
758 errno = WSAGetLastError();
759 return -1;
760 } else
761 return 0;
762 }
763 #define shutdown(s,h) Squid::shutdown(s,h)
764
765 inline int
766 socket(int f, int t, int p)
767 {
768 SOCKET result;
769 if ((result = ::socket(f, t, p)) == INVALID_SOCKET) {
770 if (WSAEMFILE == (errno = WSAGetLastError()))
771 errno = EMFILE;
772 return -1;
773 } else
774 return _open_osfhandle(result, 0);
775 }
776 #define socket(f,t,p) Squid::socket(f,t,p)
777
778 inline int
779 pipe(int pipefd[2])
780 {
781 return _pipe(pipefd,4096,_O_BINARY);
782 }
783 #define pipe(a) Squid::pipe(a)
784
785 inline int
786 WSAAsyncSelect(int s, HWND h, unsigned int w, long e)
787 {
788 if (::WSAAsyncSelect(_get_osfhandle(s), h, w, e) == SOCKET_ERROR) {
789 errno = WSAGetLastError();
790 return -1;
791 } else
792 return 0;
793 }
794 #define WSAAsyncSelect(s,h,w,e) Squid::WSAAsyncSelect(s,h,w,e)
795
796 #undef WSADuplicateSocket
797 inline int
798 WSADuplicateSocket(int s, DWORD n, LPWSAPROTOCOL_INFO l)
799 {
800 #ifdef UNICODE
801 if (::WSADuplicateSocketW(_get_osfhandle(s), n, l) == SOCKET_ERROR) {
802 #else
803 if (::WSADuplicateSocketA(_get_osfhandle(s), n, l) == SOCKET_ERROR) {
804 #endif
805 errno = WSAGetLastError();
806 return -1;
807 } else
808 return 0;
809 }
810 #define WSADuplicateSocket(s,n,l) Squid::WSADuplicateSocket(s,n,l)
811
812 #undef WSASocket
813 inline int
814 WSASocket(int a, int t, int p, LPWSAPROTOCOL_INFO i, GROUP g, DWORD f)
815 {
816 SOCKET result;
817 #ifdef UNICODE
818 if ((result = ::WSASocketW(a, t, p, i, g, f)) == INVALID_SOCKET) {
819 #else
820 if ((result = ::WSASocketA(a, t, p, i, g, f)) == INVALID_SOCKET) {
821 #endif
822 if (WSAEMFILE == (errno = WSAGetLastError()))
823 errno = EMFILE;
824 return -1;
825 } else
826 return _open_osfhandle(result, 0);
827 }
828 #define WSASocket(a,t,p,i,g,f) Squid::WSASocket(a,t,p,i,g,f)
829
830 } /* namespace Squid */
831
832 #else /* #ifdef __cplusplus */
833 #define connect(s,n,l) \
834 (SOCKET_ERROR == connect(_get_osfhandle(s),n,l) ? \
835 (WSAEMFILE == (errno = WSAGetLastError()) ? errno = EMFILE : -1, -1) : 0)
836 #define gethostbyname(n) \
837 (NULL == ((HOSTENT FAR*)(ws32_result = (int)gethostbyname(n))) ? \
838 (errno = WSAGetLastError()), (HOSTENT FAR*)NULL : (HOSTENT FAR*)ws32_result)
839 #define gethostname(n,l) \
840 (SOCKET_ERROR == gethostname(n,l) ? \
841 (errno = WSAGetLastError()), -1 : 0)
842 #define recv(s,b,l,f) \
843 (SOCKET_ERROR == (ws32_result = recv(_get_osfhandle(s),b,l,f)) ? \
844 (errno = WSAGetLastError()), -1 : ws32_result)
845 #define sendto(s,b,l,f,t,tl) \
846 (SOCKET_ERROR == (ws32_result = sendto(_get_osfhandle(s),b,l,f,t,tl)) ? \
847 (errno = WSAGetLastError()), -1 : ws32_result)
848 #define select(n,r,w,e,t) \
849 (SOCKET_ERROR == (ws32_result = select(n,r,w,e,t)) ? \
850 (errno = WSAGetLastError()), -1 : ws32_result)
851 #define socket(f,t,p) \
852 (INVALID_SOCKET == ((SOCKET)(ws32_result = (int)socket(f,t,p))) ? \
853 ((WSAEMFILE == (errno = WSAGetLastError()) ? errno = EMFILE : -1), -1) : \
854 (SOCKET)_open_osfhandle(ws32_result,0))
855 #define write _write /* Needed in util.c */
856 #define open _open /* Needed in win32lib.c */
857 #endif /* #ifdef __cplusplus */
858
859 /* provide missing definitions from resoruce.h */
860 /* NP: sys/resource.h and sys/time.h are apparently order-dependant. */
861 #if HAVE_SYS_TIME_H
862 #include <sys/time.h>
863 #endif
864 #if HAVE_SYS_RESOURCE_H
865 #include <sys/resource.h>
866 #else
867 #define RUSAGE_SELF 0 /* calling process */
868 #define RUSAGE_CHILDREN -1 /* terminated child processes */
869
870 struct rusage {
871 struct timeval ru_utime; /* user time used */
872 struct timeval ru_stime; /* system time used */
873 long ru_maxrss; /* integral max resident set size */
874 long ru_ixrss; /* integral shared text memory size */
875 long ru_idrss; /* integral unshared data size */
876 long ru_isrss; /* integral unshared stack size */
877 long ru_minflt; /* page reclaims */
878 long ru_majflt; /* page faults */
879 long ru_nswap; /* swaps */
880 long ru_inblock; /* block input operations */
881 long ru_oublock; /* block output operations */
882 long ru_msgsnd; /* messages sent */
883 long ru_msgrcv; /* messages received */
884 long ru_nsignals; /* signals received */
885 long ru_nvcsw; /* voluntary context switches */
886 long ru_nivcsw; /* involuntary context switches */
887 };
888 #endif /* HAVE_SYS_RESOURCE_H */
889
890 #undef ACL
891
892 SQUIDCEXTERN int chroot(const char *dirname);
893 SQUIDCEXTERN int kill(pid_t, int);
894 SQUIDCEXTERN struct passwd * getpwnam(char *unused);
895 SQUIDCEXTERN struct group * getgrnam(char *unused);
896
897 static inline uid_t
898 geteuid(void)
899 {
900 return 100;
901 }
902 static inline int
903 seteuid (uid_t euid)
904 {
905 return 0;
906 }
907 static inline uid_t
908 getuid(void)
909 {
910 return 100;
911 }
912 static inline int
913 setuid (uid_t uid)
914 {
915 return 0;
916 }
917 static inline gid_t
918 getegid(void)
919 {
920 return 100;
921 }
922 static inline int
923 setegid (gid_t egid)
924 {
925 return 0;
926 }
927 static inline int
928 getgid(void)
929 {
930 return 100;
931 }
932 static inline int
933 setgid (gid_t gid)
934 {
935 return 0;
936 }
937
938 /* for some reason autoconf misdetects getpagesize.. */
939 #if HAVE_GETPAGESIZE && _SQUID_MINGW_
940 #undef HAVE_GETPAGESIZE
941 #endif
942
943 #if !HAVE_GETPAGESIZE
944 /* And now we define a compatibility layer */
945 size_t getpagesize();
946 #define HAVE_GETPAGESIZE 2
947 #endif
948
949 SQUIDCEXTERN void WIN32_ExceptionHandlerInit(void);
950 SQUIDCEXTERN int Win32__WSAFDIsSet(int fd, fd_set* set);
951 SQUIDCEXTERN DWORD WIN32_IpAddrChangeMonitorInit();
952
953 /* gcc doesn't recognize the Windows native 64 bit formatting tags causing
954 * the compile fail, so we must disable the check on native Windows.
955 */
956 #if __GNUC__
957 #define PRINTF_FORMAT_ARG1
958 #define PRINTF_FORMAT_ARG2
959 #define PRINTF_FORMAT_ARG3
960 #endif
961
962 /* XXX: the logic around this is a bit warped:
963 * we #define ACL unconditionally at the top of this file,
964 * then #undef ACL unconditionally hafway down,
965 * then here re-define ACL to the same value as at the top,
966 * then include windows.h and #undef ACL again.
967 */
968 #ifndef ACL
969 #define ACL WindowsACL
970 #define _MSWIN_ACL_WAS_NOT_DEFINED 1
971 #endif
972 #include <windows.h>
973 #if _MSWIN_ACL_WAS_NOT_DEFINED
974 #undef ACL
975 #undef _MSWIN_ACL_WAS_NOT_DEFINED
976 #endif
977
978 #if !HAVE_SYSLOG
979 /* syslog compatibility layer derives from git */
980 #define LOG_PID 0x01
981 #define LOG_EMERG 0
982 #define LOG_ALERT 1
983 #define LOG_CRIT 2
984 #define LOG_ERR 3
985 #define LOG_WARNING 4
986 #define LOG_NOTICE 5
987 #define LOG_INFO 6
988 #define LOG_DEBUG 7
989 #define LOG_DAEMON (3<<3)
990
991 void openlog(const char *ident, int logopt, int facility);
992 void syslog(int priority, const char *fmt, ...);
993 #endif
994
995 #if _SQUID_MINGW_
996 /* MinGW missing bits from sys/wait.h */
997 /* A status looks like:
998 * <2 bytes info> <2 bytes code>
999 *
1000 * <code> == 0, child has exited, info is the exit value
1001 * <code> == 1..7e, child has exited, info is the signal number.
1002 * <code> == 7f, child has stopped, info was the signal number.
1003 * <code> == 80, there was a core dump.
1004 */
1005 #define WIFEXITED(w) (((w) & 0xff) == 0)
1006 #define WIFSIGNALED(w) (((w) & 0x7f) > 0 && (((w) & 0x7f) < 0x7f))
1007 #define WIFSTOPPED(w) (((w) & 0xff) == 0x7f)
1008 #define WEXITSTATUS(w) (((w) >> 8) & 0xff)
1009 #define WTERMSIG(w) ((w) & 0x7f)
1010 #define WSTOPSIG WEXITSTATUS
1011 #endif
1012
1013 /* prototypes */
1014 void WIN32_maperror(unsigned long WIN32_oserrno);
1015
1016 #endif /* _SQUID_WINDOWS_ */
1017 #endif /* SQUID_OS_MSWINDOWS_H */
1018