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
|
/* $Id$
Part of SWI-Prolog
Author: Jeffrey Rosenwald
E-mail: jeffrose@acm.org
WWW: http://www.swi-prolog.org
Copyright (C): 2008, Jeffrey Rosenwald
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define O_DEBUG 1
#ifdef HAVE_CONFIG_H
#include <config.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 HAVE_LINUX_TIPC_H
#include <linux/tipc.h>
#else
#error "Cannot find <tipc.h>"
#endif
static atom_t ATOM_scope;
static atom_t ATOM_no_scope;
static atom_t ATOM_node;
static atom_t ATOM_cluster;
static atom_t ATOM_zone;
static atom_t ATOM_all;
static atom_t ATOM_socket_type;
static atom_t ATOM_dgram;
static atom_t ATOM_rdm;
static atom_t ATOM_seqpacket;
static atom_t ATOM_stream;
static atom_t ATOM_nodelay; /* "nodelay" */
static atom_t ATOM_nonblock; /* "nonblock" */
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_importance; /* "importance" */
static atom_t ATOM_low; /* "low" */
static atom_t ATOM_medium; /* "medium" */
static atom_t ATOM_high; /* "high" */
static atom_t ATOM_critical; /* "critical" */
static atom_t ATOM_src_droppable; /* "src_droppable" */
static atom_t ATOM_dest_droppable; /* "dest_droppable" */
static atom_t ATOM_conn_timeout; /* "conn_timeout" */
static functor_t FUNCTOR_tipc_socket1; /* $tipc_socket(Id) */
static functor_t FUNCTOR_port_id;
static functor_t FUNCTOR_name3;
static functor_t FUNCTOR_name_seq3;
static functor_t FUNCTOR_mcast3;
/*******************************
* CONVERSION *
*******************************/
static int
tipc_get_socket(term_t Socket, int *id)
{ IOSTREAM *s;
int socket;
if ( PL_is_functor(Socket, FUNCTOR_tipc_socket1) )
{ term_t a = PL_new_term_ref();
_PL_get_arg(1, Socket, a);
if ( PL_get_integer(a, id) )
return TRUE;
}
if ( PL_get_stream_handle(Socket, &s) )
{ socket = (int)(intptr_t)s->handle;
*id = socket;
return TRUE;
}
return pl_error(NULL, 0, NULL, ERR_ARGTYPE, -1, Socket, "socket");
}
static int
tipc_unify_socket(term_t Socket, int id)
{ return PL_unify_term(Socket,
PL_FUNCTOR, FUNCTOR_tipc_socket1,
IntArg(id));
}
#define pl_open_socket tipc_open_socket
#define pl_listen tipc_listen
#define pl_close_socket tipc_close_socket
#define tcp_get_socket(t, p) tipc_get_socket(t, p)
#include "sockcommon.c"
int
get_uint(term_t term, unsigned *value)
{ int64_t v0;
if ( !PL_get_int64(term, &v0))
return FALSE;
#if 0
/* tipc users are somewhat cavalier about using -1 in place of 4294967295U */
if(v0 < -1 || v0 > UINT_MAX)
return FALSE;
#endif
*value = (unsigned) v0 & 0xffffffff;
return TRUE;
}
static int
nbio_get_tipc(term_t tipc, struct sockaddr_tipc *sockaddr)
{ term_t a = PL_new_term_ref();
sockaddr->family = AF_TIPC;
do
{
if ( PL_is_functor(tipc, FUNCTOR_port_id) )
{
unsigned ref, node;
_PL_get_arg(1, tipc, a);
if ( !get_uint(a, &ref) )
break;
_PL_get_arg(2, tipc, a);
if ( !get_uint(a, &node) )
break;
sockaddr->addrtype = TIPC_ADDR_ID;
sockaddr->addr.id.ref = ref;
sockaddr->addr.id.node = node;
return TRUE;
}
if ( PL_is_functor(tipc, FUNCTOR_name3) )
{
unsigned arg1, arg2, arg3;
_PL_get_arg(1, tipc, a);
if ( !get_uint(a, &arg1) )
break;
_PL_get_arg(2, tipc, a);
if ( !get_uint(a, &arg2) )
break;
_PL_get_arg(3, tipc, a);
if ( !get_uint(a, &arg3) )
break;
sockaddr->addrtype = TIPC_ADDR_NAME;
sockaddr->addr.name.name.type = arg1;
sockaddr->addr.name.name.instance = arg2;
sockaddr->addr.name.domain = arg3;
return TRUE;
}
if ( PL_is_functor(tipc, FUNCTOR_name_seq3) ||
PL_is_functor(tipc, FUNCTOR_mcast3))
{
unsigned arg1, arg2, arg3;
_PL_get_arg(1, tipc, a);
if ( !get_uint(a, &arg1) )
break;
_PL_get_arg(2, tipc, a);
if ( !get_uint(a, &arg2) )
break;
_PL_get_arg(3, tipc, a);
if ( !get_uint(a, &arg3) )
break;
sockaddr->addrtype = TIPC_ADDR_NAMESEQ;
sockaddr->addr.nameseq.type = arg1;
sockaddr->addr.nameseq.lower = arg2;
sockaddr->addr.nameseq.upper = arg3;
return TRUE;
}
} while(FALSE);
return FALSE;
}
static int
nbio_get_tipc_sockaddr(term_t Address, struct sockaddr_tipc *addr)
{ if ( !nbio_get_tipc(Address, addr) )
return pl_error(NULL, 0, NULL, ERR_ARGTYPE, 1, Address, "tipc address");
return TRUE;
}
/*******************************
* SETOPT *
*******************************/
typedef enum
{ NB_TIPC_IMPORTANCE,
NB_TIPC_SRC_DROPPABLE,
NB_TIPC_DEST_DROPPABLE,
NB_TIPC_CONN_TIMEOUT,
} tipc_option;
static int
tipc_setopt(nbio_sock_t socket, tipc_option opt, ...)
{ plsocket_ptr s;
va_list args;
int rc;
if ( !(s = nbio_to_plsocket(socket)) )
return -1;
va_start(args, opt);
switch(opt)
{ case NB_TIPC_IMPORTANCE:
{ int val = va_arg(args, int);
if ( setsockopt(plsocket_handle(s), SOL_TIPC, TIPC_IMPORTANCE,
(const void *)&val, sizeof(val)) == -1 )
{ nbio_error(h_errno, TCP_HERRNO);
rc = -1;
} else
rc = 0;
break;
}
case NB_TIPC_SRC_DROPPABLE:
case NB_TIPC_DEST_DROPPABLE:
{ int val = va_arg(args, int);
int level = (opt == NB_TIPC_SRC_DROPPABLE) ? TIPC_SRC_DROPPABLE
: TIPC_DEST_DROPPABLE;
if ( setsockopt(plsocket_handle(s), SOL_TIPC, level,
(const void *) &val, sizeof(val)) == -1 )
{ nbio_error(h_errno, TCP_HERRNO);
rc = -1;
} else
rc = 0;
break;
}
case NB_TIPC_CONN_TIMEOUT:
{ int val = va_arg(args, int);
if ( setsockopt(plsocket_handle(s), SOL_TIPC, TIPC_CONN_TIMEOUT,
(const void *) &val, sizeof(val)) == -1 )
{ nbio_error(h_errno, TCP_HERRNO);
rc = -1;
} else
rc = 0;
break;
}
default:
rc = -1;
assert(0);
}
va_end(args);
return rc;
}
static foreign_t
pl_tipc_setopt(term_t Socket, term_t opt)
{ int socket;
atom_t a;
int arity;
if ( !tipc_get_socket(Socket, &socket) )
return FALSE;
if ( PL_get_name_arity(opt, &a, &arity) )
{ if ( a == ATOM_importance && arity == 1 )
{ atom_t val;
term_t a1 = PL_new_term_ref();
int ival = TIPC_LOW_IMPORTANCE;
if (PL_get_arg(1, opt, a1))
{ if(!PL_get_atom(a1, &val) )
return pl_error(NULL, 0, NULL, ERR_DOMAIN, a1, "atom");
if(val == ATOM_low)
ival = TIPC_LOW_IMPORTANCE;
else if(val == ATOM_medium)
ival = TIPC_MEDIUM_IMPORTANCE;
else if(val == ATOM_high)
ival = TIPC_HIGH_IMPORTANCE;
else if(val == ATOM_critical)
ival = TIPC_CRITICAL_IMPORTANCE;
else
return pl_error(NULL, 0, NULL, ERR_DOMAIN, a1, "low, medium, high, or critical");
return((tipc_setopt(socket, NB_TIPC_IMPORTANCE, ival) == 0) ? TRUE : FALSE);
}
}
if ( ((a == ATOM_dest_droppable) ||
(a == ATOM_src_droppable)) && arity == 1 )
{ int val;
term_t a1 = PL_new_term_ref();
int option = (a == ATOM_dest_droppable) ? NB_TIPC_DEST_DROPPABLE
: NB_TIPC_SRC_DROPPABLE;
if (PL_get_arg(1, opt, a1))
{ if(!PL_get_bool(a1, &val) )
return pl_error(NULL, 0, NULL, ERR_DOMAIN, a1, "boolean");
return((tipc_setopt(socket, option, val) == 0) ? TRUE : FALSE);
}
}
if ( a == ATOM_conn_timeout && arity == 1 )
{ double val;
int ival;
term_t a1 = PL_new_term_ref();
if (PL_get_arg(1, opt, a1))
{ if(!PL_get_float(a1, &val) || val < 0)
return pl_error(NULL, 0, NULL, ERR_DOMAIN, a1, "float");
ival = val * 1000; // time is in milliseconds
return((tipc_setopt(socket, NB_TIPC_CONN_TIMEOUT, ival) == 0) ? TRUE : FALSE);
}
}
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 )
return pl_error(NULL, 0, NULL, ERR_DOMAIN, opt, "socket_option");
}
if ( a == ATOM_nonblock && arity == 0 )
return((nbio_setopt(socket, TCP_NONBLOCK) == 0) ? TRUE : FALSE );
}
return pl_error(NULL, 0, NULL, ERR_DOMAIN, opt, "socket_option");
}
static int
unify_tipc_address(term_t t, struct sockaddr_tipc *addr)
{ switch ( addr->addrtype )
{ case TIPC_ADDR_ID:
return PL_unify_term(t, PL_FUNCTOR_CHARS, "port_id", 2,
IntArg(addr->addr.id.ref),
IntArg(addr->addr.id.node));
case TIPC_ADDR_NAME:
return PL_unify_term(t, PL_FUNCTOR_CHARS, "name", 3,
IntArg(addr->addr.name.name.type),
IntArg(addr->addr.name.name.instance),
IntArg(addr->addr.name.domain));
case TIPC_ADDR_NAMESEQ:
return PL_unify_term(t, PL_FUNCTOR_CHARS, "name_seq", 3,
IntArg(addr->addr.nameseq.type),
IntArg(addr->addr.nameseq.lower),
IntArg(addr->addr.nameseq.upper));
default:
return FALSE;
}
}
static foreign_t
pl_tipc_basic_get_name(term_t Socket, term_t t, int peer)
{ struct sockaddr_tipc addr;
int socket;
SOCKET fd;
#ifdef __WINDOWS__
int alen = sizeof(addr);
#else
socklen_t alen = sizeof(addr);
#endif
if ( !tipc_get_socket(Socket, &socket))
return FALSE;
fd = nbio_fd(socket);
if ( (peer) ? getpeername(fd, (struct sockaddr *) &addr, &alen)
: getsockname(fd, (struct sockaddr *) &addr, &alen) )
return nbio_error(errno, TCP_ERRNO);
else
return unify_tipc_address(t, &addr);
}
static foreign_t
pl_tipc_get_name(term_t Socket, term_t t)
{
return pl_tipc_basic_get_name(Socket, t, 0);
}
static foreign_t
pl_tipc_get_peer_name(term_t Socket, term_t t)
{
return pl_tipc_basic_get_name(Socket, t, 1);
}
#define TIPC_MAXDATA 65300
static foreign_t
pl_tipc_receive(term_t Socket, term_t Data, term_t From, term_t options)
{ struct sockaddr_tipc sockaddr;
#ifdef __WINDOWS__
int alen = sizeof(sockaddr);
#else
socklen_t alen = sizeof(sockaddr);
#endif
int socket;
int flags = 0;
char buf[TIPC_MAXDATA];
ssize_t n;
int as = PL_STRING;
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;
int arity;
if ( PL_get_name_arity(head, &name, &arity) )
{
if ( name == ATOM_as && arity == 1)
{ atom_t a;
_PL_get_arg(1, head, arg);
if ( !PL_get_atom(arg, &a) )
return pl_error(NULL, 0, NULL, ERR_TYPE, head, "atom");
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
return pl_error(NULL, 0, NULL, ERR_DOMAIN, arg, "as_option");
}
else if (name == ATOM_nonblock && arity == 0)
flags |= MSG_DONTWAIT;
else
return pl_error(NULL, 0, NULL, ERR_TYPE, head, "option");
}
else
return pl_error(NULL, 0, NULL, ERR_TYPE, head, "option");
}
if ( !PL_get_nil(tail) )
return pl_error(NULL, 0, NULL, ERR_TYPE, tail, "list");
}
if ( !tipc_get_socket(Socket, &socket))
return FALSE;
if ( (n=nbio_recvfrom(socket, buf, sizeof(buf), flags,
(struct sockaddr*)&sockaddr, &alen)) == -1 )
return nbio_error(errno, TCP_ERRNO);
if ( !PL_unify_chars(Data, as, n, buf) )
return FALSE;
return unify_tipc_address(From, &sockaddr);
}
static foreign_t
pl_tipc_send(term_t Socket, term_t Data, term_t To, term_t Options)
{ struct sockaddr_tipc sockaddr;
#ifdef __WINDOWS__
int alen = sizeof(sockaddr);
#else
int alen = sizeof(sockaddr);
#endif
int socket;
int flags = 0L;
char *data;
size_t dlen;
ssize_t n;
if ( !PL_get_nchars(Data, &dlen, &data, CVT_ALL|CVT_EXCEPTION) )
return FALSE;
if ( !tipc_get_socket(Socket, &socket) ||
!nbio_get_tipc_sockaddr(To, &sockaddr) )
return FALSE;
if ( (n=nbio_sendto(socket, data,
(int)dlen,
flags,
(struct sockaddr*)&sockaddr, alen)) == -1 )
return nbio_error(errno, TCP_ERRNO);
return TRUE;
}
#ifndef AF_TIPC
#define AF_TIPC 30
#endif
static foreign_t
create_tipc_socket(term_t socket, int type)
{ int sock;
sock = nbio_socket(AF_TIPC, type, 0);
if ( sock < 0 )
return FALSE;
return tipc_unify_socket(socket, sock);
}
static foreign_t
tipc_socket(term_t socket, term_t opt)
{ atom_t a;
int arity;
if ( PL_get_name_arity(opt, &a, &arity) && arity == 0)
{ int type;
if ( a == ATOM_dgram )
type = SOCK_DGRAM;
else if ( a == ATOM_rdm )
type = SOCK_RDM;
else if ( a == ATOM_seqpacket )
type = SOCK_SEQPACKET;
else if ( a == ATOM_stream )
type = SOCK_STREAM;
else
return pl_error(NULL, 0, NULL, ERR_DOMAIN, opt, "rdm, dgram, seqpacket, or stream");
return create_tipc_socket(socket, type);
}
else return pl_error(NULL, 0, NULL, ERR_ARGTYPE, 1, opt, "atom");
return FALSE;
}
static foreign_t
pl_tipc_accept(term_t Master, term_t Slave, term_t Peer)
{ int master, slave;
struct sockaddr_tipc addr;
socklen_t addrlen = sizeof(addr);
if ( !tipc_get_socket(Master, &master) )
return FALSE;
if ( (slave = nbio_accept(master, (struct sockaddr*)&addr, &addrlen)) < 0 )
return FALSE;
/* TBD: close on failure */
if ( unify_tipc_address(Peer, &addr) &&
tipc_unify_socket(Slave, slave) )
return TRUE;
return FALSE;
}
static foreign_t
pl_tipc_connect(term_t Socket, term_t Address)
{ int sock;
struct sockaddr_tipc sockaddr;
if ( !tipc_get_socket(Socket, &sock) ||
!nbio_get_tipc_sockaddr(Address, &sockaddr) )
return FALSE;
if ( nbio_connect(sock, (struct sockaddr*)&sockaddr, sizeof(sockaddr)) == 0 )
return TRUE;
return FALSE;
}
static foreign_t
pl_tipc_bind(term_t Socket, term_t Address, term_t opt)
{ struct sockaddr_tipc sockaddr;
size_t addrlen = sizeof(sockaddr);
int socket;
atom_t a;
int arity;
memset(&sockaddr, 0, sizeof(sockaddr));
if ( !tipc_get_socket(Socket, &socket) ||
!nbio_get_tipc_sockaddr(Address, &sockaddr) )
return FALSE;
if ( PL_get_name_arity(opt, &a, &arity) )
{ if ( (a == ATOM_scope || a == ATOM_no_scope) && arity == 1 )
{ atom_t val;
term_t a1 = PL_new_term_ref();
if (PL_get_arg(1, opt, a1))
{ signed char ival = 0;
if ( !PL_get_atom(a1, &val) )
return pl_error(NULL, 0, NULL, ERR_DOMAIN, a1, "atom");
if ( val == ATOM_zone )
ival = TIPC_ZONE_SCOPE;
else if ( val == ATOM_cluster )
ival = TIPC_CLUSTER_SCOPE;
else if ( val == ATOM_node )
ival = TIPC_NODE_SCOPE;
else if ( val == ATOM_all && a == ATOM_no_scope)
addrlen = 0;
else
return pl_error(NULL, 0, NULL, ERR_DOMAIN, a1, "node, cluster, or zone");
sockaddr.scope = (a == ATOM_scope) ? ival
: -ival;
if ( nbio_bind(socket, (struct sockaddr*)&sockaddr, addrlen) < 0 )
return FALSE;
}
} else
return pl_error(NULL, 0, NULL, ERR_ARGTYPE, 1, opt, "scoping option");
return TRUE;
}
return pl_error(NULL, 0, NULL, ERR_DOMAIN, a, "scope/1");
}
static foreign_t
pl_tipc_subscribe(term_t Socket, term_t Address,
term_t timeout, term_t filter, term_t usr_handle)
{ struct sockaddr_tipc sockaddr;
struct tipc_subscr subscr;
int socket;
unsigned time, filt;
char *handle;
size_t handle_len;
SOCKET fd;
memset(&subscr, 0, sizeof(subscr));
memset(&sockaddr, 0, sizeof(sockaddr));
if ( !tipc_get_socket(Socket, &socket) ||
!nbio_get_tipc_sockaddr(Address, &sockaddr))
return FALSE;
if(sockaddr.addrtype != TIPC_ADDR_NAMESEQ)
return pl_error(NULL, 0, NULL, ERR_DOMAIN, Address, "name_seq/3");
if( !get_uint(timeout, &time))
return pl_error(NULL, 0, NULL, ERR_DOMAIN, timeout, "integer");
if( !get_uint(filter, &filt))
return pl_error(NULL, 0, NULL, ERR_DOMAIN, filter, "integer");
if ( !PL_get_nchars(usr_handle, &handle_len, &handle, CVT_ALL|CVT_EXCEPTION) )
return FALSE;
memcpy(&subscr.seq, &sockaddr.addr.nameseq, sizeof(subscr.seq));
subscr.timeout = time;
subscr.filter = filt;
memcpy(&subscr.usr_handle, handle,
(handle_len < sizeof(subscr.usr_handle)) ? handle_len
: sizeof(subscr.usr_handle));
fd = nbio_fd(socket);
if ( (send(fd, &subscr, sizeof(subscr), 0)) != sizeof(subscr) )
return nbio_error(errno, TCP_ERRNO);
else
return TRUE;
}
install_t
install_tipc()
{ nbio_init("tipc");
ATOM_scope = PL_new_atom("scope");
ATOM_no_scope = PL_new_atom("no_scope");
ATOM_node = PL_new_atom("node");
ATOM_cluster = PL_new_atom("cluster");
ATOM_zone = PL_new_atom("zone");
ATOM_all = PL_new_atom("all");
ATOM_importance = PL_new_atom("importance");
ATOM_low = PL_new_atom("low");
ATOM_medium = PL_new_atom("medium");
ATOM_high = PL_new_atom("high");
ATOM_critical = PL_new_atom("critical");
ATOM_src_droppable = PL_new_atom("src_droppable");
ATOM_dest_droppable = PL_new_atom("dest_droppable");
ATOM_conn_timeout = PL_new_atom("conn_timeout");
ATOM_socket_type = PL_new_atom("socket_type");
ATOM_dgram = PL_new_atom("dgram");
ATOM_rdm = PL_new_atom("rdm");
ATOM_seqpacket = PL_new_atom("seqpacket");
ATOM_stream = PL_new_atom("stream");
ATOM_nodelay = PL_new_atom("nodelay");
ATOM_nonblock = PL_new_atom("nonblock");
ATOM_as = PL_new_atom("as");
ATOM_atom = PL_new_atom("atom");
ATOM_string = PL_new_atom("string");
ATOM_codes = PL_new_atom("codes");
FUNCTOR_tipc_socket1 = PL_new_functor(PL_new_atom("$tipc_socket"), 1);
FUNCTOR_port_id = PL_new_functor(PL_new_atom("port_id"), 2);
FUNCTOR_name3 = PL_new_functor(PL_new_atom("name"), 3);
FUNCTOR_name_seq3 = PL_new_functor(PL_new_atom("name_seq"), 3);
FUNCTOR_mcast3 = PL_new_functor(PL_new_atom("mcast"), 3);
PL_register_foreign("tipc_socket", 2, tipc_socket, 0);
PL_register_foreign("tipc_close_socket", 1, tipc_close_socket, 0);
PL_register_foreign("tipc_setopt", 2, pl_tipc_setopt, 0);
PL_register_foreign("tipc_bind", 3, pl_tipc_bind, 0);
PL_register_foreign("tipc_listen", 2, tipc_listen, 0);
PL_register_foreign("tipc_open_socket", 3, tipc_open_socket, 0);
PL_register_foreign("tipc_accept", 3, pl_tipc_accept, 0);
PL_register_foreign("tipc_connect", 2, pl_tipc_connect, 0);
PL_register_foreign("tipc_get_name", 2, pl_tipc_get_name, 0);
PL_register_foreign("tipc_get_peer_name", 2, pl_tipc_get_peer_name, 0);
PL_register_foreign("tipc_receive", 4, pl_tipc_receive, 0);
PL_register_foreign("tipc_send", 4, pl_tipc_send, 0);
PL_register_foreign("tipc_subscribe", 5, pl_tipc_subscribe, 0);
}
|