blob: b6d2d29466d5a425da8828def3eff99283a51a0f [file] [log] [blame]
Paul Jakma57345092011-12-25 17:52:09 +01001/*
2 * This file is free software: you may copy, redistribute and/or modify it
3 * under the terms of the GNU General Public License as published by the
4 * Free Software Foundation, either version 2 of the License, or (at your
5 * option) any later version.
6 *
7 * This file is distributed in the hope that it will be useful, but
8 * WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
14 *
15 * This file incorporates work covered by the following copyright and
16 * permission notice:
17 *
18Copyright (c) 2007, 2008 by Juliusz Chroboczek
19Copyright 2011 by Matthieu Boutier and Juliusz Chroboczek
20
21Permission is hereby granted, free of charge, to any person obtaining a copy
22of this software and associated documentation files (the "Software"), to deal
23in the Software without restriction, including without limitation the rights
24to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25copies of the Software, and to permit persons to whom the Software is
26furnished to do so, subject to the following conditions:
27
28The above copyright notice and this permission notice shall be included in
29all copies or substantial portions of the Software.
30
31THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
32IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
33FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
34AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
35LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
36OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
37THE SOFTWARE.
38*/
39
Matthieu Boutier1f39f462012-01-18 20:01:31 +010040#ifndef BABEL_ROUTE_H
41#define BABEL_ROUTE_H
42
Paul Jakma57345092011-12-25 17:52:09 +010043#include "babel_interface.h"
44#include "source.h"
45
Matthieu Boutierc35fafd2012-01-23 23:46:32 +010046#define DIVERSITY_NONE 0
47#define DIVERSITY_INTERFACE_1 1
48#define DIVERSITY_CHANNEL_1 2
49#define DIVERSITY_CHANNEL 3
50
51#define DIVERSITY_HOPS 8
52
Denis Ovsienkoef4de4d2012-01-08 15:29:19 +040053struct babel_route {
Paul Jakma57345092011-12-25 17:52:09 +010054 struct source *src;
Paul Jakma57345092011-12-25 17:52:09 +010055 unsigned short refmetric;
Matthieu Boutierc35fafd2012-01-23 23:46:32 +010056 unsigned short cost;
57 unsigned short add_metric;
Paul Jakma57345092011-12-25 17:52:09 +010058 unsigned short seqno;
59 struct neighbour *neigh;
60 unsigned char nexthop[16];
61 time_t time;
62 unsigned short hold_time; /* in seconds */
63 short installed;
Matthieu Boutierc35fafd2012-01-23 23:46:32 +010064 unsigned char channels[DIVERSITY_HOPS];
65 struct babel_route *next;
Paul Jakma57345092011-12-25 17:52:09 +010066};
67
Matthieu Boutierc35fafd2012-01-23 23:46:32 +010068extern struct babel_route **routes;
69extern int kernel_metric, allow_duplicates;
70extern int diversity_kind, diversity_factor;
71extern int keep_unfeasible;
72
73static inline int
Denis Ovsienkoef4de4d2012-01-08 15:29:19 +040074route_metric(const struct babel_route *route)
Paul Jakma57345092011-12-25 17:52:09 +010075{
Matthieu Boutierc35fafd2012-01-23 23:46:32 +010076 int m = (int)route->refmetric + route->cost + route->add_metric;
77 return MIN(m, INFINITY);
Paul Jakma57345092011-12-25 17:52:09 +010078}
79
Matthieu Boutierc35fafd2012-01-23 23:46:32 +010080static inline int
81route_metric_noninterfering(const struct babel_route *route)
82{
83 int m =
84 (int)route->refmetric +
85 (diversity_factor * route->cost + 128) / 256 +
86 route->add_metric;
87 m = MAX(m, route->refmetric + 1);
88 return MIN(m, INFINITY);
89}
Paul Jakma57345092011-12-25 17:52:09 +010090
Denis Ovsienkoef4de4d2012-01-08 15:29:19 +040091struct babel_route *find_route(const unsigned char *prefix, unsigned char plen,
Paul Jakma57345092011-12-25 17:52:09 +010092 struct neighbour *neigh, const unsigned char *nexthop);
Denis Ovsienkoef4de4d2012-01-08 15:29:19 +040093struct babel_route *find_installed_route(const unsigned char *prefix,
Paul Jakma57345092011-12-25 17:52:09 +010094 unsigned char plen);
Matthieu Boutierc35fafd2012-01-23 23:46:32 +010095int installed_routes_estimate(void);
Denis Ovsienkoef4de4d2012-01-08 15:29:19 +040096void flush_route(struct babel_route *route);
Matthieu Boutierc35fafd2012-01-23 23:46:32 +010097void flush_all_routes(void);
Paul Jakma57345092011-12-25 17:52:09 +010098void flush_neighbour_routes(struct neighbour *neigh);
99void flush_interface_routes(struct interface *ifp, int v4only);
Matthieu Boutierc35fafd2012-01-23 23:46:32 +0100100void for_all_routes(void (*f)(struct babel_route*, void*), void *closure);
101void for_all_installed_routes(void (*f)(struct babel_route*, void*), void *closure);
Denis Ovsienkoef4de4d2012-01-08 15:29:19 +0400102void install_route(struct babel_route *route);
103void uninstall_route(struct babel_route *route);
104void switch_route(struct babel_route *old, struct babel_route *new);
105int route_feasible(struct babel_route *route);
106int route_old(struct babel_route *route);
107int route_expired(struct babel_route *route);
Matthieu Boutierc35fafd2012-01-23 23:46:32 +0100108int route_interferes(struct babel_route *route, struct interface *ifp);
Paul Jakma57345092011-12-25 17:52:09 +0100109int update_feasible(struct source *src,
110 unsigned short seqno, unsigned short refmetric);
Denis Ovsienkoef4de4d2012-01-08 15:29:19 +0400111struct babel_route *find_best_route(const unsigned char *prefix, unsigned char plen,
Paul Jakma57345092011-12-25 17:52:09 +0100112 int feasible, struct neighbour *exclude);
Denis Ovsienkoef4de4d2012-01-08 15:29:19 +0400113struct babel_route *install_best_route(const unsigned char prefix[16],
Paul Jakma57345092011-12-25 17:52:09 +0100114 unsigned char plen);
115void update_neighbour_metric(struct neighbour *neigh, int change);
116void update_interface_metric(struct interface *ifp);
Denis Ovsienkoef4de4d2012-01-08 15:29:19 +0400117void update_route_metric(struct babel_route *route);
Matthieu Boutierc35fafd2012-01-23 23:46:32 +0100118struct babel_route *update_route(const unsigned char *id,
119 const unsigned char *prefix, unsigned char plen,
Paul Jakma57345092011-12-25 17:52:09 +0100120 unsigned short seqno, unsigned short refmetric,
121 unsigned short interval, struct neighbour *neigh,
Matthieu Boutierc35fafd2012-01-23 23:46:32 +0100122 const unsigned char *nexthop,
123 const unsigned char *channels, int channels_len);
Paul Jakma57345092011-12-25 17:52:09 +0100124void retract_neighbour_routes(struct neighbour *neigh);
125void send_unfeasible_request(struct neighbour *neigh, int force,
126 unsigned short seqno, unsigned short metric,
127 struct source *src);
Denis Ovsienkoef4de4d2012-01-08 15:29:19 +0400128void send_triggered_update(struct babel_route *route,
Paul Jakma57345092011-12-25 17:52:09 +0100129 struct source *oldsrc, unsigned oldmetric);
Denis Ovsienkoef4de4d2012-01-08 15:29:19 +0400130void route_changed(struct babel_route *route,
Paul Jakma57345092011-12-25 17:52:09 +0100131 struct source *oldsrc, unsigned short oldmetric);
132void route_lost(struct source *src, unsigned oldmetric);
133void expire_routes(void);
134
Matthieu Boutier1f39f462012-01-18 20:01:31 +0100135#endif