Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
we need the simgrid library too. True story.
[simgrid.git] / examples / msg / chord / chord.c
1
2 /* Copyright (c) 2010. The SimGrid Team.
3  * All rights reserved.                                                     */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include <stdio.h>
9 #include "msg/msg.h"
10 #include "xbt/log.h"
11 #include "xbt/asserts.h"
12 #include "simgrid/modelchecker.h"
13
14 /** @addtogroup MSG_examples
15  *
16  *  - <b>chord/chord.c: Classical Chord P2P protocol</b>
17  *    This example implements the well known Chord P2P protocol. Its
18  *    main advantage is that it constitute a fully working non-trivial
19  *    example. In addition, its implementation is rather efficient, as 
20  *    demonstrated in http://hal.inria.fr/inria-00602216/
21  */
22
23  
24  XBT_LOG_NEW_DEFAULT_CATEGORY(msg_chord,
25                              "Messages specific for this msg example");
26
27 #define COMM_SIZE 10
28 #define COMP_SIZE 0
29 #define MAILBOX_NAME_SIZE 10
30
31 static int nb_bits = 24;
32 static int nb_keys = 0;
33 static int timeout = 50;
34 static int max_simulation_time = 1000;
35 static int periodic_stabilize_delay = 20;
36 static int periodic_fix_fingers_delay = 120;
37 static int periodic_check_predecessor_delay = 120;
38 static int periodic_lookup_delay = 10;
39
40 extern long int smx_total_comms;
41
42 /*
43  * Finger element.
44  */
45 typedef struct s_finger {
46   int id;
47   char mailbox[MAILBOX_NAME_SIZE]; // string representation of the id
48 } s_finger_t, *finger_t;
49
50 /*
51  * Node data.
52  */
53 typedef struct s_node {
54   int id;                                 // my id
55   char mailbox[MAILBOX_NAME_SIZE];        // my mailbox name (string representation of the id)
56   s_finger_t *fingers;                    // finger table, of size nb_bits (fingers[0] is my successor)
57   int pred_id;                            // predecessor id
58   char pred_mailbox[MAILBOX_NAME_SIZE];   // predecessor's mailbox name
59   int next_finger_to_fix;                 // index of the next finger to fix in fix_fingers()
60   msg_comm_t comm_receive;                // current communication to receive
61   double last_change_date;                // last time I changed a finger or my predecessor
62 } s_node_t, *node_t;
63
64 /**
65  * Types of tasks exchanged between nodes.
66  */
67 typedef enum {
68   TASK_FIND_SUCCESSOR,
69   TASK_FIND_SUCCESSOR_ANSWER,
70   TASK_GET_PREDECESSOR,
71   TASK_GET_PREDECESSOR_ANSWER,
72   TASK_NOTIFY,
73   TASK_SUCCESSOR_LEAVING,
74   TASK_PREDECESSOR_LEAVING
75 } e_task_type_t;
76
77 /*
78  * Data attached with the tasks sent and received
79  */
80 typedef struct s_task_data {
81   e_task_type_t type;                     // type of task
82   int request_id;                         // id paramater (used by some types of tasks)
83   int request_finger;                     // finger parameter (used by some types of tasks)
84   int answer_id;                          // answer (used by some types of tasks)
85   char answer_to[MAILBOX_NAME_SIZE];      // mailbox to send an answer to (if any)
86   const char* issuer_host_name;           // used for logging
87 } s_task_data_t, *task_data_t;
88
89 static int *powers2;
90
91 // utility functions
92 static void chord_initialize(void);
93 static void chord_exit(void);
94 static int normalize(int id);
95 static int is_in_interval(int id, int start, int end);
96 static void get_mailbox(int host_id, char* mailbox);
97 static void task_free(void* task);
98 static void print_finger_table(node_t node);
99 static void set_finger(node_t node, int finger_index, int id);
100 static void set_predecessor(node_t node, int predecessor_id);
101
102 // process functions
103 static int node(int argc, char *argv[]);
104 static void handle_task(node_t node, msg_task_t task);
105
106 // Chord core
107 static void create(node_t node);
108 static int join(node_t node, int known_id);
109 static void leave(node_t node);
110 static int find_successor(node_t node, int id);
111 static int remote_find_successor(node_t node, int ask_to_id, int id);
112 static int remote_get_predecessor(node_t node, int ask_to_id);
113 static int closest_preceding_node(node_t node, int id);
114 static void stabilize(node_t node);
115 static void notify(node_t node, int predecessor_candidate_id);
116 static void remote_notify(node_t node, int notify_to, int predecessor_candidate_id);
117 static void fix_fingers(node_t node);
118 static void check_predecessor(node_t node);
119 static void random_lookup(node_t);
120 static void quit_notify(node_t node);
121
122 /**
123  * \brief Global initialization of the Chord simulation.
124  */
125 static void chord_initialize(void)
126 {
127   // compute the powers of 2 once for all
128   powers2 = xbt_new(int, nb_bits);
129   int pow = 1;
130   int i;
131   for (i = 0; i < nb_bits; i++) {
132     powers2[i] = pow;
133     pow = pow << 1;
134   }
135   nb_keys = pow;
136   XBT_DEBUG("Sets nb_keys to %d", nb_keys);
137 }
138
139 static void chord_exit(void)
140 {
141   xbt_free(powers2);
142 }
143
144 /**
145  * \brief Turns an id into an equivalent id in [0, nb_keys).
146  * \param id an id
147  * \return the corresponding normalized id
148  */
149 static int normalize(int id)
150 {
151   // like id % nb_keys, but works with negatives numbers (and faster)
152   return id & (nb_keys - 1);
153 }
154
155 /**
156  * \brief Returns whether an id belongs to the interval [start, end].
157  *
158  * The parameters are noramlized to make sure they are between 0 and nb_keys - 1).
159  * 1 belongs to [62, 3]
160  * 1 does not belong to [3, 62]
161  * 63 belongs to [62, 3]
162  * 63 does not belong to [3, 62]
163  * 24 belongs to [21, 29]
164  * 24 does not belong to [29, 21]
165  *
166  * \param id id to check
167  * \param start lower bound
168  * \param end upper bound
169  * \return a non-zero value if id in in [start, end]
170  */
171 static int is_in_interval(int id, int start, int end)
172 {
173   id = normalize(id);
174   start = normalize(start);
175   end = normalize(end);
176
177   // make sure end >= start and id >= start
178   if (end < start) {
179     end += nb_keys;
180   }
181
182   if (id < start) {
183     id += nb_keys;
184   }
185
186   return id <= end;
187 }
188
189 /**
190  * \brief Gets the mailbox name of a host given its chord id.
191  * \param node_id id of a node
192  * \param mailbox pointer to where the mailbox name should be written
193  * (there must be enough space)
194  */
195 static void get_mailbox(int node_id, char* mailbox)
196 {
197   snprintf(mailbox, MAILBOX_NAME_SIZE - 1, "%d", node_id);
198 }
199
200 /**
201  * \brief Frees the memory used by a task.
202  * \param task the MSG task to destroy
203  */
204 static void task_free(void* task)
205 {
206   // TODO add a parameter data_free_function to MSG_task_create?
207   xbt_free(MSG_task_get_data(task));
208   MSG_task_destroy(task);
209 }
210
211 /**
212  * \brief Displays the finger table of a node.
213  * \param node a node
214  */
215 static void print_finger_table(node_t node)
216 {
217   if (XBT_LOG_ISENABLED(msg_chord, xbt_log_priority_verbose)) {
218     int i;
219     XBT_VERB("My finger table:");
220     XBT_VERB("Start | Succ ");
221     for (i = 0; i < nb_bits; i++) {
222       XBT_VERB(" %3d  | %3d ", (node->id + powers2[i]) % nb_keys, node->fingers[i].id);
223     }
224     XBT_VERB("Predecessor: %d", node->pred_id);
225   }
226 }
227
228 /**
229  * \brief Sets a finger of the current node.
230  * \param node the current node
231  * \param finger_index index of the finger to set (0 to nb_bits - 1)
232  * \param id the id to set for this finger
233  */
234 static void set_finger(node_t node, int finger_index, int id)
235 {
236   if (id != node->fingers[finger_index].id) {
237     node->fingers[finger_index].id = id;
238     get_mailbox(id, node->fingers[finger_index].mailbox);
239     node->last_change_date = MSG_get_clock();
240     XBT_DEBUG("My new finger #%d is %d", finger_index, id);
241   }
242 }
243
244 /**
245  * \brief Sets the predecessor of the current node.
246  * \param node the current node
247  * \param id the id to predecessor, or -1 to unset the predecessor
248  */
249 static void set_predecessor(node_t node, int predecessor_id)
250 {
251   if (predecessor_id != node->pred_id) {
252     node->pred_id = predecessor_id;
253
254     if (predecessor_id != -1) {
255       get_mailbox(predecessor_id, node->pred_mailbox);
256     }
257     node->last_change_date = MSG_get_clock();
258
259     XBT_DEBUG("My new predecessor is %d", predecessor_id);
260   }
261 }
262
263 /**
264  * \brief Node Function
265  * Arguments:
266  * - my id
267  * - the id of a guy I know in the system (except for the first node)
268  * - the time to sleep before I join (except for the first node)
269  */
270 int node(int argc, char *argv[])
271 {
272   /* Reduce the run size for the MC */
273   if(MC_IS_ENABLED){
274     periodic_stabilize_delay = 8;
275     periodic_fix_fingers_delay = 8;
276     periodic_check_predecessor_delay = 8;
277   }
278
279   double init_time = MSG_get_clock();
280   msg_task_t task_received = NULL;
281   int i;
282   int join_success = 0;
283   double deadline;
284   double next_stabilize_date = init_time + periodic_stabilize_delay;
285   double next_fix_fingers_date = init_time + periodic_fix_fingers_delay;
286   double next_check_predecessor_date = init_time + periodic_check_predecessor_delay;
287   double next_lookup_date = init_time + periodic_lookup_delay;
288
289   xbt_assert(argc == 3 || argc == 5, "Wrong number of arguments for this node");
290
291   // initialize my node
292   s_node_t node = {0};
293   node.id = atoi(argv[1]);
294   get_mailbox(node.id, node.mailbox);
295   node.next_finger_to_fix = 0;
296   node.fingers = xbt_new0(s_finger_t, nb_bits);
297   node.last_change_date = init_time;
298
299   for (i = 0; i < nb_bits; i++) {
300     node.fingers[i].id = -1;
301     set_finger(&node, i, node.id);
302   }
303
304   if (argc == 3) { // first ring
305     deadline = atof(argv[2]);
306     create(&node);
307     join_success = 1;
308   }
309   else {
310     int known_id = atoi(argv[2]);
311     //double sleep_time = atof(argv[3]);
312     deadline = atof(argv[4]);
313
314     /*
315     // sleep before starting
316     XBT_DEBUG("Let's sleep during %f", sleep_time);
317     MSG_process_sleep(sleep_time);
318     */
319     XBT_DEBUG("Hey! Let's join the system.");
320
321     join_success = join(&node, known_id);
322   }
323
324   if (join_success) {
325     while (MSG_get_clock() < init_time + deadline
326 //      && MSG_get_clock() < node.last_change_date + 1000
327         && MSG_get_clock() < max_simulation_time) {
328
329       if (node.comm_receive == NULL) {
330         task_received = NULL;
331         node.comm_receive = MSG_task_irecv(&task_received, node.mailbox);
332         // FIXME: do not make MSG_task_irecv() calls from several functions
333       }
334
335       if (!MSG_comm_test(node.comm_receive)) {
336
337         // no task was received: make some periodic calls
338         if (MSG_get_clock() >= next_stabilize_date) {
339           stabilize(&node);
340           next_stabilize_date = MSG_get_clock() + periodic_stabilize_delay;
341         }
342         else if (MSG_get_clock() >= next_fix_fingers_date) {
343           fix_fingers(&node);
344           next_fix_fingers_date = MSG_get_clock() + periodic_fix_fingers_delay;
345         }
346         else if (MSG_get_clock() >= next_check_predecessor_date) {
347           check_predecessor(&node);
348           next_check_predecessor_date = MSG_get_clock() + periodic_check_predecessor_delay;
349         }
350         else if (MSG_get_clock() >= next_lookup_date) {
351           random_lookup(&node);
352           next_lookup_date = MSG_get_clock() + periodic_lookup_delay;
353         }
354         else {
355           // nothing to do: sleep for a while
356           MSG_process_sleep(5);
357         }
358       }
359
360       if (node.comm_receive && MSG_comm_test(node.comm_receive)) {
361
362         // a transfer has occured
363
364         msg_error_t status = MSG_comm_get_status(node.comm_receive);
365
366         if (status != MSG_OK) {
367           XBT_DEBUG("Failed to receive a task. Nevermind.");
368           MSG_comm_destroy(node.comm_receive);
369           node.comm_receive = NULL;
370         }
371         else {
372           // the task was successfully received
373           MSG_comm_destroy(node.comm_receive);
374           node.comm_receive = NULL;
375           handle_task(&node, task_received);
376         }
377       }
378     }
379
380     if (node.comm_receive) {
381       MSG_comm_destroy(node.comm_receive);
382       node.comm_receive = NULL;
383     }
384
385     // leave the ring
386     leave(&node);
387   }
388
389   // stop the simulation
390   xbt_free(node.fingers);
391   return 0;
392 }
393
394 /**
395  * \brief This function is called when the current node receives a task.
396  * \param node the current node
397  * \param task the task to handle (don't touch it then:
398  * it will be destroyed, reused or forwarded)
399  */
400 static void handle_task(node_t node, msg_task_t task) {
401
402   XBT_DEBUG("Handling task %p", task);
403   char mailbox[MAILBOX_NAME_SIZE];
404   task_data_t task_data = (task_data_t) MSG_task_get_data(task);
405   e_task_type_t type = task_data->type;
406
407   switch (type) {
408
409     case TASK_FIND_SUCCESSOR:
410       XBT_DEBUG("Receiving a 'Find Successor' request from %s for id %d",
411           task_data->issuer_host_name, task_data->request_id);
412       // is my successor the successor?
413       if (is_in_interval(task_data->request_id, node->id + 1, node->fingers[0].id)) {
414         task_data->type = TASK_FIND_SUCCESSOR_ANSWER;
415         task_data->answer_id = node->fingers[0].id;
416         XBT_DEBUG("Sending back a 'Find Successor Answer' to %s (mailbox %s): the successor of %d is %d",
417             task_data->issuer_host_name,
418             task_data->answer_to,
419             task_data->request_id, task_data->answer_id);
420         MSG_task_dsend(task, task_data->answer_to, task_free);
421       }
422       else {
423         // otherwise, forward the request to the closest preceding finger in my table
424         int closest = closest_preceding_node(node, task_data->request_id);
425         XBT_DEBUG("Forwarding the 'Find Successor' request for id %d to my closest preceding finger %d",
426             task_data->request_id, closest);
427         get_mailbox(closest, mailbox);
428         MSG_task_dsend(task, mailbox, task_free);
429       }
430       break;
431
432     case TASK_GET_PREDECESSOR:
433       XBT_DEBUG("Receiving a 'Get Predecessor' request from %s", task_data->issuer_host_name);
434       task_data->type = TASK_GET_PREDECESSOR_ANSWER;
435       task_data->answer_id = node->pred_id;
436       XBT_DEBUG("Sending back a 'Get Predecessor Answer' to %s via mailbox '%s': my predecessor is %d",
437           task_data->issuer_host_name,
438           task_data->answer_to, task_data->answer_id);
439       MSG_task_dsend(task, task_data->answer_to, task_free);
440       break;
441
442     case TASK_NOTIFY:
443       // someone is telling me that he may be my new predecessor
444       XBT_DEBUG("Receiving a 'Notify' request from %s", task_data->issuer_host_name);
445       notify(node, task_data->request_id);
446       task_free(task);
447       break;
448
449     case TASK_PREDECESSOR_LEAVING:
450       // my predecessor is about to quit
451       XBT_DEBUG("Receiving a 'Predecessor Leaving' message from %s", task_data->issuer_host_name);
452       // modify my predecessor
453       set_predecessor(node, task_data->request_id);
454       task_free(task);
455       /*TODO :
456       >> notify my new predecessor
457       >> send a notify_predecessors !!
458        */
459       break;
460
461     case TASK_SUCCESSOR_LEAVING:
462       // my successor is about to quit
463       XBT_DEBUG("Receiving a 'Successor Leaving' message from %s", task_data->issuer_host_name);
464       // modify my successor FIXME : this should be implicit ?
465       set_finger(node, 0, task_data->request_id);
466       task_free(task);
467       /* TODO
468       >> notify my new successor
469       >> update my table & predecessors table */
470       break;
471
472     case TASK_FIND_SUCCESSOR_ANSWER:
473     case TASK_GET_PREDECESSOR_ANSWER:
474       XBT_DEBUG("Ignoring unexpected task of type %d (%p)", (int)type, task);
475       task_free(task);
476       break;
477   }
478 }
479
480 /**
481  * \brief Initializes the current node as the first one of the system.
482  * \param node the current node
483  */
484 static void create(node_t node)
485 {
486   XBT_DEBUG("Create a new Chord ring...");
487   set_predecessor(node, -1); // -1 means that I have no predecessor
488   print_finger_table(node);
489 }
490
491 /**
492  * \brief Makes the current node join the ring, knowing the id of a node
493  * already in the ring
494  * \param node the current node
495  * \param known_id id of a node already in the ring
496  * \return 1 if the join operation succeeded, 0 otherwise
497  */
498 static int join(node_t node, int known_id)
499 {
500   XBT_INFO("Joining the ring with id %d, knowing node %d", node->id, known_id);
501   set_predecessor(node, -1); // no predecessor (yet)
502
503   /*
504   int i;
505   for (i = 0; i < nb_bits; i++) {
506     set_finger(node, i, known_id);
507   }
508   */
509
510   int successor_id = remote_find_successor(node, known_id, node->id);
511   if (successor_id == -1) {
512     XBT_INFO("Cannot join the ring.");
513   }
514   else {
515     set_finger(node, 0, successor_id);
516     print_finger_table(node);
517   }
518
519   return successor_id != -1;
520 }
521
522 /**
523  * \brief Makes the current node quit the system
524  * \param node the current node
525  */
526 static void leave(node_t node)
527 {
528   XBT_DEBUG("Well Guys! I Think it's time for me to quit ;)");
529   quit_notify(node);
530 }
531
532 /*
533  * \brief Notifies the successor and the predecessor of the current node
534  * of the departure
535  * \param node the current node
536  */
537 static void quit_notify(node_t node)
538 {
539   char mailbox[MAILBOX_NAME_SIZE];
540   //send the PREDECESSOR_LEAVING to our successor
541   task_data_t req_data = xbt_new0(s_task_data_t,1);
542   req_data->type = TASK_PREDECESSOR_LEAVING;
543   req_data->request_id = node->pred_id;
544   get_mailbox(node->id, req_data->answer_to);
545   req_data->issuer_host_name = MSG_host_get_name(MSG_host_self());
546
547   msg_task_t task_sent = MSG_task_create(NULL, COMP_SIZE, COMM_SIZE, req_data);
548   XBT_DEBUG("Sending a 'PREDECESSOR_LEAVING' to my successor %d",node->fingers[0].id);
549   MSG_task_send_with_timeout(task_sent, node->fingers[0].mailbox, timeout);
550
551   //send the SUCCESSOR_LEAVING to our predecessor
552   get_mailbox(node->pred_id, mailbox);
553   task_data_t req_data_s = xbt_new0(s_task_data_t,1);
554   req_data_s->type = TASK_SUCCESSOR_LEAVING;
555   req_data_s->request_id = node->fingers[0].id;
556   req_data_s->request_id = node->pred_id;
557   get_mailbox(node->id, req_data_s->answer_to);
558   req_data_s->issuer_host_name = MSG_host_get_name(MSG_host_self());
559
560   msg_task_t task_sent_s = MSG_task_create(NULL, COMP_SIZE, COMM_SIZE, req_data_s);
561   XBT_DEBUG("Sending a 'SUCCESSOR_LEAVING' to my predecessor %d",node->pred_id);
562   MSG_task_send_with_timeout(task_sent_s, mailbox, timeout);
563
564 }
565
566 /**
567  * \brief Makes the current node find the successor node of an id.
568  * \param node the current node
569  * \param id the id to find
570  * \return the id of the successor node, or -1 if the request failed
571  */
572 static int find_successor(node_t node, int id)
573 {
574   // is my successor the successor?
575   if (is_in_interval(id, node->id + 1, node->fingers[0].id)) {
576     return node->fingers[0].id;
577   }
578
579   // otherwise, ask the closest preceding finger in my table
580   int closest = closest_preceding_node(node, id);
581   return remote_find_successor(node, closest, id);
582 }
583
584 /**
585  * \brief Asks another node the successor node of an id.
586  * \param node the current node
587  * \param ask_to the node to ask to
588  * \param id the id to find
589  * \return the id of the successor node, or -1 if the request failed
590  */
591 static int remote_find_successor(node_t node, int ask_to, int id)
592 {
593   int successor = -1;
594   int stop = 0;
595   char mailbox[MAILBOX_NAME_SIZE];
596   get_mailbox(ask_to, mailbox);
597   task_data_t req_data = xbt_new0(s_task_data_t, 1);
598   req_data->type = TASK_FIND_SUCCESSOR;
599   req_data->request_id = id;
600   get_mailbox(node->id, req_data->answer_to);
601   req_data->issuer_host_name = MSG_host_get_name(MSG_host_self());
602
603   // send a "Find Successor" request to ask_to_id
604   msg_task_t task_sent = MSG_task_create(NULL, COMP_SIZE, COMM_SIZE, req_data);
605   XBT_DEBUG("Sending a 'Find Successor' request (task %p) to %d for id %d", task_sent, ask_to, id);
606   msg_error_t res = MSG_task_send_with_timeout(task_sent, mailbox, timeout);
607
608   if (res != MSG_OK) {
609     XBT_DEBUG("Failed to send the 'Find Successor' request (task %p) to %d for id %d",
610         task_sent, ask_to, id);
611     task_free(task_sent);
612   }
613   else {
614
615     // receive the answer
616     XBT_DEBUG("Sent a 'Find Successor' request (task %p) to %d for key %d, waiting for the answer",
617         task_sent, ask_to, id);
618
619     do {
620       if (node->comm_receive == NULL) {
621         msg_task_t task_received = NULL;
622         node->comm_receive = MSG_task_irecv(&task_received, node->mailbox);
623       }
624
625       res = MSG_comm_wait(node->comm_receive, timeout);
626
627       if (res != MSG_OK) {
628         XBT_DEBUG("Failed to receive the answer to my 'Find Successor' request (task %p): %d",
629                   task_sent, (int)res);
630         stop = 1;
631         MSG_comm_destroy(node->comm_receive);
632         node->comm_receive = NULL;
633       }
634       else {
635         msg_task_t task_received = MSG_comm_get_task(node->comm_receive);
636         XBT_DEBUG("Received a task (%p)", task_received);
637         task_data_t ans_data = MSG_task_get_data(task_received);
638
639         if (MC_IS_ENABLED) {
640           // the model-checker is expected to find a counter-example here. 
641           // 
642           // As you can see in the test right below, task_received is not always equal to task_sent 
643           // (as messages from differing round can interleave). But the previous version of this code 
644           // wrongly assumed that, leading to problems. But this only occured on large platforms,
645           // leading to hardly usable traces. So we used the model-checker to track down the issue, 
646           // and we came down to this test, that explained the bug in a snap.
647           MC_assert(task_received == task_sent);
648         }
649
650         if (task_received != task_sent) {
651           // this is not the expected answer
652           MSG_comm_destroy(node->comm_receive);
653           node->comm_receive = NULL;
654           handle_task(node, task_received);
655         }
656         else {
657           // this is our answer
658           XBT_DEBUG("Received the answer to my 'Find Successor' request for id %d (task %p): the successor of key %d is %d",
659               ans_data->request_id, task_received, id, ans_data->answer_id);
660           successor = ans_data->answer_id;
661           stop = 1;
662           MSG_comm_destroy(node->comm_receive);
663           node->comm_receive = NULL;
664           task_free(task_received);
665         }
666       }
667     } while (!stop);
668   }
669
670   return successor;
671 }
672
673 /**
674  * \brief Asks another node its predecessor.
675  * \param node the current node
676  * \param ask_to the node to ask to
677  * \return the id of its predecessor node, or -1 if the request failed
678  * (or if the node does not know its predecessor)
679  */
680 static int remote_get_predecessor(node_t node, int ask_to)
681 {
682   int predecessor_id = -1;
683   int stop = 0;
684   char mailbox[MAILBOX_NAME_SIZE];
685   get_mailbox(ask_to, mailbox);
686   task_data_t req_data = xbt_new0(s_task_data_t, 1);
687   req_data->type = TASK_GET_PREDECESSOR;
688   get_mailbox(node->id, req_data->answer_to);
689   req_data->issuer_host_name = MSG_host_get_name(MSG_host_self());
690
691   // send a "Get Predecessor" request to ask_to_id
692   XBT_DEBUG("Sending a 'Get Predecessor' request to %d", ask_to);
693   msg_task_t task_sent = MSG_task_create(NULL, COMP_SIZE, COMM_SIZE, req_data);
694   msg_error_t res = MSG_task_send_with_timeout(task_sent, mailbox, timeout);
695
696   if (res != MSG_OK) {
697     XBT_DEBUG("Failed to send the 'Get Predecessor' request (task %p) to %d",
698         task_sent, ask_to);
699     task_free(task_sent);
700   }
701   else {
702
703     // receive the answer
704     XBT_DEBUG("Sent 'Get Predecessor' request (task %p) to %d, waiting for the answer on my mailbox '%s'",
705         task_sent, ask_to, req_data->answer_to);
706
707     do {
708       if (node->comm_receive == NULL) { // FIXME simplify this
709         msg_task_t task_received = NULL;
710         node->comm_receive = MSG_task_irecv(&task_received, node->mailbox);
711       }
712
713       res = MSG_comm_wait(node->comm_receive, timeout);
714
715       if (res != MSG_OK) {
716         XBT_DEBUG("Failed to receive the answer to my 'Get Predecessor' request (task %p): %d",
717             task_sent, (int)res);
718         stop = 1;
719         MSG_comm_destroy(node->comm_receive);
720         node->comm_receive = NULL;
721       }
722       else {
723         msg_task_t task_received = MSG_comm_get_task(node->comm_receive);
724         task_data_t ans_data = MSG_task_get_data(task_received);
725
726         if (MC_IS_ENABLED) {
727           MC_assert(task_received == task_sent);
728         }
729
730         if (task_received != task_sent) {
731           MSG_comm_destroy(node->comm_receive);
732           node->comm_receive = NULL;
733           handle_task(node, task_received);
734         }
735         else {
736           XBT_DEBUG("Received the answer to my 'Get Predecessor' request (task %p): the predecessor of node %d is %d",
737               task_received, ask_to, ans_data->answer_id);
738           predecessor_id = ans_data->answer_id;
739           stop = 1;
740           MSG_comm_destroy(node->comm_receive);
741           node->comm_receive = NULL;
742           task_free(task_received);
743         }
744       }
745     } while (!stop);
746   }
747
748   return predecessor_id;
749 }
750
751 /**
752  * \brief Returns the closest preceding finger of an id
753  * with respect to the finger table of the current node.
754  * \param node the current node
755  * \param id the id to find
756  * \return the closest preceding finger of that id
757  */
758 int closest_preceding_node(node_t node, int id)
759 {
760   int i;
761   for (i = nb_bits - 1; i >= 0; i--) {
762     if (is_in_interval(node->fingers[i].id, node->id + 1, id - 1)) {
763       return node->fingers[i].id;
764     }
765   }
766   return node->id;
767 }
768
769 /**
770  * \brief This function is called periodically. It checks the immediate
771  * successor of the current node.
772  * \param node the current node
773  */
774 static void stabilize(node_t node)
775 {
776   XBT_DEBUG("Stabilizing node");
777
778   // get the predecessor of my immediate successor
779   int candidate_id;
780   int successor_id = node->fingers[0].id;
781   if (successor_id != node->id) {
782     candidate_id = remote_get_predecessor(node, successor_id);
783   }
784   else {
785     candidate_id = node->pred_id;
786   }
787
788   // this node is a candidate to become my new successor
789   if (candidate_id != -1
790       && is_in_interval(candidate_id, node->id + 1, successor_id - 1)) {
791     set_finger(node, 0, candidate_id);
792   }
793   if (successor_id != node->id) {
794     remote_notify(node, successor_id, node->id);
795   }
796 }
797
798 /**
799  * \brief Notifies the current node that its predecessor may have changed.
800  * \param node the current node
801  * \param candidate_id the possible new predecessor
802  */
803 static void notify(node_t node, int predecessor_candidate_id) {
804
805   if (node->pred_id == -1
806     || is_in_interval(predecessor_candidate_id, node->pred_id + 1, node->id - 1)) {
807
808     set_predecessor(node, predecessor_candidate_id);
809     print_finger_table(node);
810   }
811   else {
812     XBT_DEBUG("I don't have to change my predecessor to %d", predecessor_candidate_id);
813   }
814 }
815
816 /**
817  * \brief Notifies a remote node that its predecessor may have changed.
818  * \param node the current node
819  * \param notify_id id of the node to notify
820  * \param candidate_id the possible new predecessor
821  */
822 static void remote_notify(node_t node, int notify_id, int predecessor_candidate_id) {
823
824       task_data_t req_data = xbt_new0(s_task_data_t, 1);
825       req_data->type = TASK_NOTIFY;
826       req_data->request_id = predecessor_candidate_id;
827       req_data->issuer_host_name = MSG_host_get_name(MSG_host_self());
828
829       // send a "Notify" request to notify_id
830       msg_task_t task = MSG_task_create(NULL, COMP_SIZE, COMM_SIZE, req_data);
831       XBT_DEBUG("Sending a 'Notify' request (task %p) to %d", task, notify_id);
832       char mailbox[MAILBOX_NAME_SIZE];
833       get_mailbox(notify_id, mailbox);
834       MSG_task_dsend(task, mailbox, task_free);
835     }
836
837 /**
838  * \brief This function is called periodically.
839  * It refreshes the finger table of the current node.
840  * \param node the current node
841  */
842 static void fix_fingers(node_t node) {
843
844   XBT_DEBUG("Fixing fingers");
845   int i = node->next_finger_to_fix;
846   int id = find_successor(node, node->id + powers2[i]);
847   if (id != -1) {
848
849     if (id != node->fingers[i].id) {
850       set_finger(node, i, id);
851       print_finger_table(node);
852     }
853     node->next_finger_to_fix = (i + 1) % nb_bits;
854   }
855 }
856
857 /**
858  * \brief This function is called periodically.
859  * It checks whether the predecessor has failed
860  * \param node the current node
861  */
862 static void check_predecessor(node_t node)
863 {
864   XBT_DEBUG("Checking whether my predecessor is alive");
865   // TODO
866 }
867
868 /**
869  * \brief Performs a find successor request to a random id.
870  * \param node the current node
871  */
872 static void random_lookup(node_t node)
873 {
874   int id = 1337; // TODO pick a pseudorandom id
875   XBT_DEBUG("Making a lookup request for id %d", id);
876   find_successor(node, id);
877 }
878
879 /**
880  * \brief Main function.
881  */
882 int main(int argc, char *argv[])
883 {
884   MSG_init(&argc, argv);
885   if (argc < 3) {
886     printf("Usage: %s [-nb_bits=n] [-timeout=t] platform_file deployment_file\n", argv[0]);
887     printf("example: %s ../msg_platform.xml chord.xml\n", argv[0]);
888     exit(1);
889   }
890
891   char **options = &argv[1];
892   while (!strncmp(options[0], "-", 1)) {
893
894     int length = strlen("-nb_bits=");
895     if (!strncmp(options[0], "-nb_bits=", length) && strlen(options[0]) > length) {
896       nb_bits = atoi(options[0] + length);
897       XBT_DEBUG("Set nb_bits to %d", nb_bits);
898     }
899     else {
900
901       length = strlen("-timeout=");
902       if (!strncmp(options[0], "-timeout=", length) && strlen(options[0]) > length) {
903         timeout = atoi(options[0] + length);
904         XBT_DEBUG("Set timeout to %d", timeout);
905       }
906       else {
907         xbt_die("Invalid chord option '%s'", options[0]);
908       }
909     }
910     options++;
911   }
912
913   const char* platform_file = options[0];
914   const char* application_file = options[1];
915
916   chord_initialize();
917
918   MSG_create_environment(platform_file);
919
920   MSG_function_register("node", node);
921   MSG_launch_application(application_file);
922
923   msg_error_t res = MSG_main();
924   XBT_CRITICAL("Messages created: %ld", smx_total_comms);
925   XBT_INFO("Simulated time: %g", MSG_get_clock());
926
927   chord_exit();
928
929   if (res == MSG_OK)
930     return 0;
931   else
932     return 1;
933 }