3 * (c) 1995 Microsoft Corporation. All rights reserved.
4 * Developed by hip communications inc., http://info.hip.com/info/
5 * Portions (c) 1993 Intergraph Corporation. All rights reserved.
7 * You may distribute under the terms of either the GNU General Public
8 * License or the Artistic License, as specified in the README file.
11 #define WIN32IO_IS_STDIO
12 #define WIN32SCK_IS_STDSCK
13 #define WIN32_LEAN_AND_MEAN
14 #define PERLIO_NOT_STDIO 0
25 #include <sys/socket.h>
31 /* thanks to Beverly Brown (beverly@datacube.com) */
32 #ifdef USE_SOCKETS_AS_HANDLES
33 # define OPEN_SOCKET(x) win32_open_osfhandle(x,O_RDWR|O_BINARY)
34 # define TO_SOCKET(x) _get_osfhandle(x)
36 # define OPEN_SOCKET(x) (x)
37 # define TO_SOCKET(x) (x)
38 #endif /* USE_SOCKETS_AS_HANDLES */
40 #define StartSockets() \
46 #define SOCKET_TEST(x, y) \
50 errno = WSAGetLastError(); \
53 #define SOCKET_TEST_ERROR(x) SOCKET_TEST(x, SOCKET_ERROR)
55 static struct servent* win32_savecopyservent(struct servent*d,
59 static int wsock_started = 0;
72 unsigned short version;
77 * initalize the winsock interface and insure that it is
81 if(ret = WSAStartup(version, &retdata))
82 Perl_croak_nocontext("Unable to locate winsock library!\n");
83 if(retdata.wVersion != version)
84 Perl_croak_nocontext("Could not find version 2.0 of winsock dll\n");
86 /* atexit((void (*)(void)) EndSockets); */
90 #ifndef USE_SOCKETS_AS_HANDLES
93 my_fdopen(int fd, char *mode)
97 int optlen = sizeof(sockbuf);
101 return(fdopen(fd, mode));
103 retval = getsockopt((SOCKET)fd, SOL_SOCKET, SO_TYPE, sockbuf, &optlen);
104 if(retval == SOCKET_ERROR && WSAGetLastError() == WSAENOTSOCK) {
105 return(fdopen(fd, mode));
109 * If we get here, then fd is actually a socket.
111 Newxz(fp, 1, FILE); /* XXX leak, good thing this code isn't used */
125 #endif /* USE_SOCKETS_AS_HANDLES */
129 win32_htonl(u_long hostlong)
132 return htonl(hostlong);
136 win32_htons(u_short hostshort)
139 return htons(hostshort);
143 win32_ntohl(u_long netlong)
146 return ntohl(netlong);
150 win32_ntohs(u_short netshort)
153 return ntohs(netshort);
159 win32_accept(SOCKET s, struct sockaddr *addr, int *addrlen)
163 SOCKET_TEST((r = accept(TO_SOCKET(s), addr, addrlen)), INVALID_SOCKET);
164 return OPEN_SOCKET(r);
168 win32_bind(SOCKET s, const struct sockaddr *addr, int addrlen)
172 SOCKET_TEST_ERROR(r = bind(TO_SOCKET(s), addr, addrlen));
177 win32_connect(SOCKET s, const struct sockaddr *addr, int addrlen)
181 SOCKET_TEST_ERROR(r = connect(TO_SOCKET(s), addr, addrlen));
187 win32_getpeername(SOCKET s, struct sockaddr *addr, int *addrlen)
191 SOCKET_TEST_ERROR(r = getpeername(TO_SOCKET(s), addr, addrlen));
196 win32_getsockname(SOCKET s, struct sockaddr *addr, int *addrlen)
200 SOCKET_TEST_ERROR(r = getsockname(TO_SOCKET(s), addr, addrlen));
205 win32_getsockopt(SOCKET s, int level, int optname, char *optval, int *optlen)
209 SOCKET_TEST_ERROR(r = getsockopt(TO_SOCKET(s), level, optname, optval, optlen));
214 win32_ioctlsocket(SOCKET s, long cmd, u_long *argp)
218 SOCKET_TEST_ERROR(r = ioctlsocket(TO_SOCKET(s), cmd, argp));
223 win32_listen(SOCKET s, int backlog)
227 SOCKET_TEST_ERROR(r = listen(TO_SOCKET(s), backlog));
232 win32_recv(SOCKET s, char *buf, int len, int flags)
236 SOCKET_TEST_ERROR(r = recv(TO_SOCKET(s), buf, len, flags));
241 win32_recvfrom(SOCKET s, char *buf, int len, int flags, struct sockaddr *from, int *fromlen)
244 int frombufsize = *fromlen;
246 SOCKET_TEST_ERROR(r = recvfrom(TO_SOCKET(s), buf, len, flags, from, fromlen));
247 /* Winsock's recvfrom() only returns a valid 'from' when the socket
248 * is connectionless. Perl expects a valid 'from' for all types
249 * of sockets, so go the extra mile.
251 if (r != SOCKET_ERROR && frombufsize == *fromlen)
252 (void)win32_getpeername(s, from, fromlen);
256 /* select contributed by Vincent R. Slyngstad (vrs@ibeam.intel.com) */
258 win32_select(int nfds, Perl_fd_set* rd, Perl_fd_set* wr, Perl_fd_set* ex, const struct timeval* timeout)
261 #ifdef USE_SOCKETS_AS_HANDLES
263 int i, fd, save_errno = errno;
264 FD_SET nrd, nwr, nex, *prd, *pwr, *pex;
266 /* winsock seems incapable of dealing with all three null fd_sets,
267 * so do the (millisecond) sleep as a special case
269 if (!(rd || wr || ex)) {
271 Sleep(timeout->tv_sec * 1000 +
272 timeout->tv_usec / 1000); /* do the best we can */
278 PERL_FD_ZERO(&dummy);
280 rd = &dummy, prd = NULL;
284 wr = &dummy, pwr = NULL;
288 ex = &dummy, pex = NULL;
295 for (i = 0; i < nfds; i++) {
297 if (PERL_FD_ISSET(i,rd))
298 FD_SET((unsigned)fd, &nrd);
299 if (PERL_FD_ISSET(i,wr))
300 FD_SET((unsigned)fd, &nwr);
301 if (PERL_FD_ISSET(i,ex))
302 FD_SET((unsigned)fd, &nex);
306 SOCKET_TEST_ERROR(r = select(nfds, prd, pwr, pex, timeout));
309 for (i = 0; i < nfds; i++) {
311 if (PERL_FD_ISSET(i,rd) && !FD_ISSET(fd, &nrd))
313 if (PERL_FD_ISSET(i,wr) && !FD_ISSET(fd, &nwr))
315 if (PERL_FD_ISSET(i,ex) && !FD_ISSET(fd, &nex))
320 SOCKET_TEST_ERROR(r = select(nfds, rd, wr, ex, timeout));
326 win32_send(SOCKET s, const char *buf, int len, int flags)
330 SOCKET_TEST_ERROR(r = send(TO_SOCKET(s), buf, len, flags));
335 win32_sendto(SOCKET s, const char *buf, int len, int flags,
336 const struct sockaddr *to, int tolen)
340 SOCKET_TEST_ERROR(r = sendto(TO_SOCKET(s), buf, len, flags, to, tolen));
345 win32_setsockopt(SOCKET s, int level, int optname, const char *optval, int optlen)
349 SOCKET_TEST_ERROR(r = setsockopt(TO_SOCKET(s), level, optname, optval, optlen));
354 win32_shutdown(SOCKET s, int how)
358 SOCKET_TEST_ERROR(r = shutdown(TO_SOCKET(s), how));
363 win32_closesocket(SOCKET s)
367 SOCKET_TEST_ERROR(r = closesocket(TO_SOCKET(s)));
371 #ifdef USE_SOCKETS_AS_HANDLES
372 #define WIN32_OPEN_SOCKET(af, type, protocol) open_ifs_socket(af, type, protocol)
375 convert_proto_info_w2a(WSAPROTOCOL_INFOW *in, WSAPROTOCOL_INFOA *out)
377 Copy(in, out, 1, WSAPROTOCOL_INFOA);
378 wcstombs(out->szProtocol, in->szProtocol, sizeof(out->szProtocol));
382 open_ifs_socket(int af, int type, int protocol)
386 unsigned long proto_buffers_len = 0;
388 SOCKET out = INVALID_SOCKET;
390 if ((s = PerlEnv_getenv("PERL_ALLOW_NON_IFS_LSP")) && atoi(s))
391 return WSASocket(af, type, protocol, NULL, 0, 0);
393 if (WSCEnumProtocols(NULL, NULL, &proto_buffers_len, &error_code) == SOCKET_ERROR
394 && error_code == WSAENOBUFS)
396 WSAPROTOCOL_INFOW *proto_buffers;
397 int protocols_available = 0;
399 Newx(proto_buffers, proto_buffers_len / sizeof(WSAPROTOCOL_INFOW),
402 if ((protocols_available = WSCEnumProtocols(NULL, proto_buffers,
403 &proto_buffers_len, &error_code)) != SOCKET_ERROR)
406 for (i = 0; i < protocols_available; i++)
408 WSAPROTOCOL_INFOA proto_info;
410 if ((af != AF_UNSPEC && af != proto_buffers[i].iAddressFamily)
411 || (type != proto_buffers[i].iSocketType)
412 || (protocol != 0 && proto_buffers[i].iProtocol != 0 &&
413 protocol != proto_buffers[i].iProtocol))
416 if ((proto_buffers[i].dwServiceFlags1 & XP1_IFS_HANDLES) == 0)
419 convert_proto_info_w2a(&(proto_buffers[i]), &proto_info);
421 out = WSASocket(af, type, protocol, &proto_info, 0, 0);
426 Safefree(proto_buffers);
433 #define WIN32_OPEN_SOCKET(af, type, protocol) socket(af, type, protocol)
437 win32_socket(int af, int type, int protocol)
441 #ifndef USE_SOCKETS_AS_HANDLES
442 SOCKET_TEST(s = socket(af, type, protocol), INVALID_SOCKET);
446 if((s = WIN32_OPEN_SOCKET(af, type, protocol)) == INVALID_SOCKET)
447 errno = WSAGetLastError();
450 #endif /* USE_SOCKETS_AS_HANDLES */
456 * close RTL fd while respecting sockets
457 * added as temporary measure until PerlIO has real
465 if (!wsock_started) /* No WinSock? */
466 return(close(fd)); /* Then not a socket. */
467 osf = TO_SOCKET(fd);/* Get it now before it's gone! */
470 err = closesocket(osf);
472 #if defined(USE_FIXED_OSFHANDLE) || defined(PERL_MSVCRT_READFIX)
473 _set_osfhnd(fd, INVALID_HANDLE_VALUE);
475 (void)close(fd); /* handle already closed, ignore error */
478 else if (err == SOCKET_ERROR) {
479 err = WSAGetLastError();
480 if (err != WSAENOTSOCK) {
495 if (!wsock_started) /* No WinSock? */
496 return(fclose(pf)); /* Then not a socket. */
497 osf = TO_SOCKET(win32_fileno(pf));/* Get it now before it's gone! */
501 err = closesocket(osf);
503 #if defined(USE_FIXED_OSFHANDLE) || defined(PERL_MSVCRT_READFIX)
504 _set_osfhnd(win32_fileno(pf), INVALID_HANDLE_VALUE);
506 (void)fclose(pf); /* handle already closed, ignore error */
509 else if (err == SOCKET_ERROR) {
510 err = WSAGetLastError();
511 if (err != WSAENOTSOCK) {
523 my_fstat(int fd, Stat_t *sbufptr)
525 /* This fixes a bug in fstat() on Windows 9x. fstat() uses the
526 * GetFileType() win32 syscall, which will fail on Windows 9x.
527 * So if we recognize a socket on Windows 9x, we return the
528 * same results as on Windows NT/2000.
529 * XXX this should be extended further to set S_IFSOCK on
533 if (!wsock_started || IsWinNT()) {
534 #if defined(WIN64) || defined(USE_LARGE_FILES)
535 #if defined(__BORLANDC__) /* buk */
536 return win32_fstat(fd, sbufptr );
538 return _fstati64(fd, sbufptr);
541 return fstat(fd, sbufptr);
548 int optlen = sizeof(sockbuf);
551 retval = getsockopt((SOCKET)osf, SOL_SOCKET, SO_TYPE, sockbuf, &optlen);
552 if (retval != SOCKET_ERROR || WSAGetLastError() != WSAENOTSOCK) {
553 #if defined(__BORLANDC__)&&(__BORLANDC__<=0x520)
554 sbufptr->st_mode = S_IFIFO;
556 sbufptr->st_mode = _S_IFIFO;
558 sbufptr->st_rdev = sbufptr->st_dev = (dev_t)fd;
559 sbufptr->st_nlink = 1;
560 sbufptr->st_uid = sbufptr->st_gid = sbufptr->st_ino = 0;
561 sbufptr->st_atime = sbufptr->st_mtime = sbufptr->st_ctime = 0;
562 sbufptr->st_size = (Off_t)0;
566 #if defined(WIN64) || defined(USE_LARGE_FILES)
567 #if defined(__BORLANDC__) /* buk */
568 return win32_fstat(fd, sbufptr );
570 return _fstati64(fd, sbufptr);
573 return fstat(fd, sbufptr);
578 win32_gethostbyaddr(const char *addr, int len, int type)
582 SOCKET_TEST(r = gethostbyaddr(addr, len, type), NULL);
587 win32_gethostbyname(const char *name)
591 SOCKET_TEST(r = gethostbyname(name), NULL);
596 win32_gethostname(char *name, int len)
600 SOCKET_TEST_ERROR(r = gethostname(name, len));
605 win32_getprotobyname(const char *name)
609 SOCKET_TEST(r = getprotobyname(name), NULL);
614 win32_getprotobynumber(int num)
618 SOCKET_TEST(r = getprotobynumber(num), NULL);
623 win32_getservbyname(const char *name, const char *proto)
628 SOCKET_TEST(r = getservbyname(name, proto), NULL);
630 r = win32_savecopyservent(&w32_servent, r, proto);
636 win32_getservbyport(int port, const char *proto)
641 SOCKET_TEST(r = getservbyport(port, proto), NULL);
643 r = win32_savecopyservent(&w32_servent, r, proto);
649 win32_ioctl(int i, unsigned int u, char *data)
655 if (!wsock_started) {
656 Perl_croak_nocontext("ioctl implemented only on sockets");
660 /* mauke says using memcpy avoids alignment issues */
661 memcpy(&u_long_arg, data, sizeof u_long_arg);
662 retval = ioctlsocket(TO_SOCKET(i), (long)u, &u_long_arg);
663 memcpy(data, &u_long_arg, sizeof u_long_arg);
665 if (retval == SOCKET_ERROR) {
666 if (WSAGetLastError() == WSAENOTSOCK) {
667 Perl_croak_nocontext("ioctl implemented only on sockets");
670 errno = WSAGetLastError();
676 win32_inet_ntoa(struct in_addr in)
679 return inet_ntoa(in);
683 win32_inet_addr(const char FAR *cp)
686 return inet_addr(cp);
697 Perl_croak_nocontext("endhostent not implemented!\n");
704 Perl_croak_nocontext("endnetent not implemented!\n");
711 Perl_croak_nocontext("endprotoent not implemented!\n");
718 Perl_croak_nocontext("endservent not implemented!\n");
723 win32_getnetent(void)
726 Perl_croak_nocontext("getnetent not implemented!\n");
727 return (struct netent *) NULL;
731 win32_getnetbyname(char *name)
734 Perl_croak_nocontext("getnetbyname not implemented!\n");
735 return (struct netent *)NULL;
739 win32_getnetbyaddr(long net, int type)
742 Perl_croak_nocontext("getnetbyaddr not implemented!\n");
743 return (struct netent *)NULL;
747 win32_getprotoent(void)
750 Perl_croak_nocontext("getprotoent not implemented!\n");
751 return (struct protoent *) NULL;
755 win32_getservent(void)
758 Perl_croak_nocontext("getservent not implemented!\n");
759 return (struct servent *) NULL;
763 win32_sethostent(int stayopen)
766 Perl_croak_nocontext("sethostent not implemented!\n");
771 win32_setnetent(int stayopen)
774 Perl_croak_nocontext("setnetent not implemented!\n");
779 win32_setprotoent(int stayopen)
782 Perl_croak_nocontext("setprotoent not implemented!\n");
787 win32_setservent(int stayopen)
790 Perl_croak_nocontext("setservent not implemented!\n");
793 static struct servent*
794 win32_savecopyservent(struct servent*d, struct servent*s, const char *proto)
796 d->s_name = s->s_name;
797 d->s_aliases = s->s_aliases;
798 d->s_port = s->s_port;
799 #ifndef __BORLANDC__ /* Buggy on Win95 and WinNT-with-Borland-WSOCK */
800 if (!IsWin95() && s->s_proto && strlen(s->s_proto))
801 d->s_proto = s->s_proto;
804 if (proto && strlen(proto))
805 d->s_proto = (char *)proto;