Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Clearer indentation/nesting
[simgrid.git] / src / simix / smx_network.cpp
1 /* Copyright (c) 2009-2016. The SimGrid Team.  All rights reserved.         */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <boost/range/algorithm.hpp>
7
8 #include "src/surf/surf_interface.hpp"
9 #include "src/simix/smx_private.h"
10 #include "xbt/log.h"
11 #include "mc/mc.h"
12 #include "src/mc/mc_replay.h"
13 #include "xbt/dict.h"
14 #include "simgrid/s4u/mailbox.hpp"
15
16 #include "src/simix/SynchroComm.hpp"
17
18 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_network, simix, "SIMIX network-related synchronization");
19
20 static void SIMIX_mbox_free(void *data);
21 static xbt_dict_t mailboxes = xbt_dict_new_homogeneous(SIMIX_mbox_free);
22
23 static void SIMIX_waitany_remove_simcall_from_actions(smx_simcall_t simcall);
24 static void SIMIX_comm_copy_data(smx_synchro_t comm);
25 static inline void SIMIX_mbox_push(smx_mailbox_t mbox, smx_synchro_t comm);
26 static smx_synchro_t _find_matching_comm(std::deque<smx_synchro_t> *deque, e_smx_comm_type_t type,
27     int (*match_fun)(void *, void *,smx_synchro_t), void *user_data, smx_synchro_t my_synchro, bool remove_matching);
28 static void SIMIX_comm_start(smx_synchro_t synchro);
29
30 void SIMIX_mailbox_exit(void)
31 {
32   xbt_dict_free(&mailboxes);
33 }
34
35 /******************************************************************************/
36 /*                           Rendez-Vous Points                               */
37 /******************************************************************************/
38
39 smx_mailbox_t SIMIX_mbox_create(const char *name)
40 {
41   xbt_assert(name, "Mailboxes must have a name");
42   /* two processes may have pushed the same mbox_create simcall at the same time */
43   smx_mailbox_t mbox = (smx_mailbox_t) xbt_dict_get_or_null(mailboxes, name);
44
45   if (!mbox) {
46     mbox = xbt_new0(s_smx_mailbox_t, 1);
47     mbox->name = xbt_strdup(name);
48     mbox->comm_queue = new std::deque<smx_synchro_t>();
49     mbox->done_comm_queue = nullptr; // Allocated on need only
50     mbox->permanent_receiver=NULL;
51
52     XBT_DEBUG("Creating a mailbox at %p with name %s", mbox, name);
53     xbt_dict_set(mailboxes, mbox->name, mbox, NULL);
54   }
55   return mbox;
56 }
57
58 void SIMIX_mbox_free(void *data)
59 {
60   XBT_DEBUG("mbox free %p", data);
61   smx_mailbox_t mbox = (smx_mailbox_t) data;
62   xbt_free(mbox->name);
63   delete mbox->comm_queue;
64   delete mbox->done_comm_queue;
65
66   xbt_free(mbox);
67 }
68
69 smx_mailbox_t SIMIX_mbox_get_by_name(const char *name)
70 {
71   return (smx_mailbox_t) xbt_dict_get_or_null(mailboxes, name);
72 }
73
74 /**
75  *  \brief set the receiver of the rendez vous point to allow eager sends
76  *  \param mbox The rendez-vous point
77  *  \param process The receiving process
78  */
79 void SIMIX_mbox_set_receiver(smx_mailbox_t mbox, smx_process_t process)
80 {
81   mbox->permanent_receiver=process;
82   if (mbox->done_comm_queue == nullptr)
83     mbox->done_comm_queue = new std::deque<smx_synchro_t>();
84 }
85
86 /**
87  *  \brief Pushes a communication synchro into a rendez-vous point
88  *  \param mbox The mailbox
89  *  \param synchro The communication synchro
90  */
91 static inline void SIMIX_mbox_push(smx_mailbox_t mbox, smx_synchro_t synchro)
92 {
93   simgrid::simix::Comm *comm = static_cast<simgrid::simix::Comm*>(synchro);
94
95   mbox->comm_queue->push_back(comm);
96   comm->mbox = mbox;
97 }
98
99 /**
100  *  \brief Removes a communication synchro from a rendez-vous point
101  *  \param mbox The rendez-vous point
102  *  \param synchro The communication synchro
103  */
104 void SIMIX_mbox_remove(smx_mailbox_t mbox, smx_synchro_t synchro)
105 {
106   simgrid::simix::Comm *comm = static_cast<simgrid::simix::Comm*>(synchro);
107
108   comm->mbox = NULL;
109   for (auto it = mbox->comm_queue->begin(); it != mbox->comm_queue->end(); it++)
110     if (*it == comm) {
111       mbox->comm_queue->erase(it);
112       return;
113     }
114   xbt_die("Cannot remove this comm that is not part of the mailbox");
115 }
116
117 /**
118  *  \brief Checks if there is a communication synchro queued in a deque matching our needs
119  *  \param type The type of communication we are looking for (comm_send, comm_recv)
120  *  \return The communication synchro if found, NULL otherwise
121  */
122 static smx_synchro_t _find_matching_comm(std::deque<smx_synchro_t> *deque, e_smx_comm_type_t type,
123     int (*match_fun)(void *, void *,smx_synchro_t), void *this_user_data, smx_synchro_t my_synchro, bool remove_matching)
124 {
125   void* other_user_data = NULL;
126
127   for(auto it = deque->begin(); it != deque->end(); it++){
128     smx_synchro_t synchro = *it;
129     simgrid::simix::Comm *comm = static_cast<simgrid::simix::Comm*>(synchro);
130
131     if (comm->type == SIMIX_COMM_SEND) {
132       other_user_data = comm->src_data;
133     } else if (comm->type == SIMIX_COMM_RECEIVE) {
134       other_user_data = comm->dst_data;
135     }
136     if (comm->type == type &&
137         (!      match_fun ||       match_fun(this_user_data,  other_user_data, synchro)) &&
138         (!comm->match_fun || comm->match_fun(other_user_data, this_user_data,  my_synchro))) {
139       XBT_DEBUG("Found a matching communication synchro %p", comm);
140       if (remove_matching)
141         deque->erase(it);
142       comm->ref();
143 #if HAVE_MC
144       comm->mbox_cpy = comm->mbox;
145 #endif
146       comm->mbox = NULL;
147       return comm;
148     }
149     XBT_DEBUG("Sorry, communication synchro %p does not match our needs:"
150               " its type is %d but we are looking for a comm of type %d (or maybe the filtering didn't match)",
151               comm, (int)comm->type, (int)type);
152   }
153   XBT_DEBUG("No matching communication synchro found");
154   return NULL;
155 }
156
157 /******************************************************************************/
158 /*                          Communication synchros                            */
159 /******************************************************************************/
160 XBT_PRIVATE void simcall_HANDLER_comm_send(smx_simcall_t simcall, smx_process_t src, smx_mailbox_t mbox,
161                                   double task_size, double rate,
162                                   void *src_buff, size_t src_buff_size,
163                                   int (*match_fun)(void *, void *,smx_synchro_t),
164                                   void (*copy_data_fun)(smx_synchro_t, void*, size_t),
165           void *data, double timeout){
166   smx_synchro_t comm = simcall_HANDLER_comm_isend(simcall, src, mbox, task_size, rate,
167                            src_buff, src_buff_size, match_fun, NULL, copy_data_fun,
168                data, 0);
169   SIMCALL_SET_MC_VALUE(simcall, 0);
170   simcall_HANDLER_comm_wait(simcall, comm, timeout);
171 }
172 XBT_PRIVATE smx_synchro_t simcall_HANDLER_comm_isend(smx_simcall_t simcall, smx_process_t src_proc, smx_mailbox_t mbox,
173                                   double task_size, double rate,
174                                   void *src_buff, size_t src_buff_size,
175                                   int (*match_fun)(void *, void *,smx_synchro_t),
176                                   void (*clean_fun)(void *), // used to free the synchro in case of problem after a detached send
177                                   void (*copy_data_fun)(smx_synchro_t, void*, size_t),// used to copy data if not default one
178                           void *data, int detached)
179 {
180   XBT_DEBUG("send from %p", mbox);
181
182   /* Prepare a synchro describing us, so that it gets passed to the user-provided filter of other side */
183   simgrid::simix::Comm* this_synchro = new simgrid::simix::Comm(SIMIX_COMM_SEND);
184
185   /* Look for communication synchro matching our needs. We also provide a description of
186    * ourself so that the other side also gets a chance of choosing if it wants to match with us.
187    *
188    * If it is not found then push our communication into the rendez-vous point */
189   smx_synchro_t other_synchro =
190       _find_matching_comm(mbox->comm_queue, SIMIX_COMM_RECEIVE, match_fun, data, this_synchro, /*remove_matching*/true);
191   simgrid::simix::Comm *other_comm = static_cast<simgrid::simix::Comm*>(other_synchro);
192
193
194   if (!other_synchro) {
195     other_synchro = this_synchro;
196     other_comm = static_cast<simgrid::simix::Comm*>(other_synchro);
197
198     if (mbox->permanent_receiver!=NULL){
199       //this mailbox is for small messages, which have to be sent right now
200       other_synchro->state = SIMIX_READY;
201       other_comm->dst_proc=mbox->permanent_receiver;
202       other_comm->ref();
203       mbox->done_comm_queue->push_back(other_synchro);
204       other_comm->mbox=mbox;
205       XBT_DEBUG("pushing a message into the permanent receive fifo %p, comm %p", mbox, &(other_comm));
206
207     }else{
208       SIMIX_mbox_push(mbox, this_synchro);
209     }
210   } else {
211     XBT_DEBUG("Receive already pushed");
212     this_synchro->unref();
213
214     other_comm->state = SIMIX_READY;
215     other_comm->type = SIMIX_COMM_READY;
216
217   }
218   xbt_fifo_push(src_proc->comms, other_synchro);
219
220
221   if (detached) {
222     other_comm->detached = true;
223     other_comm->clean_fun = clean_fun;
224   } else {
225     other_comm->clean_fun = NULL;
226   }
227
228   /* Setup the communication synchro */
229   other_comm->src_proc = src_proc;
230   other_comm->task_size = task_size;
231   other_comm->rate = rate;
232   other_comm->src_buff = src_buff;
233   other_comm->src_buff_size = src_buff_size;
234   other_comm->src_data = data;
235
236   other_comm->match_fun = match_fun;
237   other_comm->copy_data_fun = copy_data_fun;
238
239
240   if (MC_is_active() || MC_record_replay_is_active()) {
241     other_comm->state = SIMIX_RUNNING;
242     return (detached ? NULL : other_comm);
243   }
244
245   SIMIX_comm_start(other_comm);
246   return (detached ? NULL : other_comm);
247 }
248
249 XBT_PRIVATE void simcall_HANDLER_comm_recv(smx_simcall_t simcall, smx_process_t receiver, smx_mailbox_t mbox,
250                          void *dst_buff, size_t *dst_buff_size,
251                          int (*match_fun)(void *, void *, smx_synchro_t),
252                          void (*copy_data_fun)(smx_synchro_t, void*, size_t),
253                          void *data, double timeout, double rate)
254 {
255   smx_synchro_t comm = SIMIX_comm_irecv(receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
256   SIMCALL_SET_MC_VALUE(simcall, 0);
257   simcall_HANDLER_comm_wait(simcall, comm, timeout);
258 }
259
260 XBT_PRIVATE smx_synchro_t simcall_HANDLER_comm_irecv(smx_simcall_t simcall, smx_process_t receiver, smx_mailbox_t mbox,
261     void *dst_buff, size_t *dst_buff_size,
262     int (*match_fun)(void *, void *, smx_synchro_t),
263     void (*copy_data_fun)(smx_synchro_t, void*, size_t),
264     void *data, double rate)
265 {
266   return SIMIX_comm_irecv(receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
267 }
268
269 smx_synchro_t SIMIX_comm_irecv(smx_process_t dst_proc, smx_mailbox_t mbox, void *dst_buff, size_t *dst_buff_size,
270     int (*match_fun)(void *, void *, smx_synchro_t),
271     void (*copy_data_fun)(smx_synchro_t, void*, size_t), // used to copy data if not default one
272     void *data, double rate)
273 {
274   XBT_DEBUG("recv from %p %p", mbox, mbox->comm_queue);
275   simgrid::simix::Comm* this_synchro = new simgrid::simix::Comm(SIMIX_COMM_RECEIVE);
276
277   smx_synchro_t other_synchro;
278   //communication already done, get it inside the fifo of completed comms
279   if (mbox->permanent_receiver && ! mbox->done_comm_queue->empty()) {
280
281     XBT_DEBUG("We have a comm that has probably already been received, trying to match it, to skip the communication");
282     //find a match in the already received fifo
283     other_synchro = _find_matching_comm(mbox->done_comm_queue, SIMIX_COMM_SEND, match_fun, data, this_synchro,/*remove_matching*/true);
284     //if not found, assume the receiver came first, register it to the mailbox in the classical way
285     if (!other_synchro)  {
286       XBT_DEBUG("We have messages in the permanent receive list, but not the one we are looking for, pushing request into fifo");
287       other_synchro = this_synchro;
288       SIMIX_mbox_push(mbox, this_synchro);
289     } else {
290       simgrid::simix::Comm *other_comm = static_cast<simgrid::simix::Comm*>(other_synchro);
291
292       if(other_comm->surf_comm && other_comm->remains()==0.0) {
293         XBT_DEBUG("comm %p has been already sent, and is finished, destroy it",other_comm);
294         other_comm->state = SIMIX_DONE;
295         other_comm->type = SIMIX_COMM_DONE;
296         other_comm->mbox = NULL;
297       }
298       other_comm->unref();
299       static_cast<simgrid::simix::Comm*>(this_synchro)->unref();
300     }
301   } else {
302     /* Prepare a synchro describing us, so that it gets passed to the user-provided filter of other side */
303
304     /* Look for communication synchro matching our needs. We also provide a description of
305      * ourself so that the other side also gets a chance of choosing if it wants to match with us.
306      *
307      * If it is not found then push our communication into the rendez-vous point */
308     other_synchro = _find_matching_comm(mbox->comm_queue, SIMIX_COMM_SEND, match_fun, data, this_synchro,/*remove_matching*/true);
309
310     if (!other_synchro) {
311       XBT_DEBUG("Receive pushed first %zu", mbox->comm_queue->size());
312       other_synchro = this_synchro;
313       SIMIX_mbox_push(mbox, this_synchro);
314     } else {
315       this_synchro->unref();
316       simgrid::simix::Comm *other_comm = static_cast<simgrid::simix::Comm*>(other_synchro);
317
318       other_comm->state = SIMIX_READY;
319       other_comm->type = SIMIX_COMM_READY;
320     }
321     xbt_fifo_push(dst_proc->comms, other_synchro);
322   }
323
324   /* Setup communication synchro */
325   simgrid::simix::Comm *other_comm = static_cast<simgrid::simix::Comm*>(other_synchro);
326   other_comm->dst_proc = dst_proc;
327   other_comm->dst_buff = dst_buff;
328   other_comm->dst_buff_size = dst_buff_size;
329   other_comm->dst_data = data;
330
331   if (rate != -1.0 && (other_comm->rate == -1.0 || rate < other_comm->rate))
332     other_comm->rate = rate;
333
334   other_comm->match_fun = match_fun;
335   other_comm->copy_data_fun = copy_data_fun;
336
337   if (MC_is_active() || MC_record_replay_is_active()) {
338     other_synchro->state = SIMIX_RUNNING;
339     return other_synchro;
340   }
341
342   SIMIX_comm_start(other_synchro);
343   return other_synchro;
344 }
345
346 smx_synchro_t simcall_HANDLER_comm_iprobe(smx_simcall_t simcall, smx_mailbox_t mbox,
347                                    int type, int src, int tag,
348                                    int (*match_fun)(void *, void *, smx_synchro_t),
349                                    void *data){
350   return SIMIX_comm_iprobe(simcall->issuer, mbox, type, src, tag, match_fun, data);
351 }
352
353 smx_synchro_t SIMIX_comm_iprobe(smx_process_t dst_proc, smx_mailbox_t mbox, int type, int src,
354                               int tag, int (*match_fun)(void *, void *, smx_synchro_t), void *data)
355 {
356   XBT_DEBUG("iprobe from %p %p", mbox, mbox->comm_queue);
357   simgrid::simix::Comm* this_comm;
358   int smx_type;
359   if(type == 1){
360     this_comm = new simgrid::simix::Comm(SIMIX_COMM_SEND);
361     smx_type = SIMIX_COMM_RECEIVE;
362   } else{
363     this_comm = new simgrid::simix::Comm(SIMIX_COMM_RECEIVE);
364     smx_type = SIMIX_COMM_SEND;
365   } 
366   smx_synchro_t other_synchro=NULL;
367   if(mbox->permanent_receiver && ! mbox->done_comm_queue->empty()){
368     XBT_DEBUG("first check in the permanent recv mailbox, to see if we already got something");
369     other_synchro =
370         _find_matching_comm(mbox->done_comm_queue, (e_smx_comm_type_t) smx_type, match_fun, data, this_comm,/*remove_matching*/false);
371   }
372   if (!other_synchro){
373     XBT_DEBUG("check if we have more luck in the normal mailbox");
374     other_synchro = _find_matching_comm(mbox->comm_queue, (e_smx_comm_type_t) smx_type, match_fun, data, this_comm,/*remove_matching*/false);
375   }
376
377   if(other_synchro)
378     other_synchro->unref();
379
380   this_comm->unref();
381   return other_synchro;
382 }
383
384 void simcall_HANDLER_comm_wait(smx_simcall_t simcall, smx_synchro_t synchro, double timeout)
385 {
386   /* Associate this simcall to the wait synchro */
387   XBT_DEBUG("simcall_HANDLER_comm_wait, %p", synchro);
388
389   synchro->simcalls.push_back(simcall);
390   simcall->issuer->waiting_synchro = synchro;
391
392   if (MC_is_active() || MC_record_replay_is_active()) {
393     int idx = SIMCALL_GET_MC_VALUE(simcall);
394     if (idx == 0) {
395       synchro->state = SIMIX_DONE;
396     } else {
397       /* If we reached this point, the wait simcall must have a timeout */
398       /* Otherwise it shouldn't be enabled and executed by the MC */
399       if (timeout == -1)
400         THROW_IMPOSSIBLE;
401
402       simgrid::simix::Comm *comm = static_cast<simgrid::simix::Comm*>(synchro);
403       if (comm->src_proc == simcall->issuer)
404         comm->state = SIMIX_SRC_TIMEOUT;
405       else
406         comm->state = SIMIX_DST_TIMEOUT;
407     }
408
409     SIMIX_comm_finish(synchro);
410     return;
411   }
412
413   /* If the synchro has already finish perform the error handling, */
414   /* otherwise set up a waiting timeout on the right side          */
415   if (synchro->state != SIMIX_WAITING && synchro->state != SIMIX_RUNNING) {
416     SIMIX_comm_finish(synchro);
417   } else { /* if (timeout >= 0) { we need a surf sleep action even when there is no timeout, otherwise surf won't tell us when the host fails */
418     surf_action_t sleep = surf_host_sleep(simcall->issuer->host, timeout);
419     sleep->setData(synchro);
420
421     simgrid::simix::Comm *comm = static_cast<simgrid::simix::Comm*>(synchro);
422     if (simcall->issuer == comm->src_proc)
423       comm->src_timeout = sleep;
424     else
425       comm->dst_timeout = sleep;
426   }
427 }
428
429 void simcall_HANDLER_comm_test(smx_simcall_t simcall, smx_synchro_t synchro)
430 {
431   simgrid::simix::Comm *comm = static_cast<simgrid::simix::Comm*>(synchro);
432
433   if (MC_is_active() || MC_record_replay_is_active()){
434     simcall_comm_test__set__result(simcall, comm->src_proc && comm->dst_proc);
435     if (simcall_comm_test__get__result(simcall)){
436       synchro->state = SIMIX_DONE;
437       synchro->simcalls.push_back(simcall);
438       SIMIX_comm_finish(synchro);
439     } else {
440       SIMIX_simcall_answer(simcall);
441     }
442     return;
443   }
444
445   simcall_comm_test__set__result(simcall, (synchro->state != SIMIX_WAITING && synchro->state != SIMIX_RUNNING));
446   if (simcall_comm_test__get__result(simcall)) {
447     synchro->simcalls.push_back(simcall);
448     SIMIX_comm_finish(synchro);
449   } else {
450     SIMIX_simcall_answer(simcall);
451   }
452 }
453
454 void simcall_HANDLER_comm_testany(smx_simcall_t simcall, xbt_dynar_t synchros)
455 {
456   unsigned int cursor;
457   smx_synchro_t synchro;
458   simcall_comm_testany__set__result(simcall, -1);
459
460   if (MC_is_active() || MC_record_replay_is_active()){
461     int idx = SIMCALL_GET_MC_VALUE(simcall);
462     if(idx == -1){
463       SIMIX_simcall_answer(simcall);
464     }else{
465       synchro = xbt_dynar_get_as(synchros, idx, smx_synchro_t);
466       simcall_comm_testany__set__result(simcall, idx);
467       synchro->simcalls.push_back(simcall);
468       synchro->state = SIMIX_DONE;
469       SIMIX_comm_finish(synchro);
470     }
471     return;
472   }
473
474   xbt_dynar_foreach(simcall_comm_testany__get__comms(simcall), cursor,synchro) {
475     if (synchro->state != SIMIX_WAITING && synchro->state != SIMIX_RUNNING) {
476       simcall_comm_testany__set__result(simcall, cursor);
477       synchro->simcalls.push_back(simcall);
478       SIMIX_comm_finish(synchro);
479       return;
480     }
481   }
482   SIMIX_simcall_answer(simcall);
483 }
484
485 void simcall_HANDLER_comm_waitany(smx_simcall_t simcall, xbt_dynar_t synchros)
486 {
487   smx_synchro_t synchro;
488   unsigned int cursor = 0;
489
490   if (MC_is_active() || MC_record_replay_is_active()){
491     int idx = SIMCALL_GET_MC_VALUE(simcall);
492     synchro = xbt_dynar_get_as(synchros, idx, smx_synchro_t);
493     synchro->simcalls.push_back(simcall);
494     simcall_comm_waitany__set__result(simcall, idx);
495     synchro->state = SIMIX_DONE;
496     SIMIX_comm_finish(synchro);
497     return;
498   }
499
500   xbt_dynar_foreach(synchros, cursor, synchro){
501     /* associate this simcall to the the synchro */
502     synchro->simcalls.push_back(simcall);
503
504     /* see if the synchro is already finished */
505     if (synchro->state != SIMIX_WAITING && synchro->state != SIMIX_RUNNING){
506       SIMIX_comm_finish(synchro);
507       break;
508     }
509   }
510 }
511
512 void SIMIX_waitany_remove_simcall_from_actions(smx_simcall_t simcall)
513 {
514   smx_synchro_t synchro;
515   unsigned int cursor = 0;
516   xbt_dynar_t synchros = simcall_comm_waitany__get__comms(simcall);
517
518   xbt_dynar_foreach(synchros, cursor, synchro) {
519     // Remove the first occurence of simcall:
520     auto i = boost::range::find(synchro->simcalls, simcall);
521     if (i !=  synchro->simcalls.end())
522       synchro->simcalls.erase(i);
523   }
524 }
525
526 /**
527  *  \brief Starts the simulation of a communication synchro.
528  *  \param synchro the communication synchro
529  */
530 static inline void SIMIX_comm_start(smx_synchro_t synchro)
531 {
532   simgrid::simix::Comm *comm = static_cast<simgrid::simix::Comm*>(synchro);
533
534   /* If both the sender and the receiver are already there, start the communication */
535   if (synchro->state == SIMIX_READY) {
536
537     sg_host_t sender   = comm->src_proc->host;
538     sg_host_t receiver = comm->dst_proc->host;
539
540     XBT_DEBUG("Starting communication %p from '%s' to '%s'", synchro, sg_host_get_name(sender), sg_host_get_name(receiver));
541
542     comm->surf_comm = surf_network_model_communicate(surf_network_model, sender, receiver, comm->task_size, comm->rate);
543     comm->surf_comm->setData(synchro);
544     comm->state = SIMIX_RUNNING;
545
546     /* If a link is failed, detect it immediately */
547     if (comm->surf_comm->getState() == simgrid::surf::Action::State::failed) {
548       XBT_DEBUG("Communication from '%s' to '%s' failed to start because of a link failure",
549                 sg_host_get_name(sender), sg_host_get_name(receiver));
550       comm->state = SIMIX_LINK_FAILURE;
551       comm->cleanupSurf();
552     }
553
554     /* If any of the process is suspend, create the synchro but stop its execution,
555        it will be restarted when the sender process resume */
556     if (SIMIX_process_is_suspended(comm->src_proc) || SIMIX_process_is_suspended(comm->dst_proc)) {
557       if (SIMIX_process_is_suspended(comm->src_proc))
558         XBT_DEBUG("The communication is suspended on startup because src (%s@%s) was suspended since it initiated the communication",
559             comm->src_proc->name.c_str(), sg_host_get_name(comm->src_proc->host));
560       else
561         XBT_DEBUG("The communication is suspended on startup because dst (%s@%s) was suspended since it initiated the communication",
562             comm->dst_proc->name.c_str(), sg_host_get_name(comm->dst_proc->host));
563
564       comm->surf_comm->suspend();
565     }
566   }
567 }
568
569 /**
570  * \brief Answers the SIMIX simcalls associated to a communication synchro.
571  * \param synchro a finished communication synchro
572  */
573 void SIMIX_comm_finish(smx_synchro_t synchro)
574 {
575   simgrid::simix::Comm *comm = static_cast<simgrid::simix::Comm*>(synchro);
576   unsigned int destroy_count = 0;
577
578   while (!synchro->simcalls.empty()) {
579     smx_simcall_t simcall = synchro->simcalls.front();
580     synchro->simcalls.pop_front();
581
582     /* If a waitany simcall is waiting for this synchro to finish, then remove
583        it from the other synchros in the waitany list. Afterwards, get the
584        position of the actual synchro in the waitany dynar and
585        return it as the result of the simcall */
586
587     if (simcall->call == SIMCALL_NONE) //FIXME: maybe a better way to handle this case
588       continue; // if process handling comm is killed
589     if (simcall->call == SIMCALL_COMM_WAITANY) {
590       SIMIX_waitany_remove_simcall_from_actions(simcall);
591       if (!MC_is_active() && !MC_record_replay_is_active())
592         simcall_comm_waitany__set__result(simcall, xbt_dynar_search(simcall_comm_waitany__get__comms(simcall), &synchro));
593     }
594
595     /* If the synchro is still in a rendez-vous point then remove from it */
596     if (comm->mbox)
597       SIMIX_mbox_remove(comm->mbox, synchro);
598
599     XBT_DEBUG("SIMIX_comm_finish: synchro state = %d", (int)synchro->state);
600
601     /* Check out for errors */
602
603     if (simcall->issuer->host->isOff()) {
604       simcall->issuer->context->iwannadie = 1;
605       SMX_EXCEPTION(simcall->issuer, host_error, 0, "Host failed");
606     } else {
607       switch (synchro->state) {
608
609       case SIMIX_DONE:
610         XBT_DEBUG("Communication %p complete!", synchro);
611         SIMIX_comm_copy_data(synchro);
612         break;
613
614       case SIMIX_SRC_TIMEOUT:
615         SMX_EXCEPTION(simcall->issuer, timeout_error, 0, "Communication timeouted because of sender");
616         break;
617
618       case SIMIX_DST_TIMEOUT:
619         SMX_EXCEPTION(simcall->issuer, timeout_error, 0, "Communication timeouted because of receiver");
620         break;
621
622       case SIMIX_SRC_HOST_FAILURE:
623         if (simcall->issuer == comm->src_proc)
624           simcall->issuer->context->iwannadie = 1;
625   //          SMX_EXCEPTION(simcall->issuer, host_error, 0, "Host failed");
626         else
627           SMX_EXCEPTION(simcall->issuer, network_error, 0, "Remote peer failed");
628         break;
629
630       case SIMIX_DST_HOST_FAILURE:
631         if (simcall->issuer == comm->dst_proc)
632           simcall->issuer->context->iwannadie = 1;
633   //          SMX_EXCEPTION(simcall->issuer, host_error, 0, "Host failed");
634         else
635           SMX_EXCEPTION(simcall->issuer, network_error, 0, "Remote peer failed");
636         break;
637
638       case SIMIX_LINK_FAILURE:
639
640         XBT_DEBUG("Link failure in synchro %p between '%s' and '%s': posting an exception to the issuer: %s (%p) detached:%d",
641                   synchro,
642                   comm->src_proc ? sg_host_get_name(comm->src_proc->host) : NULL,
643                   comm->dst_proc ? sg_host_get_name(comm->dst_proc->host) : NULL,
644                   simcall->issuer->name.c_str(), simcall->issuer, comm->detached);
645         if (comm->src_proc == simcall->issuer) {
646           XBT_DEBUG("I'm source");
647         } else if (comm->dst_proc == simcall->issuer) {
648           XBT_DEBUG("I'm dest");
649         } else {
650           XBT_DEBUG("I'm neither source nor dest");
651         }
652         SMX_EXCEPTION(simcall->issuer, network_error, 0, "Link failure");
653         break;
654
655       case SIMIX_CANCELED:
656         if (simcall->issuer == comm->dst_proc)
657           SMX_EXCEPTION(simcall->issuer, cancel_error, 0, "Communication canceled by the sender");
658         else
659           SMX_EXCEPTION(simcall->issuer, cancel_error, 0, "Communication canceled by the receiver");
660         break;
661
662       default:
663         xbt_die("Unexpected synchro state in SIMIX_comm_finish: %d", (int)synchro->state);
664       }
665     }
666
667     /* if there is an exception during a waitany or a testany, indicate the position of the failed communication */
668     if (simcall->issuer->doexception) {
669       if (simcall->call == SIMCALL_COMM_WAITANY) {
670         simcall->issuer->running_ctx->exception.value = xbt_dynar_search(simcall_comm_waitany__get__comms(simcall), &synchro);
671       }
672       else if (simcall->call == SIMCALL_COMM_TESTANY) {
673         simcall->issuer->running_ctx->exception.value = xbt_dynar_search(simcall_comm_testany__get__comms(simcall), &synchro);
674       }
675     }
676
677     if (simcall->issuer->host->isOff()) {
678       simcall->issuer->context->iwannadie = 1;
679     }
680
681     simcall->issuer->waiting_synchro = NULL;
682     xbt_fifo_remove(simcall->issuer->comms, synchro);
683     if(comm->detached){
684       if(simcall->issuer == comm->src_proc){
685         if(comm->dst_proc)
686           xbt_fifo_remove(comm->dst_proc->comms, synchro);
687       }
688       if(simcall->issuer == comm->dst_proc){
689         if(comm->src_proc)
690           xbt_fifo_remove(comm->src_proc->comms, synchro);
691         //in case of a detached comm we have an extra ref to remove, as the sender won't do it
692         destroy_count++;
693       }
694     }
695     SIMIX_simcall_answer(simcall);
696     destroy_count++;
697   }
698
699   while (destroy_count-- > 0)
700     static_cast<simgrid::simix::Comm*>(synchro)->unref();
701 }
702
703 /******************************************************************************/
704 /*                    SIMIX_comm_copy_data callbacks                       */
705 /******************************************************************************/
706 static void (*SIMIX_comm_copy_data_callback) (smx_synchro_t, void*, size_t) = &SIMIX_comm_copy_pointer_callback;
707
708 void SIMIX_comm_set_copy_data_callback(void (*callback) (smx_synchro_t, void*, size_t))
709 {
710   SIMIX_comm_copy_data_callback = callback;
711 }
712
713 void SIMIX_comm_copy_pointer_callback(smx_synchro_t synchro, void* buff, size_t buff_size)
714 {
715   simgrid::simix::Comm *comm = static_cast<simgrid::simix::Comm*>(synchro);
716
717   xbt_assert((buff_size == sizeof(void *)), "Cannot copy %zu bytes: must be sizeof(void*)", buff_size);
718   *(void **) (comm->dst_buff) = buff;
719 }
720
721 void SIMIX_comm_copy_buffer_callback(smx_synchro_t synchro, void* buff, size_t buff_size)
722 {
723   simgrid::simix::Comm *comm = static_cast<simgrid::simix::Comm*>(synchro);
724
725   XBT_DEBUG("Copy the data over");
726   memcpy(comm->dst_buff, buff, buff_size);
727   if (comm->detached) { // if this is a detached send, the source buffer was duplicated by SMPI sender to make the original buffer available to the application ASAP
728     xbt_free(buff);
729     comm->src_buff = NULL;
730   }
731 }
732
733
734 /**
735  *  \brief Copy the communication data from the sender's buffer to the receiver's one
736  *  \param comm The communication
737  */
738 void SIMIX_comm_copy_data(smx_synchro_t synchro)
739 {
740   simgrid::simix::Comm *comm = static_cast<simgrid::simix::Comm*>(synchro);
741
742   size_t buff_size = comm->src_buff_size;
743   /* If there is no data to copy then return */
744   if (!comm->src_buff || !comm->dst_buff || comm->copied)
745     return;
746
747   XBT_DEBUG("Copying comm %p data from %s (%p) -> %s (%p) (%zu bytes)",
748             comm,
749             comm->src_proc ? sg_host_get_name(comm->src_proc->host) : "a finished process",
750             comm->src_buff,
751             comm->dst_proc ? sg_host_get_name(comm->dst_proc->host) : "a finished process",
752             comm->dst_buff, buff_size);
753
754   /* Copy at most dst_buff_size bytes of the message to receiver's buffer */
755   if (comm->dst_buff_size)
756     buff_size = MIN(buff_size, *(comm->dst_buff_size));
757
758   /* Update the receiver's buffer size to the copied amount */
759   if (comm->dst_buff_size)
760     *comm->dst_buff_size = buff_size;
761
762   if (buff_size > 0){
763       if(comm->copy_data_fun)
764         comm->copy_data_fun (comm, comm->src_buff, buff_size);
765       else
766         SIMIX_comm_copy_data_callback (comm, comm->src_buff, buff_size);
767   }
768
769
770   /* Set the copied flag so we copy data only once */
771   /* (this function might be called from both communication ends) */
772   comm->copied = 1;
773 }