3 /* transport - low level communication */
5 /* Copyright (c) 2004 Martin Quinson. All rights reserved. */
7 /* This program is free software; you can redistribute it and/or modify it
8 * under the terms of the license (GNU LGPL) which comes with this package. */
13 #include "gras/Transport/transport_private.h"
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(gras_trp,gras,"Conveying bytes over the network");
16 XBT_LOG_NEW_SUBCATEGORY(gras_trp_meas,gras_trp,"Conveying bytes over the network without formating for perf measurements");
17 static short int _gras_trp_started = 0;
19 static xbt_dict_t _gras_trp_plugins; /* All registered plugins */
20 static void gras_trp_plugin_free(void *p); /* free one of the plugins */
23 gras_trp_plugin_new(const char *name, gras_trp_setup_t setup) {
26 gras_trp_plugin_t plug = xbt_new0(s_gras_trp_plugin_t, 1);
28 DEBUG1("Create plugin %s",name);
30 plug->name=xbt_strdup(name);
35 if (e.category == mismatch_error) {
36 /* SG plugin raise mismatch when in RL mode (and vice versa) */
47 xbt_dict_set(_gras_trp_plugins, name, plug, gras_trp_plugin_free);
50 void gras_trp_init(void){
51 if (!_gras_trp_started) {
52 /* make room for all plugins */
53 _gras_trp_plugins=xbt_dict_new();
55 #ifdef HAVE_WINSOCK2_H
56 /* initialize the windows mechanism */
58 WORD wVersionRequested;
61 wVersionRequested = MAKEWORD( 2, 0 );
62 xbt_assert0(WSAStartup( wVersionRequested, &wsaData ) == 0,
63 "Cannot find a usable WinSock DLL");
65 /* Confirm that the WinSock DLL supports 2.0.*/
66 /* Note that if the DLL supports versions greater */
67 /* than 2.0 in addition to 2.0, it will still return */
68 /* 2.0 in wVersion since that is the version we */
71 xbt_assert0(LOBYTE( wsaData.wVersion ) == 2 &&
72 HIBYTE( wsaData.wVersion ) == 0,
73 "Cannot find a usable WinSock DLL");
74 INFO0("Found and initialized winsock2");
75 } /* The WinSock DLL is acceptable. Proceed. */
78 xbt_assert0(WSAStartup( 0x0101, &wsaData ) == 0,
79 "Cannot find a usable WinSock DLL");
80 INFO0("Found and initialized winsock");
85 gras_trp_plugin_new("file",gras_trp_file_setup);
86 gras_trp_plugin_new("sg",gras_trp_sg_setup);
87 gras_trp_plugin_new("tcp", gras_trp_tcp_setup);
95 xbt_dynar_t sockets = ((gras_trp_procdata_t) gras_libdata_by_id(gras_trp_libdata_id))->sockets;
96 gras_socket_t sock_iter;
99 if (_gras_trp_started == 0) {
103 if ( --_gras_trp_started == 0 ) {
104 #ifdef HAVE_WINSOCK_H
105 if ( WSACleanup() == SOCKET_ERROR ) {
106 if ( WSAGetLastError() == WSAEINPROGRESS ) {
107 WSACancelBlockingCall();
113 /* Close all the sockets */
114 xbt_dynar_foreach(sockets,cursor,sock_iter) {
115 VERB1("Closing the socket %p left open on exit. Maybe a socket leak?",
117 gras_socket_close(sock_iter);
120 /* Delete the plugins */
121 xbt_dict_free(&_gras_trp_plugins);
126 void gras_trp_plugin_free(void *p) {
127 gras_trp_plugin_t plug = p;
132 } else if (plug->data) {
133 DEBUG1("Plugin %s lacks exit(). Free data anyway.",plug->name);
144 * gras_trp_socket_new:
146 * Malloc a new socket, and initialize it with defaults
148 void gras_trp_socket_new(int incoming,
149 gras_socket_t *dst) {
151 gras_socket_t sock=xbt_new0(s_gras_socket_t,1);
153 DEBUG1("Create a new socket (%p)", (void*)sock);
157 sock->incoming = incoming ? 1:0;
158 sock->outgoing = incoming ? 0:1;
159 sock->accepting = incoming ? 1:0;
164 sock->peer_port = -1;
165 sock->peer_name = NULL;
166 sock->peer_proc = NULL;
169 sock->bufdata = NULL;
173 xbt_dynar_push(((gras_trp_procdata_t)
174 gras_libdata_by_id(gras_trp_libdata_id))->sockets,dst);
179 * @brief Opens a server socket and makes it ready to be listened to.
180 * @param port: port on which you want to listen
181 * @param buf_size: size of the buffer (in byte) on the socket (for TCP sockets only). If 0, a sain default is used (32k, but may change)
182 * @param measurement: whether this socket is meant to convey measurement (if you don't know, use 0 to exchange regular messages)
184 * In real life, you'll get a TCP socket.
187 gras_socket_server_ext(unsigned short port,
189 unsigned long int buf_size,
193 gras_trp_plugin_t trp;
196 DEBUG2("Create a server socket from plugin %s on port %d",
197 gras_if_RL() ? "tcp" : "sg",
199 trp = gras_trp_plugin_get_by_name(gras_if_SG() ? "sg":"tcp");
201 /* defaults settings */
202 gras_trp_socket_new(1,&sock);
205 sock->buf_size = buf_size>0 ? buf_size : 32*1024;
206 sock->meas = measurement;
208 /* Call plugin socket creation function */
209 DEBUG1("Prepare socket with plugin (fct=%p)",trp->socket_server);
211 trp->socket_server(trp, sock);
212 DEBUG3("in=%c out=%c accept=%c",
213 sock->incoming?'y':'n',
214 sock->outgoing?'y':'n',
215 sock->accepting?'y':'n');
218 gras_socket_t sock_iter;
219 xbt_dynar_t socks = ((gras_trp_procdata_t) gras_libdata_by_id(gras_trp_libdata_id))->sockets;
220 xbt_dynar_foreach(socks, cursor, sock_iter) {
222 xbt_dynar_cursor_rm(socks,&cursor);
229 ((gras_trp_procdata_t) gras_libdata_by_id(gras_trp_libdata_id))->myport = port;
233 * @brief Opens a server socket on any port in the given range
235 * @param minport: first port we will try
236 * @param maxport: last port we will try
237 * @param buf_size: size of the buffer (in byte) on the socket (for TCP sockets only). If 0, a sain default is used (32k, but may change)
238 * @param measurement: whether this socket is meant to convey measurement (if you don't know, use 0 to exchange regular messages)
240 * If none of the provided ports works, raises the exception got when trying the last possibility
243 gras_socket_server_range(unsigned short minport, unsigned short maxport,
244 unsigned long int buf_size, int measurement) {
247 gras_socket_t res=NULL;
250 for (port=minport; port<maxport;port ++) {
252 res=gras_socket_server_ext(port,buf_size,measurement);
264 * @brief Opens a client socket to a remote host.
265 * @param host: who you want to connect to
266 * @param port: where you want to connect to on this host
267 * @param buf_size: size of the buffer (in bytes) on the socket (for TCP sockets only). If 0, a sain default is used (32k, but may change)
268 * @param measurement: whether this socket is meant to convey measurement (if you don't know, use 0 to exchange regular messages)
270 * In real life, you'll get a TCP socket.
273 gras_socket_client_ext(const char *host,
276 unsigned long int buf_size,
280 gras_trp_plugin_t trp;
283 trp = gras_trp_plugin_get_by_name(gras_if_SG() ? "sg":"tcp");
285 DEBUG1("Create a client socket from plugin %s",gras_if_RL() ? "tcp" : "sg");
286 /* defaults settings */
287 gras_trp_socket_new(0,&sock);
289 sock->peer_port = port;
290 sock->peer_name = (char*)strdup(host?host:"localhost");
291 sock->buf_size = buf_size>0 ? buf_size: 32*1024;
292 sock->meas = measurement;
294 /* plugin-specific */
296 (*trp->socket_client)(trp, sock);
297 DEBUG3("in=%c out=%c accept=%c",
298 sock->incoming?'y':'n',
299 sock->outgoing?'y':'n',
300 sock->accepting?'y':'n');
310 * gras_socket_server:
312 * Opens a server socket and make it ready to be listened to.
313 * In real life, you'll get a TCP socket.
316 gras_socket_server(unsigned short port) {
317 return gras_socket_server_ext(port,32*1024,0);
320 /** @brief Opens a client socket to a remote host */
322 gras_socket_client(const char *host,
323 unsigned short port) {
324 return gras_socket_client_ext(host,port,0,0);
327 /** @brief Opens a client socket to a remote host specified as '<host>:<port>' */
329 gras_socket_client_from_string(const char *host) {
330 xbt_host_t h = xbt_host_from_string(host);
331 gras_socket_t res = gras_socket_client_ext(h->name,h->port,0,0);
336 /** \brief Close socket */
337 void gras_socket_close(gras_socket_t sock) {
338 xbt_dynar_t sockets = ((gras_trp_procdata_t) gras_libdata_by_id(gras_trp_libdata_id))->sockets;
339 gras_socket_t sock_iter;
343 /* FIXME: Issue an event when the socket is closed */
345 xbt_dynar_foreach(sockets,cursor,sock_iter) {
346 if (sock == sock_iter) {
347 xbt_dynar_cursor_rm(sockets,&cursor);
348 if (sock->plugin->socket_close)
349 (* sock->plugin->socket_close)(sock);
351 /* free the memory */
353 free(sock->peer_name);
359 WARN1("Ignoring request to free an unknown socket (%p). Execution stack:",sock);
360 xbt_backtrace_display();
368 * Send a bunch of bytes from on socket
369 * (stable if we know the storage will keep as is until the next trp_flush)
372 gras_trp_send(gras_socket_t sd, char *data, long int size, int stable) {
373 xbt_assert0(sd->outgoing,"Socket not suited for data send");
374 (*sd->plugin->send)(sd,data,size,stable);
377 * gras_trp_chunk_recv:
379 * Receive a bunch of bytes from a socket
382 gras_trp_recv(gras_socket_t sd, char *data, long int size) {
383 xbt_assert0(sd->incoming,"Socket not suited for data receive");
384 (sd->plugin->recv)(sd,data,size);
390 * Make sure all pending communications are done
393 gras_trp_flush(gras_socket_t sd) {
394 if (sd->plugin->flush)
395 (sd->plugin->flush)(sd);
399 gras_trp_plugin_get_by_name(const char *name){
400 return xbt_dict_get(_gras_trp_plugins,name);
403 int gras_socket_my_port (gras_socket_t sock) {
406 int gras_socket_peer_port(gras_socket_t sock) {
407 return sock->peer_port;
409 char *gras_socket_peer_name(gras_socket_t sock) {
410 return sock->peer_name;
412 char *gras_socket_peer_proc(gras_socket_t sock) {
413 return sock->peer_proc;
416 void gras_socket_peer_proc_set(gras_socket_t sock,char*peer_proc) {
417 sock->peer_proc = peer_proc;
420 /** \brief Check if the provided socket is a measurement one (or a regular one) */
421 int gras_socket_is_meas(gras_socket_t sock) {
425 /** \brief Send a chunk of (random) data over a measurement socket
427 * @param peer measurement socket to use for the experiment
428 * @param timeout timeout (in seconds)
429 * @param exp_size total amount of data to send (in bytes).
430 * @param msg_size size of each chunk sent over the socket (in bytes).
432 * Calls to gras_socket_meas_send() and gras_socket_meas_recv() on
433 * each side of the socket should be paired.
435 * The exchanged data is zeroed to make sure it's initialized, but
436 * there is no way to control what is sent (ie, you cannot use these
437 * functions to exchange data out of band).
439 void gras_socket_meas_send(gras_socket_t peer,
440 unsigned int timeout,
441 unsigned long int exp_size,
442 unsigned long int msg_size) {
444 unsigned long int exp_sofar;
449 chunk=xbt_malloc0(msg_size);
451 xbt_assert0(peer->meas,"Asked to send measurement data on a regular socket");
452 xbt_assert0(peer->outgoing,"Socket not suited for data send (was created with gras_socket_server(), not gras_socket_client())");
454 for (exp_sofar=0; exp_sofar < exp_size; exp_sofar += msg_size) {
455 CDEBUG5(gras_trp_meas,"Sent %lu of %lu (msg_size=%ld) to %s:%d",
456 exp_sofar,exp_size,msg_size,
457 gras_socket_peer_name(peer), gras_socket_peer_port(peer));
458 (*peer->plugin->raw_send)(peer,chunk,msg_size);
460 CDEBUG5(gras_trp_meas,"Sent %lu of %lu (msg_size=%ld) to %s:%d",
461 exp_sofar,exp_size,msg_size,
462 gras_socket_peer_name(peer), gras_socket_peer_port(peer));
470 /** \brief Receive a chunk of data over a measurement socket
472 * Calls to gras_socket_meas_send() and gras_socket_meas_recv() on
473 * each side of the socket should be paired.
475 void gras_socket_meas_recv(gras_socket_t peer,
476 unsigned int timeout,
477 unsigned long int exp_size,
478 unsigned long int msg_size){
481 unsigned long int exp_sofar;
486 chunk = xbt_malloc(msg_size);
488 xbt_assert0(peer->meas,
489 "Asked to receive measurement data on a regular socket");
490 xbt_assert0(peer->incoming,"Socket not suited for data receive");
492 for (exp_sofar=0; exp_sofar < exp_size; exp_sofar += msg_size) {
493 CDEBUG5(gras_trp_meas,"Recvd %ld of %lu (msg_size=%ld) from %s:%d",
494 exp_sofar,exp_size,msg_size,
495 gras_socket_peer_name(peer), gras_socket_peer_port(peer));
496 (peer->plugin->raw_recv)(peer,chunk,msg_size);
498 CDEBUG5(gras_trp_meas,"Recvd %ld of %lu (msg_size=%ld) from %s:%d",
499 exp_sofar,exp_size,msg_size,
500 gras_socket_peer_name(peer), gras_socket_peer_port(peer));
508 * \brief Something similar to the good old accept system call.
510 * Make sure that there is someone speaking to the provided server socket.
511 * In RL, it does an accept(2) and return the result as last argument.
512 * In SG, as accepts are useless, it returns the provided argument as result.
513 * You should thus test whether (peer != accepted) before closing both of them.
515 * You should only call this on measurement sockets. It is automatically
516 * done for regular sockets, but you usually want more control about
517 * what's going on with measurement sockets.
519 gras_socket_t gras_socket_meas_accept(gras_socket_t peer){
522 xbt_assert0(peer->meas,
523 "No need to accept on non-measurement sockets (it's automatic)");
525 if (!peer->accepting) {
526 /* nothing to accept here (must be in SG) */
527 /* BUG: FIXME: this is BAD! it makes tricky to free the accepted socket*/
531 res = (peer->plugin->socket_accept)(peer);
532 res->meas = peer->meas;
533 CDEBUG1(gras_trp_meas,"meas_accepted onto %d",res->sd);
540 * Creating procdata for this module
542 static void *gras_trp_procdata_new() {
543 gras_trp_procdata_t res = xbt_new(s_gras_trp_procdata_t,1);
545 res->name = xbt_strdup("gras_trp");
547 res->sockets = xbt_dynar_new(sizeof(gras_socket_t*), NULL);
554 * Freeing procdata for this module
556 static void gras_trp_procdata_free(void *data) {
557 gras_trp_procdata_t res = (gras_trp_procdata_t)data;
559 xbt_dynar_free(&( res->sockets ));
565 * Module registration
567 int gras_trp_libdata_id;
568 void gras_trp_register() {
569 gras_trp_libdata_id = gras_procdata_add("gras_trp",gras_trp_procdata_new, gras_trp_procdata_free);
572 int gras_os_myport(void) {
573 return ((gras_trp_procdata_t) gras_libdata_by_id(gras_trp_libdata_id))->myport;