1/* Part of SWI-Prolog 2 3 Author: Jan Wielemaker 4 E-mail: J.Wielemaker@vu.nl 5 WWW: http://www.swi-prolog.org 6 Copyright (c) 2000-2018, University of Amsterdam 7 VU University Amsterdam 8 CWI, Amsterdam 9 All rights reserved. 10 11 Redistribution and use in source and binary forms, with or without 12 modification, are permitted provided that the following conditions 13 are met: 14 15 1. Redistributions of source code must retain the above copyright 16 notice, this list of conditions and the following disclaimer. 17 18 2. Redistributions in binary form must reproduce the above copyright 19 notice, this list of conditions and the following disclaimer in 20 the documentation and/or other materials provided with the 21 distribution. 22 23 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 24 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 25 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 26 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 27 COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 28 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 29 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 30 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 31 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 33 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 34 POSSIBILITY OF SUCH DAMAGE. 35*/ 36 37:- module(socket, 38 [ tcp_socket/1, % -Socket 39 tcp_close_socket/1, % +Socket 40 tcp_open_socket/3, % +Socket, -Read, -Write 41 tcp_connect/2, % +Socket, +Address 42 tcp_connect/3, % +Socket, +Address, -StreamPair 43 tcp_connect/4, % +Socket, +Address, -Read, -Write) 44 tcp_bind/2, % +Socket, +Address 45 tcp_accept/3, % +Master, -Slave, -PeerName 46 tcp_listen/2, % +Socket, +BackLog 47 tcp_fcntl/3, % +Socket, +Command, ?Arg 48 tcp_setopt/2, % +Socket, +Option 49 tcp_getopt/2, % +Socket, ?Option 50 tcp_host_to_address/2, % ?HostName, ?Ip-nr 51 tcp_select/3, % +Inputs, -Ready, +Timeout 52 gethostname/1, % -HostName 53 54 tcp_open_socket/2, % +Socket, -StreamPair 55 56 udp_socket/1, % -Socket 57 udp_receive/4, % +Socket, -Data, -Sender, +Options 58 udp_send/4, % +Socket, +Data, +Sender, +Options 59 60 negotiate_socks_connection/2% +DesiredEndpoint, +StreamPair 61 ]). 62:- use_module(library(shlib)). 63:- use_module(library(debug)). 64:- use_module(library(lists)).
171:- multifile 172 tcp_connect_hook/3, % +Socket, +Addr, -In, -Out 173 tcp_connect_hook/4, % +Socket, +Addr, -Stream 174 proxy_for_url/3, % +URL, +Host, -ProxyList 175 try_proxy/4. % +Proxy, +Addr, -Socket, -Stream 176 177:- predicate_options(tcp_connect/3, 3, 178 [ bypass_proxy(boolean), 179 nodelay(boolean) 180 ]). 181 182:- use_foreign_library(foreign(socket), install_socket). 183:- public tcp_debug/1. % set debugging.
217tcp_open_socket(Socket, Stream) :-
218 tcp_open_socket(Socket, In, Out),
219 ( var(Out)
220 -> Stream = In
221 ; stream_pair(Stream, In, Out)
222 ).
tcp_bind(Socket, localhost:8080)
If Port is unbound, the system picks an arbitrary free port and unifies Port with the selected port number. Port is either an integer or the name of a registered service. See also tcp_connect/4.
tcp_socket(Socket), tcp_connect(Socket, Host:Port), tcp_open_socket(Socket, StreamPair)
Typical client applications should use the high level interface provided by tcp_connect/3 which avoids resource leaking if a step in the process fails, and can be hooked to support proxies. For example:
setup_call_cleanup( tcp_connect(Host:Port, StreamPair, []), talk(StreamPair), close(StreamPair))
295 /******************************* 296 * HOOKABLE CONNECT * 297 *******************************/
:- multifile socket:tcp_connect_hook/4. socket:tcp_connect_hook(Socket, Address, Read, Write) :- proxy(ProxyAdress), tcp_connect(Socket, ProxyAdress), tcp_open_socket(Socket, Read, Write), proxy_connect(Address, Read, Write).
320tcp_connect(Socket, Address, Read, Write) :- 321 tcp_connect_hook(Socket, Address, Read, Write), 322 !. 323tcp_connect(Socket, Address, Read, Write) :- 324 tcp_connect(Socket, Address), 325 tcp_open_socket(Socket, Read, Write).
false
. If true
, do not attempt to use any
proxies to obtain the connectionfalse
. If true
, set nodelay on the
resulting socket using tcp_setopt(Socket, nodelay)
The +,+,- mode is deprecated and does not support proxies. It behaves like tcp_connect/4, but creates a stream pair (see stream_pair/3).
359% Main mode: +,-,+ 360tcp_connect(Address, StreamPair, Options) :- 361 var(StreamPair), 362 !, 363 ( memberchk(bypass_proxy(true), Options) 364 -> tcp_connect_direct(Address, Socket, StreamPair) 365 ; findall(Result, 366 try_a_proxy(Address, Result), 367 ResultList), 368 last(ResultList, Status) 369 -> ( Status = true(_Proxy, Socket, StreamPair) 370 -> true 371 ; throw(error(proxy_error(tried(ResultList)), _)) 372 ) 373 ; tcp_connect_direct(Address, Socket, StreamPair) 374 ), 375 ( memberchk(nodelay(true), Options) 376 -> tcp_setopt(Socket, nodelay) 377 ; true 378 ). 379% backward compatibility mode +,+,- 380tcp_connect(Socket, Address, StreamPair) :- 381 tcp_connect_hook(Socket, Address, StreamPair0), 382 !, 383 StreamPair = StreamPair0. 384tcp_connect(Socket, Address, StreamPair) :- 385 tcp_connect(Socket, Address, Read, Write), 386 stream_pair(StreamPair, Read, Write). 387 388 389tcp_connect_direct(Address, Socket, StreamPair):- 390 tcp_socket(Socket), 391 catch(tcp_connect(Socket, Address, StreamPair), 392 Error, 393 ( tcp_close_socket(Socket), 394 throw(Error) 395 )).
select()
call
underlying wait_for_input/3. As input multiplexing typically happens
in a background thread anyway we accept the loss of timeouts and
interrupts.
408tcp_select(ListOfStreams, ReadyList, TimeOut) :- 409 wait_for_input(ListOfStreams, ReadyList, TimeOut). 410 411 412 /******************************* 413 * PROXY SUPPORT * 414 *******************************/ 415 416try_a_proxy(Address, Result) :- 417 format(atom(URL), 'socket://~w', [Address]), 418 ( Address = Host:_ 419 -> true 420 ; Host = Address 421 ), 422 proxy_for_url(URL, Host, Proxy), 423 debug(socket(proxy), 'Socket connecting via ~w~n', [Proxy]), 424 ( catch(try_proxy(Proxy, Address, Socket, Stream), E, true) 425 -> ( var(E) 426 -> !, Result = true(Proxy, Socket, Stream) 427 ; Result = error(Proxy, E) 428 ) 429 ; Result = false(Proxy) 430 ), 431 debug(socket(proxy), 'Socket: ~w: ~p', [Proxy, Result]).
library(http/http_open)
) collect the results of failed
proxies and raise an exception no proxy is capable of realizing
the connection.
The default implementation recognises the values for Proxy
described below. The library(http/http_proxy)
adds
proxy(Host,Port)
which allows for HTTP proxies using the
CONNECT
method.
452:- multifile 453 try_proxy/4. 454 455try_proxy(direct, Address, Socket, StreamPair) :- 456 !, 457 tcp_connect_direct(Address, Socket, StreamPair). 458try_proxy(socks(Host, Port), Address, Socket, StreamPair) :- 459 !, 460 tcp_connect_direct(Host:Port, Socket, StreamPair), 461 catch(negotiate_socks_connection(Address, StreamPair), 462 Error, 463 ( close(StreamPair, [force(true)]), 464 throw(Error) 465 )).
These correspond to the proxy methods defined by PAC Proxy auto-config. Additional methods can be returned if suitable clauses for http:http_connection_over_proxy/6 or try_proxy/4 are defined.
488:- multifile 489 proxy_for_url/3. 490 491 492 /******************************* 493 * OPTIONS * 494 *******************************/
setsockopt()
and the socket interface (e.g.,
socket(7)
on Linux) for details.
tcp_socket(Socket), tcp_setopt(Socket, bindtodevice(lo))
true
, disable the Nagle optimization on this socket,
which is enabled by default on almost all modern TCP/IP
stacks. The Nagle optimization joins small packages, which is
generally desirable, but sometimes not. Please note that the
underlying TCP_NODELAY setting to setsockopt()
is not
available on all platforms and systems may require additional
privileges to change this option. If the option is not
supported, tcp_setopt/2 raises a domain_error exception. See
Wikipedia
for details.setsockopt()
with the
corresponding arguments.swipl-win.exe
executable) this flags defines whether or not any events are
dispatched on behalf of the user interface. Default is
true
. Only very specific situations require setting
this to false
.fcntl()
call. Currently only suitable to deal
switch stream to non-blocking mode using:
tcp_fcntl(Stream, setfl, nonblock),
An attempt to read from a non-blocking stream while there is no
data available returns -1 (or end_of_file
for read/1), but
at_end_of_stream/1 fails. On actual end-of-input,
at_end_of_stream/1 succeeds.
564tcp_fcntl(Socket, setfl, nonblock) :-
565 !,
566 tcp_setopt(Socket, nonblock).
domain_error
exception.
getaddrinfo()
and the
IP-number is unified to Address using a term of the format
ip(Byte1,Byte2,Byte3,Byte4)
. Otherwise, if Address is bound to
an ip(Byte1,Byte2,Byte3,Byte4)
term, it is resolved by
gethostbyaddr()
and the canonical hostname is unified with
HostName.
gethostname()
and return the canonical name
returned by getaddrinfo()
.597 /******************************* 598 * SOCKS * 599 *******************************/
ip(A,B,C,D)
: port611negotiate_socks_connection(Host:Port, StreamPair):- 612 format(StreamPair, '~s', [[0x5, % Version 5 613 0x1, % 1 auth method supported 614 0x0]]), % which is 'no auth' 615 flush_output(StreamPair), 616 get_byte(StreamPair, ServerVersion), 617 get_byte(StreamPair, AuthenticationMethod), 618 ( ServerVersion =\= 0x05 619 -> throw(error(socks_error(invalid_version(5, ServerVersion)), _)) 620 ; AuthenticationMethod =:= 0xff 621 -> throw(error(socks_error(invalid_authentication_method( 622 0xff, 623 AuthenticationMethod)), _)) 624 ; true 625 ), 626 ( Host = ip(A,B,C,D) 627 -> AddressType = 0x1, % IPv4 Address 628 format(atom(Address), '~s', [[A, B, C, D]]) 629 ; AddressType = 0x3, % Domain 630 atom_length(Host, Length), 631 format(atom(Address), '~s~w', [[Length], Host]) 632 ), 633 P1 is Port /\ 0xff, 634 P2 is Port >> 8, 635 format(StreamPair, '~s~w~s', [[0x5, % Version 5 636 0x1, % Please establish a connection 637 0x0, % reserved 638 AddressType], 639 Address, 640 [P2, P1]]), 641 flush_output(StreamPair), 642 get_byte(StreamPair, _EchoedServerVersion), 643 get_byte(StreamPair, Status), 644 ( Status =:= 0 % Established! 645 -> get_byte(StreamPair, _Reserved), 646 get_byte(StreamPair, EchoedAddressType), 647 ( EchoedAddressType =:= 0x1 648 -> get_byte(StreamPair, _), % read IP4 649 get_byte(StreamPair, _), 650 get_byte(StreamPair, _), 651 get_byte(StreamPair, _) 652 ; get_byte(StreamPair, Length), % read host name 653 forall(between(1, Length, _), 654 get_byte(StreamPair, _)) 655 ), 656 get_byte(StreamPair, _), % read port 657 get_byte(StreamPair, _) 658 ; throw(error(socks_error(negotiation_rejected(Status)), _)) 659 ). 660 661 662 /******************************* 663 * MESSAGES * 664 *******************************/ 665 666/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 667The C-layer generates exceptions of the following format, where Message 668is extracted from the operating system. 669 670 error(socket_error(Code, Message), _) 671- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */ 672 673:- multifile 674 prolog:error_message//1. 675 676prologerror_message(socket_error(_Code, Message)) --> 677 [ 'Socket error: ~w'-[Message] ]. 678prologerror_message(socks_error(Error)) --> 679 socks_error(Error). 680prologerror_message(proxy_error(tried(Tried))) --> 681 [ 'Failed to connect using a proxy. Tried:'-[], nl], 682 proxy_tried(Tried). 683 684socks_error(invalid_version(Supported, Got)) --> 685 [ 'SOCKS: unsupported version: ~p (supported: ~p)'- 686 [ Got, Supported ] ]. 687socks_error(invalid_authentication_method(Supported, Got)) --> 688 [ 'SOCKS: unsupported authentication method: ~p (supported: ~p)'- 689 [ Got, Supported ] ]. 690socks_error(negotiation_rejected(Status)) --> 691 [ 'SOCKS: connection failed: ~p'-[Status] ]. 692 693proxy_tried([]) --> []. 694proxy_tried([H|T]) --> 695 proxy_tried(H), 696 proxy_tried(T). 697proxy_tried(error(Proxy, Error)) --> 698 [ '~w: '-[Proxy] ], 699 '$messages':translate_message(Error). 700proxy_tried(false(Proxy)) --> 701 [ '~w: failed with unspecified error'-[Proxy] ]
Network socket (TCP and UDP) library
The
library(socket)
provides TCP and UDP inet-domain sockets from SWI-Prolog, both client and server-side communication. The interface of this library is very close to the Unix socket interface, also supported by the MS-Windows winsock API. SWI-Prolog applications that wish to communicate with multiple sources have three options:socket
which synchronises socket events in the GUI event-loop.Client applications
Using this library to establish a TCP connection to a server is as simple as opening a file. See also http_open/3.
To deal with timeouts and multiple connections, threads, wait_for_input/3 and/or non-blocking streams (see tcp_fcntl/3) can be used.
Server applications
The typical sequence for generating a server application is given below. To close the server, use close/1 on AcceptFd.
There are various options for <dispatch>. The most commonly used option is to start a Prolog thread to handle the connection. Alternatively, input from multiple clients can be handled in a single thread by listening to these clients using wait_for_input/3. Finally, on Unix systems, we can use fork/1 to handle the connection in a new process. Note that fork/1 and threads do not cooperate well. Combinations can be realised but require good understanding of POSIX thread and fork-semantics.
Below is the typical example using a thread. Note the use of setup_call_cleanup/3 to guarantee that all resources are reclaimed, also in case of failure or exceptions.
Socket exceptions
Errors that are trapped by the low-level library are mapped to an exception of the shape below. In this term, Code is a lower case atom that corresponds to the C macro name, e.g.,
epipe
for a broken pipe. Message is the human readable string for the error code returned by the OS or the same as Code if the OS does not provide this functionality. Note that Code is derived from a static set of macros that may or may not be defines for the target OS. If the macro name is not known, Code isERROR_nnn
, where nnn is an integer.Note that on Windows Code is a
wsa*
code which makes it hard to write portable code that handles specific socket errors. Even on POSIX systems the exact set of errors produced by the network stack is not defined.TCP socket predicates
*/