Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9c60a5020c8f2d045cf1f2406342e02c18142586
[simgrid.git] / src / kernel / routing / AsImpl.cpp
1 /* Copyright (c) 2006-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 "xbt/log.h"
7
8 #include "simgrid/s4u/host.hpp"
9 #include "src/kernel/routing/AsImpl.hpp"
10 #include "src/surf/network_interface.hpp" // Link FIXME: move to proper header
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(AsImpl,surf, "Implementation of S4U autonomous systems");
13
14 namespace simgrid {
15   namespace kernel {
16   namespace routing {
17
18   AsImpl::AsImpl(As* father, const char* name) : As(father, name)
19   {
20     xbt_assert(nullptr == xbt_lib_get_or_null(as_router_lib, name, ROUTING_ASR_LEVEL),
21                "Refusing to create a second AS called '%s'.", name);
22
23     netcard_ = new NetCardImpl(name, NetCard::Type::As, static_cast<AsImpl*>(father));
24     xbt_lib_set(as_router_lib, name, ROUTING_ASR_LEVEL, static_cast<void*>(netcard_));
25     XBT_DEBUG("AS '%s' created with the id '%d'", name, netcard_->id());
26   }
27   AsImpl::~AsImpl() = default;
28
29   void AsImpl::attachHost(s4u::Host* host)
30   {
31     if (hierarchy_ == RoutingMode::unset)
32       hierarchy_ = RoutingMode::base;
33
34     host->pimpl_netcard = new NetCardImpl(host->name().c_str(), NetCard::Type::Host, this);
35   }
36
37   xbt_dynar_t AsImpl::getOneLinkRoutes()
38   {
39     return nullptr;
40   }
41
42   /** @brief Get the common ancestor and its first childs in each line leading to src and dst */
43   static void find_common_ancestors(NetCard* src, NetCard* dst,
44                                     /* OUT */ AsImpl** common_ancestor, AsImpl** src_ancestor, AsImpl** dst_ancestor)
45   {
46 #define ROUTING_HIERARCHY_MAXDEPTH 32 /* increase if it is not enough */
47     AsImpl* path_src[ROUTING_HIERARCHY_MAXDEPTH];
48     AsImpl* path_dst[ROUTING_HIERARCHY_MAXDEPTH];
49     int index_src = 0;
50     int index_dst = 0;
51     AsImpl* current_src;
52     AsImpl* current_dst;
53     AsImpl* father;
54
55     /* (1) find the path to root of src and dst*/
56     AsImpl* src_as = src->containingAS();
57     AsImpl* dst_as = dst->containingAS();
58
59     xbt_assert(src_as, "Host %s must be in an AS", src->name());
60     xbt_assert(dst_as, "Host %s must be in an AS", dst->name());
61
62     /* (2) find the path to the root routing component */
63     for (AsImpl* current = src_as; current != nullptr; current = static_cast<AsImpl*>(current->father())) {
64       xbt_assert(index_src < ROUTING_HIERARCHY_MAXDEPTH,
65                  "ROUTING_HIERARCHY_MAXDEPTH should be increased for element %s", src->name());
66       path_src[index_src++] = current;
67     }
68     for (AsImpl* current = dst_as; current != nullptr; current = static_cast<AsImpl*>(current->father())) {
69       xbt_assert(index_dst < ROUTING_HIERARCHY_MAXDEPTH, "ROUTING_HIERARCHY_MAXDEPTH should be increased for path_dst");
70       path_dst[index_dst++] = current;
71     }
72
73     /* (3) find the common father.
74      * Before that, index_src and index_dst may be different, they both point to nullptr in path_src/path_dst
75      * So we move them down simultaneously as long as they point to the same content.
76      */
77     do {
78       current_src = path_src[--index_src];
79       current_dst = path_dst[--index_dst];
80     } while (index_src > 0 && index_dst > 0 && current_src == current_dst);
81
82     /* (4) if we did not find a difference (index_src or index_dst went to 0), both elements are in the same AS */
83     if (current_src == current_dst)
84       father = current_src;
85     else // we found a difference
86       father = path_src[index_src + 1];
87
88     /* (5) result generation */
89     *common_ancestor = father;      /* the common father of src and dst */
90     *src_ancestor    = current_src; /* the first different father of src */
91     *dst_ancestor    = current_dst; /* the first different father of dst */
92 #undef ROUTING_HIERARCHY_MAXDEPTH
93     }
94
95
96     /* PRECONDITION: this is the common ancestor of src and dst */
97     std::vector<surf::Link*> *AsImpl::getBypassRoute(routing::NetCard *src, routing::NetCard *dst)
98     {
99       // If never set a bypass route return nullptr without any further computations
100       XBT_DEBUG("generic_get_bypassroute from %s to %s", src->name(), dst->name());
101       if (bypassRoutes_.empty())
102         return nullptr;
103
104       std::vector<surf::Link*> *bypassedRoute = nullptr;
105
106       if(dst->containingAS() == this && src->containingAS() == this ){
107         if (bypassRoutes_.find({src->name(),dst->name()}) != bypassRoutes_.end()) {
108           bypassedRoute = bypassRoutes_.at({src->name(),dst->name()});
109           XBT_DEBUG("Found a bypass route with %zu links",bypassedRoute->size());
110         }
111         return bypassedRoute;
112       }
113
114       /* (2) find the path to the root routing component */
115       std::vector<As*> path_src;
116       As *current = src->containingAS();
117       while (current != nullptr) {
118         path_src.push_back(current);
119         current = current->father_;
120       }
121
122       std::vector<As*> path_dst;
123       current = dst->containingAS();
124       while (current != nullptr) {
125         path_dst.push_back(current);
126         current = current->father_;
127       }
128
129       /* (3) find the common father */
130       while (path_src.size() > 1 && path_dst.size() >1
131           && path_src.at(path_src.size() -1) == path_dst.at(path_dst.size() -1)) {
132         path_src.pop_back();
133         path_dst.pop_back();
134       }
135
136       int max_index_src = path_src.size() - 1;
137       int max_index_dst = path_dst.size() - 1;
138
139       int max_index = std::max(max_index_src, max_index_dst);
140
141       for (int max = 0; max <= max_index; max++) {
142         for (int i = 0; i < max; i++) {
143           if (i <= max_index_src && max <= max_index_dst) {
144             const std::pair<std::string, std::string> key = {path_src.at(i)->name(), path_dst.at(max)->name()};
145             if (bypassRoutes_.find(key) != bypassRoutes_.end())
146               bypassedRoute = bypassRoutes_.at(key);
147           }
148           if (bypassedRoute)
149             break;
150           if (max <= max_index_src && i <= max_index_dst) {
151             const std::pair<std::string, std::string> key = {path_src.at(max)->name(), path_dst.at(i)->name()};
152             if (bypassRoutes_.find(key) != bypassRoutes_.end())
153               bypassedRoute = bypassRoutes_.at(key);
154           }
155           if (bypassedRoute)
156             break;
157         }
158
159         if (bypassedRoute)
160           break;
161
162         if (max <= max_index_src && max <= max_index_dst) {
163           const std::pair<std::string, std::string> key = {path_src.at(max)->name(), path_dst.at(max)->name()};
164           if (bypassRoutes_.find(key) != bypassRoutes_.end())
165             bypassedRoute = bypassRoutes_.at(key);
166         }
167         if (bypassedRoute)
168           break;
169       }
170
171       return bypassedRoute;
172     }
173
174     /**
175      * \brief Recursive function for getRouteAndLatency
176      *
177      * \param src the source host
178      * \param dst the destination host
179      * \param links Where to store the links and the gw information
180      * \param latency If not nullptr, the latency of all links will be added in it
181      */
182     void AsImpl::getRouteRecursive(routing::NetCard *src, routing::NetCard *dst,
183         /* OUT */ std::vector<surf::Link*> * links, double *latency)
184     {
185       s_sg_platf_route_cbarg_t route;
186       memset(&route,0,sizeof(route));
187
188       XBT_DEBUG("Solve route/latency \"%s\" to \"%s\"", src->name(), dst->name());
189
190       /* Find how src and dst are interconnected */
191       AsImpl *common_ancestor, *src_ancestor, *dst_ancestor;
192       find_common_ancestors(src, dst, &common_ancestor, &src_ancestor, &dst_ancestor);
193       XBT_DEBUG("elements_father: common ancestor '%s' src ancestor '%s' dst ancestor '%s'",
194           common_ancestor->name(), src_ancestor->name(), dst_ancestor->name());
195
196       /* Check whether a direct bypass is defined. If so, use it and bail out */
197       std::vector<surf::Link*> *bypassed_route = common_ancestor->getBypassRoute(src, dst);
198       if (nullptr != bypassed_route) {
199         for (surf::Link *link : *bypassed_route) {
200           links->push_back(link);
201           if (latency)
202             *latency += link->latency();
203         }
204         return;
205       }
206
207       /* If src and dst are in the same AS, life is good */
208       if (src_ancestor == dst_ancestor) {       /* SURF_ROUTING_BASE */
209         route.link_list = links;
210         common_ancestor->getRouteAndLatency(src, dst, &route, latency);
211         return;
212       }
213
214       /* Not in the same AS, no bypass. We'll have to find our path between the ASes recursively*/
215
216       route.link_list = new std::vector<surf::Link*>();
217
218       common_ancestor->getRouteAndLatency(src_ancestor->netcard_, dst_ancestor->netcard_, &route, latency);
219       xbt_assert((route.gw_src != nullptr) && (route.gw_dst != nullptr),
220           "bad gateways for route from \"%s\" to \"%s\"", src->name(), dst->name());
221
222       /* If source gateway is not our source, we have to recursively find our way up to this point */
223       if (src != route.gw_src)
224         getRouteRecursive(src, route.gw_src, links, latency);
225       for (auto link: *route.link_list)
226         links->push_back(link);
227       delete route.link_list;
228
229       /* If dest gateway is not our destination, we have to recursively find our way from this point */
230       if (route.gw_dst != dst)
231         getRouteRecursive(route.gw_dst, dst, links, latency);
232
233     }
234
235 }}} // namespace