X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/206f5fd3ccc5de9c9e90ec5d8933cab8fd3bf070..117bb6cf10b1e29fac18bb13663f657278abb14e:/src/gras/Transport/transport.c diff --git a/src/gras/Transport/transport.c b/src/gras/Transport/transport.c index 1e369c07d4..e304553b1b 100644 --- a/src/gras/Transport/transport.c +++ b/src/gras/Transport/transport.c @@ -1,305 +1,292 @@ -/* $Id$ */ - /* transport - low level communication */ -/* Authors: Martin Quinson */ -/* Copyright (C) 2004 Martin Quinson. */ +/* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. The SimGrid Team. + * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it - under the terms of the license (GNU LGPL) which comes with this package. */ - -#include /* time() */ - + * under the terms of the license (GNU LGPL) which comes with this package. */ + +/*** + *** Options + ***/ +#ifndef NDEBUG +static int gras_opt_trp_nomoredata_on_close = 0; +#endif + +#include "xbt/ex.h" +#include "xbt/peer.h" +#include "xbt/socket.h" +#include "xbt/xbt_socket_private.h" /* FIXME */ +#include "portable.h" #include "gras/Transport/transport_private.h" +#include "gras/Msg/msg_interface.h" -GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(transport,GRAS); - -static gras_dict_t *_gras_trp_plugins; /* All registered plugins */ -static void gras_trp_plugin_free(void *p); /* free one of the plugins */ - -static void gras_trp_socket_free(void *s); /* free one socket */ - -gras_error_t -gras_trp_plugin_new(const char *name, gras_trp_setup_t setup); - -gras_error_t -gras_trp_plugin_new(const char *name, gras_trp_setup_t setup) { - gras_error_t errcode; - - gras_trp_plugin_t *plug = malloc(sizeof(gras_trp_plugin_t)); - - DEBUG1("Create plugin %s",name); - - if (!plug) - RAISE_MALLOC; - - memset(plug,0,sizeof(gras_trp_plugin_t)); +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(gras_trp, gras, + "Conveying bytes over the network"); - plug->name=strdup(name); - if (!plug->name) - RAISE_MALLOC; +/** + * @brief Opens a server socket and makes it ready to be listened to. + * @param port: port on which you want to listen + * @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) + * @param measurement: whether this socket is meant to convey measurement (if you don't know, use 0 to exchange regular messages) + * + * In real life, you'll get a TCP socket. + */ +xbt_socket_t +gras_socket_server_ext(unsigned short port, + unsigned long int buf_size, int measurement) +{ + xbt_trp_plugin_t trp; + xbt_socket_t sock; - errcode = setup(plug); - switch (errcode) { - case mismatch_error: - /* SG plugin return mismatch when in RL mode (and vice versa) */ - free(plug->name); - free(plug); - break; + XBT_DEBUG("Create a server socket from plugin %s on port %d", + gras_if_RL() ? "tcp" : "sg", port); + trp = xbt_trp_plugin_get_by_name(gras_if_SG() ? "sg" : "tcp"); - case no_error: - TRY(gras_dict_set(_gras_trp_plugins, - name, plug, gras_trp_plugin_free)); - break; + /* defaults settings */ + xbt_socket_new_ext(1, + &sock, + trp, + (buf_size > 0 ? buf_size : 32 * 1024), + measurement); - default: - free(plug); - return errcode; + /* Call plugin socket creation function */ + XBT_DEBUG("Prepare socket with plugin (fct=%p)", trp->socket_server); + TRY { + trp->socket_server(trp, port, sock); + } + CATCH_ANONYMOUS { + free(sock); + RETHROW; } - return no_error; -} - -gras_error_t -gras_trp_init(void){ - gras_error_t errcode; - - /* make room for all plugins */ - TRY(gras_dict_new(&_gras_trp_plugins)); - - /* Add them */ - TRY(gras_trp_plugin_new("tcp", gras_trp_tcp_setup)); - TRY(gras_trp_plugin_new("file",gras_trp_file_setup)); - TRY(gras_trp_plugin_new("sg",gras_trp_sg_setup)); - - /* buf is composed, so it must come after the others */ - TRY(gras_trp_plugin_new("buf", gras_trp_buf_setup)); - - return no_error; -} - -void -gras_trp_exit(void){ - gras_dict_free(&_gras_trp_plugins); -} - -void gras_trp_plugin_free(void *p) { - gras_trp_plugin_t *plug = p; + if (!measurement) + ((gras_trp_procdata_t) gras_libdata_by_id(gras_trp_libdata_id))->myport + = port; + xbt_dynar_push(((gras_trp_procdata_t) + gras_libdata_by_id(gras_trp_libdata_id))->sockets, + &sock); - if (plug) { - if (plug->exit) { - plug->exit(plug); - } else if (plug->data) { - DEBUG1("Plugin %s lacks exit(). Free data anyway.",plug->name); - free(plug->data); - } - - free(plug->name); - free(plug); - } + gras_msg_listener_awake(); + return sock; } - /** - * gras_trp_socket_new: + * @brief Opens a server socket on any port in the given range + * + * @param minport: first port we will try + * @param maxport: last port we will try + * @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) + * @param measurement: whether this socket is meant to convey measurement (if you don't know, use 0 to exchange regular messages) * - * Malloc a new socket, and initialize it with defaults + * If none of the provided ports works, raises the exception got when trying the last possibility */ -gras_error_t gras_trp_socket_new(int incoming, - gras_socket_t **dst) { - - gras_socket_t *sock; - - if (! (sock=malloc(sizeof(gras_socket_t))) ) - RAISE_MALLOC; - DEBUG1("Create a new socket (%p)", sock); - - sock->plugin = NULL; - sock->sd = -1; - sock->data = NULL; - - sock->incoming = incoming ? 1:0; - sock->outgoing = incoming ? 0:1; - sock->accepting = incoming ? 1:0; - - sock->port = -1; - sock->peer_port = -1; - sock->peer_name = NULL; - sock->raw = 0; - - *dst = sock; - - return gras_dynar_push(gras_socketset_get(),dst); +xbt_socket_t +gras_socket_server_range(unsigned short minport, unsigned short maxport, + unsigned long int buf_size, int measurement) +{ + + int port; + xbt_socket_t res = NULL; + xbt_ex_t e; + + for (port = minport; port < maxport; port++) { + TRY { + res = gras_socket_server_ext(port, buf_size, measurement); + } + CATCH(e) { + if (port == maxport) + RETHROW; + xbt_ex_free(e); + } + if (res) + return res; + } + THROW_IMPOSSIBLE; } - /** - * gras_socket_server: + * @brief Opens a client socket to a remote host. + * @param host: who you want to connect to + * @param port: where you want to connect to on this host + * @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) + * @param measurement: whether this socket is meant to convey measurement (if you don't know, use 0 to exchange regular messages) * - * Opens a server socket and make it ready to be listened to. * In real life, you'll get a TCP socket. */ -gras_error_t -gras_socket_server(unsigned short port, - /* OUT */ gras_socket_t **dst) { - - gras_error_t errcode; - gras_trp_plugin_t *trp; - gras_socket_t *sock; - - *dst = NULL; - - DEBUG1("Create a server socket from plugin %s",gras_if_RL() ? "tcp" : "sg"); - TRY(gras_trp_plugin_get_by_name("buf",&trp)); - +xbt_socket_t +gras_socket_client_ext(const char *host, + unsigned short port, + unsigned long int buf_size, int measurement) +{ + xbt_trp_plugin_t trp; + xbt_socket_t sock; + + trp = xbt_trp_plugin_get_by_name(gras_if_SG() ? "sg" : "tcp"); + + XBT_DEBUG("Create a client socket from plugin %s", + gras_if_RL()? "tcp" : "sg"); /* defaults settings */ - TRY(gras_trp_socket_new(1,&sock)); - sock->plugin= trp; - sock->port=port; - - /* Call plugin socket creation function */ - errcode = trp->socket_server(trp, port, sock); - DEBUG3("in=%c out=%c accept=%c", - sock->incoming?'y':'n', - sock->outgoing?'y':'n', - sock->accepting?'y':'n'); + xbt_socket_new_ext(0, + &sock, + trp, + (buf_size > 0 ? buf_size : 32 * 1024), + measurement); - if (errcode != no_error) { + /* plugin-specific */ + TRY { + (*trp->socket_client) (trp, host, port, sock); + } + CATCH_ANONYMOUS { free(sock); - return errcode; + RETHROW; } - - *dst = sock; - - return no_error; + xbt_dynar_push(((gras_trp_procdata_t) + gras_libdata_by_id(gras_trp_libdata_id))->sockets, + &sock); + gras_msg_listener_awake(); + return sock; } /** - * gras_socket_client: + * @brief Opens a server socket and make it ready to be listened to. * - * Opens a client socket to a remote host. * In real life, you'll get a TCP socket. */ -gras_error_t -gras_socket_client(const char *host, - unsigned short port, - /* OUT */ gras_socket_t **dst) { - - gras_error_t errcode; - gras_trp_plugin_t *trp; - gras_socket_t *sock; - - *dst = NULL; - - TRY(gras_trp_plugin_get_by_name("buf",&trp)); - - DEBUG1("Create a client socket from plugin %s",gras_if_RL() ? "tcp" : "sg"); - /* defaults settings */ - TRY(gras_trp_socket_new(0,&sock)); - sock->plugin= trp; - sock->peer_port = port; - sock->peer_name = strdup(host?host:"localhost"); +xbt_socket_t gras_socket_server(unsigned short port) +{ + return gras_socket_server_ext(port, 32 * 1024, 0); +} - /* plugin-specific */ - errcode= (*trp->socket_client)(trp, - host ? host : "localhost", port, - sock); - DEBUG3("in=%c out=%c accept=%c", - sock->incoming?'y':'n', - sock->outgoing?'y':'n', - sock->accepting?'y':'n'); - - if (errcode != no_error) { - free(sock); - return errcode; - } +/** @brief Opens a client socket to a remote host */ +xbt_socket_t gras_socket_client(const char *host, unsigned short port) +{ + return gras_socket_client_ext(host, port, 0, 0); +} - *dst = sock; +/** @brief Opens a client socket to a remote host specified as '\a host:\a port' */ +xbt_socket_t gras_socket_client_from_string(const char *host) +{ + xbt_peer_t p = xbt_peer_from_string(host); + xbt_socket_t res = gras_socket_client_ext(p->name, p->port, 0, 0); + xbt_peer_free(p); + return res; +} - return no_error; +void gras_socket_close_voidp(void *sock) +{ + gras_socket_close((xbt_socket_t) sock); } -void gras_socket_close(gras_socket_t *sock) { - gras_dynar_t *sockets = gras_socketset_get(); - gras_socket_t *sock_iter; - int cursor; +/** \brief Close socket */ +void gras_socket_close(xbt_socket_t sock) +{ + if (--sock->refcount) + return; + + xbt_dynar_t sockets = + ((gras_trp_procdata_t) + gras_libdata_by_id(gras_trp_libdata_id))->sockets; + xbt_socket_t sock_iter = NULL; + unsigned int cursor; + + XBT_IN(""); + XBT_VERB("Close %p", sock); + if (sock == _gras_lastly_selected_socket) { + xbt_assert(!gras_opt_trp_nomoredata_on_close || !sock->moredata, + "Closing a socket having more data in buffer while the nomoredata_on_close option is activated"); + + if (sock->moredata) + XBT_CRITICAL + ("Closing a socket having more data in buffer. Option nomoredata_on_close disabled, so continuing."); + _gras_lastly_selected_socket = NULL; + } /* FIXME: Issue an event when the socket is closed */ + XBT_DEBUG("sockets pointer before %p", sockets); if (sock) { - gras_dynar_foreach(sockets,cursor,sock_iter) { + /* FIXME: Cannot get the dynar mutex, because it can be already locked */ +// _xbt_dynar_foreach(sockets,cursor,sock_iter) { + for (cursor = 0; cursor < xbt_dynar_length(sockets); cursor++) { + _xbt_dynar_cursor_get(sockets, cursor, &sock_iter); if (sock == sock_iter) { - gras_dynar_cursor_rm(sockets,&cursor); - if ( sock->plugin->socket_close) - (* sock->plugin->socket_close)(sock); - - /* free the memory */ - if (sock->peer_name) - free(sock->peer_name); - free(sock); - return; + XBT_DEBUG("remove sock cursor %u dize %lu\n", cursor, + xbt_dynar_length(sockets)); + xbt_dynar_cursor_rm(sockets, &cursor); + if (sock->plugin->socket_close) + (*sock->plugin->socket_close) (sock); + + /* free the memory */ + free(sock); + XBT_OUT(); + return; } } - WARN0("Ignoring request to free an unknown socket"); + XBT_WARN + ("Ignoring request to free an unknown socket (%p). Execution stack:", + sock); + xbt_backtrace_display_current(); } + XBT_OUT(); } -/** - * gras_trp_chunk_send: - * - * Send a bunch of bytes from on socket +/* + * Creating procdata for this module */ -gras_error_t -gras_trp_chunk_send(gras_socket_t *sd, - char *data, - long int size) { - gras_assert1(sd->outgoing, - "Socket not suited for data send (outgoing=%c)", - sd->outgoing?'y':'n'); - gras_assert1(sd->plugin->chunk_send, - "No function chunk_send on transport plugin %s", - sd->plugin->name); - return (*sd->plugin->chunk_send)(sd,data,size); -} -/** - * gras_trp_chunk_recv: - * - * Receive a bunch of bytes from a socket - */ -gras_error_t -gras_trp_chunk_recv(gras_socket_t *sd, - char *data, - long int size) { - gras_assert0(sd->incoming, - "Socket not suited for data receive"); - gras_assert1(sd->plugin->chunk_recv, - "No function chunk_recv on transport plugin %s", - sd->plugin->name); - return (sd->plugin->chunk_recv)(sd,data,size); +static void *gras_trp_procdata_new(void) +{ + gras_trp_procdata_t res = xbt_new(s_gras_trp_procdata_t, 1); + + res->name = xbt_strdup("gras_trp"); + res->name_len = 0; + res->sockets = xbt_dynar_new_sync(sizeof(xbt_socket_t *), NULL); + res->myport = 0; + + return (void *) res; } -/** - * gras_trp_flush: - * - * Make sure all pending communications are done +/* + * Freeing procdata for this module */ -gras_error_t -gras_trp_flush(gras_socket_t *sd) { - return (sd->plugin->flush)(sd); +static void gras_trp_procdata_free(void *data) +{ + gras_trp_procdata_t res = (gras_trp_procdata_t) data; + + xbt_dynar_free(&(res->sockets)); + free(res->name); + free(res); } -gras_error_t -gras_trp_plugin_get_by_name(const char *name, - gras_trp_plugin_t **dst){ +void gras_trp_socketset_dump(const char *name) +{ + gras_trp_procdata_t procdata = + (gras_trp_procdata_t) gras_libdata_by_id(gras_trp_libdata_id); - return gras_dict_get(_gras_trp_plugins,name,(void**)dst); -} + unsigned int it; + xbt_socket_t s; -int gras_socket_my_port (gras_socket_t *sock) { - return sock->port; + XBT_INFO("** Dump the socket set %s", name); + xbt_dynar_foreach(procdata->sockets, it, s) { + XBT_INFO(" %p -> %s:%d %s", + s, xbt_socket_peer_name(s), xbt_socket_peer_port(s), + s->valid ? "(valid)" : "(peer dead)"); + } + XBT_INFO("** End of socket set %s", name); } -int gras_socket_peer_port(gras_socket_t *sock) { - return sock->peer_port; + +/* + * Module registration + */ +int gras_trp_libdata_id; +void gras_trp_register() +{ + gras_trp_libdata_id = + gras_procdata_add("gras_trp", gras_trp_procdata_new, + gras_trp_procdata_free); } -char *gras_socket_peer_name(gras_socket_t *sock) { - return sock->peer_name; + +int gras_os_myport(void) +{ + return ((gras_trp_procdata_t) + gras_libdata_by_id(gras_trp_libdata_id))->myport; }