X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d775df9a16654b3523a6b316cb1aab211a102db4..ba479548b9ab30bbfa69c8215cca6f03512c2f5d:/src/amok/Bandwidth/saturate.c diff --git a/src/amok/Bandwidth/saturate.c b/src/amok/Bandwidth/saturate.c index 885d6d24cd..efa150caa7 100644 --- a/src/amok/Bandwidth/saturate.c +++ b/src/amok/Bandwidth/saturate.c @@ -10,14 +10,14 @@ #include "amok/Bandwidth/bandwidth_private.h" #include "gras/Msg/msg_private.h" /* FIXME: This mucks with contextes to answer RPC directly */ -XBT_LOG_EXTERNAL_CATEGORY(amok_bw); -XBT_LOG_DEFAULT_CATEGORY(amok_bw); +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(amok_bw_sat,amok_bw,"Everything concerning the SATuration part of the amok_bw module"); static int amok_bw_cb_sat_start(gras_msg_cb_ctx_t ctx, void *payload); static int amok_bw_cb_sat_begin(gras_msg_cb_ctx_t ctx, void *payload); void amok_bw_sat_init(void) { + gras_datadesc_type_t bw_res_desc=gras_datadesc_by_name("bw_res_t"); gras_datadesc_type_t sat_request_desc; /* Build the saturation datatype descriptions */ @@ -31,7 +31,7 @@ void amok_bw_sat_init(void) { /* Register the saturation messages */ gras_msgtype_declare_rpc("amok_bw_sat start", sat_request_desc, NULL); gras_msgtype_declare_rpc("amok_bw_sat begin", sat_request_desc, sat_request_desc); - gras_msgtype_declare_rpc("amok_bw_sat stop", NULL, NULL); + gras_msgtype_declare_rpc("amok_bw_sat stop", NULL, bw_res_desc); } void amok_bw_sat_join(void) { @@ -91,6 +91,12 @@ void amok_bw_saturate_start(const char* from_name,unsigned int from_port, /* Asked to begin a saturation */ static int amok_bw_cb_sat_start(gras_msg_cb_ctx_t ctx, void *payload){ sat_request_t request = *(sat_request_t*)payload; + gras_socket_t expeditor = gras_msg_cb_ctx_from(ctx); + + VERB4("Asked by %s:%d to start a saturation to %s:%d", + gras_socket_peer_name(expeditor),gras_socket_peer_port(expeditor), + request->host.name,request->host.port); + gras_msg_rpcreturn(60,ctx, NULL); amok_bw_saturate_begin(request->host.name,request->host.port, request->msg_size, request->duration, @@ -105,6 +111,12 @@ static int amok_bw_cb_sat_start(gras_msg_cb_ctx_t ctx, void *payload){ * * Note that the only way to break this function before the end of the timeout * is to have a remote host calling amok_bw_saturate_stop to this process. + * + * If duration=0, the experiment will never timeout (you then have to manually + * stop it). + * + * If msg_size=0, the size will be automatically computed to make sure that + * each of the messages occupy the connexion one second */ void amok_bw_saturate_begin(const char* to_name,unsigned int to_port, unsigned int msg_size, double duration, @@ -136,6 +148,18 @@ void amok_bw_saturate_begin(const char* to_name,unsigned int to_port, request->host.name = NULL; request->host.port = 0; + /* Size autodetection on need */ + if (!msg_size) { + double bw; + double sec; + amok_bw_test(peer_cmd, + 0,512*1024, 512*1024, /* 512k as first guess */ + 1, /* at least one sec */ + &sec, &bw); + request->msg_size = (int)bw; + } + + /* Launch the saturation */ ctx = gras_msg_rpc_async_call(peer_cmd, 60, gras_msgtype_by_name("amok_bw_sat begin"), &request); @@ -147,7 +171,7 @@ void amok_bw_saturate_begin(const char* to_name,unsigned int to_port, free(request); gras_socket_close(peer_cmd); - INFO2("Saturation from %s to %s started",gras_os_myname(),to_name); + INFO2("Saturation(%s->%s) started",gras_os_myname(),to_name); /* Start experiment */ start=gras_os_time(); @@ -174,11 +198,10 @@ void amok_bw_saturate_begin(const char* to_name,unsigned int to_port, /* Check whether the experiment has to be terminated by now */ elapsed=gras_os_time()-start; - VERB2("elapsed %f duration %f",elapsed, duration); + DEBUG2("elapsed %f duration %f",elapsed, duration); - } while (saturate_further && elapsed < duration); + } while (saturate_further && (duration==0 || elapsed < duration)); - INFO2("Saturation from %s to %s stopped",gras_os_myname(),to_name); bw = ((double)(packet_sent*msg_size)) / elapsed; if (elapsed_res) @@ -186,16 +209,13 @@ void amok_bw_saturate_begin(const char* to_name,unsigned int to_port, if (bw_res) *bw_res = bw; - if (elapsed >= duration) { - INFO2("Saturation experiment terminated. Took %f sec (achieving %f kb/s)", - elapsed, bw/1024.0); - } - /* If someone stopped us, inform him about the achieved bandwidth */ if (msg_got.expe) { bw_res_t answer = xbt_new(s_bw_res_t,1); s_gras_msg_cb_ctx_t ctx; + INFO3("Saturation from %s to %s stopped by %s", + gras_os_myname(),to_name, gras_socket_peer_name(msg_got.expe)); answer->timestamp=gras_os_time(); answer->sec=elapsed; answer->bw=bw; @@ -206,6 +226,9 @@ void amok_bw_saturate_begin(const char* to_name,unsigned int to_port, gras_msg_rpcreturn(60,&ctx,&answer); free(answer); + } else { + INFO4("Saturation from %s to %s elapsed after %f sec (achieving %f kb/s)", + gras_os_myname(),to_name,elapsed,bw/1024.0); } gras_socket_close(meas); @@ -218,6 +241,7 @@ static int amok_bw_cb_sat_begin(gras_msg_cb_ctx_t ctx, void *payload){ volatile int saturate_further = 1; xbt_ex_t e; gras_socket_t measMaster=NULL,meas=NULL; + gras_socket_t from=gras_msg_cb_ctx_from(ctx); int port=6000; while (port <= 10000 && measMaster == NULL) { @@ -252,13 +276,16 @@ static int amok_bw_cb_sat_begin(gras_msg_cb_ctx_t ctx, void *payload){ while (saturate_further) { TRY { - gras_socket_meas_recv(meas,120,request->msg_size,request->msg_size); + gras_socket_meas_recv(meas,5,request->msg_size,request->msg_size); } CATCH(e) { saturate_further = 0; xbt_ex_free(e); } } - INFO1("Saturation stopped on %s",gras_os_myname()); + INFO3("Saturation comming from %s:%d stopped on %s", + gras_socket_peer_name(from),gras_socket_peer_port(from), + gras_os_myname()); + gras_socket_close(meas); if (gras_if_RL()) /* On SG, accepted=master */ gras_socket_close(measMaster); @@ -276,11 +303,18 @@ static int amok_bw_cb_sat_begin(gras_msg_cb_ctx_t ctx, void *payload){ */ void amok_bw_saturate_stop(const char* from_name,unsigned int from_port, /*out*/ double *time, double *bw) { - + xbt_ex_t e; + gras_socket_t sock = gras_socket_client(from_name,from_port); bw_res_t answer; - gras_msg_rpccall(sock,60,gras_msgtype_by_name("amok_bw_sat stop"),NULL,&answer); + VERB2("Ask %s:%d to stop the saturation",from_name,from_port); + TRY { + gras_msg_rpccall(sock,60,gras_msgtype_by_name("amok_bw_sat stop"),NULL,&answer); + } CATCH(e) { + RETHROW2("Cannot ask %s:%d to stop saturation: %s",from_name, from_port); + } gras_socket_close(sock); if (time) *time=answer->sec; if (bw) *bw =answer->bw; + free(answer); }