Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
65539ef0b7b68a150932f6dfb8046a52e92a724e
[simgrid.git] / src / surf / surf_routing.c
1 /* Copyright (c) 2009, 2010, 2011. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <pcre.h>               /* regular expression library */
8
9 #include "simgrid/platf_interface.h"    // platform creation API internal interface
10
11 #include "surf_routing_private.h"
12 #include "surf/surf_routing.h"
13 #include "surf/surfxml_parse_values.h"
14
15 xbt_lib_t host_lib;
16 int ROUTING_HOST_LEVEL;         //Routing level
17 int SURF_CPU_LEVEL;             //Surf cpu level
18 int SURF_WKS_LEVEL;             //Surf workstation level
19 int SIMIX_HOST_LEVEL;           //Simix level
20 int MSG_HOST_LEVEL;             //Msg level
21 int SD_HOST_LEVEL;              //Simdag level
22 int COORD_HOST_LEVEL=0;         //Coordinates level
23 int NS3_HOST_LEVEL;             //host node for ns3
24
25 xbt_lib_t link_lib;
26 int SD_LINK_LEVEL;              //Simdag level
27 int SURF_LINK_LEVEL;            //Surf level
28 int NS3_LINK_LEVEL;             //link for ns3
29
30 xbt_lib_t as_router_lib;
31 int ROUTING_ASR_LEVEL;          //Routing level
32 int COORD_ASR_LEVEL;            //Coordinates level
33 int NS3_ASR_LEVEL;              //host node for ns3
34
35 static xbt_dict_t random_value = NULL;
36
37 /* Global vars */
38 routing_global_t global_routing = NULL;
39 AS_t current_routing = NULL;
40
41 /* global parse functions */
42 xbt_dynar_t link_list = NULL;   /* temporary store of current list link of a route */
43 static const char *src = NULL;  /* temporary store the source name of a route */
44 static const char *dst = NULL;  /* temporary store the destination name of a route */
45 static char *gw_src = NULL;     /* temporary store the gateway source name of a route */
46 static char *gw_dst = NULL;     /* temporary store the gateway destination name of a route */
47
48 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route, surf, "Routing part of surf");
49
50 static void routing_parse_peer(sg_platf_peer_cbarg_t peer);     /* peer bypass */
51 static void routing_parse_Srandom(void);        /* random bypass */
52
53 static void routing_parse_postparse(void);
54
55 /* this lines are only for replace use like index in the model table */
56 typedef enum {
57   SURF_MODEL_FULL = 0,
58   SURF_MODEL_FLOYD,
59   SURF_MODEL_DIJKSTRA,
60   SURF_MODEL_DIJKSTRACACHE,
61   SURF_MODEL_NONE,
62   SURF_MODEL_RULEBASED,
63   SURF_MODEL_VIVALDI,
64   SURF_MODEL_CLUSTER
65 } e_routing_types;
66
67 struct s_model_type routing_models[] = {
68   {"Full",
69    "Full routing data (fast, large memory requirements, fully expressive)",
70    model_full_create, model_full_end},
71   {"Floyd",
72    "Floyd routing data (slow initialization, fast lookup, lesser memory requirements, shortest path routing only)",
73    model_floyd_create, model_floyd_end},
74   {"Dijkstra",
75    "Dijkstra routing data (fast initialization, slow lookup, small memory requirements, shortest path routing only)",
76    model_dijkstra_create, model_dijkstra_both_end},
77   {"DijkstraCache",
78    "Dijkstra routing data (fast initialization, fast lookup, small memory requirements, shortest path routing only)",
79    model_dijkstracache_create, model_dijkstra_both_end},
80   {"none", "No routing (usable with Constant network only)",
81    model_none_create,  NULL},
82   {"RuleBased", "Rule-Based routing data (...)",
83    model_rulebased_create, NULL},
84   {"Vivaldi", "Vivaldi routing",
85    model_vivaldi_create, NULL},
86   {"Cluster", "Cluster routing",
87    model_cluster_create, NULL},
88   {NULL, NULL, NULL, NULL}
89 };
90
91 /**
92  * \brief Add a "host" to the network element list
93  */
94 static void parse_S_host(sg_platf_host_cbarg_t host)
95 {
96   network_element_info_t info = NULL;
97   if (current_routing->hierarchy == SURF_ROUTING_NULL)
98     current_routing->hierarchy = SURF_ROUTING_BASE;
99   xbt_assert(!xbt_lib_get_or_null(host_lib, host->id, ROUTING_HOST_LEVEL),
100              "Reading a host, processing unit \"%s\" already exists", host->id);
101
102   current_routing->parse_PU(current_routing, host->id);
103   info = xbt_new0(s_network_element_info_t, 1);
104   info->rc_component = current_routing;
105   info->rc_type = SURF_NETWORK_ELEMENT_HOST;
106   xbt_lib_set(host_lib, host->id, ROUTING_HOST_LEVEL, (void *) info);
107   if (host->coord && strcmp(host->coord, "")) {
108     unsigned int cursor;
109     char*str;
110
111     if (!COORD_HOST_LEVEL)
112       xbt_die ("To use host coordinates, please add --cfg=coordinates:yes to your command line");
113
114     /* Pre-parse the host coordinates -- FIXME factorize with routers by overloading the routing->parse_PU function*/
115     xbt_dynar_t ctn_str = xbt_str_split_str(host->coord, " ");
116     xbt_dynar_t ctn = xbt_dynar_new(sizeof(double),NULL);
117     xbt_dynar_foreach(ctn_str,cursor, str) {
118       double val = atof(str);
119       xbt_dynar_push(ctn,&val);
120     }
121     xbt_dynar_shrink(ctn, 0);
122     xbt_dynar_free(&ctn_str);
123     xbt_lib_set(host_lib, host->id, COORD_HOST_LEVEL, (void *) ctn);
124   }
125 }
126
127 /**
128  * \brief Add a "router" to the network element list
129  */
130 static void parse_S_router(sg_platf_router_cbarg_t router)
131 {
132   network_element_info_t info = NULL;
133   if (current_routing->hierarchy == SURF_ROUTING_NULL)
134     current_routing->hierarchy = SURF_ROUTING_BASE;
135   xbt_assert(!xbt_lib_get_or_null(as_router_lib, router->id, ROUTING_ASR_LEVEL),
136              "Reading a router, processing unit \"%s\" already exists",
137              router->id);
138
139   current_routing->parse_PU(current_routing, router->id);
140   info = xbt_new0(s_network_element_info_t, 1);
141   info->rc_component = current_routing;
142   info->rc_type = SURF_NETWORK_ELEMENT_ROUTER;
143
144   xbt_lib_set(as_router_lib, router->id, ROUTING_ASR_LEVEL, (void *) info);
145   if (strcmp(router->coord, "")) {
146     unsigned int cursor;
147     char*str;
148
149     if (!COORD_ASR_LEVEL)
150       xbt_die ("To use host coordinates, please add --cfg=coordinates:yes to your command line");
151
152     /* Pre-parse the host coordinates */
153     xbt_dynar_t ctn_str = xbt_str_split_str(router->coord, " ");
154     xbt_dynar_t ctn = xbt_dynar_new(sizeof(double),NULL);
155     xbt_dynar_foreach(ctn_str,cursor, str) {
156       double val = atof(str);
157       xbt_dynar_push(ctn,&val);
158     }
159     xbt_dynar_shrink(ctn, 0);
160     xbt_dynar_free(&ctn_str);
161     xbt_lib_set(as_router_lib, router->id, COORD_ASR_LEVEL, (void *) ctn);
162   }
163 }
164
165
166 /**
167  * \brief Set the end points for a route
168  */
169 static void routing_parse_S_route(void)
170 {
171   if (src != NULL && dst != NULL && link_list != NULL)
172     THROWF(arg_error, 0, "Route between %s to %s can not be defined",
173            A_surfxml_route_src, A_surfxml_route_dst);
174   src = A_surfxml_route_src;
175   dst = A_surfxml_route_dst;
176   xbt_assert(strlen(src) > 0 || strlen(dst) > 0,
177              "Some limits are null in the route between \"%s\" and \"%s\"",
178              src, dst);
179   link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
180 }
181
182 /**
183  * \brief Set the end points and gateways for a ASroute
184  */
185 static void routing_parse_S_ASroute(void)
186 {
187   if (src != NULL && dst != NULL && link_list != NULL)
188     THROWF(arg_error, 0, "Route between %s to %s can not be defined",
189            A_surfxml_ASroute_src, A_surfxml_ASroute_dst);
190   src = A_surfxml_ASroute_src;
191   dst = A_surfxml_ASroute_dst;
192   gw_src = A_surfxml_ASroute_gw_src;
193   gw_dst = A_surfxml_ASroute_gw_dst;
194   xbt_assert(strlen(src) > 0 || strlen(dst) > 0 || strlen(gw_src) > 0
195              || strlen(gw_dst) > 0,
196              "Some limits are null in the route between \"%s\" and \"%s\"",
197              src, dst);
198   link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
199 }
200
201 /**
202  * \brief Set the end points for a bypassRoute
203  */
204 static void routing_parse_S_bypassRoute(void)
205 {
206   if (src != NULL && dst != NULL && link_list != NULL)
207     THROWF(arg_error, 0,
208            "Bypass Route between %s to %s can not be defined",
209            A_surfxml_bypassRoute_src, A_surfxml_bypassRoute_dst);
210   src = A_surfxml_bypassRoute_src;
211   dst = A_surfxml_bypassRoute_dst;
212   gw_src = A_surfxml_bypassRoute_gw_src;
213   gw_dst = A_surfxml_bypassRoute_gw_dst;
214   xbt_assert(strlen(src) > 0 || strlen(dst) > 0 || strlen(gw_src) > 0
215              || strlen(gw_dst) > 0,
216              "Some limits are null in the route between \"%s\" and \"%s\"",
217              src, dst);
218   link_list = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
219 }
220
221 /**
222  * \brief Set a new link on the actual list of link for a route or ASroute from XML
223  */
224
225 static void routing_parse_link_ctn(void)
226 {
227   char *link_id;
228   switch (A_surfxml_link_ctn_direction) {
229   case AU_surfxml_link_ctn_direction:
230   case A_surfxml_link_ctn_direction_NONE:
231     link_id = xbt_strdup(A_surfxml_link_ctn_id);
232     break;
233   case A_surfxml_link_ctn_direction_UP:
234     link_id = bprintf("%s_UP", A_surfxml_link_ctn_id);
235     break;
236   case A_surfxml_link_ctn_direction_DOWN:
237     link_id = bprintf("%s_DOWN", A_surfxml_link_ctn_id);
238     break;
239   }
240   xbt_dynar_push(link_list, &link_id);
241 }
242
243 /**
244  * \brief Store the route by calling the set_route function of the current routing component
245  */
246 static void routing_parse_E_route(void)
247 {
248   route_t route = xbt_new0(s_route_t, 1);
249   route->link_list = link_list;
250   xbt_assert(current_routing->parse_route,
251              "no defined method \"set_route\" in \"%s\"",
252              current_routing->name);
253   current_routing->parse_route(current_routing, src, dst, route);
254   link_list = NULL;
255   src = NULL;
256   dst = NULL;
257 }
258
259 /**
260  * \brief Store the ASroute by calling the set_ASroute function of the current routing component
261  */
262 static void routing_parse_E_ASroute(void)
263 {
264   route_t e_route = xbt_new0(s_route_t, 1);
265   e_route->link_list = link_list;
266   e_route->src_gateway = xbt_strdup(gw_src);
267   e_route->dst_gateway = xbt_strdup(gw_dst);
268   xbt_assert(current_routing->parse_ASroute,
269              "no defined method \"set_ASroute\" in \"%s\"",
270              current_routing->name);
271   current_routing->parse_ASroute(current_routing, src, dst, e_route);
272   link_list = NULL;
273   src = NULL;
274   dst = NULL;
275   gw_src = NULL;
276   gw_dst = NULL;
277 }
278
279 /**
280  * \brief Store the bypass route by calling the set_bypassroute function of the current routing component
281  */
282 static void routing_parse_E_bypassRoute(void)
283 {
284   route_t e_route = xbt_new0(s_route_t, 1);
285   e_route->link_list = link_list;
286   e_route->src_gateway = xbt_strdup(gw_src);
287   e_route->dst_gateway = xbt_strdup(gw_dst);
288   xbt_assert(current_routing->parse_bypassroute,
289              "Bypassing mechanism not implemented by routing '%s'",
290              current_routing->name);
291   current_routing->parse_bypassroute(current_routing, src, dst, e_route);
292   link_list = NULL;
293   src = NULL;
294   dst = NULL;
295   gw_src = NULL;
296   gw_dst = NULL;
297 }
298
299 /**
300  * \brief Make a new routing component to the platform
301  *
302  * Add a new autonomous system to the platform. Any elements (such as host,
303  * router or sub-AS) added after this call and before the corresponding call
304  * to sg_platf_new_AS_close() will be added to this AS.
305  *
306  * Once this function was called, the configuration concerning the used
307  * models cannot be changed anymore.
308  *
309  * @param AS_id name of this autonomous system. Must be unique in the platform
310  * @param wanted_routing_type one of Full, Floyd, Dijkstra or similar. Full list in the variable routing_models, in src/surf/surf_routing.c
311  */
312 void routing_AS_begin(const char *AS_id, const char *wanted_routing_type)
313 {
314   AS_t new_as;
315   routing_model_description_t model = NULL;
316   int cpt;
317
318   /* search the routing model */
319   for (cpt = 0; routing_models[cpt].name; cpt++)
320     if (!strcmp(wanted_routing_type, routing_models[cpt].name))
321       model = &routing_models[cpt];
322   /* if its not exist, error */
323   if (model == NULL) {
324     fprintf(stderr, "Routing model %s not found. Existing models:\n",
325             wanted_routing_type);
326     for (cpt = 0; routing_models[cpt].name; cpt++)
327       fprintf(stderr, "   %s: %s\n", routing_models[cpt].name,
328               routing_models[cpt].desc);
329     xbt_die(NULL);
330   }
331
332   /* make a new routing component */
333   new_as = (AS_t) model->create();
334   new_as->model_desc = model;
335   new_as->hierarchy = SURF_ROUTING_NULL;
336   new_as->name = xbt_strdup(AS_id);
337
338   if (current_routing == NULL && global_routing->root == NULL) {
339
340     /* it is the first one */
341     new_as->routing_father = NULL;
342     global_routing->root = new_as;
343
344   } else if (current_routing != NULL && global_routing->root != NULL) {
345
346     xbt_assert(!xbt_dict_get_or_null
347                (current_routing->routing_sons, AS_id),
348                "The AS \"%s\" already exists", AS_id);
349     /* it is a part of the tree */
350     new_as->routing_father = current_routing;
351     /* set the father behavior */
352     if (current_routing->hierarchy == SURF_ROUTING_NULL)
353       current_routing->hierarchy = SURF_ROUTING_RECURSIVE;
354     /* add to the sons dictionary */
355     xbt_dict_set(current_routing->routing_sons, AS_id,
356                  (void *) new_as, NULL);
357     /* add to the father element list */
358     current_routing->parse_AS(current_routing, AS_id);
359   } else {
360     THROWF(arg_error, 0, "All defined components must be belong to a AS");
361   }
362   /* set the new current component of the tree */
363   current_routing = new_as;
364 }
365
366 /**
367  * \brief Specify that the current description of AS is finished
368  *
369  * Once you've declared all the content of your AS, you have to close
370  * it with this call. Your AS is not usable until you call this function.
371  *
372  * @fixme: this call is not as robust as wanted: bad things WILL happen
373  * if you call it twice for the same AS, or if you forget calling it, or
374  * even if you add stuff to a closed AS
375  *
376  */
377 void routing_AS_end()
378 {
379
380   if (current_routing == NULL) {
381     THROWF(arg_error, 0, "Close an AS, but none was under construction");
382   } else {
383     network_element_info_t info = NULL;
384     xbt_assert(!xbt_lib_get_or_null
385                (as_router_lib, current_routing->name, ROUTING_ASR_LEVEL),
386                "The AS \"%s\" already exists", current_routing->name);
387     info = xbt_new0(s_network_element_info_t, 1);
388     info->rc_component = current_routing->routing_father;
389     info->rc_type = SURF_NETWORK_ELEMENT_AS;
390     xbt_lib_set(as_router_lib, current_routing->name, ROUTING_ASR_LEVEL,
391                 (void *) info);
392
393     if (current_routing->model_desc->end)
394       current_routing->model_desc->end(current_routing);
395     current_routing = current_routing->routing_father;
396   }
397 }
398
399 /* Aux Business methods */
400
401 /**
402  * \brief Get the AS father and the first elements of the chain
403  *
404  * \param src the source host name 
405  * \param dst the destination host name
406  * 
407  * Get the common father of the to processing units, and the first different 
408  * father in the chain
409  */
410 static void elements_father(const char *src, const char *dst,
411                             AS_t * res_father,
412                             AS_t * res_src,
413                             AS_t * res_dst)
414 {
415   xbt_assert(src && dst, "bad parameters for \"elements_father\" method");
416 #define ELEMENTS_FATHER_MAXDEPTH 16     /* increase if it is not enough */
417   AS_t src_as, dst_as;
418   AS_t path_src[ELEMENTS_FATHER_MAXDEPTH];
419   AS_t path_dst[ELEMENTS_FATHER_MAXDEPTH];
420   int index_src = 0;
421   int index_dst = 0;
422   AS_t current;
423   AS_t current_src;
424   AS_t current_dst;
425   AS_t father;
426
427   /* (1) find the as where the src and dst are located */
428   network_element_info_t src_data = xbt_lib_get_or_null(host_lib, src,
429                                                         ROUTING_HOST_LEVEL);
430   network_element_info_t dst_data = xbt_lib_get_or_null(host_lib, dst,
431                                                         ROUTING_HOST_LEVEL);
432   if (!src_data)
433     src_data = xbt_lib_get_or_null(as_router_lib, src, ROUTING_ASR_LEVEL);
434   if (!dst_data)
435     dst_data = xbt_lib_get_or_null(as_router_lib, dst, ROUTING_ASR_LEVEL);
436   src_as = src_data->rc_component;
437   dst_as = dst_data->rc_component;
438
439   xbt_assert(src_as && dst_as,
440              "Ask for route \"from\"(%s) or \"to\"(%s) no found", src, dst);
441
442   /* (2) find the path to the root routing component */
443   for (current = src_as; current != NULL; current = current->routing_father) {
444     if (index_src >= ELEMENTS_FATHER_MAXDEPTH)
445       xbt_die("ELEMENTS_FATHER_MAXDEPTH should be increased for path_src");
446     path_src[index_src++] = current;
447   }
448   for (current = dst_as; current != NULL; current = current->routing_father) {
449     if (index_dst >= ELEMENTS_FATHER_MAXDEPTH)
450       xbt_die("ELEMENTS_FATHER_MAXDEPTH should be increased for path_dst");
451     path_dst[index_dst++] = current;
452   }
453
454   /* (3) find the common father */
455   do {
456     current_src = path_src[--index_src];
457     current_dst = path_dst[--index_dst];
458   } while (index_src > 0 && index_dst > 0 && current_src == current_dst);
459
460   /* (4) they are not in the same routing component, make the path */
461   if (current_src == current_dst)
462     father = current_src;
463   else
464     father = path_src[index_src + 1];
465
466   /* (5) result generation */
467   *res_father = father;         /* first the common father of src and dst */
468   *res_src = current_src;       /* second the first different father of src */
469   *res_dst = current_dst;       /* three  the first different father of dst */
470
471 #undef ELEMENTS_FATHER_MAXDEPTH
472 }
473
474 /* Global Business methods */
475
476 /**
477  * \brief Recursive function for get_route_latency
478  *
479  * \param src the source host name 
480  * \param dst the destination host name
481  * \param *route the route where the links are stored.
482  * \param *latency the latency, if needed
483  * 
484  * This function is called by "get_route" and "get_latency". It allows to walk
485  * recursively through the ASes tree.
486  */
487 static void _get_route_and_latency(const char *src, const char *dst,
488                                    xbt_dynar_t * route, double *latency)
489 {
490   void *link;
491   unsigned int cpt;
492
493   XBT_DEBUG("Solve route/latency  \"%s\" to \"%s\"", src, dst);
494   xbt_assert(src && dst, "bad parameters for \"_get_route_latency\" method");
495
496   /* Find how src and dst are interconnected */
497   AS_t common_father, src_father, dst_father;
498   elements_father(src, dst, &common_father, &src_father, &dst_father);
499
500   /* If src and dst are in the same AS, life is good */
501   if (src_father == dst_father) {       /* SURF_ROUTING_BASE */
502
503     route_t e_route = xbt_new0(s_route_t, 1);
504     e_route->link_list = xbt_dynar_new(global_routing->size_of_link, NULL);
505     if (route) {
506       common_father->get_route(common_father, src, dst, e_route);
507       xbt_assert(e_route, "no route between \"%s\" and \"%s\"", src, dst);
508       *route = e_route->link_list;
509     }
510     if (latency) {
511       *latency = common_father->get_latency(common_father, src, dst, e_route);
512       xbt_assert(*latency >= 0.0,
513                  "latency error on route between \"%s\" and \"%s\"", src, dst);
514     }
515     if (e_route) {
516       xbt_free(e_route->src_gateway);
517       xbt_free(e_route->dst_gateway);
518       xbt_free(e_route);
519     }
520     return;
521   }
522
523   /* If we are here, src and dst are not in the same AS; check whether a direct bypass is defined */
524
525   route_t e_route_bypass = NULL;
526   if (common_father->get_bypass_route)
527     e_route_bypass = common_father->get_bypass_route(common_father, src, dst);
528
529   if (e_route_bypass) { /* Common ancestor is kind enough to declare a bypass route from src to dst -- use it and bail out */
530     if (latency)
531       xbt_die("Bypass cannot work yet with get_latency"); // FIXME: that limitation seems supurious to me -- check with alvin
532
533     if (!route)
534       xbt_die("You're asking for route and latency but don't ask for any of them, you weirdo");
535     *route = xbt_dynar_new(global_routing->size_of_link, NULL);
536
537     xbt_dynar_foreach(e_route_bypass->link_list, cpt, link) {
538       xbt_dynar_push(*route, &link);
539     }
540
541     generic_free_route(e_route_bypass);
542     return;
543   }
544
545
546   /* Not in the same AS, no bypass. We'll have to find our path between the ASes recursively*/
547
548   route_t e_route_cnt = xbt_new0(s_route_t, 1);
549   e_route_cnt->link_list = xbt_dynar_new(global_routing->size_of_link, NULL);
550   common_father->get_route(common_father, src_father->name, dst_father->name, e_route_cnt);
551
552   xbt_assert(e_route_cnt, "no route between \"%s\" and \"%s\"",
553       src_father->name, dst_father->name);
554
555   xbt_assert((e_route_cnt->src_gateway == NULL) ==
556       (e_route_cnt->dst_gateway == NULL),
557       "bad gateway for route between \"%s\" and \"%s\"", src, dst);
558
559   if (route) {
560     *route = xbt_dynar_new(global_routing->size_of_link, NULL);
561   }
562   if (latency) {
563     *latency = common_father->get_latency(common_father,
564         src_father->name, dst_father->name,
565         e_route_cnt);
566     xbt_assert(*latency >= 0.0,
567         "latency error on route between \"%s\" and \"%s\"",
568         src_father->name, dst_father->name);
569   }
570
571
572   /* If source gateway is not our source, we have to recursively find our way up to this point */
573   if (strcmp(src, e_route_cnt->src_gateway)) {
574     double latency_src;
575     xbt_dynar_t route_src;
576
577     _get_route_and_latency(src, e_route_cnt->src_gateway,
578         (route ? &route_src : NULL),
579         (latency ? &latency_src : NULL));
580     if (route) {
581       xbt_assert(route_src, "no route between \"%s\" and \"%s\"",
582           src, e_route_cnt->src_gateway);
583       xbt_dynar_foreach(route_src, cpt, link) {
584         xbt_dynar_push(*route, &link);
585       }
586       xbt_dynar_free(&route_src);
587     }
588     if (latency) {
589       xbt_assert(latency_src >= 0.0,
590           "latency error on route between \"%s\" and \"%s\"",
591           src, e_route_cnt->src_gateway);
592       *latency += latency_src;
593     }
594   }
595
596   if (route) {
597     xbt_dynar_foreach(e_route_cnt->link_list, cpt, link) {
598       xbt_dynar_push(*route, &link);
599     }
600   }
601
602   /* If dest gateway is not our destination, we have to recursively find our way from this point */
603   if (strcmp(e_route_cnt->dst_gateway, dst)) {
604     double latency_dst;
605     xbt_dynar_t route_dst;
606
607     _get_route_and_latency(e_route_cnt->dst_gateway, dst,
608         (route ? &route_dst : NULL),
609         (latency ? &latency_dst : NULL));
610     if (route) {
611       xbt_assert(route_dst, "no route between \"%s\" and \"%s\"",
612           e_route_cnt->dst_gateway, dst);
613       xbt_dynar_foreach(route_dst, cpt, link) {
614         xbt_dynar_push(*route, &link);
615       }
616       xbt_dynar_free(&route_dst);
617     }
618     if (latency) {
619       xbt_assert(latency_dst >= 0.0,
620           "latency error on route between \"%s\" and \"%s\"",
621           e_route_cnt->dst_gateway, dst);
622       *latency += latency_dst;
623     }
624   }
625
626   generic_free_route(e_route_cnt);
627 }
628
629 /**
630  * \brief Find a route between hosts
631  *
632  * \param src the source host name
633  * \param dst the destination host name
634  * \param route where to store the list of links. If route=NULL, we don't care about the route.
635  *              If *route=NULL, create a short lived dynar. Else, fill the provided dynar
636  * \param latency where to store the latency experienced on the path (or NULL if not interested)
637  *
638  * walk through the routing components tree and find a route between hosts
639  * by calling the differents "get_route" functions in each routing component.
640  */
641 void routing_get_route_and_latency(const char *src, const char *dst,
642                                    xbt_dynar_t * route, double *latency)
643 {
644   static xbt_dynar_t last_route = NULL;
645   int need_cleanup = route && !(*route);
646
647   if (need_cleanup) {
648     xbt_dynar_free(&last_route);
649     last_route = *route = xbt_dynar_new(global_routing->size_of_link,NULL);
650   }
651
652   _get_route_and_latency(src, dst, route, latency);
653
654   xbt_assert(!route || *route, "no route between \"%s\" and \"%s\"", src, dst);
655   xbt_assert(!latency || *latency >= 0.0,
656              "negative latency on route between \"%s\" and \"%s\"", src, dst);
657 }
658
659 static xbt_dynar_t recursive_get_onelink_routes(AS_t rc)
660 {
661   xbt_dynar_t ret = xbt_dynar_new(sizeof(onelink_t), xbt_free);
662
663   //adding my one link routes
664   unsigned int cpt;
665   void *link;
666   xbt_dynar_t onelink_mine = rc->get_onelink_routes(rc);
667   if (onelink_mine) {
668     xbt_dynar_foreach(onelink_mine, cpt, link) {
669       xbt_dynar_push(ret, &link);
670     }
671   }
672   //recursing
673   char *key;
674   xbt_dict_cursor_t cursor = NULL;
675   AS_t rc_child;
676   xbt_dict_foreach(rc->routing_sons, cursor, key, rc_child) {
677     xbt_dynar_t onelink_child = recursive_get_onelink_routes(rc_child);
678     if (onelink_child) {
679       xbt_dynar_foreach(onelink_child, cpt, link) {
680         xbt_dynar_push(ret, &link);
681       }
682     }
683   }
684   return ret;
685 }
686
687 static xbt_dynar_t get_onelink_routes(void)
688 {
689   return recursive_get_onelink_routes(global_routing->root);
690 }
691
692 e_surf_network_element_type_t routing_get_network_element_type(const char *name)
693 {
694   network_element_info_t rc = NULL;
695
696   rc = xbt_lib_get_or_null(host_lib, name, ROUTING_HOST_LEVEL);
697   if (rc)
698     return rc->rc_type;
699
700   rc = xbt_lib_get_or_null(as_router_lib, name, ROUTING_ASR_LEVEL);
701   if (rc)
702     return rc->rc_type;
703
704   return SURF_NETWORK_ELEMENT_NULL;
705 }
706
707 /**
708  * \brief Generic method: create the global routing schema
709  * 
710  * Make a global routing structure and set all the parsing functions.
711  */
712 void routing_model_create(size_t size_of_links, void *loopback)
713 {
714   /* config the uniq global routing */
715   global_routing = xbt_new0(s_routing_global_t, 1);
716   global_routing->root = NULL;
717   global_routing->get_onelink_routes = get_onelink_routes;
718   global_routing->loopback = loopback;
719   global_routing->size_of_link = size_of_links;
720   /* no current routing at moment */
721   current_routing = NULL;
722 }
723
724
725 /* ************************************************** */
726 /* ********** PATERN FOR NEW ROUTING **************** */
727
728 /* The minimal configuration of a new routing model need the next functions,
729  * also you need to set at the start of the file, the new model in the model
730  * list. Remember keep the null ending of the list.
731  */
732 /*** Routing model structure ***/
733 // typedef struct {
734 //   s_routing_component_t generic_routing;
735 //   /* things that your routing model need */
736 // } s_routing_component_NEW_t,*routing_component_NEW_t;
737
738 /*** Parse routing model functions ***/
739 // static void model_NEW_set_processing_unit(routing_component_t rc, const char* name) {}
740 // static void model_NEW_set_autonomous_system(routing_component_t rc, const char* name) {}
741 // static void model_NEW_set_route(routing_component_t rc, const char* src, const char* dst, route_t route) {}
742 // static void model_NEW_set_ASroute(routing_component_t rc, const char* src, const char* dst, route_extended_t route) {}
743 // static void model_NEW_set_bypassroute(routing_component_t rc, const char* src, const char* dst, route_extended_t e_route) {}
744
745 /*** Business methods ***/
746 // static route_extended_t NEW_get_route(routing_component_t rc, const char* src,const char* dst) {return NULL;}
747 // static route_extended_t NEW_get_bypass_route(routing_component_t rc, const char* src,const char* dst) {return NULL;}
748 // static void NEW_finalize(routing_component_t rc) { xbt_free(rc);}
749
750 /*** Creation routing model functions ***/
751 // static void* model_NEW_create(void) {
752 //   routing_component_NEW_t new_component =  xbt_new0(s_routing_component_NEW_t,1);
753 //   new_component->generic_routing.set_processing_unit = model_NEW_set_processing_unit;
754 //   new_component->generic_routing.set_autonomous_system = model_NEW_set_autonomous_system;
755 //   new_component->generic_routing.set_route = model_NEW_set_route;
756 //   new_component->generic_routing.set_ASroute = model_NEW_set_ASroute;
757 //   new_component->generic_routing.set_bypassroute = model_NEW_set_bypassroute;
758 //   new_component->generic_routing.get_route = NEW_get_route;
759 //   new_component->generic_routing.get_bypass_route = NEW_get_bypass_route;
760 //   new_component->generic_routing.finalize = NEW_finalize;
761 //   /* initialization of internal structures */
762 //   return new_component;
763 // } /* mandatory */
764 // static void  model_NEW_load(void) {}   /* mandatory */
765 // static void  model_NEW_unload(void) {} /* mandatory */
766 // static void  model_NEW_end(void) {}    /* mandatory */
767
768 /* ************************************************************************** */
769 /* ************************* GENERIC PARSE FUNCTIONS ************************ */
770
771
772 static void routing_parse_cluster(sg_platf_cluster_cbarg_t cluster)
773 {
774   char *host_id, *groups, *link_id = NULL;
775   xbt_dict_t patterns = NULL;
776
777   s_sg_platf_host_cbarg_t host;
778   s_sg_platf_link_cbarg_t link;
779
780   unsigned int iter;
781   int start, end, i;
782   xbt_dynar_t radical_elements;
783   xbt_dynar_t radical_ends;
784
785   if (strcmp(cluster->availability_trace, "")
786       || strcmp(cluster->state_trace, "")) {
787     patterns = xbt_dict_new();
788     xbt_dict_set(patterns, "id", xbt_strdup(cluster->id), free);
789     xbt_dict_set(patterns, "prefix", xbt_strdup(cluster->prefix), free);
790     xbt_dict_set(patterns, "suffix", xbt_strdup(cluster->suffix), free);
791   }
792
793
794   XBT_DEBUG("<AS id=\"%s\"\trouting=\"Cluster\">", cluster->id);
795   sg_platf_new_AS_begin(cluster->id, "Cluster");
796
797   //Make all hosts
798   radical_elements = xbt_str_split(cluster->radical, ",");
799   xbt_dynar_foreach(radical_elements, iter, groups) {
800
801     radical_ends = xbt_str_split(groups, "-");
802     start = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 0, char *));
803
804     switch (xbt_dynar_length(radical_ends)) {
805     case 1:
806       end = start;
807       break;
808     case 2:
809       end = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 1, char *));
810       break;
811     default:
812       surf_parse_error("Malformed radical");
813       break;
814     }
815     for (i = start; i <= end; i++) {
816       host_id =
817           bprintf("%s%d%s", cluster->prefix, i, cluster->suffix);
818       link_id = bprintf("%s_link_%d", cluster->id, i);
819
820       XBT_DEBUG("<host\tid=\"%s\"\tpower=\"%f\">", host_id, cluster->power);
821
822       memset(&host, 0, sizeof(host));
823       host.id = host_id;
824       if (strcmp(cluster->availability_trace, "")) {
825         xbt_dict_set(patterns, "radical", bprintf("%d", i), xbt_free);
826         char *avail_file = xbt_str_varsubst(cluster->availability_trace, patterns);
827         XBT_DEBUG("\tavailability_file=\"%s\"", avail_file);
828         host.power_trace = tmgr_trace_new(avail_file);
829         xbt_free(avail_file);
830       } else {
831         XBT_DEBUG("\tavailability_file=\"\"");
832       }
833
834       if (strcmp(cluster->state_trace, "")) {
835         char *avail_file = xbt_str_varsubst(cluster->state_trace, patterns);
836         XBT_DEBUG("\tstate_file=\"%s\"", avail_file);
837         host.state_trace = tmgr_trace_new(avail_file);
838         xbt_free(avail_file);
839       } else {
840         XBT_DEBUG("\tstate_file=\"\"");
841       }
842
843       host.power_peak = cluster->power;
844       host.power_scale = 1.0;
845       host.core_amount = cluster->core_amount;
846       host.initial_state = SURF_RESOURCE_ON;
847       host.coord = "";
848       sg_platf_new_host(&host);
849       XBT_DEBUG("</host>");
850
851       XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id,
852                 cluster->bw, cluster->lat);
853
854       memset(&link, 0, sizeof(link));
855       link.id = link_id;
856       link.bandwidth = cluster->bw;
857       link.latency = cluster->lat;
858       link.state = SURF_RESOURCE_ON;
859       link.policy = cluster->sharing_policy;
860       sg_platf_new_link(&link);
861
862       surf_parsing_link_up_down_t info =
863           xbt_new0(s_surf_parsing_link_up_down_t, 1);
864       if (link.policy == SURF_LINK_FULLDUPLEX) {
865         char *tmp_link = bprintf("%s_UP", link_id);
866         info->link_up =
867             xbt_lib_get_or_null(link_lib, tmp_link, SURF_LINK_LEVEL);
868         free(tmp_link);
869         tmp_link = bprintf("%s_DOWN", link_id);
870         info->link_down =
871             xbt_lib_get_or_null(link_lib, tmp_link, SURF_LINK_LEVEL);
872         free(tmp_link);
873       } else {
874         info->link_up = xbt_lib_get_or_null(link_lib, link_id, SURF_LINK_LEVEL);
875         info->link_down = info->link_up;
876       }
877       surf_routing_cluster_add_link(host_id, info);
878
879       xbt_free(link_id);
880       xbt_free(host_id);
881     }
882
883     xbt_dynar_free(&radical_ends);
884   }
885   xbt_dynar_free(&radical_elements);
886
887   // Add a router. It is magically used thanks to the way in which surf_routing_cluster is written,
888   // and it's very useful to connect clusters together
889   XBT_DEBUG(" ");
890   XBT_DEBUG("<router id=\"%s\"/>", cluster->router_id);
891   char *newid = NULL;
892   s_sg_platf_router_cbarg_t router;
893   memset(&router, 0, sizeof(router));
894   router.id = cluster->router_id;
895   router.coord = "";
896   if (!router.id || !strcmp(router.id, ""))
897     router.id = newid =
898         bprintf("%s%s_router%s", cluster->prefix, cluster->id,
899                 cluster->suffix);
900   sg_platf_new_router(&router);
901   free(newid);
902
903   //Make the backbone
904   if ((cluster->bb_bw != 0) && (cluster->bb_lat != 0)) {
905     char *link_backbone = bprintf("%s_backbone", cluster->id);
906     XBT_DEBUG("<link\tid=\"%s\" bw=\"%f\" lat=\"%f\"/>", link_backbone,
907               cluster->bb_bw, cluster->bb_lat);
908
909     memset(&link, 0, sizeof(link));
910     link.id = link_backbone;
911     link.bandwidth = cluster->bb_bw;
912     link.latency = cluster->bb_lat;
913     link.state = SURF_RESOURCE_ON;
914     link.policy = cluster->bb_sharing_policy;
915
916     sg_platf_new_link(&link);
917
918     surf_routing_cluster_add_backbone(current_routing, xbt_lib_get_or_null(link_lib, link_backbone, SURF_LINK_LEVEL));
919
920     free(link_backbone);
921   }
922
923   XBT_DEBUG("</AS>");
924   sg_platf_new_AS_end();
925   XBT_DEBUG(" ");
926   xbt_dict_free(&patterns); // no op if it were never set
927 }
928
929 static void routing_parse_postparse(void) {
930   xbt_dict_free(&random_value);
931 }
932
933 static void routing_parse_peer(sg_platf_peer_cbarg_t peer)
934 {
935   static int AX_ptr = 0;
936   char *host_id = NULL;
937   char *router_id, *link_router, *link_backbone, *link_id_up, *link_id_down;
938
939   static unsigned int surfxml_buffer_stack_stack_ptr = 1;
940   static unsigned int surfxml_buffer_stack_stack[1024];
941
942   surfxml_buffer_stack_stack[0] = 0;
943
944   surfxml_bufferstack_push(1);
945
946   XBT_DEBUG("<AS id=\"%s\"\trouting=\"Full\">", peer->id);
947   sg_platf_new_AS_begin(peer->id, "Full");
948
949   XBT_DEBUG(" ");
950   host_id = HOST_PEER(peer->id);
951   router_id = ROUTER_PEER(peer->id);
952   link_id_up = LINK_UP_PEER(peer->id);
953   link_id_down = LINK_DOWN_PEER(peer->id);
954
955   link_router = bprintf("%s_link_router", peer->id);
956   link_backbone = bprintf("%s_backbone", peer->id);
957
958   XBT_DEBUG("<host\tid=\"%s\"\tpower=\"%f\"/>", host_id, peer->power);
959   s_sg_platf_host_cbarg_t host;
960   memset(&host, 0, sizeof(host));
961   host.initial_state = SURF_RESOURCE_ON;
962   host.id = host_id;
963   host.power_peak = peer->power;
964   host.power_scale = 1.0;
965   host.power_trace = peer->availability_trace;
966   host.state_trace = peer->state_trace;
967   host.core_amount = 1;
968   host.coord = peer->coord;
969   sg_platf_new_host(&host);
970
971
972   XBT_DEBUG("<router id=\"%s\"\tcoordinates=\"%s\"/>", router_id, peer->coord);
973   s_sg_platf_router_cbarg_t router;
974   memset(&router, 0, sizeof(router));
975   router.id = router_id;
976   router.coord = peer->coord;
977   sg_platf_new_router(&router);
978
979   XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id_up,
980             peer->bw_in, peer->lat);
981   s_sg_platf_link_cbarg_t link;
982   memset(&link, 0, sizeof(link));
983   link.state = SURF_RESOURCE_ON;
984   link.policy = SURF_LINK_SHARED;
985   link.id = link_id_up;
986   link.bandwidth = peer->bw_in;
987   link.latency = peer->lat;
988   sg_platf_new_link(&link);
989
990   // FIXME: dealing with full duplex is not the role of this piece of code, I'd say [Mt]
991   // Instead, it should be created fullduplex, and the models will do what's needed in this case
992   XBT_DEBUG("<link\tid=\"%s\"\tbw=\"%f\"\tlat=\"%f\"/>", link_id_down,
993             peer->bw_out, peer->lat);
994   link.id = link_id_down;
995   sg_platf_new_link(&link);
996
997   XBT_DEBUG(" ");
998
999   // begin here
1000   XBT_DEBUG("<route\tsrc=\"%s\"\tdst=\"%s\"", host_id, router_id);
1001   XBT_DEBUG("symmetrical=\"NO\">");
1002   SURFXML_BUFFER_SET(route_src, host_id);
1003   SURFXML_BUFFER_SET(route_dst, router_id);
1004   A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_NO;
1005   SURFXML_START_TAG(route);
1006
1007   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", link_id_up);
1008   SURFXML_BUFFER_SET(link_ctn_id, link_id_up);
1009   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1010   SURFXML_START_TAG(link_ctn);
1011   SURFXML_END_TAG(link_ctn);
1012
1013   XBT_DEBUG("</route>");
1014   SURFXML_END_TAG(route);
1015
1016   //Opposite Route
1017   XBT_DEBUG("<route\tsrc=\"%s\"\tdst=\"%s\"", router_id, host_id);
1018   XBT_DEBUG("symmetrical=\"NO\">");
1019   SURFXML_BUFFER_SET(route_src, router_id);
1020   SURFXML_BUFFER_SET(route_dst, host_id);
1021   A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_NO;
1022   SURFXML_START_TAG(route);
1023
1024   XBT_DEBUG("<link_ctn\tid=\"%s\"/>", link_id_down);
1025   SURFXML_BUFFER_SET(link_ctn_id, link_id_down);
1026   A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
1027   SURFXML_START_TAG(link_ctn);
1028   SURFXML_END_TAG(link_ctn);
1029
1030   XBT_DEBUG("</route>");
1031   SURFXML_END_TAG(route);
1032
1033   XBT_DEBUG("</AS>");
1034   sg_platf_new_AS_end();
1035   XBT_DEBUG(" ");
1036
1037   //xbt_dynar_free(&tab_elements_num);
1038   free(host_id);
1039   free(router_id);
1040   free(link_router);
1041   free(link_backbone);
1042   free(link_id_up);
1043   free(link_id_down);
1044   surfxml_bufferstack_pop(1);
1045 }
1046
1047 static void routing_parse_Srandom(void)
1048 {
1049   double mean, std, min, max, seed;
1050   char *random_id = A_surfxml_random_id;
1051   char *random_radical = A_surfxml_random_radical;
1052   char *rd_name = NULL;
1053   char *rd_value;
1054   mean = surf_parse_get_double(A_surfxml_random_mean);
1055   std = surf_parse_get_double(A_surfxml_random_std_deviation);
1056   min = surf_parse_get_double(A_surfxml_random_min);
1057   max = surf_parse_get_double(A_surfxml_random_max);
1058   seed = surf_parse_get_double(A_surfxml_random_seed);
1059
1060   double res = 0;
1061   int i = 0;
1062   random_data_t random = xbt_new0(s_random_data_t, 1);
1063   char *tmpbuf;
1064
1065   xbt_dynar_t radical_elements;
1066   unsigned int iter;
1067   char *groups;
1068   int start, end;
1069   xbt_dynar_t radical_ends;
1070
1071   random->generator = A_surfxml_random_generator;
1072   random->seed = seed;
1073   random->min = min;
1074   random->max = max;
1075
1076   /* Check user stupidities */
1077   if (max < min)
1078     THROWF(arg_error, 0, "random->max < random->min (%f < %f)", max, min);
1079   if (mean < min)
1080     THROWF(arg_error, 0, "random->mean < random->min (%f < %f)", mean, min);
1081   if (mean > max)
1082     THROWF(arg_error, 0, "random->mean > random->max (%f > %f)", mean, max);
1083
1084   /* normalize the mean and standard deviation before storing */
1085   random->mean = (mean - min) / (max - min);
1086   random->std = std / (max - min);
1087
1088   if (random->mean * (1 - random->mean) < random->std * random->std)
1089     THROWF(arg_error, 0, "Invalid mean and standard deviation (%f and %f)",
1090            random->mean, random->std);
1091
1092   XBT_DEBUG
1093       ("id = '%s' min = '%f' max = '%f' mean = '%f' std_deviatinon = '%f' generator = '%d' seed = '%ld' radical = '%s'",
1094        random_id, random->min, random->max, random->mean, random->std,
1095        random->generator, random->seed, random_radical);
1096
1097   if (!random_value)
1098     random_value = xbt_dict_new();
1099
1100   if (!strcmp(random_radical, "")) {
1101     res = random_generate(random);
1102     rd_value = bprintf("%f", res);
1103     xbt_dict_set(random_value, random_id, rd_value, free);
1104   } else {
1105     radical_elements = xbt_str_split(random_radical, ",");
1106     xbt_dynar_foreach(radical_elements, iter, groups) {
1107       radical_ends = xbt_str_split(groups, "-");
1108       switch (xbt_dynar_length(radical_ends)) {
1109       case 1:
1110         xbt_assert(!xbt_dict_get_or_null(random_value, random_id),
1111                    "Custom Random '%s' already exists !", random_id);
1112         res = random_generate(random);
1113         tmpbuf =
1114             bprintf("%s%d", random_id,
1115                     atoi(xbt_dynar_getfirst_as(radical_ends, char *)));
1116         xbt_dict_set(random_value, tmpbuf, bprintf("%f", res), free);
1117         xbt_free(tmpbuf);
1118         break;
1119
1120       case 2:
1121         start = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 0, char *));
1122         end = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 1, char *));
1123         for (i = start; i <= end; i++) {
1124           xbt_assert(!xbt_dict_get_or_null(random_value, random_id),
1125                      "Custom Random '%s' already exists !", bprintf("%s%d",
1126                                                                     random_id,
1127                                                                     i));
1128           res = random_generate(random);
1129           tmpbuf = bprintf("%s%d", random_id, i);
1130           xbt_dict_set(random_value, tmpbuf, bprintf("%f", res), free);
1131           xbt_free(tmpbuf);
1132         }
1133         break;
1134       default:
1135         XBT_CRITICAL("Malformed radical");
1136         break;
1137       }
1138       res = random_generate(random);
1139       rd_name = bprintf("%s_router", random_id);
1140       rd_value = bprintf("%f", res);
1141       xbt_dict_set(random_value, rd_name, rd_value, free);
1142
1143       xbt_dynar_free(&radical_ends);
1144     }
1145     free(rd_name);
1146     xbt_dynar_free(&radical_elements);
1147   }
1148 }
1149
1150 void routing_register_callbacks()
1151 {
1152   sg_platf_host_add_cb(parse_S_host);
1153   sg_platf_router_add_cb(parse_S_router);
1154
1155   surfxml_add_callback(STag_surfxml_random_cb_list, &routing_parse_Srandom);
1156
1157   surfxml_add_callback(STag_surfxml_route_cb_list, &routing_parse_S_route);
1158   surfxml_add_callback(STag_surfxml_ASroute_cb_list, &routing_parse_S_ASroute);
1159   surfxml_add_callback(STag_surfxml_bypassRoute_cb_list,
1160                        &routing_parse_S_bypassRoute);
1161
1162   surfxml_add_callback(ETag_surfxml_link_ctn_cb_list, &routing_parse_link_ctn);
1163
1164   surfxml_add_callback(ETag_surfxml_route_cb_list, &routing_parse_E_route);
1165   surfxml_add_callback(ETag_surfxml_ASroute_cb_list, &routing_parse_E_ASroute);
1166   surfxml_add_callback(ETag_surfxml_bypassRoute_cb_list,
1167                        &routing_parse_E_bypassRoute);
1168
1169   sg_platf_cluster_add_cb(routing_parse_cluster);
1170
1171   sg_platf_peer_add_cb(routing_parse_peer);
1172   sg_platf_postparse_add_cb(routing_parse_postparse);
1173
1174 #ifdef HAVE_TRACING
1175   instr_routing_define_callbacks();
1176 #endif
1177 }
1178
1179 /**
1180  * \brief Recursive function for finalize
1181  *
1182  * \param rc the source host name
1183  *
1184  * This fuction is call by "finalize". It allow to finalize the
1185  * AS or routing components. It delete all the structures.
1186  */
1187 static void finalize_rec(AS_t as) {
1188   xbt_dict_cursor_t cursor = NULL;
1189   char *key;
1190   AS_t elem;
1191
1192   xbt_dict_foreach(as->routing_sons, cursor, key, elem) {
1193     finalize_rec(elem);
1194   }
1195
1196   as->finalize(as);
1197 }
1198
1199 /** \brief Frees all memory allocated by the routing module */
1200 void routing_exit(void) {
1201   if (!global_routing)
1202     return;
1203   finalize_rec(global_routing->root);
1204   xbt_free(global_routing);
1205 }