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
|
/*
* Copyright © 1988-2004 Keith Packard and Bart Massey.
* All Rights Reserved. See the file COPYING in this directory
* for licensing information.
*/
/*
* sockets.c
*
* provide builtin functions for the Socket namespace
*/
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#ifndef SUN_LEN
#define SUN_LEN(ptr) \
(sizeof(*(ptr)) - sizeof((ptr)->sun_path) + strlen((ptr)->sun_path) + 1)
#endif
#include <limits.h>
#include <netinet/in.h>
#include <netdb.h>
#include <string.h>
#include "builtin.h"
#include <errno.h>
NamespacePtr SocketNamespace;
Type *typeSockaddr;
Value do_Socket_create (int num, Value *args);
Value do_Socket_connect (int num, Value *args);
Value do_Socket_bind (int numb, Value *args);
Value do_Socket_listen (Value s, Value backlog);
Value do_Socket_accept (Value s);
Value do_Socket_shutdown (Value s, Value how);
Value do_Socket_gethostname (void);
Value do_Socket_getsockname (Value s);
void
import_Socket_namespace(void)
{
ENTER ();
static const struct fbuiltin_0 funcs_0[] = {
{ do_Socket_gethostname, "gethostname", "s", "", "\n"
" string gethostname ()\n"
"\n"
" Get the current hostname.\n" },
{ 0 },
};
static const struct fbuiltin_1 funcs_1[] = {
{ do_Socket_accept, "accept", "f", "f", "\n"
" file accept (file listen)\n"
"\n"
" Return a socket for the next connection on 'listen'.\n" },
{ do_Socket_getsockname, "getsockname", "a", "f", "\n"
" sockaddr getsockname (file socket)\n"
"\n"
" Returns the address and port of 'socket'.\n" },
{ 0 }
};
static const struct fbuiltin_2 funcs_2[] = {
{ do_Socket_listen, "listen", "v", "fi", "\n"
" void listen (file socket, int length)\n"
"\n"
" Establish a listen queue on 'f' of length 'i' (max 5).\n" },
{ do_Socket_shutdown, "shutdown", "v", "fi", "\n"
" void shutdown (file socket, int dir)\n"
"\n"
" Shut communication in 'dir' direction:\n"
" SHUT_RD: shut down reading.\n"
" SHUT_WR: shut down writing.\n"
" SHUT_RDWR: shut down reading and writing.\n" },
{ 0 }
};
static const struct fbuiltin_v funcs_v[] = {
{ do_Socket_create, "create", "f", ".i", "\n"
" file create ([int family], int type)\n"
"\n"
" Create a socket where the optional 'family' is one of:\n"
" AF_UNIX: Local communication.\n"
" AF_INET (default): IPv4 Internet protocols.\n"
" AF_INET6: IPv6 Internet protocols.\n"
" and where 'type' is one of:\n"
" SOCK_STREAM: a stream socket.\n"
" SOCK_DGRAM: a datagram socket.\n" },
{ do_Socket_bind, "bind", "v", "f.p", "\n"
" void bind (file socket, string host, string port)\n"
" void bind (file socket, string host, int port)\n"
"\n"
" Bind AF_INET 'socket' to 'host', 'port'.\n"
"\n"
" void bind (file socket, string local_socket)\n"
"\n"
" Bind AF_UNIX 'socket' to 'localhost'.\n" },
{ do_Socket_connect, "connect", "v", "f.p", "\n"
" void connect (file socket, string host, string port)\n"
" void connect (file socket, string host, int port)\n"
"\n"
" Connect AF_INET 'socket' to 'host', 'port'.\n"
"\n"
" void connect (file socket, string local_socket)\n"
"\n"
" Connect AF_UNIX 'socket' to 'local_socket'.\n" },
{ 0 }
};
static const struct ibuiltin ivars[] = {
{ AF_UNIX, "AF_UNIX", &SocketNamespace },
{ AF_INET, "AF_INET", &SocketNamespace },
#ifdef AF_INET6
{ AF_INET6, "AF_INET6", &SocketNamespace },
#endif
{ SOCK_STREAM, "SOCK_STREAM", &SocketNamespace },
{ SOCK_DGRAM, "SOCK_DGRAM", &SocketNamespace },
{ SHUT_RD, "SHUT_RD", &SocketNamespace },
{ SHUT_WR, "SHUT_WR", &SocketNamespace },
{ SHUT_RDWR, "SHUT_RDWR", &SocketNamespace },
{ 0 }
};
static const struct sbuiltin svars[] = {
{ "0.0.0.0", "INADDR_ANY", &SocketNamespace },
{ "127.0.0.1", "INADDR_LOOPBACK", &SocketNamespace },
{ "255.255.255.255", "INADDR_BROADCAST", &SocketNamespace },
{ 0 }
};
SymbolPtr sym;
Type *type;
SocketNamespace = BuiltinNamespace (/*parent*/ 0, "Socket")->namespace.namespace;
type = BuildStructType (2,
typePrim[rep_integer], "addr",
typePrim[rep_integer], "port");
sym = NewSymbolType (AtomId ("sockaddr"), type);
typeSockaddr = NewTypeName (NewExprAtom (AtomId ("sockaddr"), 0, False),
sym);
NamespaceAddName (SocketNamespace, sym, publish_public);
BuiltinFuncs0 (&SocketNamespace, funcs_0);
BuiltinFuncs1 (&SocketNamespace, funcs_1);
BuiltinFuncs2 (&SocketNamespace, funcs_2);
BuiltinFuncsV (&SocketNamespace, funcs_v);
BuiltinIntegers (ivars);
BuiltinStrings (svars);
EXIT ();
}
/* File::file do_Socket_create ({SOCK_STREAM,SOCK_DGRAM} type); */
Value
do_Socket_create (int num, Value *args)
{
ENTER ();
int ifamily, itype, type_index, s;
Value ret;
if (num == 0 || num > 2) {
RaiseStandardException (exception_invalid_argument, 3,
NewStrString ("create must have one or two arguments"),
NewInt (0), NewInt (num));
RETURN (Void);
}
if (num > 1) {
ifamily = IntPart (args[0], "Illegal address family");
type_index = 1;
} else {
ifamily = AF_INET;
type_index = 0;
}
itype = IntPart (args[type_index], "Illegal socket type");
if (aborting)
RETURN (Void);
s = socket (ifamily, itype, 0);
if (s == -1)
RETURN (Void);
ret = FileCreate (s, FileReadable|FileWritable);
ret->file.sock_family = ifamily;
RETURN (ret);
}
#ifdef PATH_MAX
#define UN_SOCK_MAX PATH_MAX
#else
#define UN_SOCK_MAX 4096
#endif
typedef union {
struct sockaddr_in in;
struct sockaddr_un un;
struct sockaddr addr;
struct {
struct sockaddr_un un;
char path[UN_SOCK_MAX];
} align;
} sockaddr_all_t;
#define VerifyArgumentCount(arg, condition, error) \
if (! (condition)) { \
RaiseStandardException (exception_invalid_argument, 3, \
NewStrString (error), NewInt (0), NewInt (arg)); \
}
/* Supports the following args from both bind and connect:
* (File::file s, String local_socket)
*/
static Bool address_lookup_af_unix (int num, Value *args,
struct sockaddr_un *addr, socklen_t *len)
{
char *local_socket;
Value s = args[0];
VerifyArgumentCount (num, num == 2,
"must have 2 arguments for an AF_UNIX socket");
if (aborting)
return False;
local_socket = StrzPart (args[1], "invalid local_socket");
if (!local_socket || *local_socket == '\0')
return False;
if (strlen (local_socket) > UN_SOCK_MAX)
return False;
addr->sun_family = s->file.sock_family;
strcpy (addr->sun_path, local_socket);
*len = SUN_LEN (addr);
return True;
}
/* Supports the following args from both bind and connect:
* (File::file s, String host, String port)
* (File::file s, String host, int port)
*/
static Bool address_lookup_af_inet (int num, Value *args,
struct sockaddr_in *addr, socklen_t *len)
{
Value host, port;
char *hostchars;
struct hostent *hostent;
long int portnum;
struct servent *portent;
char *endptr;
Value s = args[0];
VerifyArgumentCount (num, num == 3,
"must have 3 arguments for an AF_INET socket");
if (aborting)
return False;
host = args[1];
port = args[2];
hostchars = StrzPart (host, "invalid hostname");
if (!hostchars || *hostchars == '\0')
return False;
if (ValueIsString (port)) {
char *portchars = StrzPart (port, "invalid port string");
if (!portchars || *portchars == '\0')
return False;
portnum = strtol (portchars, &endptr, /* base */ 10);
if (*endptr != '\0') /* non-numeric port specification */
{
/* FIXME: this should not always be "tcp"! */
portent = getservbyname (portchars, "tcp");
if (portent == 0)
return False; /* FIXME: more here? */
addr->sin_port = portent->s_port;
}
if (portnum <= 0 || portnum >= (1 << 16))
return False; /* FIXME: more here? */
} else {
portnum = IntPart (port, "invalid port value");
if (portnum <= 0 || portnum >= (1 << 16))
return False; /* FIXME: more here? */
}
addr->sin_family = s->file.sock_family;
addr->sin_port = htons (portnum);
/* host lookup */
hostent = gethostbyname (hostchars);
if (hostent == 0)
{
return False; /* FIXME: more here? */
}
*len = sizeof (*addr);
memcpy (&addr->sin_addr.s_addr, hostent->h_addr_list[0],
sizeof (addr->sin_addr.s_addr));
return True;
}
/* Supports the following args from both bind and connect:
*
* (File::file s, String host, String port)
* (File::file s, String host, int port)
* (File::file s, String local_socket)
*/
static Bool address_lookup (int num, Value *args,
sockaddr_all_t *addr, socklen_t *len)
{
Value s = args[0];
switch (s->file.sock_family) {
case AF_UNIX:
return address_lookup_af_unix (num, args, &addr->un, len);
case AF_INET:
return address_lookup_af_inet (num, args, &addr->in, len);
#ifdef AF_INET6
case AF_INET6:
/* FIXME */
#endif
default:
return False;
}
}
/* void do_Socket_connect (File::file s, String host, String port);
* void do_Socket_connect (File::file s, String host, int port);
* void do_Socket_connect (File::file s, String local_socket;
*/
Value
do_Socket_connect (int num, Value *args)
{
ENTER ();
sockaddr_all_t addr;
socklen_t len;
Value s = args[0];
if (!address_lookup (num, args, &addr, &len))
RETURN (Void);
if (!running->thread.partial)
{
int flags = fcntl (s->file.fd, F_GETFL);
int n, err;
flags |= O_NONBLOCK;
fcntl (s->file.fd, F_SETFL, flags);
#ifdef SO_BROADCAST
{
int one = 1;
setsockopt (s->file.fd, SOL_SOCKET, SO_BROADCAST,
(char *) &one, sizeof (int));
}
#endif
n = connect (s->file.fd, &addr.addr, len);
flags &= ~O_NONBLOCK;
fcntl (s->file.fd, F_SETFL, flags);
err = errno;
if (n == -1)
{
if (err == EWOULDBLOCK || err == EINPROGRESS)
{
FileSetBlocked (s, FileOutputBlocked);
running->thread.partial = 1;
}
else
{
RaiseStandardException (exception_io_error, 3,
FileGetErrorMessage (err),
FileGetError (err),
s);
RETURN (Void);
}
}
}
if (s->file.flags & FileOutputBlocked)
{
ThreadSleep (running, s, PriorityIo);
RETURN (Void);
}
complete = True;
RETURN (Void);
}
/* void do_Socket_bind (File::file s, String host, String port);
* void do_Socket_bind (File::file s, String host, int port);
* void do_Socket_bind (File::file s, String local_socket;
*/
Value
do_Socket_bind (int num, Value *args)
{
ENTER ();
sockaddr_all_t addr;
socklen_t len;
Value s = args[0];
if (!address_lookup (num, args, &addr, &len))
RETURN (Void);
#ifdef SO_REUSEADDR
{
int one = 1;
setsockopt (s->file.fd, SOL_SOCKET, SO_REUSEADDR, (char *) &one, sizeof (int));
}
#endif
if (bind (s->file.fd, &addr.addr, len) == -1)
{
RaiseStandardException (exception_io_error, 3,
FileGetErrorMessage (errno),
FileGetError (errno),
s);
RETURN (Void);
}
RETURN (Void);
}
/* void do_Socket_listen (File::file s, int backlog); */
Value
do_Socket_listen (Value s, Value backlog)
{
ENTER ();
int ibacklog;
ibacklog = IntPart (backlog, "Illegal backlog length");
if (aborting)
RETURN (Void);
if (listen (s->file.fd, ibacklog) == -1)
{
RETURN (Void); /* FIXME: more here? */
}
RETURN (Void);
}
/* File::file do_Socket_accept (File::file s); */
Value
do_Socket_accept (Value s)
{
ENTER ();
int f, err;
int flags = fcntl (s->file.fd, F_GETFL);
flags |= O_NONBLOCK;
fcntl (s->file.fd, F_SETFL, flags);
f = accept (s->file.fd, 0, 0);
flags &= ~O_NONBLOCK;
fcntl (s->file.fd, F_SETFL, flags);
err = errno;
if (f == -1)
{
if (err == EWOULDBLOCK || err == EAGAIN)
{
FileSetBlocked (s, FileInputBlocked);
running->thread.partial = 1;
}
else
{
RaiseStandardException (exception_io_error, 3,
FileGetErrorMessage (err),
FileGetError (err),
s);
RETURN (Void);
}
}
if (s->file.flags & FileInputBlocked)
{
ThreadSleep (running, s, PriorityIo);
RETURN (Void);
}
complete = True;
RETURN (FileCreate (f, FileReadable|FileWritable));
}
/* void do_Socket_shutdown (File::file s, {SHUT_RD,SHUT_WR,SHUT_RDWR} how); */
Value
do_Socket_shutdown (Value s, Value how)
{
ENTER ();
int ihow;
ihow = IntPart (how, "Illegal socket shutdown request");
if (aborting)
RETURN (Void);
if (shutdown (s->file.fd, ihow) == -1)
{
RETURN (Void); /* FIXME: more here? */
}
RETURN (Void);
}
Value
do_Socket_gethostname (void)
{
ENTER ();
#ifndef HOST_NAME_MAX
#define HOST_NAME_MAX 255
#endif
char hostname[HOST_NAME_MAX+1];
if (gethostname (hostname, sizeof (hostname)) == -1)
{
RaiseStandardException (exception_io_error, 3,
FileGetErrorMessage (errno),
FileGetError (errno),
Void);
RETURN (Void);
}
/* null termination is not promised */
hostname[HOST_NAME_MAX] = '\0';
RETURN (NewStrString (hostname));
}
Value
do_Socket_getsockname (Value s)
{
ENTER ();
struct sockaddr_in addr;
socklen_t len = sizeof (addr);
Value ret;
BoxPtr box;
if (getsockname (s->file.fd, (struct sockaddr *) &addr, &len) == -1)
{
RaiseStandardException (exception_io_error, 3,
FileGetErrorMessage (errno),
FileGetError (errno),
s);
RETURN (Void);
}
ret = NewStruct (TypeCanon (typeSockaddr)->structs.structs, False);
box = ret->structs.values;
BoxValueSet (box, 0, NewInteger (Positive,
NewNatural (ntohl (addr.sin_addr.s_addr))));
BoxValueSet (box, 1, NewInt (ntohs (addr.sin_port)));
RETURN (ret);
}
|