mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
taking an unexpectedly large filename for an AF_UNIX socket from bind/connect/sendto (thanks to Martin Grabmueller). * socket.c (scm_sock_fd_to_port, SCM_SOCK_FD_TO_PORT): removed the former and adjusted the latter. (scm_socket, scm_socketpair): cosmetic changes. (scm_getsockopt, scm_setsockopt): declare optlen as int, not size_t as socklen_t substitute. don't restrict args/return values to INUM: allow full range of int or size_t. (scm_fill_sockaddr): check arguments before allocating memory, to avoid leakage. use malloc, not scm_must_malloc. (scm_connect, scm_bind, scm_sendto): use int, not size_t as socklen_t substitute. free the sockaddr structure before throwing an error. (scm_init_add_buffer): procedure removed, together with its static buffer scm_addr_buffer, which wouldn't be thread safe. instead, define a macro MAX_ADDR_SIZE and declare the buffer where needed. (scm_accept, scm_getpeername, scm_getsockname, scm_recvfrom, scm_sendto): use a local buffer instead of scm_addr_buffer. adjust for new SCM_SOCK_FD_TO_PORT. use int for address size, not size_t. (scm_recvfrom): set addr->sa_family to AF_UNSPEC before the recvfrom call to detect whether recvfrom could be bothered to set the address. (scm_init_socket): don't call scm_init_addr_buffer.
1000 lines
31 KiB
C
1000 lines
31 KiB
C
/* Copyright (C) 1996,1997,1998, 2000 Free Software Foundation, Inc.
|
||
*
|
||
* This program is free software; you can redistribute it and/or modify
|
||
* it under the terms of the GNU General Public License as published by
|
||
* the Free Software Foundation; either version 2, or (at your option)
|
||
* any later version.
|
||
*
|
||
* This program is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU General Public License
|
||
* along with this software; see the file COPYING. If not, write to
|
||
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||
* Boston, MA 02111-1307 USA
|
||
*
|
||
* As a special exception, the Free Software Foundation gives permission
|
||
* for additional uses of the text contained in its release of GUILE.
|
||
*
|
||
* The exception is that, if you link the GUILE library with other files
|
||
* to produce an executable, this does not by itself cause the
|
||
* resulting executable to be covered by the GNU General Public License.
|
||
* Your use of that executable is in no way restricted on account of
|
||
* linking the GUILE library code into it.
|
||
*
|
||
* This exception does not however invalidate any other reasons why
|
||
* the executable file might be covered by the GNU General Public License.
|
||
*
|
||
* This exception applies only to the code released by the
|
||
* Free Software Foundation under the name GUILE. If you copy
|
||
* code from other Free Software Foundation releases into a copy of
|
||
* GUILE, as the General Public License permits, the exception does
|
||
* not apply to the code that you add in this way. To avoid misleading
|
||
* anyone as to the status of such modified files, you must delete
|
||
* this exception notice from them.
|
||
*
|
||
* If you write modifications of your own for GUILE, it is your choice
|
||
* whether to permit this exception to apply to your modifications.
|
||
* If you do not wish that, delete this exception notice. */
|
||
|
||
/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
|
||
gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
|
||
|
||
|
||
|
||
#include <stdio.h>
|
||
|
||
#include "libguile/_scm.h"
|
||
#include "libguile/unif.h"
|
||
#include "libguile/feature.h"
|
||
#include "libguile/fports.h"
|
||
#include "libguile/strings.h"
|
||
#include "libguile/vectors.h"
|
||
|
||
#include "libguile/validate.h"
|
||
#include "libguile/socket.h"
|
||
|
||
#ifdef HAVE_STRING_H
|
||
#include <string.h>
|
||
#endif
|
||
#ifdef HAVE_UNISTD_H
|
||
#include <unistd.h>
|
||
#endif
|
||
#include <sys/types.h>
|
||
#include <sys/socket.h>
|
||
#ifdef HAVE_UNIX_DOMAIN_SOCKETS
|
||
#include <sys/un.h>
|
||
#endif
|
||
#include <netinet/in.h>
|
||
#include <netdb.h>
|
||
#include <arpa/inet.h>
|
||
|
||
/* we are not currently using socklen_t. it's not defined on all systems,
|
||
so would need to be checked by configure. in the meantime, plain
|
||
int is the best alternative. */
|
||
|
||
|
||
|
||
SCM_DEFINE (scm_htons, "htons", 1, 0, 0,
|
||
(SCM in),
|
||
"Returns a new integer from @var{value} by converting from host to\n"
|
||
"network order. @var{value} must be within the range of a C unsigned\n"
|
||
"short integer.")
|
||
#define FUNC_NAME s_scm_htons
|
||
{
|
||
unsigned short c_in;
|
||
|
||
SCM_VALIDATE_INUM_COPY (1,in,c_in);
|
||
if (c_in != SCM_INUM (in))
|
||
SCM_OUT_OF_RANGE (1,in);
|
||
|
||
return SCM_MAKINUM (htons (c_in));
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_ntohs, "ntohs", 1, 0, 0,
|
||
(SCM in),
|
||
"Returns a new integer from @var{value} by converting from network to\n"
|
||
"host order. @var{value} must be within the range of a C unsigned short\n"
|
||
"integer.")
|
||
#define FUNC_NAME s_scm_ntohs
|
||
{
|
||
unsigned short c_in;
|
||
|
||
SCM_VALIDATE_INUM_COPY (1,in,c_in);
|
||
if (c_in != SCM_INUM (in))
|
||
SCM_OUT_OF_RANGE (1,in);
|
||
|
||
return SCM_MAKINUM (ntohs (c_in));
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_htonl, "htonl", 1, 0, 0,
|
||
(SCM in),
|
||
"Returns a new integer from @var{value} by converting from host to\n"
|
||
"network order. @var{value} must be within the range of a C unsigned\n"
|
||
"long integer.")
|
||
#define FUNC_NAME s_scm_htonl
|
||
{
|
||
unsigned long c_in = SCM_NUM2ULONG (1,in);
|
||
return scm_ulong2num (htonl (c_in));
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_ntohl, "ntohl", 1, 0, 0,
|
||
(SCM in),
|
||
"Returns a new integer from @var{value} by converting from network to\n"
|
||
"host order. @var{value} must be within the range of a C unsigned\n"
|
||
"long integer.")
|
||
#define FUNC_NAME s_scm_ntohl
|
||
{
|
||
unsigned long c_in = SCM_NUM2ULONG (1,in);
|
||
return scm_ulong2num (ntohl (c_in));
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_SYMBOL (sym_socket, "socket");
|
||
|
||
#define SCM_SOCK_FD_TO_PORT(fd) scm_fdes_to_port (fd, "r+0", sym_socket)
|
||
|
||
SCM_DEFINE (scm_socket, "socket", 3, 0, 0,
|
||
(SCM family, SCM style, SCM proto),
|
||
"Returns a new socket port of the type specified by @var{family}, @var{style}\n"
|
||
"and @var{protocol}. All three parameters are integers. Typical values\n"
|
||
"for @var{family} are the values of @code{AF_UNIX}\n"
|
||
"and @code{AF_INET}. Typical values for @var{style} are\n"
|
||
"the values of @code{SOCK_STREAM}, @code{SOCK_DGRAM} and @code{SOCK_RAW}.\n\n"
|
||
"@var{protocol} can be obtained from a protocol name using\n"
|
||
"@code{getprotobyname}. A value of\n"
|
||
"zero specifies the default protocol, which is usually right.\n\n"
|
||
"A single socket port cannot by used for communication until\n"
|
||
"it has been connected to another socket.")
|
||
#define FUNC_NAME s_scm_socket
|
||
{
|
||
int fd;
|
||
|
||
SCM_VALIDATE_INUM (1, family);
|
||
SCM_VALIDATE_INUM (2, style);
|
||
SCM_VALIDATE_INUM (3, proto);
|
||
fd = socket (SCM_INUM (family), SCM_INUM (style), SCM_INUM (proto));
|
||
if (fd == -1)
|
||
SCM_SYSERROR;
|
||
return SCM_SOCK_FD_TO_PORT (fd);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
#ifdef HAVE_SOCKETPAIR
|
||
SCM_DEFINE (scm_socketpair, "socketpair", 3, 0, 0,
|
||
(SCM family, SCM style, SCM proto),
|
||
"Returns a pair of connected (but unnamed) socket ports of the type specified\n"
|
||
"by @var{family}, @var{style} and @var{protocol}.\n"
|
||
"Many systems support only\n"
|
||
"socket pairs of the @code{AF_UNIX} family. Zero is likely to be\n"
|
||
"the only meaningful value for @var{protocol}.")
|
||
#define FUNC_NAME s_scm_socketpair
|
||
{
|
||
int fam;
|
||
int fd[2];
|
||
|
||
SCM_VALIDATE_INUM (1,family);
|
||
SCM_VALIDATE_INUM (2,style);
|
||
SCM_VALIDATE_INUM (3,proto);
|
||
|
||
fam = SCM_INUM (family);
|
||
|
||
if (socketpair (fam, SCM_INUM (style), SCM_INUM (proto), fd) == -1)
|
||
SCM_SYSERROR;
|
||
|
||
return scm_cons (SCM_SOCK_FD_TO_PORT (fd[0]), SCM_SOCK_FD_TO_PORT (fd[1]));
|
||
}
|
||
#undef FUNC_NAME
|
||
#endif
|
||
|
||
SCM_DEFINE (scm_getsockopt, "getsockopt", 3, 0, 0,
|
||
(SCM sock, SCM level, SCM optname),
|
||
"Returns the value of a particular socket option for the socket\n"
|
||
"port @var{socket}. @var{level} is an integer code for type of option\n"
|
||
"being requested, e.g., @code{SOL_SOCKET} for socket-level options.\n"
|
||
"@var{optname} is an\n"
|
||
"integer code for the option required and should be specified using one of\n"
|
||
"the symbols @code{SO_DEBUG}, @code{SO_REUSEADDR} etc.\n\n"
|
||
"The returned value is typically an integer but @code{SO_LINGER} returns a\n"
|
||
"pair of integers.")
|
||
#define FUNC_NAME s_scm_getsockopt
|
||
{
|
||
int fd;
|
||
/* size of optval is the largest supported option. */
|
||
#ifdef HAVE_STRUCT_LINGER
|
||
char optval[sizeof (struct linger)];
|
||
int optlen = sizeof (struct linger);
|
||
#else
|
||
char optval[sizeof (scm_sizet)];
|
||
int optlen = sizeof (scm_sizet);
|
||
#endif
|
||
int ilevel;
|
||
int ioptname;
|
||
|
||
sock = SCM_COERCE_OUTPORT (sock);
|
||
SCM_VALIDATE_OPFPORT (1, sock);
|
||
SCM_VALIDATE_INUM_COPY (2, level, ilevel);
|
||
SCM_VALIDATE_INUM_COPY (3, optname, ioptname);
|
||
|
||
fd = SCM_FPORT_FDES (sock);
|
||
if (getsockopt (fd, ilevel, ioptname, (void *) optval, &optlen) == -1)
|
||
SCM_SYSERROR;
|
||
|
||
if (ilevel == SOL_SOCKET)
|
||
{
|
||
#ifdef SO_LINGER
|
||
if (ioptname == SO_LINGER)
|
||
{
|
||
#ifdef HAVE_STRUCT_LINGER
|
||
struct linger *ling = (struct linger *) optval;
|
||
|
||
return scm_cons (scm_long2num (ling->l_onoff),
|
||
scm_long2num (ling->l_linger));
|
||
#else
|
||
return scm_cons (scm_long2num (*(int *) optval)
|
||
SCM_MAKINUM (0));
|
||
#endif
|
||
}
|
||
else
|
||
#endif
|
||
if (0
|
||
#ifdef SO_SNDBUF
|
||
|| ioptname == SO_SNDBUF
|
||
#endif
|
||
#ifdef SO_RCVBUF
|
||
|| ioptname == SO_RCVBUF
|
||
#endif
|
||
)
|
||
{
|
||
return scm_long2num (*(scm_sizet *) optval);
|
||
}
|
||
}
|
||
return scm_long2num (*(int *) optval);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_setsockopt, "setsockopt", 4, 0, 0,
|
||
(SCM sock, SCM level, SCM optname, SCM value),
|
||
"Sets the value of a particular socket option for the socket\n"
|
||
"port @var{socket}. @var{level} is an integer code for type of option\n"
|
||
"being set, e.g., @code{SOL_SOCKET} for socket-level options.\n"
|
||
"@var{optname} is an\n"
|
||
"integer code for the option to set and should be specified using one of\n"
|
||
"the symbols @code{SO_DEBUG}, @code{SO_REUSEADDR} etc.\n"
|
||
"@var{value} is the value to which the option should be set. For\n"
|
||
"most options this must be an integer, but for @code{SO_LINGER} it must\n"
|
||
"be a pair.\n\n"
|
||
"The return value is unspecified.")
|
||
#define FUNC_NAME s_scm_setsockopt
|
||
{
|
||
int fd;
|
||
int optlen = -1;
|
||
/* size of optval is the largest supported option. */
|
||
#ifdef HAVE_STRUCT_LINGER
|
||
char optval[sizeof (struct linger)];
|
||
#else
|
||
char optval[sizeof (scm_sizet)];
|
||
#endif
|
||
int ilevel, ioptname;
|
||
|
||
sock = SCM_COERCE_OUTPORT (sock);
|
||
|
||
SCM_VALIDATE_OPFPORT (1, sock);
|
||
SCM_VALIDATE_INUM_COPY (2, level, ilevel);
|
||
SCM_VALIDATE_INUM_COPY (3, optname, ioptname);
|
||
|
||
fd = SCM_FPORT_FDES (sock);
|
||
|
||
if (ilevel == SOL_SOCKET)
|
||
{
|
||
#ifdef SO_LINGER
|
||
if (ioptname == SO_LINGER)
|
||
{
|
||
#ifdef HAVE_STRUCT_LINGER
|
||
struct linger ling;
|
||
long lv;
|
||
|
||
SCM_ASSERT (SCM_CONSP (value), value, SCM_ARG4, FUNC_NAME);
|
||
lv = SCM_NUM2LONG (4, SCM_CAR (value));
|
||
ling.l_onoff = (int) lv;
|
||
SCM_ASSERT_RANGE (SCM_ARG4, value, ling.l_onoff == lv);
|
||
lv = SCM_NUM2LONG (4, SCM_CDR (value));
|
||
ling.l_linger = (int) lv;
|
||
SCM_ASSERT_RANGE (SCM_ARG4, value, ling.l_linger == lv);
|
||
optlen = (int) sizeof (struct linger);
|
||
memcpy (optval, (void *) &ling, optlen);
|
||
#else
|
||
int ling;
|
||
long lv;
|
||
|
||
SCM_ASSERT (SCM_CONSP (value), value, SCM_ARG4, FUNC_NAME);
|
||
/* timeout is ignored, but may as well validate it. */
|
||
lv = SCM_NUM2LONG (4, SCM_CDR (value));
|
||
ling = (int) lv;
|
||
SCM_ASSERT_RANGE (SCM_ARG4, value, ling == lv);
|
||
lv = SCM_NUM2LONG (4, SCM_CAR (value));
|
||
ling = (int) lv;
|
||
SCM_ASSERT_RANGE (SCM_ARG4, value, ling == lv);
|
||
optlen = (int) sizeof (int);
|
||
(*(int *) optval) = ling;
|
||
#endif
|
||
}
|
||
else
|
||
#endif
|
||
if (0
|
||
#ifdef SO_SNDBUF
|
||
|| ioptname == SO_SNDBUF
|
||
#endif
|
||
#ifdef SO_RCVBUF
|
||
|| ioptname == SO_RCVBUF
|
||
#endif
|
||
)
|
||
{
|
||
long lv = SCM_NUM2LONG (4, value);
|
||
|
||
optlen = (int) sizeof (scm_sizet);
|
||
(*(scm_sizet *) optval) = (scm_sizet) lv;
|
||
}
|
||
}
|
||
if (optlen == -1)
|
||
{
|
||
/* Most options take an int. */
|
||
long lv = SCM_NUM2LONG (4, value);
|
||
int val = (int) lv;
|
||
|
||
SCM_ASSERT_RANGE (SCM_ARG4, value, val == lv);
|
||
optlen = (int) sizeof (int);
|
||
(*(int *) optval) = val;
|
||
}
|
||
if (setsockopt (fd, ilevel, ioptname, (void *) optval, optlen) == -1)
|
||
SCM_SYSERROR;
|
||
return SCM_UNSPECIFIED;
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_shutdown, "shutdown", 2, 0, 0,
|
||
(SCM sock, SCM how),
|
||
"Sockets can be closed simply by using @code{close-port}. The\n"
|
||
"@code{shutdown} procedure allows reception or tranmission on a\n"
|
||
"connection to be shut down individually, according to the parameter\n"
|
||
"@var{how}:\n\n"
|
||
"@table @asis\n"
|
||
"@item 0\n"
|
||
"Stop receiving data for this socket. If further data arrives, reject it.\n"
|
||
"@item 1\n"
|
||
"Stop trying to transmit data from this socket. Discard any\n"
|
||
"data waiting to be sent. Stop looking for acknowledgement of\n"
|
||
"data already sent; don't retransmit it if it is lost.\n"
|
||
"@item 2\n"
|
||
"Stop both reception and transmission.\n"
|
||
"@end table\n\n"
|
||
"The return value is unspecified.")
|
||
#define FUNC_NAME s_scm_shutdown
|
||
{
|
||
int fd;
|
||
sock = SCM_COERCE_OUTPORT (sock);
|
||
SCM_VALIDATE_OPFPORT (1,sock);
|
||
SCM_VALIDATE_INUM (2,how);
|
||
SCM_ASSERT_RANGE(2,how,0 <= SCM_INUM (how) && 2 >= SCM_INUM (how));
|
||
fd = SCM_FPORT_FDES (sock);
|
||
if (shutdown (fd, SCM_INUM (how)) == -1)
|
||
SCM_SYSERROR;
|
||
return SCM_UNSPECIFIED;
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
/* convert fam/address/args into a sockaddr of the appropriate type.
|
||
args is modified by removing the arguments actually used.
|
||
which_arg and proc are used when reporting errors:
|
||
which_arg is the position of address in the original argument list.
|
||
proc is the name of the original procedure.
|
||
size returns the size of the structure allocated. */
|
||
|
||
static struct sockaddr *
|
||
scm_fill_sockaddr (int fam, SCM address, SCM *args, int which_arg,
|
||
const char *proc, int *size)
|
||
{
|
||
switch (fam)
|
||
{
|
||
case AF_INET:
|
||
{
|
||
SCM isport;
|
||
struct sockaddr_in *soka;
|
||
|
||
SCM_ASSERT (SCM_CONSP (*args), *args,
|
||
which_arg + 1, proc);
|
||
isport = SCM_CAR (*args);
|
||
SCM_ASSERT (SCM_INUMP (isport), isport, which_arg + 1, proc);
|
||
soka = (struct sockaddr_in *) malloc (sizeof (struct sockaddr_in));
|
||
if (!soka)
|
||
scm_memory_error (proc);
|
||
/* e.g., for BSDs which don't like invalid sin_len. */
|
||
memset (soka, 0, sizeof (struct sockaddr_in));
|
||
soka->sin_family = AF_INET;
|
||
soka->sin_addr.s_addr =
|
||
htonl (scm_num2ulong (address, (char *) which_arg, proc));
|
||
*args = SCM_CDR (*args);
|
||
soka->sin_port = htons (SCM_INUM (isport));
|
||
*size = sizeof (struct sockaddr_in);
|
||
return (struct sockaddr *) soka;
|
||
}
|
||
#ifdef HAVE_UNIX_DOMAIN_SOCKETS
|
||
case AF_UNIX:
|
||
{
|
||
struct sockaddr_un *soka;
|
||
int addr_size;
|
||
|
||
SCM_ASSERT (SCM_STRINGP (address), address, which_arg, proc);
|
||
/* the static buffer size in sockaddr_un seems to be arbitrary
|
||
and not necessarily a hard limit. e.g., the glibc manual
|
||
suggests it may be possible to declare it size 0. let's
|
||
ignore it. if the O/S doesn't like the size it will cause
|
||
connect/bind etc., to fail. sun_path is always the last
|
||
member of the structure. */
|
||
addr_size = sizeof (struct sockaddr_un)
|
||
+ max (0, SCM_STRING_LENGTH (address) + 1 - (sizeof soka->sun_path));
|
||
soka = (struct sockaddr_un *) malloc (addr_size);
|
||
if (!soka)
|
||
scm_memory_error (proc);
|
||
memset (soka, 0, addr_size); /* for sun_len: see sin_len above. */
|
||
soka->sun_family = AF_UNIX;
|
||
memcpy (soka->sun_path, SCM_STRING_CHARS (address),
|
||
SCM_STRING_LENGTH (address));
|
||
*size = SUN_LEN (soka);
|
||
return (struct sockaddr *) soka;
|
||
}
|
||
#endif
|
||
default:
|
||
scm_out_of_range (proc, SCM_MAKINUM (fam));
|
||
}
|
||
}
|
||
|
||
SCM_DEFINE (scm_connect, "connect", 3, 0, 1,
|
||
(SCM sock, SCM fam, SCM address, SCM args),
|
||
"Initiates a connection from @var{socket} to the address\n"
|
||
"specified by @var{address} and possibly @var{arg @dots{}}. The format\n"
|
||
"required for @var{address}\n"
|
||
"and @var{arg} @dots{} depends on the family of the socket.\n\n"
|
||
"For a socket of family @code{AF_UNIX},\n"
|
||
"only @code{address} is specified and must be a string with the\n"
|
||
"filename where the socket is to be created.\n\n"
|
||
"For a socket of family @code{AF_INET},\n"
|
||
"@code{address} must be an integer Internet host address and @var{arg} @dots{}\n"
|
||
"must be a single integer port number.\n\n"
|
||
"The return value is unspecified.")
|
||
#define FUNC_NAME s_scm_connect
|
||
{
|
||
int fd;
|
||
struct sockaddr *soka;
|
||
int size;
|
||
|
||
sock = SCM_COERCE_OUTPORT (sock);
|
||
SCM_VALIDATE_OPFPORT (1,sock);
|
||
SCM_VALIDATE_INUM (2,fam);
|
||
fd = SCM_FPORT_FDES (sock);
|
||
soka = scm_fill_sockaddr (SCM_INUM (fam), address, &args, 3, FUNC_NAME,
|
||
&size);
|
||
if (connect (fd, soka, size) == -1)
|
||
{
|
||
int save_errno = errno;
|
||
|
||
free (soka);
|
||
errno = save_errno;
|
||
SCM_SYSERROR;
|
||
}
|
||
free (soka);
|
||
return SCM_UNSPECIFIED;
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_bind, "bind", 3, 0, 1,
|
||
(SCM sock, SCM fam, SCM address, SCM args),
|
||
"Assigns an address to the socket port @var{socket}.\n"
|
||
"Generally this only needs to be done for server sockets,\n"
|
||
"so they know where to look for incoming connections. A socket\n"
|
||
"without an address will be assigned one automatically when it\n"
|
||
"starts communicating.\n\n"
|
||
"The format of @var{address} and @var{ARG} @dots{} depends on the family\n"
|
||
"of the socket.\n\n"
|
||
"For a socket of family @code{AF_UNIX}, only @var{address}\n"
|
||
"is specified and must \n"
|
||
"be a string with the filename where the socket is to be created.\n\n"
|
||
"For a socket of family @code{AF_INET}, @var{address} must be an integer\n"
|
||
"Internet host address and @var{arg} @dots{} must be a single integer\n"
|
||
"port number.\n\n"
|
||
"The values of the following variables can also be used for @var{address}:\n\n"
|
||
"@defvar INADDR_ANY\n"
|
||
"Allow connections from any address.\n"
|
||
"@end defvar\n\n"
|
||
"@defvar INADDR_LOOPBACK\n"
|
||
"The address of the local host using the loopback device.\n"
|
||
"@end defvar\n\n"
|
||
"@defvar INADDR_BROADCAST\n"
|
||
"The broadcast address on the local network.\n"
|
||
"@end defvar\n\n"
|
||
"@defvar INADDR_NONE\n"
|
||
"No address.\n"
|
||
"@end defvar\n\n"
|
||
"The return value is unspecified.")
|
||
#define FUNC_NAME s_scm_bind
|
||
{
|
||
struct sockaddr *soka;
|
||
int size;
|
||
int fd;
|
||
|
||
sock = SCM_COERCE_OUTPORT (sock);
|
||
SCM_VALIDATE_OPFPORT (1, sock);
|
||
SCM_VALIDATE_INUM (2, fam);
|
||
soka = scm_fill_sockaddr (SCM_INUM (fam), address, &args, 3, FUNC_NAME,
|
||
&size);
|
||
fd = SCM_FPORT_FDES (sock);
|
||
if (bind (fd, soka, size) == -1)
|
||
{
|
||
int save_errno = errno;
|
||
|
||
free (soka);
|
||
errno = save_errno;
|
||
SCM_SYSERROR;
|
||
}
|
||
free (soka);
|
||
return SCM_UNSPECIFIED;
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_listen, "listen", 2, 0, 0,
|
||
(SCM sock, SCM backlog),
|
||
"This procedure enables @var{socket} to accept connection\n"
|
||
"requests. @var{backlog} is an integer specifying\n"
|
||
"the maximum length of the queue for pending connections.\n"
|
||
"If the queue fills, new clients will fail to connect until the\n"
|
||
"server calls @code{accept} to accept a connection from the queue.\n\n"
|
||
"The return value is unspecified.")
|
||
#define FUNC_NAME s_scm_listen
|
||
{
|
||
int fd;
|
||
sock = SCM_COERCE_OUTPORT (sock);
|
||
SCM_VALIDATE_OPFPORT (1,sock);
|
||
SCM_VALIDATE_INUM (2,backlog);
|
||
fd = SCM_FPORT_FDES (sock);
|
||
if (listen (fd, SCM_INUM (backlog)) == -1)
|
||
SCM_SYSERROR;
|
||
return SCM_UNSPECIFIED;
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
/* Put the components of a sockaddr into a new SCM vector. */
|
||
static SCM
|
||
scm_addr_vector (struct sockaddr *address, const char *proc)
|
||
{
|
||
short int fam = address->sa_family;
|
||
SCM result;
|
||
SCM *ve;
|
||
|
||
#ifdef HAVE_UNIX_DOMAIN_SOCKETS
|
||
if (fam == AF_UNIX)
|
||
{
|
||
struct sockaddr_un *nad = (struct sockaddr_un *) address;
|
||
|
||
result = scm_c_make_vector (2, SCM_UNSPECIFIED);
|
||
ve = SCM_VELTS (result);
|
||
ve[0] = scm_ulong2num ((unsigned long) fam);
|
||
ve[1] = scm_makfromstr (nad->sun_path,
|
||
(scm_sizet) strlen (nad->sun_path), 0);
|
||
}
|
||
else
|
||
#endif
|
||
if (fam == AF_INET)
|
||
{
|
||
struct sockaddr_in *nad = (struct sockaddr_in *) address;
|
||
|
||
result = scm_c_make_vector (3, SCM_UNSPECIFIED);
|
||
ve = SCM_VELTS (result);
|
||
ve[0] = scm_ulong2num ((unsigned long) fam);
|
||
ve[1] = scm_ulong2num (ntohl (nad->sin_addr.s_addr));
|
||
ve[2] = scm_ulong2num ((unsigned long) ntohs (nad->sin_port));
|
||
}
|
||
else
|
||
scm_misc_error (proc, "Unrecognised address family: ~A",
|
||
scm_listify (SCM_MAKINUM (fam), SCM_UNDEFINED));
|
||
|
||
return result;
|
||
}
|
||
|
||
/* calculate the size of a buffer large enough to hold any supported
|
||
sockaddr type. if the buffer isn't large enough, certain system
|
||
calls will return a truncated address. */
|
||
|
||
#if defined (HAVE_UNIX_DOMAIN_SOCKETS)
|
||
#define MAX_SIZE_UN sizeof (struct sockaddr_un)
|
||
#else
|
||
#define MAX_SIZE_UN 0
|
||
#endif
|
||
|
||
#define MAX_ADDR_SIZE max (sizeof (struct sockaddr_in), MAX_SIZE_UN)
|
||
|
||
SCM_DEFINE (scm_accept, "accept", 1, 0, 0,
|
||
(SCM sock),
|
||
"Accepts a connection on a bound, listening socket @var{socket}. If there\n"
|
||
"are no pending connections in the queue, it waits until\n"
|
||
"one is available unless the non-blocking option has been set on the\n"
|
||
"socket.\n\n"
|
||
"The return value is a\n"
|
||
"pair in which the CAR is a new socket port for the connection and\n"
|
||
"the CDR is an object with address information about the client which\n"
|
||
"initiated the connection.\n\n"
|
||
"If the address is not available then the CDR will be an empty vector.\n\n"
|
||
"@var{socket} does not become part of the\n"
|
||
"connection and will continue to accept new requests.")
|
||
#define FUNC_NAME s_scm_accept
|
||
{
|
||
int fd;
|
||
int newfd;
|
||
SCM address;
|
||
SCM newsock;
|
||
int addr_size = MAX_ADDR_SIZE;
|
||
char max_addr[MAX_ADDR_SIZE];
|
||
struct sockaddr *addr = (struct sockaddr *) max_addr;
|
||
|
||
sock = SCM_COERCE_OUTPORT (sock);
|
||
SCM_VALIDATE_OPFPORT (1, sock);
|
||
fd = SCM_FPORT_FDES (sock);
|
||
newfd = accept (fd, addr, &addr_size);
|
||
if (newfd == -1)
|
||
SCM_SYSERROR;
|
||
newsock = SCM_SOCK_FD_TO_PORT (newfd);
|
||
if (addr_size > 0)
|
||
address = scm_addr_vector (addr, FUNC_NAME);
|
||
else
|
||
address = SCM_BOOL_F;
|
||
|
||
return scm_cons (newsock, address);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_getsockname, "getsockname", 1, 0, 0,
|
||
(SCM sock),
|
||
"Returns the address of @var{socket}, in the same form as the object\n"
|
||
"returned by @code{accept}. On many systems the address of a socket\n"
|
||
"in the @code{AF_FILE} namespace cannot be read.")
|
||
#define FUNC_NAME s_scm_getsockname
|
||
{
|
||
int fd;
|
||
SCM result;
|
||
int addr_size = MAX_ADDR_SIZE;
|
||
char max_addr[MAX_ADDR_SIZE];
|
||
struct sockaddr *addr = (struct sockaddr *) max_addr;
|
||
|
||
sock = SCM_COERCE_OUTPORT (sock);
|
||
SCM_VALIDATE_OPFPORT (1,sock);
|
||
fd = SCM_FPORT_FDES (sock);
|
||
if (getsockname (fd, addr, &addr_size) == -1)
|
||
SCM_SYSERROR;
|
||
if (addr_size > 0)
|
||
result = scm_addr_vector (addr, FUNC_NAME);
|
||
else
|
||
result = SCM_BOOL_F;
|
||
return result;
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_getpeername, "getpeername", 1, 0, 0,
|
||
(SCM sock),
|
||
"Returns the address of the socket that the socket @var{socket} is connected to,\n"
|
||
"in the same form as the object\n"
|
||
"returned by @code{accept}. On many systems the address of a socket\n"
|
||
"in the @code{AF_FILE} namespace cannot be read.")
|
||
#define FUNC_NAME s_scm_getpeername
|
||
{
|
||
int fd;
|
||
SCM result;
|
||
int addr_size = MAX_ADDR_SIZE;
|
||
char max_addr[MAX_ADDR_SIZE];
|
||
struct sockaddr *addr = (struct sockaddr *) max_addr;
|
||
|
||
sock = SCM_COERCE_OUTPORT (sock);
|
||
SCM_VALIDATE_OPFPORT (1,sock);
|
||
fd = SCM_FPORT_FDES (sock);
|
||
if (getpeername (fd, addr, &addr_size) == -1)
|
||
SCM_SYSERROR;
|
||
if (addr_size > 0)
|
||
result = scm_addr_vector (addr, FUNC_NAME);
|
||
else
|
||
result = SCM_BOOL_F;
|
||
return result;
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_recv, "recv!", 2, 1, 0,
|
||
(SCM sock, SCM buf, SCM flags),
|
||
"Receives data from the socket port @var{socket}. @var{socket} must already\n"
|
||
"be bound to the address from which data is to be received.\n"
|
||
"@var{buf} is a string into which\n"
|
||
"the data will be written. The size of @var{buf} limits the amount of\n"
|
||
"data which can be received: in the case of packet\n"
|
||
"protocols, if a packet larger than this limit is encountered then some data\n"
|
||
"will be irrevocably lost.\n\n"
|
||
"The optional @var{flags} argument is a value or\n"
|
||
"bitwise OR of MSG_OOB, MSG_PEEK, MSG_DONTROUTE etc.\n\n"
|
||
"The value returned is the number of bytes read from the socket.\n\n"
|
||
"Note that the data is read directly from the socket file descriptor:\n"
|
||
"any unread buffered port data is ignored.")
|
||
#define FUNC_NAME s_scm_recv
|
||
{
|
||
int rv;
|
||
int fd;
|
||
int flg;
|
||
|
||
SCM_VALIDATE_OPFPORT (1,sock);
|
||
SCM_VALIDATE_STRING (2,buf);
|
||
SCM_VALIDATE_INUM_DEF_COPY (3,flags,0,flg);
|
||
fd = SCM_FPORT_FDES (sock);
|
||
|
||
SCM_SYSCALL (rv = recv (fd, SCM_STRING_CHARS (buf), SCM_STRING_LENGTH (buf), flg));
|
||
if (rv == -1)
|
||
SCM_SYSERROR;
|
||
|
||
return SCM_MAKINUM (rv);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_send, "send", 2, 1, 0,
|
||
(SCM sock, SCM message, SCM flags),
|
||
"Transmits the string @var{message} on the socket port @var{socket}. \n"
|
||
"@var{socket} must already be bound to a destination address. The\n"
|
||
"value returned is the number of bytes transmitted -- it's possible for\n"
|
||
"this to be less than the length of @var{message} if the socket is\n"
|
||
"set to be non-blocking. The optional @var{flags} argument is a value or\n"
|
||
"bitwise OR of MSG_OOB, MSG_PEEK, MSG_DONTROUTE etc.\n\n"
|
||
"Note that the data is written directly to the socket file descriptor:\n"
|
||
"any unflushed buffered port data is ignored.")
|
||
#define FUNC_NAME s_scm_send
|
||
{
|
||
int rv;
|
||
int fd;
|
||
int flg;
|
||
|
||
sock = SCM_COERCE_OUTPORT (sock);
|
||
SCM_VALIDATE_OPFPORT (1,sock);
|
||
SCM_VALIDATE_STRING (2, message);
|
||
SCM_VALIDATE_INUM_DEF_COPY (3,flags,0,flg);
|
||
fd = SCM_FPORT_FDES (sock);
|
||
|
||
SCM_SYSCALL (rv = send (fd, SCM_STRING_CHARS (message), SCM_STRING_LENGTH (message), flg));
|
||
if (rv == -1)
|
||
SCM_SYSERROR;
|
||
return SCM_MAKINUM (rv);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_recvfrom, "recvfrom!", 2, 3, 0,
|
||
(SCM sock, SCM str, SCM flags, SCM start, SCM end),
|
||
"Returns data from the socket port @var{socket} and also information about\n"
|
||
"where the data was received from. @var{socket} must already\n"
|
||
"be bound to the address from which data is to be received.\n"
|
||
"@code{str}, is a string into which\n"
|
||
"the data will be written. The size of @var{str} limits the amount of\n"
|
||
"data which can be received: in the case of packet\n"
|
||
"protocols, if a packet larger than this limit is encountered then some data\n"
|
||
"will be irrevocably lost.\n\n"
|
||
"The optional @var{flags} argument is a value or\n"
|
||
"bitwise OR of MSG_OOB, MSG_PEEK, MSG_DONTROUTE etc.\n\n"
|
||
"The value returned is a pair: the CAR is the number of bytes read from\n"
|
||
"the socket and the CDR an address object in the same form as returned by\n"
|
||
"@code{accept}.\n\n"
|
||
"The @var{start} and @var{end} arguments specify a substring of @var{str}\n"
|
||
"to which the data should be written.\n\n"
|
||
"Note that the data is read directly from the socket file descriptor:\n"
|
||
"any unread buffered port data is ignored.")
|
||
#define FUNC_NAME s_scm_recvfrom
|
||
{
|
||
int rv;
|
||
int fd;
|
||
int flg;
|
||
char *buf;
|
||
int offset;
|
||
int cend;
|
||
SCM address;
|
||
int addr_size = MAX_ADDR_SIZE;
|
||
char max_addr[MAX_ADDR_SIZE];
|
||
struct sockaddr *addr = (struct sockaddr *) max_addr;
|
||
|
||
SCM_VALIDATE_OPFPORT (1,sock);
|
||
fd = SCM_FPORT_FDES (sock);
|
||
SCM_VALIDATE_SUBSTRING_SPEC_COPY (2, str, buf, 4, start, offset,
|
||
5, end, cend);
|
||
if (SCM_UNBNDP (flags))
|
||
flg = 0;
|
||
else
|
||
SCM_VALIDATE_ULONG_COPY (3, flags, flg);
|
||
|
||
/* recvfrom will not necessarily return an address. e.g., linux
|
||
2.4.2 doesn't change addr or addr_size if socket is
|
||
AF_INET/SOCK_STREAM. */
|
||
addr->sa_family = AF_UNSPEC;
|
||
SCM_SYSCALL (rv = recvfrom (fd, buf + offset,
|
||
cend - offset, flg,
|
||
addr, &addr_size));
|
||
if (rv == -1)
|
||
SCM_SYSERROR;
|
||
if (addr_size > 0 && addr->sa_family != AF_UNSPEC)
|
||
address = scm_addr_vector (addr, FUNC_NAME);
|
||
else
|
||
address = SCM_BOOL_F;
|
||
|
||
return scm_cons (SCM_MAKINUM (rv), address);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
SCM_DEFINE (scm_sendto, "sendto", 4, 0, 1,
|
||
(SCM sock, SCM message, SCM fam, SCM address, SCM args_and_flags),
|
||
"Transmits the string @var{message} on the socket port @var{socket}. The\n"
|
||
"destination address is specified using the @var{family}, @var{address} and\n"
|
||
"@var{arg} arguments, in a similar way to the @code{connect}\n"
|
||
"procedure. The\n"
|
||
"value returned is the number of bytes transmitted -- it's possible for\n"
|
||
"this to be less than the length of @var{message} if the socket is\n"
|
||
"set to be non-blocking. The optional @var{flags} argument is a value or\n"
|
||
"bitwise OR of MSG_OOB, MSG_PEEK, MSG_DONTROUTE etc.\n\n"
|
||
"Note that the data is written directly to the socket file descriptor:\n"
|
||
"any unflushed buffered port data is ignored.")
|
||
#define FUNC_NAME s_scm_sendto
|
||
{
|
||
int rv;
|
||
int fd;
|
||
int flg;
|
||
struct sockaddr *soka;
|
||
int size;
|
||
|
||
sock = SCM_COERCE_OUTPORT (sock);
|
||
SCM_VALIDATE_FPORT (1,sock);
|
||
SCM_VALIDATE_STRING (2, message);
|
||
SCM_VALIDATE_INUM (3,fam);
|
||
fd = SCM_FPORT_FDES (sock);
|
||
soka = scm_fill_sockaddr (SCM_INUM (fam), address, &args_and_flags, 4,
|
||
FUNC_NAME, &size);
|
||
if (SCM_NULLP (args_and_flags))
|
||
flg = 0;
|
||
else
|
||
{
|
||
SCM_VALIDATE_CONS (5,args_and_flags);
|
||
flg = SCM_NUM2ULONG (5,SCM_CAR (args_and_flags));
|
||
}
|
||
SCM_SYSCALL (rv = sendto (fd, SCM_STRING_CHARS (message),
|
||
SCM_STRING_LENGTH (message),
|
||
flg, soka, size));
|
||
if (rv == -1)
|
||
{
|
||
int save_errno = errno;
|
||
free (soka);
|
||
errno = save_errno;
|
||
SCM_SYSERROR;
|
||
}
|
||
free (soka);
|
||
return SCM_MAKINUM (rv);
|
||
}
|
||
#undef FUNC_NAME
|
||
|
||
|
||
|
||
void
|
||
scm_init_socket ()
|
||
{
|
||
/* protocol families. */
|
||
#ifdef AF_UNSPEC
|
||
scm_sysintern ("AF_UNSPEC", SCM_MAKINUM (AF_UNSPEC));
|
||
#endif
|
||
#ifdef AF_UNIX
|
||
scm_sysintern ("AF_UNIX", SCM_MAKINUM (AF_UNIX));
|
||
#endif
|
||
#ifdef AF_INET
|
||
scm_sysintern ("AF_INET", SCM_MAKINUM (AF_INET));
|
||
#endif
|
||
|
||
#ifdef PF_UNSPEC
|
||
scm_sysintern ("PF_UNSPEC", SCM_MAKINUM (PF_UNSPEC));
|
||
#endif
|
||
#ifdef PF_UNIX
|
||
scm_sysintern ("PF_UNIX", SCM_MAKINUM (PF_UNIX));
|
||
#endif
|
||
#ifdef PF_INET
|
||
scm_sysintern ("PF_INET", SCM_MAKINUM (PF_INET));
|
||
#endif
|
||
|
||
/* socket types. */
|
||
#ifdef SOCK_STREAM
|
||
scm_sysintern ("SOCK_STREAM", SCM_MAKINUM (SOCK_STREAM));
|
||
#endif
|
||
#ifdef SOCK_DGRAM
|
||
scm_sysintern ("SOCK_DGRAM", SCM_MAKINUM (SOCK_DGRAM));
|
||
#endif
|
||
#ifdef SOCK_RAW
|
||
scm_sysintern ("SOCK_RAW", SCM_MAKINUM (SOCK_RAW));
|
||
#endif
|
||
|
||
/* setsockopt level. */
|
||
#ifdef SOL_SOCKET
|
||
scm_sysintern ("SOL_SOCKET", SCM_MAKINUM (SOL_SOCKET));
|
||
#endif
|
||
#ifdef SOL_IP
|
||
scm_sysintern ("SOL_IP", SCM_MAKINUM (SOL_IP));
|
||
#endif
|
||
#ifdef SOL_TCP
|
||
scm_sysintern ("SOL_TCP", SCM_MAKINUM (SOL_TCP));
|
||
#endif
|
||
#ifdef SOL_UDP
|
||
scm_sysintern ("SOL_UDP", SCM_MAKINUM (SOL_UDP));
|
||
#endif
|
||
|
||
/* setsockopt names. */
|
||
#ifdef SO_DEBUG
|
||
scm_sysintern ("SO_DEBUG", SCM_MAKINUM (SO_DEBUG));
|
||
#endif
|
||
#ifdef SO_REUSEADDR
|
||
scm_sysintern ("SO_REUSEADDR", SCM_MAKINUM (SO_REUSEADDR));
|
||
#endif
|
||
#ifdef SO_STYLE
|
||
scm_sysintern ("SO_STYLE", SCM_MAKINUM (SO_STYLE));
|
||
#endif
|
||
#ifdef SO_TYPE
|
||
scm_sysintern ("SO_TYPE", SCM_MAKINUM (SO_TYPE));
|
||
#endif
|
||
#ifdef SO_ERROR
|
||
scm_sysintern ("SO_ERROR", SCM_MAKINUM (SO_ERROR));
|
||
#endif
|
||
#ifdef SO_DONTROUTE
|
||
scm_sysintern ("SO_DONTROUTE", SCM_MAKINUM (SO_DONTROUTE));
|
||
#endif
|
||
#ifdef SO_BROADCAST
|
||
scm_sysintern ("SO_BROADCAST", SCM_MAKINUM (SO_BROADCAST));
|
||
#endif
|
||
#ifdef SO_SNDBUF
|
||
scm_sysintern ("SO_SNDBUF", SCM_MAKINUM (SO_SNDBUF));
|
||
#endif
|
||
#ifdef SO_RCVBUF
|
||
scm_sysintern ("SO_RCVBUF", SCM_MAKINUM (SO_RCVBUF));
|
||
#endif
|
||
#ifdef SO_KEEPALIVE
|
||
scm_sysintern ("SO_KEEPALIVE", SCM_MAKINUM (SO_KEEPALIVE));
|
||
#endif
|
||
#ifdef SO_OOBINLINE
|
||
scm_sysintern ("SO_OOBINLINE", SCM_MAKINUM (SO_OOBINLINE));
|
||
#endif
|
||
#ifdef SO_NO_CHECK
|
||
scm_sysintern ("SO_NO_CHECK", SCM_MAKINUM (SO_NO_CHECK));
|
||
#endif
|
||
#ifdef SO_PRIORITY
|
||
scm_sysintern ("SO_PRIORITY", SCM_MAKINUM (SO_PRIORITY));
|
||
#endif
|
||
#ifdef SO_LINGER
|
||
scm_sysintern ("SO_LINGER", SCM_MAKINUM (SO_LINGER));
|
||
#endif
|
||
|
||
/* recv/send options. */
|
||
#ifdef MSG_OOB
|
||
scm_sysintern ("MSG_OOB", SCM_MAKINUM (MSG_OOB));
|
||
#endif
|
||
#ifdef MSG_PEEK
|
||
scm_sysintern ("MSG_PEEK", SCM_MAKINUM (MSG_PEEK));
|
||
#endif
|
||
#ifdef MSG_DONTROUTE
|
||
scm_sysintern ("MSG_DONTROUTE", SCM_MAKINUM (MSG_DONTROUTE));
|
||
#endif
|
||
|
||
scm_add_feature ("socket");
|
||
|
||
#ifndef SCM_MAGIC_SNARFER
|
||
#include "libguile/socket.x"
|
||
#endif
|
||
}
|
||
|
||
|
||
/*
|
||
Local Variables:
|
||
c-file-style: "gnu"
|
||
End:
|
||
*/
|