blob: 9a680521cd781a54199f25725246b76bda41c88a [file] [log] [blame]
mukesh agrawal2c15d2c2012-02-21 16:09:21 -08001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Paul Stewart75e89d22011-08-01 10:00:02 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "shill/routing_table.h"
6
7#include <arpa/inet.h>
8#include <fcntl.h>
9#include <linux/netlink.h>
10#include <linux/rtnetlink.h>
11#include <netinet/ether.h>
12#include <net/if.h>
13#include <net/if_arp.h>
14#include <string.h>
15#include <sys/socket.h>
16#include <time.h>
17#include <unistd.h>
18
19#include <string>
20
21#include <base/callback_old.h>
22#include <base/file_path.h>
23#include <base/file_util.h>
24#include <base/hash_tables.h>
25#include <base/logging.h>
26#include <base/memory/scoped_ptr.h>
27#include <base/stl_util-inl.h>
28#include <base/stringprintf.h>
29
30#include "shill/byte_string.h"
31#include "shill/routing_table_entry.h"
32#include "shill/rtnl_handler.h"
33#include "shill/rtnl_listener.h"
34#include "shill/rtnl_message.h"
35
36using std::string;
37using std::vector;
38
39namespace shill {
40
Paul Stewart0d2ada32011-08-09 17:01:57 -070041static base::LazyInstance<RoutingTable> g_routing_table(
42 base::LINKER_INITIALIZED);
43
Paul Stewart75e89d22011-08-01 10:00:02 -070044// static
45const char RoutingTable::kRouteFlushPath4[] = "/proc/sys/net/ipv4/route/flush";
Paul Stewart0d2ada32011-08-09 17:01:57 -070046// static
Paul Stewart75e89d22011-08-01 10:00:02 -070047const char RoutingTable::kRouteFlushPath6[] = "/proc/sys/net/ipv6/route/flush";
48
49RoutingTable::RoutingTable()
50 : route_callback_(NewCallback(this, &RoutingTable::RouteMsgHandler)),
51 route_listener_(NULL) {
52 VLOG(2) << __func__;
53}
54
55RoutingTable::~RoutingTable() {}
56
57RoutingTable* RoutingTable::GetInstance() {
Paul Stewart0d2ada32011-08-09 17:01:57 -070058 return g_routing_table.Pointer();
Paul Stewart75e89d22011-08-01 10:00:02 -070059}
60
61void RoutingTable::Start() {
62 VLOG(2) << __func__;
63
64 route_listener_.reset(
65 new RTNLListener(RTNLHandler::kRequestRoute, route_callback_.get()));
66 RTNLHandler::GetInstance()->RequestDump(
Paul Stewart9a908082011-08-31 12:18:48 -070067 RTNLHandler::kRequestRoute);
Paul Stewart75e89d22011-08-01 10:00:02 -070068}
69
70void RoutingTable::Stop() {
71 VLOG(2) << __func__;
72
73 route_listener_.reset();
74}
75
76bool RoutingTable::AddRoute(int interface_index,
77 const RoutingTableEntry &entry) {
mukesh agrawal2c15d2c2012-02-21 16:09:21 -080078 VLOG(2) << __func__ << " "
79 << "index " << interface_index
80 << "gateway " << entry.gateway.ToString() << " "
81 << "metric " << entry.metric;
Paul Stewart75e89d22011-08-01 10:00:02 -070082
83 CHECK(!entry.from_rtnl);
84 if (!ApplyRoute(interface_index,
85 entry,
Paul Stewart9a908082011-08-31 12:18:48 -070086 RTNLMessage::kModeAdd,
Paul Stewart75e89d22011-08-01 10:00:02 -070087 NLM_F_CREATE | NLM_F_EXCL)) {
88 return false;
89 }
90 tables_[interface_index].push_back(entry);
91 return true;
92}
93
94bool RoutingTable::GetDefaultRoute(int interface_index,
95 IPAddress::Family family,
96 RoutingTableEntry *entry) {
mukesh agrawald4ef6772012-02-21 16:28:04 -080097 RoutingTableEntry *found_entry;
98 bool ret = GetDefaultRouteInternal(interface_index, family, &found_entry);
99 if (ret) {
100 *entry = *found_entry;
101 }
102 return ret;
103}
104
105bool RoutingTable::GetDefaultRouteInternal(int interface_index,
106 IPAddress::Family family,
107 RoutingTableEntry **entry) {
mukesh agrawal2c15d2c2012-02-21 16:09:21 -0800108 VLOG(2) << __func__ << " index " << interface_index << " family " << family;
Paul Stewart75e89d22011-08-01 10:00:02 -0700109
110 base::hash_map<int, vector<RoutingTableEntry> >::iterator table =
111 tables_.find(interface_index);
112
113 if (table == tables_.end()) {
mukesh agrawal2c15d2c2012-02-21 16:09:21 -0800114 VLOG(2) << __func__ << " no table";
Paul Stewart75e89d22011-08-01 10:00:02 -0700115 return false;
116 }
117
118 vector<RoutingTableEntry>::iterator nent;
119
120 for (nent = table->second.begin(); nent != table->second.end(); ++nent) {
121 if (nent->dst.IsDefault() && nent->dst.family() == family) {
mukesh agrawald4ef6772012-02-21 16:28:04 -0800122 *entry = &(*nent);
mukesh agrawal2c15d2c2012-02-21 16:09:21 -0800123 VLOG(2) << __func__ << " found "
124 << "gateway " << nent->gateway.ToString() << " "
125 << "metric " << nent->metric;
Paul Stewart75e89d22011-08-01 10:00:02 -0700126 return true;
127 }
128 }
129
mukesh agrawal2c15d2c2012-02-21 16:09:21 -0800130 VLOG(2) << __func__ << " no route";
Paul Stewart75e89d22011-08-01 10:00:02 -0700131 return false;
132}
133
134bool RoutingTable::SetDefaultRoute(int interface_index,
135 const IPConfigRefPtr &ipconfig,
136 uint32 metric) {
mukesh agrawal2c15d2c2012-02-21 16:09:21 -0800137 VLOG(2) << __func__ << " index " << interface_index << " metric " << metric;
138
Paul Stewart75e89d22011-08-01 10:00:02 -0700139 const IPConfig::Properties &ipconfig_props = ipconfig->properties();
mukesh agrawald4ef6772012-02-21 16:28:04 -0800140 RoutingTableEntry *old_entry;
Paul Stewart75e89d22011-08-01 10:00:02 -0700141 IPAddress gateway_address(ipconfig_props.address_family);
142 if (!gateway_address.SetAddressFromString(ipconfig_props.gateway)) {
143 return false;
144 }
145
mukesh agrawald4ef6772012-02-21 16:28:04 -0800146 if (GetDefaultRouteInternal(interface_index,
147 ipconfig_props.address_family,
148 &old_entry)) {
149 if (old_entry->gateway.Equals(gateway_address)) {
150 if (old_entry->metric != metric) {
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800151 ReplaceMetric(interface_index, old_entry, metric);
Paul Stewart75e89d22011-08-01 10:00:02 -0700152 }
153 return true;
154 } else {
mukesh agrawald4ef6772012-02-21 16:28:04 -0800155 // TODO(quiche): Update internal state as well?
Paul Stewart75e89d22011-08-01 10:00:02 -0700156 ApplyRoute(interface_index,
mukesh agrawald4ef6772012-02-21 16:28:04 -0800157 *old_entry,
Paul Stewart9a908082011-08-31 12:18:48 -0700158 RTNLMessage::kModeDelete,
Paul Stewart75e89d22011-08-01 10:00:02 -0700159 0);
160 }
161 }
162
163 IPAddress default_address(ipconfig_props.address_family);
164 default_address.SetAddressToDefault();
165
166 return AddRoute(interface_index,
167 RoutingTableEntry(default_address,
Paul Stewart75e89d22011-08-01 10:00:02 -0700168 default_address,
Paul Stewart75e89d22011-08-01 10:00:02 -0700169 gateway_address,
170 metric,
171 RT_SCOPE_UNIVERSE,
172 false));
173}
174
175void RoutingTable::FlushRoutes(int interface_index) {
176 VLOG(2) << __func__;
177
178 base::hash_map<int, vector<RoutingTableEntry> >::iterator table =
179 tables_.find(interface_index);
180
181 if (table == tables_.end()) {
182 return;
183 }
184
185 vector<RoutingTableEntry>::iterator nent;
186
187 for (nent = table->second.begin(); nent != table->second.end(); ++nent) {
Paul Stewart9a908082011-08-31 12:18:48 -0700188 ApplyRoute(interface_index, *nent, RTNLMessage::kModeDelete, 0);
Paul Stewart75e89d22011-08-01 10:00:02 -0700189 }
190}
191
192void RoutingTable::ResetTable(int interface_index) {
193 tables_.erase(interface_index);
194}
195
196void RoutingTable::SetDefaultMetric(int interface_index, uint32 metric) {
mukesh agrawal2c15d2c2012-02-21 16:09:21 -0800197 VLOG(2) << __func__ << " "
198 << "index " << interface_index << " metric " << metric;
Paul Stewart75e89d22011-08-01 10:00:02 -0700199
mukesh agrawald4ef6772012-02-21 16:28:04 -0800200 RoutingTableEntry *entry;
201 if (GetDefaultRouteInternal(
202 interface_index, IPAddress::kFamilyIPv4, &entry) &&
203 entry->metric != metric) {
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800204 ReplaceMetric(interface_index, entry, metric);
Paul Stewart75e89d22011-08-01 10:00:02 -0700205 }
206
mukesh agrawald4ef6772012-02-21 16:28:04 -0800207 if (GetDefaultRouteInternal(
208 interface_index, IPAddress::kFamilyIPv6, &entry) &&
209 entry->metric != metric) {
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800210 ReplaceMetric(interface_index, entry, metric);
Paul Stewart75e89d22011-08-01 10:00:02 -0700211 }
212}
213
Chris Masone2aa97072011-08-09 17:35:08 -0700214void RoutingTable::RouteMsgHandler(const RTNLMessage &msg) {
Paul Stewart9a908082011-08-31 12:18:48 -0700215 if (msg.type() != RTNLMessage::kTypeRoute ||
Paul Stewart7355ce12011-09-02 10:47:01 -0700216 msg.family() == IPAddress::kFamilyUnknown ||
Paul Stewart75e89d22011-08-01 10:00:02 -0700217 !msg.HasAttribute(RTA_OIF)) {
218 return;
219 }
220
221 const RTNLMessage::RouteStatus &route_status = msg.route_status();
222
223 if (route_status.type != RTN_UNICAST ||
224 route_status.protocol != RTPROT_BOOT ||
225 route_status.table != RT_TABLE_MAIN) {
226 return;
227 }
228
229 uint32 interface_index = 0;
230 if (!msg.GetAttribute(RTA_OIF).ConvertToCPUUInt32(&interface_index)) {
231 return;
232 }
233
234 uint32 metric = 0;
235 if (msg.HasAttribute(RTA_PRIORITY)) {
236 msg.GetAttribute(RTA_PRIORITY).ConvertToCPUUInt32(&metric);
237 }
238
239 IPAddress default_addr(msg.family());
240 default_addr.SetAddressToDefault();
241
242 ByteString dst_bytes(default_addr.address());
243 if (msg.HasAttribute(RTA_DST)) {
244 dst_bytes = msg.GetAttribute(RTA_DST);
245 }
246 ByteString src_bytes(default_addr.address());
247 if (msg.HasAttribute(RTA_SRC)) {
248 src_bytes = msg.GetAttribute(RTA_SRC);
249 }
250 ByteString gateway_bytes(default_addr.address());
251 if (msg.HasAttribute(RTA_GATEWAY)) {
252 gateway_bytes = msg.GetAttribute(RTA_GATEWAY);
253 }
254
255 RoutingTableEntry entry(
Paul Stewart9e3fcd72011-08-26 15:46:16 -0700256 IPAddress(msg.family(), dst_bytes, route_status.dst_prefix),
257 IPAddress(msg.family(), src_bytes, route_status.src_prefix),
Paul Stewart75e89d22011-08-01 10:00:02 -0700258 IPAddress(msg.family(), gateway_bytes),
259 metric,
260 route_status.scope,
261 true);
262
263 vector<RoutingTableEntry> &table = tables_[interface_index];
264 vector<RoutingTableEntry>::iterator nent;
265 for (nent = table.begin(); nent != table.end(); ++nent) {
266 if (nent->dst.Equals(entry.dst) &&
Paul Stewart75e89d22011-08-01 10:00:02 -0700267 nent->src.Equals(entry.src) &&
Paul Stewart75e89d22011-08-01 10:00:02 -0700268 nent->gateway.Equals(entry.gateway) &&
269 nent->scope == entry.scope) {
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800270 if (msg.mode() == RTNLMessage::kModeDelete &&
271 nent->metric == entry.metric) {
Paul Stewart75e89d22011-08-01 10:00:02 -0700272 table.erase(nent);
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800273 } else if (msg.mode() == RTNLMessage::kModeAdd) {
Paul Stewart75e89d22011-08-01 10:00:02 -0700274 nent->from_rtnl = true;
275 nent->metric = entry.metric;
276 }
277 return;
278 }
279 }
280
Paul Stewart9a908082011-08-31 12:18:48 -0700281 if (msg.mode() == RTNLMessage::kModeAdd) {
mukesh agrawal2c15d2c2012-02-21 16:09:21 -0800282 VLOG(2) << __func__ << " adding "
283 << "index " << interface_index
284 << "gateway " << entry.gateway.ToString() << " "
285 << "metric " << entry.metric;
Paul Stewart75e89d22011-08-01 10:00:02 -0700286 table.push_back(entry);
287 }
288}
289
290bool RoutingTable::ApplyRoute(uint32 interface_index,
291 const RoutingTableEntry &entry,
Paul Stewart9a908082011-08-31 12:18:48 -0700292 RTNLMessage::Mode mode,
Paul Stewart75e89d22011-08-01 10:00:02 -0700293 unsigned int flags) {
294 VLOG(2) << base::StringPrintf("%s: index %d mode %d flags 0x%x",
295 __func__, interface_index, mode, flags);
296
297 RTNLMessage msg(
Paul Stewart9a908082011-08-31 12:18:48 -0700298 RTNLMessage::kTypeRoute,
Paul Stewart75e89d22011-08-01 10:00:02 -0700299 mode,
Paul Stewarte6132022011-08-16 09:11:02 -0700300 NLM_F_REQUEST | flags,
Paul Stewart75e89d22011-08-01 10:00:02 -0700301 0,
302 0,
303 0,
304 entry.dst.family());
305
306 msg.set_route_status(RTNLMessage::RouteStatus(
Paul Stewart9e3fcd72011-08-26 15:46:16 -0700307 entry.dst.prefix(),
308 entry.src.prefix(),
Paul Stewart75e89d22011-08-01 10:00:02 -0700309 RT_TABLE_MAIN,
310 RTPROT_BOOT,
311 entry.scope,
312 RTN_UNICAST,
313 0));
314
315 msg.SetAttribute(RTA_DST, entry.dst.address());
316 if (!entry.src.IsDefault()) {
317 msg.SetAttribute(RTA_SRC, entry.src.address());
318 }
319 if (!entry.gateway.IsDefault()) {
320 msg.SetAttribute(RTA_GATEWAY, entry.gateway.address());
321 }
322 msg.SetAttribute(RTA_PRIORITY, ByteString::CreateFromCPUUInt32(entry.metric));
323 msg.SetAttribute(RTA_OIF, ByteString::CreateFromCPUUInt32(interface_index));
324
325 return RTNLHandler::GetInstance()->SendMessage(&msg);
326}
327
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800328// Somewhat surprisingly, the kernel allows you to create multiple routes
329// to the same destination through the same interface with different metrics.
330// Therefore, to change the metric on a route, we can't just use the
331// NLM_F_REPLACE flag by itself. We have to explicitly remove the old route.
332// We do so after creating the route at a new metric so there is no traffic
333// disruption to existing network streams.
334void RoutingTable::ReplaceMetric(uint32 interface_index,
mukesh agrawald4ef6772012-02-21 16:28:04 -0800335 RoutingTableEntry *entry,
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800336 uint32 metric) {
mukesh agrawal2c15d2c2012-02-21 16:09:21 -0800337 VLOG(2) << __func__ << " "
338 << "index " << interface_index << " metric " << metric;
mukesh agrawald4ef6772012-02-21 16:28:04 -0800339 RoutingTableEntry new_entry = *entry;
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800340 new_entry.metric = metric;
341 // First create the route at the new metric.
342 ApplyRoute(interface_index, new_entry, RTNLMessage::kModeAdd,
343 NLM_F_CREATE | NLM_F_REPLACE);
344 // Then delete the route at the old metric.
mukesh agrawald4ef6772012-02-21 16:28:04 -0800345 ApplyRoute(interface_index, *entry, RTNLMessage::kModeDelete, 0);
346 // Now, update our routing table (via |*entry|) from |new_entry|.
347 *entry = new_entry;
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800348}
349
Paul Stewart75e89d22011-08-01 10:00:02 -0700350bool RoutingTable::FlushCache() {
351 static const char *kPaths[2] = { kRouteFlushPath4, kRouteFlushPath6 };
352 bool ret = true;
353
354 VLOG(2) << __func__;
355
356 for (size_t i = 0; i < arraysize(kPaths); ++i) {
357 if (file_util::WriteFile(FilePath(kPaths[i]), "-1", 2) != 2) {
358 LOG(ERROR) << base::StringPrintf("Cannot write to route flush file %s",
359 kPaths[i]);
360 ret = false;
361 }
362 }
363
364 return ret;
365}
366
367} // namespace shill