1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919
|
/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: J.Wielemaker@vu.nl
WWW: http://www.swi-prolog.org
Copyright (c) 2000-2022, University of Amsterdam
VU University Amsterdam
CWI, Amsterdam
SWI-Prolog Solutions b.v.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#define O_DEBUG 1
#include <SWI-Prolog.h>
#include <config.h>
#if defined(__MINGW32__)
#define WINVER 0x0501
#include <ws2tcpip.h>
#endif
#include "nonblockio.h"
#include <SWI-Stream.h>
#include "clib.h"
#include "error.h"
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <sys/types.h>
#include <assert.h>
#include <string.h>
#ifdef __WINDOWS__
#include <malloc.h>
#endif
#ifdef __WINDOWS__
#define GET_ERRNO WSAGetLastError()
#define GET_H_ERRNO WSAGetLastError()
#else
#define GET_ERRNO errno
#define GET_H_ERRNO h_errno
#endif
#ifdef HAVE_SYS_UN_H
#include <sys/un.h>
#else
/* Windows does not have the header, but does have AF_UNIX? */
#undef AF_UNIX
#endif
#if !defined(HAVE_IP_MREQN) && defined(__APPLE__)
/* 10.6 doesn't provide this */
#define ip_mreqn ip_mreq
#endif
static atom_t ATOM_reuseaddr; /* "reuseaddr" */
static atom_t ATOM_bindtodevice; /* "bindtodevice" */
static atom_t ATOM_broadcast; /* "broadcast" */
static atom_t ATOM_nodelay; /* "nodelay" */
static atom_t ATOM_dispatch; /* "dispatch" */
static atom_t ATOM_encoding; /* "encoding" */
static atom_t ATOM_nonblock; /* "nonblock" */
static atom_t ATOM_infinite; /* "infinite" */
static atom_t ATOM_as; /* "as" */
static atom_t ATOM_atom; /* "atom" */
static atom_t ATOM_string; /* "string" */
static atom_t ATOM_codes; /* "codes" */
static atom_t ATOM_term; /* "term" */
static atom_t ATOM_max_message_size; /* "message_size" */
static atom_t ATOM_file_no; /* "file_no" */
static atom_t ATOM_ip_add_membership; /* "ip_add_membership" */
static atom_t ATOM_ip_drop_membership; /* "ip_drop_membership" */
static atom_t ATOM_sndbuf; /* "sndbuf" */
static atom_t ATOM_af_unix; /* "af_unix" */
static functor_t FUNCTOR_socket1; /* $socket(Id) */
static int get_socket_from_stream(term_t t, IOSTREAM **s, nbio_sock_t *sp);
/*******************************
* SYMBOL *
*******************************/
static void
acquire_socket_symbol(atom_t symbol)
{ nbio_sock_t s = *(nbio_sock_t*)PL_blob_data(symbol, NULL, NULL);
nbio_set_symbol(s, symbol);
}
static int
release_socket_symbol(atom_t symbol)
{ nbio_sock_t s = *(nbio_sock_t*)PL_blob_data(symbol, NULL, NULL);
nbio_closesocket(s); /* no-op if already done */
freeSocket(s);
return TRUE;
}
static int
compare_socket_symbols(atom_t a, atom_t b)
{ nbio_sock_t sa = *(nbio_sock_t*)PL_blob_data(a, NULL, NULL);
nbio_sock_t sb = *(nbio_sock_t*)PL_blob_data(b, NULL, NULL);
return ( sa > sb ? 1 :
sa < sb ? -1 : 0
);
}
static int
write_socket_symbol(IOSTREAM *s, atom_t symbol, int flags)
{ nbio_sock_t sock = *(nbio_sock_t*)PL_blob_data(symbol, NULL, NULL);
Sfprintf(s, "<socket>(%p)", sock);
return TRUE;
}
static PL_blob_t socket_blob =
{ PL_BLOB_MAGIC,
0,
"socket",
release_socket_symbol,
compare_socket_symbols,
write_socket_symbol,
acquire_socket_symbol
};
static int
tcp_unify_socket(term_t handle, nbio_sock_t socket)
{ if ( PL_unify_blob(handle, &socket, sizeof(socket), &socket_blob) )
return TRUE;
if ( !PL_is_variable(handle) )
return PL_uninstantiation_error(handle);
return FALSE; /* (resource) error */
}
static int
tcp_get_socket(term_t handle, nbio_sock_t *sp)
{ PL_blob_t *type;
void *data;
if ( PL_get_blob(handle, &data, NULL, &type) && type == &socket_blob)
{ nbio_sock_t s = *(nbio_sock_t*)data;
if ( !is_nbio_socket(s) )
return PL_existence_error("socket", handle);
*sp = s;
return TRUE;
}
if ( get_socket_from_stream(handle, NULL, sp) )
return TRUE;
return PL_type_error("socket", handle);
}
/*******************************
* CONVERSION *
*******************************/
static foreign_t
pl_host_to_address(term_t Host, term_t Ip)
{ struct in_addr ip;
char *host_name;
if ( PL_get_atom_chars(Host, &host_name) )
{ struct addrinfo hints;
struct addrinfo *res;
int rc;
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_INET;
if ( (rc=getaddrinfo(host_name, NULL, &hints, &res)) == 0 )
{ int rc;
switch( res->ai_family )
{ case AF_INET:
{ struct sockaddr_in *addr = (struct sockaddr_in*)res->ai_addr;
rc = nbio_unify_ip4(Ip, ntohl(addr->sin_addr.s_addr));
break;
}
case AF_INET6:
{ rc = PL_warning("tcp_host_to_address/2: IPv6 address not supported");
break;
}
default:
assert(0);
rc = FALSE;
}
freeaddrinfo(res);
return rc;
} else
{ return nbio_error(rc, TCP_GAI_ERRNO);
}
} else if ( nbio_get_ip(Ip, &ip) )
{ struct hostent *host;
if ( (host = gethostbyaddr((char *)&ip, sizeof(ip), AF_INET)) )
return PL_unify_atom_chars(Host, host->h_name);
else
return nbio_error(GET_H_ERRNO, TCP_HERRNO);
}
return FALSE;
}
#ifndef HAVE_IP_MREQN
#define ip_mreqn ip_mreq
#define imr_address imr_interface
#endif
static foreign_t
pl_setopt(term_t Socket, term_t opt)
{ nbio_sock_t socket;
atom_t a;
size_t arity;
if ( !tcp_get_socket(Socket, &socket) )
return FALSE;
if ( PL_get_name_arity(opt, &a, &arity) )
{ if ( a == ATOM_reuseaddr && arity == 0 )
{ if ( nbio_setopt(socket, TCP_REUSEADDR, TRUE) == 0 )
return TRUE;
return FALSE;
} else if ( a == ATOM_bindtodevice && arity == 1)
{ term_t a = PL_new_term_ref();
char *dev;
int rc;
_PL_get_arg(1, opt, a);
if ( !PL_get_chars(a, &dev, CVT_ATOM|CVT_EXCEPTION) )
return FALSE;
if ( (rc=nbio_setopt(socket, SCK_BINDTODEVICE, dev)) == 0 )
return TRUE;
if ( rc == -2 )
goto not_implemented;
return FALSE;
} else if ( a == ATOM_nodelay && arity <= 1 )
{ int enable, rc;
if ( arity == 0 )
{ enable = TRUE;
} else /*if ( arity == 1 )*/
{ term_t a = PL_new_term_ref();
_PL_get_arg(1, opt, a);
if ( !PL_get_bool(a, &enable) )
return pl_error(NULL, 0, NULL, ERR_DOMAIN, a, "boolean");
}
if ( (rc=nbio_setopt(socket, TCP_NO_DELAY, enable) == 0) )
return TRUE;
if ( rc == -2 )
goto not_implemented;
return FALSE;
} else if ( a == ATOM_broadcast && arity == 0 )
{ if ( nbio_setopt(socket, UDP_BROADCAST, TRUE) == 0 )
return TRUE;
return FALSE;
} else if ( a == ATOM_dispatch && arity == 1 )
{ int val;
term_t a1 = PL_new_term_ref();
if ( PL_get_arg(1, opt, a1) && PL_get_bool(a1, &val) )
{ if ( nbio_setopt(socket, TCP_DISPATCH, val) == 0 )
return TRUE;
return FALSE;
}
} else if ( a == ATOM_nonblock && arity == 0 )
{ if ( nbio_setopt(socket, TCP_NONBLOCK) == 0 )
return TRUE;
return FALSE;
#ifdef IP_ADD_MEMBERSHIP
} else if ( (a == ATOM_ip_add_membership || a == ATOM_ip_drop_membership)
&& arity >= 1 )
{ struct ip_mreqn mreq;
term_t arg = PL_new_term_ref();
int opname = (a == ATOM_ip_add_membership) ? IP_ADD_MEMBERSHIP
: IP_DROP_MEMBERSHIP;
_PL_get_arg(1, opt, arg);
memset(&mreq, 0, sizeof(mreq));
if ( !nbio_get_ip(arg, &mreq.imr_multiaddr) )
return PL_domain_error("ip", arg);
if ( arity >= 2 )
{ _PL_get_arg(2, opt, arg);
if ( !nbio_get_ip(arg, &mreq.imr_address) )
return PL_domain_error("ip", arg);
} else
mreq.imr_address.s_addr = htonl(INADDR_ANY);
#ifdef HAVE_IP_MREQN
if ( arity == 3 )
{ _PL_get_arg(3, opt, arg);
if ( !PL_get_integer(arg, &mreq.imr_ifindex) )
return FALSE;
}
#endif
if ( arity > 3 )
goto not_implemented;
if ( setsockopt(nbio_fd(socket), IPPROTO_IP, opname,
(void*)&mreq, sizeof(mreq)) < 0 )
return nbio_error(GET_ERRNO, TCP_ERRNO);
else
return TRUE;
#endif
} else if ( a == ATOM_sndbuf && arity == 1 )
{ int bufsize;
int rc;
term_t a = PL_new_term_ref();
_PL_get_arg(1, opt, a);
if ( !PL_get_integer(a, &bufsize) )
return pl_error(NULL, 0, NULL, ERR_DOMAIN, a, "integer");
if ( (rc=nbio_setopt(socket, TCP_SNDBUF, bufsize) == 0) )
return TRUE;
if ( rc == -2 )
goto not_implemented;
return FALSE;
}
}
not_implemented:
return pl_error(NULL, 0, NULL, ERR_DOMAIN, opt, "socket_option");
}
static foreign_t
pl_getopt(term_t Socket, term_t opt)
{ nbio_sock_t socket;
atom_t a;
size_t arity;
if ( !tcp_get_socket(Socket, &socket) )
return FALSE;
if ( PL_get_name_arity(opt, &a, &arity) && arity >= 1 )
{ term_t a1 = PL_new_term_ref();
_PL_get_arg(1, opt, a1);
if ( a == ATOM_file_no && arity == 1 )
{ SOCKET s = nbio_fd(socket);
if ( s != -1 )
return PL_unify_integer(a1, s);
return FALSE;
}
}
return pl_error(NULL, 0, NULL, ERR_DOMAIN, opt, "socket_option");
}
#include "sockcommon.c"
/*******************************
* UDP SOCKETS *
*******************************/
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
udp_receive(+Socket, -String, -From, +Options)
udp_send(+String, +String, +To, +Options)
From/To are of the format <Host>:<Port>
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#define UDP_MAXDATA 65535
#define UDP_DEFAULT_BUFSIZE 4096
static int
unify_address(term_t t, struct sockaddr_in *addr)
{ term_t av = PL_new_term_refs(2);
if ( !nbio_unify_ip4(av+0, ntohl(addr->sin_addr.s_addr)) ||
!PL_unify_integer(av+1, ntohs(addr->sin_port)) )
return FALSE;
return PL_unify_term(t, PL_FUNCTOR_CHARS, ":", 2,
PL_TERM, av+0,
PL_TERM, av+1);
}
static int
get_representation(term_t arg, int *rp)
{ atom_t a;
IOENC enc;
int rep;
if ( !PL_get_atom_ex(arg, &a) )
return FALSE;
switch((enc=PL_atom_to_encoding(a)))
{ case ENC_OCTET:
case ENC_ISO_LATIN_1: rep = REP_ISO_LATIN_1; break;
case ENC_UTF8: rep = REP_UTF8; break;
case ENC_ANSI: rep = REP_MB; break;
default:
return PL_domain_error("encoding", arg);
}
*rp = rep;
return TRUE;
}
static int
get_as(term_t arg, int *asp)
{ atom_t a;
int as;
if ( !PL_get_atom_ex(arg, &a) )
return FALSE;
if ( a == ATOM_atom )
as = PL_ATOM;
else if ( a == ATOM_codes )
as = PL_CODE_LIST;
else if ( a == ATOM_string )
as = PL_STRING;
else if ( a == ATOM_term )
as = PL_TERM;
else
return PL_domain_error("as", arg);
*asp = as;
return TRUE;
}
static foreign_t
udp_receive(term_t Socket, term_t Data, term_t From, term_t options)
{ struct sockaddr_in sockaddr;
#ifdef __WINDOWS__
int alen = sizeof(sockaddr);
#else
socklen_t alen = sizeof(sockaddr);
#endif
nbio_sock_t socket;
int flags = 0;
char smallbuf[UDP_DEFAULT_BUFSIZE];
char *buf = smallbuf;
int bufsize = UDP_DEFAULT_BUFSIZE;
term_t varport = 0;
ssize_t n;
int as = PL_STRING;
int rc;
int rep = REP_ISO_LATIN_1;
if ( !PL_get_nil(options) )
{ term_t tail = PL_copy_term_ref(options);
term_t head = PL_new_term_ref();
term_t arg = PL_new_term_ref();
while(PL_get_list(tail, head, tail))
{ atom_t name;
size_t arity;
if ( PL_get_name_arity(head, &name, &arity) && arity == 1 )
{ _PL_get_arg(1, head, arg);
if ( name == ATOM_as )
{ if ( !get_as(arg, &as) )
return FALSE;
} else if ( name == ATOM_max_message_size )
{ if ( !PL_get_integer(arg, &bufsize) )
return pl_error(NULL, 0, NULL, ERR_TYPE, arg, "integer");
if ( bufsize < 0 || bufsize > UDP_MAXDATA )
return pl_error(NULL, 0, NULL, ERR_DOMAIN, arg, "0 - 65535");
} else if ( name == ATOM_encoding )
{ if ( !get_representation(arg, &rep) )
return FALSE;
}
} else
return PL_type_error("option", head);
}
if ( !PL_get_nil_ex(tail) )
return FALSE;
}
if ( !tcp_get_socket(Socket, &socket) ||
!nbio_get_sockaddr(From, &sockaddr, &varport) )
return FALSE;
if ( bufsize > UDP_DEFAULT_BUFSIZE )
{ if ( !(buf = malloc(bufsize)) )
return pl_error(NULL, 0, NULL, ERR_RESOURCE, "memory");
}
if ( (n=nbio_recvfrom(socket, buf, bufsize, flags,
(struct sockaddr*)&sockaddr, &alen)) == -1 )
{ rc = nbio_error(GET_ERRNO, TCP_ERRNO);;
goto out;
}
if ( as == PL_TERM )
{ term_t tmp;
rc = ( (tmp=PL_new_term_ref()) &&
PL_put_term_from_chars(tmp, rep|CVT_EXCEPTION, n, buf) &&
PL_unify(tmp, Data) );
} else
{ rc = PL_unify_chars(Data, as|rep, n, buf);
}
rc = rc && unify_address(From, &sockaddr);
out:
if ( buf != smallbuf )
free(buf);
return rc;
}
static foreign_t
udp_send(term_t Socket, term_t Data, term_t To, term_t options)
{ struct sockaddr_in sockaddr;
#ifdef __WINDOWS__
int alen = sizeof(sockaddr);
#else
int alen = sizeof(sockaddr);
#endif
nbio_sock_t socket;
int flags = 0L;
char *data;
size_t dlen;
ssize_t n;
int rep = REP_ISO_LATIN_1;
int as = PL_VARIABLE; /* any */
int cvt;
if ( !PL_get_nil(options) )
{ term_t tail = PL_copy_term_ref(options);
term_t head = PL_new_term_ref();
term_t arg = PL_new_term_ref();
while(PL_get_list(tail, head, tail))
{ atom_t name;
size_t arity;
if ( PL_get_name_arity(head, &name, &arity) && arity == 1 )
{ _PL_get_arg(1, head, arg);
if ( name == ATOM_as )
{ if ( !get_as(arg, &as) )
return FALSE;
} else if ( name == ATOM_encoding )
{ if ( !get_representation(arg, &rep) )
return FALSE;
}
} else
return PL_type_error("option", head);
}
if ( !PL_get_nil_ex(tail) )
return FALSE;
}
switch(as)
{ case PL_VARIABLE: cvt = CVT_ALL; break;
case PL_ATOM: cvt = CVT_ATOM; break;
case PL_STRING:
case PL_CODE_LIST: cvt = CVT_STRING|CVT_LIST; break;
case PL_TERM: cvt = CVT_WRITE_CANONICAL; break;
default: assert(0); return FALSE;
}
if ( !PL_get_nchars(Data, &dlen, &data, cvt|CVT_EXCEPTION|rep) )
return FALSE;
if ( !tcp_get_socket(Socket, &socket) ||
!nbio_get_sockaddr(To, &sockaddr, NULL) )
return FALSE;
if ( (n=nbio_sendto(socket, data,
(int)dlen,
flags,
(struct sockaddr*)&sockaddr, alen)) == -1 )
return nbio_error(GET_ERRNO, TCP_ERRNO);;
return TRUE;
}
/*******************************
* PROLOG CONNECTION *
*******************************/
static foreign_t
create_socket(int domain, term_t socket, int type)
{ nbio_sock_t sock;
if ( !(sock = nbio_socket(domain, type, 0)) )
return FALSE;
return tcp_unify_socket(socket, sock);
}
static foreign_t
tcp_socket(term_t socket)
{ return create_socket(AF_INET, socket, SOCK_STREAM);
}
static foreign_t
udp_socket(term_t socket)
{ return create_socket(AF_INET, socket, SOCK_DGRAM);
}
#ifdef AF_UNIX
static foreign_t
unix_domain_socket(term_t socket)
{ return create_socket(AF_UNIX, socket, SOCK_STREAM);
}
static int
af_unix_address(term_t Address,
struct sockaddr_un *sockaddr, int *addrlen,
int flags)
{ char *file_name_chars;
int nmlen;
if ( !PL_get_file_name(Address, &file_name_chars,
PL_FILE_OSPATH|flags) )
return FALSE;
nmlen = strlen(file_name_chars);
if ( nmlen >= sizeof(sockaddr->sun_path) )
{ PL_representation_error("af_unix_name");
return FALSE;
}
memset(sockaddr, 0, sizeof(*sockaddr));
sockaddr->sun_family = AF_UNIX;
memcpy(sockaddr->sun_path, file_name_chars, nmlen);
*addrlen = offsetof(struct sockaddr_un, sun_path) + nmlen + 1;
return TRUE;
}
#endif /*AF_UNIX*/
static int
af_unix_connect(nbio_sock_t sock, term_t Address)
{
#ifdef AF_UNIX
if ( nbio_domain(sock) == AF_UNIX )
{ struct sockaddr_un sockaddr;
int addrlen;
return ( af_unix_address(Address, &sockaddr, &addrlen, PL_FILE_READ) &&
nbio_connect(sock, (struct sockaddr *)&sockaddr, addrlen) == 0 );
} else
#endif
{ return -1;
}
}
static int
af_unix_bind(nbio_sock_t sock, term_t Address)
{
#ifdef AF_UNIX
if ( nbio_domain(sock) == AF_UNIX )
{ struct sockaddr_un sockaddr;
int addrlen;
return ( af_unix_address(Address, &sockaddr, &addrlen, 0) &&
nbio_bind(sock, (struct sockaddr *)&sockaddr, addrlen) == 0 );
} else
#endif
{ return -1;
}
}
static foreign_t
pl_connect(term_t Socket, term_t Address)
{ nbio_sock_t sock;
struct sockaddr_in sockaddr;
int rc;
if ( !tcp_get_socket(Socket, &sock) )
return FALSE;
if ( (rc=af_unix_connect(sock, Address)) != -1 )
return rc;
if ( !nbio_get_sockaddr(Address, &sockaddr, NULL) )
return FALSE;
if ( nbio_connect(sock, (struct sockaddr*)&sockaddr, sizeof(sockaddr)) == 0 )
return TRUE;
return FALSE;
}
static foreign_t
pl_bind(term_t Socket, term_t Address)
{ nbio_sock_t socket;
int rc;
if ( !tcp_get_socket(Socket, &socket) )
return FALSE;
if ( (rc=af_unix_bind(socket, Address)) != -1 )
{ return rc;
} else
{ struct sockaddr_in sockaddr;
term_t varport = 0;
memset(&sockaddr, 0, sizeof(sockaddr));
if ( !nbio_get_sockaddr(Address, &sockaddr, &varport) )
return FALSE;
if ( nbio_bind(socket, (struct sockaddr*)&sockaddr, sizeof(sockaddr)) < 0 )
return FALSE;
if ( varport )
{ SOCKET fd = nbio_fd(socket);
struct sockaddr_in addr;
#ifdef __WINDOWS__
int len = sizeof(addr);
#else
socklen_t len = sizeof(addr);
#endif
if ( getsockname(fd, (struct sockaddr *) &addr, &len) )
return nbio_error(GET_ERRNO, TCP_ERRNO);
return PL_unify_integer(varport, ntohs(addr.sin_port));
}
return TRUE;
}
}
static foreign_t
pl_accept(term_t Master, term_t Slave, term_t Peer)
{ nbio_sock_t master, slave;
if ( !tcp_get_socket(Master, &master) )
return FALSE;
#ifdef AF_UNIX
if ( nbio_domain(master) == AF_UNIX )
{ struct sockaddr_un addr;
socklen_t addrlen = sizeof(addr);
if ( !PL_unify_atom(Peer, ATOM_af_unix) )
return FALSE;
if ( !(slave = nbio_accept(master, (struct sockaddr*)&addr, &addrlen)) )
return FALSE;
} else
#endif
{ struct sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
if ( !(slave = nbio_accept(master, (struct sockaddr*)&addr, &addrlen)) )
return FALSE;
if ( !nbio_unify_ip4(Peer, ntohl(addr.sin_addr.s_addr)) )
goto failure;
}
if ( tcp_unify_socket(Slave, slave) )
return TRUE;
failure:
nbio_closesocket(slave);
return FALSE;
}
static foreign_t
pl_gethostname(term_t name)
{ static atom_t hname;
if ( !hname )
{ char buf[256];
if ( gethostname(buf, sizeof(buf)) == 0 )
{ struct addrinfo *res;
struct addrinfo hints;
memset(&hints, 0, sizeof(hints));
hints.ai_flags = AI_CANONNAME;
if ( getaddrinfo(buf, NULL, &hints, &res) == 0 )
{ hname = PL_new_atom(res->ai_canonname);
freeaddrinfo(res);
}
else
hname = PL_new_atom(buf);
} else
{ return nbio_error(GET_ERRNO, TCP_ERRNO);
}
}
return PL_unify_atom(name, hname);
}
#ifdef O_DEBUG
static foreign_t
pl_debug(term_t val)
{ int dbg;
if ( PL_get_integer(val, &dbg) )
{ nbio_debug(dbg);
return TRUE;
}
return FALSE;
}
#endif
install_t
install_socket(void)
{ nbio_init("socket");
ATOM_reuseaddr = PL_new_atom("reuseaddr");
ATOM_bindtodevice = PL_new_atom("bindtodevice");
ATOM_broadcast = PL_new_atom("broadcast");
ATOM_nodelay = PL_new_atom("nodelay");
ATOM_dispatch = PL_new_atom("dispatch");
ATOM_nonblock = PL_new_atom("nonblock");
ATOM_infinite = PL_new_atom("infinite");
ATOM_as = PL_new_atom("as");
ATOM_atom = PL_new_atom("atom");
ATOM_string = PL_new_atom("string");
ATOM_codes = PL_new_atom("codes");
ATOM_term = PL_new_atom("term");
ATOM_max_message_size = PL_new_atom("max_message_size");
ATOM_file_no = PL_new_atom("file_no");
ATOM_ip_add_membership = PL_new_atom("ip_add_membership");
ATOM_ip_drop_membership = PL_new_atom("ip_drop_membership");
ATOM_sndbuf = PL_new_atom("sndbuf");
ATOM_af_unix = PL_new_atom("af_unix");
ATOM_encoding = PL_new_atom("encoding");
FUNCTOR_socket1 = PL_new_functor(PL_new_atom("$socket"), 1);
PL_register_foreign("tcp_accept", 3, pl_accept, 0);
PL_register_foreign("tcp_bind", 2, pl_bind, 0);
PL_register_foreign("tcp_connect", 2, pl_connect, 0);
PL_register_foreign("tcp_listen", 2, pl_listen, 0);
PL_register_foreign("tcp_open_socket", 3, pl_open_socket, 0);
PL_register_foreign("tcp_socket", 1, tcp_socket, 0);
PL_register_foreign("tcp_close_socket", 1, pl_close_socket, 0);
PL_register_foreign("tcp_setopt", 2, pl_setopt, 0);
PL_register_foreign("tcp_getopt", 2, pl_getopt, 0);
PL_register_foreign("tcp_host_to_address", 2, pl_host_to_address, 0);
PL_register_foreign("gethostname", 1, pl_gethostname, 0);
PL_register_foreign("udp_socket", 1, udp_socket, 0);
PL_register_foreign("udp_receive", 4, udp_receive, 0);
PL_register_foreign("udp_send", 4, udp_send, 0);
#ifndef __WINDOWS__
PL_register_foreign("unix_domain_socket", 1, unix_domain_socket, 0);
#endif
#ifdef O_DEBUG
PL_register_foreign("tcp_debug", 1, pl_debug, 0);
#endif
}
install_t
uninstall_socket(void)
{ nbio_cleanup();
}
|