Logo AND Algorithmique Numérique Distribuée

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