]> git.ipfire.org Git - thirdparty/squid.git/blob - compat/os/mswindows.h
SourceFormat Enforcement
[thirdparty/squid.git] / compat / os / mswindows.h
1 /*
2 * Copyright (C) 1996-2014 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
362 #undef h_errno
363 #define h_errno errno /* we'll set it ourselves */
364
365 #undef FD_CLR
366 #define FD_CLR(fd, set) do { \
367 u_int __i; \
368 SOCKET __sock = _get_osfhandle(fd); \
369 for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count ; __i++) { \
370 if (((fd_set FAR *)(set))->fd_array[__i] == __sock) { \
371 while (__i < ((fd_set FAR *)(set))->fd_count-1) { \
372 ((fd_set FAR *)(set))->fd_array[__i] = \
373 ((fd_set FAR *)(set))->fd_array[__i+1]; \
374 __i++; \
375 } \
376 ((fd_set FAR *)(set))->fd_count--; \
377 break; \
378 } \
379 } \
380 } while(0)
381
382 #undef FD_SET
383 #define FD_SET(fd, set) do { \
384 u_int __i; \
385 SOCKET __sock = _get_osfhandle(fd); \
386 for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count; __i++) { \
387 if (((fd_set FAR *)(set))->fd_array[__i] == (__sock)) { \
388 break; \
389 } \
390 } \
391 if (__i == ((fd_set FAR *)(set))->fd_count) { \
392 if (((fd_set FAR *)(set))->fd_count < FD_SETSIZE) { \
393 ((fd_set FAR *)(set))->fd_array[__i] = (__sock); \
394 ((fd_set FAR *)(set))->fd_count++; \
395 } \
396 } \
397 } while(0)
398
399 #undef FD_ISSET
400 #define FD_ISSET(fd, set) Win32__WSAFDIsSet(fd, (fd_set FAR *)(set))
401
402 /* internal to Microsoft CRTLIB */
403 typedef struct {
404 long osfhnd; /* underlying OS file HANDLE */
405 char osfile; /* attributes of file (e.g., open in text mode?) */
406 char pipech; /* one char buffer for handles opened on pipes */
407 #ifdef _MT
408 int lockinitflag;
409 CRITICAL_SECTION lock;
410 #endif /* _MT */
411 } ioinfo;
412 #define IOINFO_L2E 5
413 #define IOINFO_ARRAY_ELTS (1 << IOINFO_L2E)
414 #define _pioinfo(i) ( __pioinfo[(i) >> IOINFO_L2E] + ((i) & (IOINFO_ARRAY_ELTS - 1)) )
415 #define _osfile(i) ( _pioinfo(i)->osfile )
416 #define _osfhnd(i) ( _pioinfo(i)->osfhnd )
417 #if !defined(FOPEN)
418 #define FOPEN 0x01 /* file handle open */
419 #endif
420
421 #if defined(_MSC_VER)
422 SQUIDCEXTERN _CRTIMP ioinfo * __pioinfo[];
423 SQUIDCEXTERN int __cdecl _free_osfhnd(int);
424 #endif
425
426 #if _SQUID_MINGW_
427 __MINGW_IMPORT ioinfo * __pioinfo[];
428 SQUIDCEXTERN int _free_osfhnd(int);
429 #endif
430
431 SQUIDCEXTERN THREADLOCAL int ws32_result;
432
433 #if defined(__cplusplus)
434
435 inline int
436 close(int fd)
437 {
438 char l_so_type[sizeof(int)];
439 int l_so_type_siz = sizeof(l_so_type);
440 SOCKET sock = _get_osfhandle(fd);
441
442 if (::getsockopt(sock, SOL_SOCKET, SO_TYPE, l_so_type, &l_so_type_siz) == 0) {
443 int result = 0;
444 if (closesocket(sock) == SOCKET_ERROR) {
445 errno = WSAGetLastError();
446 result = 1;
447 }
448 _free_osfhnd(fd);
449 _osfile(fd) = 0;
450 return result;
451 } else
452 return _close(fd);
453 }
454
455 #if defined(_MSC_VER) /* Microsoft C Compiler ONLY */
456
457 #ifndef _S_IREAD
458 #define _S_IREAD 0x0100
459 #endif
460
461 #ifndef _S_IWRITE
462 #define _S_IWRITE 0x0080
463 #endif
464
465 inline int
466 open(const char *filename, int oflag, int pmode = 0)
467 {
468 return _open(filename, oflag, pmode & (_S_IREAD | _S_IWRITE));
469 }
470 #endif
471
472 inline int
473 read(int fd, void * buf, size_t siz)
474 {
475 char l_so_type[sizeof(int)];
476 int l_so_type_siz = sizeof(l_so_type);
477 SOCKET sock = _get_osfhandle(fd);
478
479 if (::getsockopt(sock, SOL_SOCKET, SO_TYPE, l_so_type, &l_so_type_siz) == 0)
480 return ::recv(sock, (char FAR *) buf, (int)siz, 0);
481 else
482 return _read(fd, buf, (unsigned int)siz);
483 }
484
485 inline int
486 write(int fd, const void * buf, size_t siz)
487 {
488 char l_so_type[sizeof(int)];
489 int l_so_type_siz = sizeof(l_so_type);
490 SOCKET sock = _get_osfhandle(fd);
491
492 if (::getsockopt(sock, SOL_SOCKET, SO_TYPE, l_so_type, &l_so_type_siz) == 0)
493 return ::send(sock, (char FAR *) buf, siz, 0);
494 else
495 return _write(fd, buf, siz);
496 }
497
498 inline char *
499 index(const char *s, int c)
500 {
501 return (char *)strchr(s,c);
502 }
503
504 // stdlib <functional> definitions are required before std API redefinitions.
505 #include <functional>
506
507 /** \cond AUTODOCS-IGNORE */
508 namespace Squid
509 {
510 /** \endcond */
511
512 /*
513 * Each of these functions is defined in the Squid namespace so as not to
514 * clash with the winsock.h and winsock2.h definitions.
515 * It is then paired with a #define to cause these wrappers to be used by
516 * the main code instead of those system definitions.
517 *
518 * We do this wrapper in order to:
519 * - cast the parameter types in only one place, and
520 * - record errors in POSIX errno variable, and
521 * - map the FD value used by Squid to the socket handes used by Windows.
522 */
523
524 inline int
525 accept(int s, struct sockaddr * a, socklen_t * l)
526 {
527 SOCKET result;
528 if ((result = ::accept(_get_osfhandle(s), a, l)) == INVALID_SOCKET) {
529 if (WSAEMFILE == (errno = WSAGetLastError()))
530 errno = EMFILE;
531 return -1;
532 } else
533 return _open_osfhandle(result, 0);
534 }
535 #define accept(s,a,l) Squid::accept(s,a,reinterpret_cast<socklen_t*>(l))
536
537 inline int
538 bind(int s, const struct sockaddr * n, socklen_t l)
539 {
540 if (::bind(_get_osfhandle(s),n,l) == SOCKET_ERROR) {
541 errno = WSAGetLastError();
542 return -1;
543 } else
544 return 0;
545 }
546 #define bind(s,n,l) Squid::bind(s,n,l)
547
548 inline int
549 connect(int s, const struct sockaddr * n, socklen_t l)
550 {
551 if (::connect(_get_osfhandle(s),n,l) == SOCKET_ERROR) {
552 if (WSAEMFILE == (errno = WSAGetLastError()))
553 errno = EMFILE;
554 return -1;
555 } else
556 return 0;
557 }
558 #define connect(s,n,l) Squid::connect(s,n,l)
559
560 inline struct hostent *
561 gethostbyname(const char *n) {
562 HOSTENT FAR * result;
563 if ((result = ::gethostbyname(n)) == NULL)
564 errno = WSAGetLastError();
565 return result;
566 }
567 #define gethostbyname(n) Squid::gethostbyname(n)
568
569 inline SERVENT FAR *
570 getservbyname(const char * n, const char * p)
571 {
572 SERVENT FAR * result;
573 if ((result = ::getservbyname(n, p)) == NULL)
574 errno = WSAGetLastError();
575 return result;
576 }
577 #define getservbyname(n,p) Squid::getservbyname(n,p)
578
579 inline HOSTENT FAR *
580 gethostbyaddr(const void * a, size_t l, int t)
581 {
582 HOSTENT FAR * result;
583 if ((result = ::gethostbyaddr((const char*)a, l, t)) == NULL)
584 errno = WSAGetLastError();
585 return result;
586 }
587 #define gethostbyaddr(a,l,t) Squid::gethostbyaddr(a,l,t)
588
589 inline int
590 getsockname(int s, struct sockaddr * n, socklen_t * l)
591 {
592 int i=*l;
593 if (::getsockname(_get_osfhandle(s), n, &i) == SOCKET_ERROR) {
594 errno = WSAGetLastError();
595 return -1;
596 } else
597 return 0;
598 }
599 #define getsockname(s,a,l) Squid::getsockname(s,a,reinterpret_cast<socklen_t*>(l))
600
601 inline int
602 gethostname(char * n, size_t l)
603 {
604 if ((::gethostname(n, l)) == SOCKET_ERROR) {
605 errno = WSAGetLastError();
606 return -1;
607 } else
608 return 0;
609 }
610 #define gethostname(n,l) Squid::gethostname(n,l)
611
612 inline int
613 getsockopt(int s, int l, int o, void * v, socklen_t * n)
614 {
615 Sleep(1);
616 if ((::getsockopt(_get_osfhandle(s), l, o,(char *) v, n)) == SOCKET_ERROR) {
617 errno = WSAGetLastError();
618 return -1;
619 } else
620 return 0;
621 }
622 #define getsockopt(s,l,o,v,n) Squid::getsockopt(s,l,o,v,n)
623
624 /* Simple ioctl() emulation */
625 inline int
626 ioctl(int s, int c, void * a)
627 {
628 if ((::ioctlsocket(_get_osfhandle(s), c, (u_long FAR *)a)) == SOCKET_ERROR) {
629 errno = WSAGetLastError();
630 return -1;
631 } else
632 return 0;
633 }
634 #define ioctl(s,c,a) Squid::ioctl(s,c,a)
635
636 inline int
637 ioctlsocket(int s, long c, u_long FAR * a)
638 {
639 if ((::ioctlsocket(_get_osfhandle(s), c, a)) == SOCKET_ERROR) {
640 errno = WSAGetLastError();
641 return -1;
642 } else
643 return 0;
644 }
645 #define ioctlsocket(s,c,a) Squid::ioctlsocket(s,c,a)
646
647 inline int
648 listen(int s, int b)
649 {
650 if (::listen(_get_osfhandle(s), b) == SOCKET_ERROR) {
651 if (WSAEMFILE == (errno = WSAGetLastError()))
652 errno = EMFILE;
653 return -1;
654 } else
655 return 0;
656 }
657 #define listen(s,b) Squid::listen(s,b)
658
659 inline ssize_t
660 recv(int s, void * b, size_t l, int f)
661 {
662 ssize_t result;
663 if ((result = ::recv(_get_osfhandle(s), (char *)b, l, f)) == SOCKET_ERROR) {
664 errno = WSAGetLastError();
665 return -1;
666 } else
667 return result;
668 }
669 #define recv(s,b,l,f) Squid::recv(s,b,l,f)
670
671 inline ssize_t
672 recvfrom(int s, void * b, size_t l, int f, struct sockaddr * fr, socklen_t * fl)
673 {
674 ssize_t result;
675 int ifl=*fl;
676 if ((result = ::recvfrom(_get_osfhandle(s), (char *)b, l, f, fr, &ifl)) == SOCKET_ERROR) {
677 errno = WSAGetLastError();
678 return -1;
679 } else
680 return result;
681 }
682 #define recvfrom(s,b,l,f,r,n) Squid::recvfrom(s,b,l,f,r,reinterpret_cast<socklen_t*>(n))
683
684 inline int
685 select(int n, fd_set * r, fd_set * w, fd_set * e, struct timeval * t)
686 {
687 int result;
688 if ((result = ::select(n,r,w,e,t)) == SOCKET_ERROR) {
689 errno = WSAGetLastError();
690 return -1;
691 } else
692 return result;
693 }
694 #define select(n,r,w,e,t) Squid::select(n,r,w,e,t)
695
696 inline ssize_t
697 send(int s, const char * b, size_t l, int f)
698 {
699 ssize_t result;
700 if ((result = ::send(_get_osfhandle(s), b, l, f)) == SOCKET_ERROR) {
701 errno = WSAGetLastError();
702 return -1;
703 } else
704 return result;
705 }
706 #define send(s,b,l,f) Squid::send(s,reinterpret_cast<const char*>(b),l,f)
707
708 inline ssize_t
709 sendto(int s, const void * b, size_t l, int f, const struct sockaddr * t, socklen_t tl)
710 {
711 ssize_t result;
712 if ((result = ::sendto(_get_osfhandle(s), (char *)b, l, f, t, tl)) == SOCKET_ERROR) {
713 errno = WSAGetLastError();
714 return -1;
715 } else
716 return result;
717 }
718 #define sendto(a,b,l,f,t,n) Squid::sendto(a,b,l,f,t,n)
719
720 inline int
721 setsockopt(SOCKET s, int l, int o, const void * v, socklen_t n)
722 {
723 SOCKET socket;
724
725 socket = ((s == INVALID_SOCKET) ? s : (SOCKET)_get_osfhandle((int)s));
726
727 if (::setsockopt(socket, l, o, (const char *)v, n) == SOCKET_ERROR) {
728 errno = WSAGetLastError();
729 return -1;
730 } else
731 return 0;
732 }
733 #define setsockopt(s,l,o,v,n) Squid::setsockopt(s,l,o,v,n)
734
735 inline int
736 shutdown(int s, int h)
737 {
738 if (::shutdown(_get_osfhandle(s),h) == SOCKET_ERROR) {
739 errno = WSAGetLastError();
740 return -1;
741 } else
742 return 0;
743 }
744 #define shutdown(s,h) Squid::shutdown(s,h)
745
746 inline int
747 socket(int f, int t, int p)
748 {
749 SOCKET result;
750 if ((result = ::socket(f, t, p)) == INVALID_SOCKET) {
751 if (WSAEMFILE == (errno = WSAGetLastError()))
752 errno = EMFILE;
753 return -1;
754 } else
755 return _open_osfhandle(result, 0);
756 }
757 #define socket(f,t,p) Squid::socket(f,t,p)
758
759 inline int
760 pipe(int pipefd[2])
761 {
762 return _pipe(pipefd,4096,_O_BINARY);
763 }
764 #define pipe(a) Squid::pipe(a)
765
766 inline int
767 WSAAsyncSelect(int s, HWND h, unsigned int w, long e)
768 {
769 if (::WSAAsyncSelect(_get_osfhandle(s), h, w, e) == SOCKET_ERROR) {
770 errno = WSAGetLastError();
771 return -1;
772 } else
773 return 0;
774 }
775 #define WSAAsyncSelect(s,h,w,e) Squid::WSAAsyncSelect(s,h,w,e)
776
777 #undef WSADuplicateSocket
778 inline int
779 WSADuplicateSocket(int s, DWORD n, LPWSAPROTOCOL_INFO l)
780 {
781 #ifdef UNICODE
782 if (::WSADuplicateSocketW(_get_osfhandle(s), n, l) == SOCKET_ERROR) {
783 #else
784 if (::WSADuplicateSocketA(_get_osfhandle(s), n, l) == SOCKET_ERROR) {
785 #endif
786 errno = WSAGetLastError();
787 return -1;
788 } else
789 return 0;
790 }
791 #define WSADuplicateSocket(s,n,l) Squid::WSADuplicateSocket(s,n,l)
792
793 #undef WSASocket
794 inline int
795 WSASocket(int a, int t, int p, LPWSAPROTOCOL_INFO i, GROUP g, DWORD f)
796 {
797 SOCKET result;
798 #ifdef UNICODE
799 if ((result = ::WSASocketW(a, t, p, i, g, f)) == INVALID_SOCKET) {
800 #else
801 if ((result = ::WSASocketA(a, t, p, i, g, f)) == INVALID_SOCKET) {
802 #endif
803 if (WSAEMFILE == (errno = WSAGetLastError()))
804 errno = EMFILE;
805 return -1;
806 } else
807 return _open_osfhandle(result, 0);
808 }
809 #define WSASocket(a,t,p,i,g,f) Squid::WSASocket(a,t,p,i,g,f)
810
811 } /* namespace Squid */
812
813 #else /* #ifdef __cplusplus */
814 #define connect(s,n,l) \
815 (SOCKET_ERROR == connect(_get_osfhandle(s),n,l) ? \
816 (WSAEMFILE == (errno = WSAGetLastError()) ? errno = EMFILE : -1, -1) : 0)
817 #define gethostbyname(n) \
818 (NULL == ((HOSTENT FAR*)(ws32_result = (int)gethostbyname(n))) ? \
819 (errno = WSAGetLastError()), (HOSTENT FAR*)NULL : (HOSTENT FAR*)ws32_result)
820 #define gethostname(n,l) \
821 (SOCKET_ERROR == gethostname(n,l) ? \
822 (errno = WSAGetLastError()), -1 : 0)
823 #define recv(s,b,l,f) \
824 (SOCKET_ERROR == (ws32_result = recv(_get_osfhandle(s),b,l,f)) ? \
825 (errno = WSAGetLastError()), -1 : ws32_result)
826 #define sendto(s,b,l,f,t,tl) \
827 (SOCKET_ERROR == (ws32_result = sendto(_get_osfhandle(s),b,l,f,t,tl)) ? \
828 (errno = WSAGetLastError()), -1 : ws32_result)
829 #define select(n,r,w,e,t) \
830 (SOCKET_ERROR == (ws32_result = select(n,r,w,e,t)) ? \
831 (errno = WSAGetLastError()), -1 : ws32_result)
832 #define socket(f,t,p) \
833 (INVALID_SOCKET == ((SOCKET)(ws32_result = (int)socket(f,t,p))) ? \
834 ((WSAEMFILE == (errno = WSAGetLastError()) ? errno = EMFILE : -1), -1) : \
835 (SOCKET)_open_osfhandle(ws32_result,0))
836 #define write _write /* Needed in util.c */
837 #define open _open /* Needed in win32lib.c */
838 #endif /* #ifdef __cplusplus */
839
840 /* provide missing definitions from resoruce.h */
841 /* NP: sys/resource.h and sys/time.h are apparently order-dependant. */
842 #if HAVE_SYS_TIME_H
843 #include <sys/time.h>
844 #endif
845 #if HAVE_SYS_RESOURCE_H
846 #include <sys/resource.h>
847 #else
848 #define RUSAGE_SELF 0 /* calling process */
849 #define RUSAGE_CHILDREN -1 /* terminated child processes */
850
851 struct rusage {
852 struct timeval ru_utime; /* user time used */
853 struct timeval ru_stime; /* system time used */
854 long ru_maxrss; /* integral max resident set size */
855 long ru_ixrss; /* integral shared text memory size */
856 long ru_idrss; /* integral unshared data size */
857 long ru_isrss; /* integral unshared stack size */
858 long ru_minflt; /* page reclaims */
859 long ru_majflt; /* page faults */
860 long ru_nswap; /* swaps */
861 long ru_inblock; /* block input operations */
862 long ru_oublock; /* block output operations */
863 long ru_msgsnd; /* messages sent */
864 long ru_msgrcv; /* messages received */
865 long ru_nsignals; /* signals received */
866 long ru_nvcsw; /* voluntary context switches */
867 long ru_nivcsw; /* involuntary context switches */
868 };
869 #endif /* HAVE_SYS_RESOURCE_H */
870
871 #undef ACL
872
873 SQUIDCEXTERN int chroot(const char *dirname);
874 SQUIDCEXTERN int kill(pid_t, int);
875 SQUIDCEXTERN struct passwd * getpwnam(char *unused);
876 SQUIDCEXTERN struct group * getgrnam(char *unused);
877
878 static inline uid_t
879 geteuid(void)
880 {
881 return 100;
882 }
883 static inline int
884 seteuid (uid_t euid)
885 {
886 return 0;
887 }
888 static inline uid_t
889 getuid(void)
890 {
891 return 100;
892 }
893 static inline int
894 setuid (uid_t uid)
895 {
896 return 0;
897 }
898 static inline gid_t
899 getegid(void)
900 {
901 return 100;
902 }
903 static inline int
904 setegid (gid_t egid)
905 {
906 return 0;
907 }
908 static inline int
909 getgid(void)
910 {
911 return 100;
912 }
913 static inline int
914 setgid (gid_t gid)
915 {
916 return 0;
917 }
918
919 /* for some reason autoconf misdetects getpagesize.. */
920 #if HAVE_GETPAGESIZE && _SQUID_MINGW_
921 #undef HAVE_GETPAGESIZE
922 #endif
923
924 #if !HAVE_GETPAGESIZE
925 /* And now we define a compatibility layer */
926 size_t getpagesize();
927 #define HAVE_GETPAGESIZE 2
928 #endif
929
930 SQUIDCEXTERN void WIN32_ExceptionHandlerInit(void);
931 SQUIDCEXTERN int Win32__WSAFDIsSet(int fd, fd_set* set);
932 SQUIDCEXTERN DWORD WIN32_IpAddrChangeMonitorInit();
933
934 /* gcc doesn't recognize the Windows native 64 bit formatting tags causing
935 * the compile fail, so we must disable the check on native Windows.
936 */
937 #if __GNUC__
938 #define PRINTF_FORMAT_ARG1
939 #define PRINTF_FORMAT_ARG2
940 #define PRINTF_FORMAT_ARG3
941 #endif
942
943 /* XXX: the logic around this is a bit warped:
944 * we #define ACL unconditionally at the top of this file,
945 * then #undef ACL unconditionally hafway down,
946 * then here re-define ACL to the same value as at the top,
947 * then include windows.h and #undef ACL again.
948 */
949 #ifndef ACL
950 #define ACL WindowsACL
951 #define _MSWIN_ACL_WAS_NOT_DEFINED 1
952 #endif
953 #include <windows.h>
954 #if _MSWIN_ACL_WAS_NOT_DEFINED
955 #undef ACL
956 #undef _MSWIN_ACL_WAS_NOT_DEFINED
957 #endif
958
959 #if !HAVE_SYSLOG
960 /* syslog compatibility layer derives from git */
961 #define LOG_PID 0x01
962 #define LOG_EMERG 0
963 #define LOG_ALERT 1
964 #define LOG_CRIT 2
965 #define LOG_ERR 3
966 #define LOG_WARNING 4
967 #define LOG_NOTICE 5
968 #define LOG_INFO 6
969 #define LOG_DEBUG 7
970 #define LOG_DAEMON (3<<3)
971
972 void openlog(const char *ident, int logopt, int facility);
973 void syslog(int priority, const char *fmt, ...);
974 #endif
975
976 #if _SQUID_MINGW_
977 /* MinGW missing bits from sys/wait.h */
978 /* A status looks like:
979 * <2 bytes info> <2 bytes code>
980 *
981 * <code> == 0, child has exited, info is the exit value
982 * <code> == 1..7e, child has exited, info is the signal number.
983 * <code> == 7f, child has stopped, info was the signal number.
984 * <code> == 80, there was a core dump.
985 */
986 #define WIFEXITED(w) (((w) & 0xff) == 0)
987 #define WIFSIGNALED(w) (((w) & 0x7f) > 0 && (((w) & 0x7f) < 0x7f))
988 #define WIFSTOPPED(w) (((w) & 0xff) == 0x7f)
989 #define WEXITSTATUS(w) (((w) >> 8) & 0xff)
990 #define WTERMSIG(w) ((w) & 0x7f)
991 #define WSTOPSIG WEXITSTATUS
992 #endif
993
994 /* prototypes */
995 void WIN32_maperror(unsigned long WIN32_oserrno);
996
997 #endif /* _SQUID_WINDOWS_ */
998 #endif /* SQUID_OS_MSWINDOWS_H */
999