blob: fa280f6ce6317970123ed598f7243883207da9d7 [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
Eric Shienbrood3e20a232012-02-16 11:35:56 -050021#include <base/bind.h>
Paul Stewart75e89d22011-08-01 10:00:02 -070022#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>
Eric Shienbrood3e20a232012-02-16 11:35:56 -050027#include <base/stl_util.h>
Paul Stewart75e89d22011-08-01 10:00:02 -070028#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
Eric Shienbrood3e20a232012-02-16 11:35:56 -050036using base::Bind;
37using base::Unretained;
Paul Stewart75e89d22011-08-01 10:00:02 -070038using std::string;
39using std::vector;
40
41namespace shill {
42
Eric Shienbrood3e20a232012-02-16 11:35:56 -050043// TODO(ers): not using LAZY_INSTANCE_INITIALIZER
44// because of http://crbug.com/114828
45static base::LazyInstance<RoutingTable> g_routing_table = {0, {{0}}};
Paul Stewart0d2ada32011-08-09 17:01:57 -070046
Paul Stewart75e89d22011-08-01 10:00:02 -070047// static
48const char RoutingTable::kRouteFlushPath4[] = "/proc/sys/net/ipv4/route/flush";
Paul Stewart0d2ada32011-08-09 17:01:57 -070049// static
Paul Stewart75e89d22011-08-01 10:00:02 -070050const char RoutingTable::kRouteFlushPath6[] = "/proc/sys/net/ipv6/route/flush";
51
52RoutingTable::RoutingTable()
Eric Shienbrood3e20a232012-02-16 11:35:56 -050053 : route_callback_(Bind(&RoutingTable::RouteMsgHandler, Unretained(this))),
Paul Stewartf748a362012-03-07 12:01:20 -080054 route_listener_(NULL),
55 rtnl_handler_(RTNLHandler::GetInstance()) {
Paul Stewart75e89d22011-08-01 10:00:02 -070056 VLOG(2) << __func__;
57}
58
59RoutingTable::~RoutingTable() {}
60
61RoutingTable* RoutingTable::GetInstance() {
Paul Stewart0d2ada32011-08-09 17:01:57 -070062 return g_routing_table.Pointer();
Paul Stewart75e89d22011-08-01 10:00:02 -070063}
64
65void RoutingTable::Start() {
66 VLOG(2) << __func__;
67
68 route_listener_.reset(
Eric Shienbrood3e20a232012-02-16 11:35:56 -050069 new RTNLListener(RTNLHandler::kRequestRoute, route_callback_));
Paul Stewartf748a362012-03-07 12:01:20 -080070 rtnl_handler_->RequestDump(RTNLHandler::kRequestRoute);
Paul Stewart75e89d22011-08-01 10:00:02 -070071}
72
73void RoutingTable::Stop() {
74 VLOG(2) << __func__;
75
76 route_listener_.reset();
77}
78
79bool RoutingTable::AddRoute(int interface_index,
80 const RoutingTableEntry &entry) {
Paul Stewartf748a362012-03-07 12:01:20 -080081 VLOG(2) << __func__ << ": "
82 << "destination " << entry.dst.ToString()
83 << " index " << interface_index
84 << " gateway " << entry.gateway.ToString()
85 << " metric " << entry.metric;
Paul Stewart75e89d22011-08-01 10:00:02 -070086
87 CHECK(!entry.from_rtnl);
88 if (!ApplyRoute(interface_index,
89 entry,
Paul Stewart9a908082011-08-31 12:18:48 -070090 RTNLMessage::kModeAdd,
Paul Stewart75e89d22011-08-01 10:00:02 -070091 NLM_F_CREATE | NLM_F_EXCL)) {
92 return false;
93 }
94 tables_[interface_index].push_back(entry);
95 return true;
96}
97
98bool RoutingTable::GetDefaultRoute(int interface_index,
99 IPAddress::Family family,
100 RoutingTableEntry *entry) {
mukesh agrawald4ef6772012-02-21 16:28:04 -0800101 RoutingTableEntry *found_entry;
102 bool ret = GetDefaultRouteInternal(interface_index, family, &found_entry);
103 if (ret) {
104 *entry = *found_entry;
105 }
106 return ret;
107}
108
109bool RoutingTable::GetDefaultRouteInternal(int interface_index,
110 IPAddress::Family family,
111 RoutingTableEntry **entry) {
Paul Stewartf748a362012-03-07 12:01:20 -0800112 VLOG(2) << __func__ << " index " << interface_index
113 << " family " << IPAddress::GetAddressFamilyName(family);
Paul Stewart75e89d22011-08-01 10:00:02 -0700114
115 base::hash_map<int, vector<RoutingTableEntry> >::iterator table =
116 tables_.find(interface_index);
117
118 if (table == tables_.end()) {
mukesh agrawal2c15d2c2012-02-21 16:09:21 -0800119 VLOG(2) << __func__ << " no table";
Paul Stewart75e89d22011-08-01 10:00:02 -0700120 return false;
121 }
122
123 vector<RoutingTableEntry>::iterator nent;
124
125 for (nent = table->second.begin(); nent != table->second.end(); ++nent) {
126 if (nent->dst.IsDefault() && nent->dst.family() == family) {
mukesh agrawald4ef6772012-02-21 16:28:04 -0800127 *entry = &(*nent);
Paul Stewartf748a362012-03-07 12:01:20 -0800128 VLOG(2) << __func__ << ": found"
129 << " gateway " << nent->gateway.ToString()
130 << " metric " << nent->metric;
Paul Stewart75e89d22011-08-01 10:00:02 -0700131 return true;
132 }
133 }
134
mukesh agrawal2c15d2c2012-02-21 16:09:21 -0800135 VLOG(2) << __func__ << " no route";
Paul Stewart75e89d22011-08-01 10:00:02 -0700136 return false;
137}
138
139bool RoutingTable::SetDefaultRoute(int interface_index,
Paul Stewart5b7ba8c2012-04-18 09:08:00 -0700140 const IPAddress &gateway_address,
Paul Stewart75e89d22011-08-01 10:00:02 -0700141 uint32 metric) {
mukesh agrawal2c15d2c2012-02-21 16:09:21 -0800142 VLOG(2) << __func__ << " index " << interface_index << " metric " << metric;
143
mukesh agrawald4ef6772012-02-21 16:28:04 -0800144 RoutingTableEntry *old_entry;
Paul Stewart75e89d22011-08-01 10:00:02 -0700145
mukesh agrawald4ef6772012-02-21 16:28:04 -0800146 if (GetDefaultRouteInternal(interface_index,
Paul Stewart5b7ba8c2012-04-18 09:08:00 -0700147 gateway_address.family(),
mukesh agrawald4ef6772012-02-21 16:28:04 -0800148 &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
Paul Stewart5b7ba8c2012-04-18 09:08:00 -0700163 IPAddress default_address(gateway_address.family());
Paul Stewart75e89d22011-08-01 10:00:02 -0700164 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
Paul Stewart3f68bb12012-03-15 13:33:10 -0700175bool RoutingTable::ConfigureRoutes(int interface_index,
176 const IPConfigRefPtr &ipconfig,
177 uint32 metric) {
178 bool ret = true;
179
180 IPAddress::Family address_family = ipconfig->properties().address_family;
181 const vector<IPConfig::Route> &routes = ipconfig->properties().routes;
182
183 for (vector<IPConfig::Route>::const_iterator it = routes.begin();
184 it != routes.end();
185 ++it) {
186 VLOG(3) << "Installing route:"
187 << " Destination: " << it->host
188 << " Netmask: " << it->netmask
189 << " Gateway: " << it->gateway;
190 IPAddress destination_address(address_family);
191 IPAddress source_address(address_family); // Left as default.
192 IPAddress gateway_address(address_family);
193 if (!destination_address.SetAddressFromString(it->host)) {
194 LOG(ERROR) << "Failed to parse host "
195 << it->host;
196 ret = false;
197 continue;
198 }
199 if (!gateway_address.SetAddressFromString(it->gateway)) {
200 LOG(ERROR) << "Failed to parse gateway "
201 << it->gateway;
202 ret = false;
203 continue;
204 }
205 destination_address.set_prefix(
206 IPAddress::GetPrefixLengthFromMask(address_family, it->netmask));
207 if (!AddRoute(interface_index,
208 RoutingTableEntry(destination_address,
209 source_address,
210 gateway_address,
211 metric,
212 RT_SCOPE_UNIVERSE,
213 false))) {
214 ret = false;
215 }
216 }
217 return ret;
218}
219
Thieu Lefb46caf2012-03-08 11:57:15 -0800220void RoutingTable::FlushRoutes(int interface_index) {
Paul Stewart75e89d22011-08-01 10:00:02 -0700221 VLOG(2) << __func__;
222
223 base::hash_map<int, vector<RoutingTableEntry> >::iterator table =
224 tables_.find(interface_index);
225
226 if (table == tables_.end()) {
227 return;
228 }
229
230 vector<RoutingTableEntry>::iterator nent;
231
232 for (nent = table->second.begin(); nent != table->second.end(); ++nent) {
Thieu Lecaef8932012-02-28 16:06:59 -0800233 ApplyRoute(interface_index, *nent, RTNLMessage::kModeDelete, 0);
Paul Stewart75e89d22011-08-01 10:00:02 -0700234 }
Thieu Lefb46caf2012-03-08 11:57:15 -0800235 table->second.clear();
Paul Stewart75e89d22011-08-01 10:00:02 -0700236}
237
238void RoutingTable::ResetTable(int interface_index) {
239 tables_.erase(interface_index);
240}
241
242void RoutingTable::SetDefaultMetric(int interface_index, uint32 metric) {
Paul Stewartf748a362012-03-07 12:01:20 -0800243 VLOG(2) << __func__ << " index " << interface_index << " metric " << metric;
Paul Stewart75e89d22011-08-01 10:00:02 -0700244
mukesh agrawald4ef6772012-02-21 16:28:04 -0800245 RoutingTableEntry *entry;
246 if (GetDefaultRouteInternal(
247 interface_index, IPAddress::kFamilyIPv4, &entry) &&
248 entry->metric != metric) {
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800249 ReplaceMetric(interface_index, entry, metric);
Paul Stewart75e89d22011-08-01 10:00:02 -0700250 }
251
mukesh agrawald4ef6772012-02-21 16:28:04 -0800252 if (GetDefaultRouteInternal(
253 interface_index, IPAddress::kFamilyIPv6, &entry) &&
254 entry->metric != metric) {
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800255 ReplaceMetric(interface_index, entry, metric);
Paul Stewart75e89d22011-08-01 10:00:02 -0700256 }
257}
258
Paul Stewartf748a362012-03-07 12:01:20 -0800259// static
260bool RoutingTable::ParseRoutingTableMessage(const RTNLMessage &message,
261 int *interface_index,
262 RoutingTableEntry *entry) {
263 if (message.type() != RTNLMessage::kTypeRoute ||
264 message.family() == IPAddress::kFamilyUnknown ||
265 !message.HasAttribute(RTA_OIF)) {
266 return false;
Paul Stewart75e89d22011-08-01 10:00:02 -0700267 }
268
Paul Stewartf748a362012-03-07 12:01:20 -0800269 const RTNLMessage::RouteStatus &route_status = message.route_status();
Paul Stewart75e89d22011-08-01 10:00:02 -0700270
271 if (route_status.type != RTN_UNICAST ||
Paul Stewart75e89d22011-08-01 10:00:02 -0700272 route_status.table != RT_TABLE_MAIN) {
Paul Stewartf748a362012-03-07 12:01:20 -0800273 return false;
Paul Stewart75e89d22011-08-01 10:00:02 -0700274 }
275
Paul Stewartf748a362012-03-07 12:01:20 -0800276 uint32 interface_index_u32 = 0;
277 if (!message.GetAttribute(RTA_OIF).ConvertToCPUUInt32(&interface_index_u32)) {
278 return false;
Paul Stewart75e89d22011-08-01 10:00:02 -0700279 }
Paul Stewartf748a362012-03-07 12:01:20 -0800280 *interface_index = interface_index_u32;
Paul Stewart75e89d22011-08-01 10:00:02 -0700281
282 uint32 metric = 0;
Paul Stewartf748a362012-03-07 12:01:20 -0800283 if (message.HasAttribute(RTA_PRIORITY)) {
284 message.GetAttribute(RTA_PRIORITY).ConvertToCPUUInt32(&metric);
Paul Stewart75e89d22011-08-01 10:00:02 -0700285 }
286
Paul Stewartf748a362012-03-07 12:01:20 -0800287 IPAddress default_addr(message.family());
Paul Stewart75e89d22011-08-01 10:00:02 -0700288 default_addr.SetAddressToDefault();
289
290 ByteString dst_bytes(default_addr.address());
Paul Stewartf748a362012-03-07 12:01:20 -0800291 if (message.HasAttribute(RTA_DST)) {
292 dst_bytes = message.GetAttribute(RTA_DST);
Paul Stewart75e89d22011-08-01 10:00:02 -0700293 }
294 ByteString src_bytes(default_addr.address());
Paul Stewartf748a362012-03-07 12:01:20 -0800295 if (message.HasAttribute(RTA_SRC)) {
296 src_bytes = message.GetAttribute(RTA_SRC);
Paul Stewart75e89d22011-08-01 10:00:02 -0700297 }
298 ByteString gateway_bytes(default_addr.address());
Paul Stewartf748a362012-03-07 12:01:20 -0800299 if (message.HasAttribute(RTA_GATEWAY)) {
300 gateway_bytes = message.GetAttribute(RTA_GATEWAY);
Paul Stewart75e89d22011-08-01 10:00:02 -0700301 }
302
Paul Stewartf748a362012-03-07 12:01:20 -0800303 entry->dst = IPAddress(message.family(), dst_bytes, route_status.dst_prefix);
304 entry->src = IPAddress(message.family(), src_bytes, route_status.src_prefix);
305 entry->gateway = IPAddress(message.family(), gateway_bytes);
306 entry->metric = metric;
307 entry->scope = route_status.scope;
308 entry->from_rtnl = true;
309
310 return true;
311}
312
313void RoutingTable::RouteMsgHandler(const RTNLMessage &message) {
314 int interface_index;
315 RoutingTableEntry entry;
316
317 if (!ParseRoutingTableMessage(message, &interface_index, &entry)) {
318 return;
319 }
320
321 if (!route_query_sequences_.empty() &&
322 message.route_status().protocol == RTPROT_UNSPEC) {
323 VLOG(3) << __func__ << ": Message seq: " << message.seq()
324 << " mode " << message.mode()
325 << ", next query seq: " << route_query_sequences_.front();
326
327 // Purge queries that have expired (sequence number of this message is
328 // greater than that of the head of the route query sequence). Do the
329 // math in a way that's roll-over independent.
330 while (route_query_sequences_.front() - message.seq() > kuint32max / 2) {
331 LOG(ERROR) << __func__ << ": Purging un-replied route request sequence "
332 << route_query_sequences_.front()
333 << " (< " << message.seq() << ")";
334 route_query_sequences_.pop();
335 if (route_query_sequences_.empty())
336 return;
337 }
338
339 if (route_query_sequences_.front() == message.seq()) {
340 VLOG(2) << __func__ << ": Adding host route to " << entry.dst.ToString();
341 route_query_sequences_.pop();
342 RoutingTableEntry add_entry(entry);
343 add_entry.from_rtnl = false;
344 AddRoute(interface_index, add_entry);
345 }
346 return;
347 } else if (message.route_status().protocol != RTPROT_BOOT) {
348 // Responses to route queries come back with a protocol of
349 // RTPROT_UNSPEC. Otherwise, normal route updates that we are
350 // interested in come with a protocol of RTPROT_BOOT.
351 return;
352 }
Paul Stewart75e89d22011-08-01 10:00:02 -0700353
354 vector<RoutingTableEntry> &table = tables_[interface_index];
355 vector<RoutingTableEntry>::iterator nent;
356 for (nent = table.begin(); nent != table.end(); ++nent) {
357 if (nent->dst.Equals(entry.dst) &&
Paul Stewart75e89d22011-08-01 10:00:02 -0700358 nent->src.Equals(entry.src) &&
Paul Stewart75e89d22011-08-01 10:00:02 -0700359 nent->gateway.Equals(entry.gateway) &&
360 nent->scope == entry.scope) {
Paul Stewartf748a362012-03-07 12:01:20 -0800361 if (message.mode() == RTNLMessage::kModeDelete &&
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800362 nent->metric == entry.metric) {
Paul Stewart75e89d22011-08-01 10:00:02 -0700363 table.erase(nent);
Paul Stewartf748a362012-03-07 12:01:20 -0800364 } else if (message.mode() == RTNLMessage::kModeAdd) {
Paul Stewart75e89d22011-08-01 10:00:02 -0700365 nent->from_rtnl = true;
366 nent->metric = entry.metric;
367 }
368 return;
369 }
370 }
371
Paul Stewartf748a362012-03-07 12:01:20 -0800372 if (message.mode() == RTNLMessage::kModeAdd) {
373 VLOG(2) << __func__ << " adding"
374 << " destination " << entry.dst.ToString()
375 << " index " << interface_index
376 << " gateway " << entry.gateway.ToString()
377 << " metric " << entry.metric;
Paul Stewart75e89d22011-08-01 10:00:02 -0700378 table.push_back(entry);
379 }
380}
381
382bool RoutingTable::ApplyRoute(uint32 interface_index,
383 const RoutingTableEntry &entry,
Paul Stewart9a908082011-08-31 12:18:48 -0700384 RTNLMessage::Mode mode,
Paul Stewart75e89d22011-08-01 10:00:02 -0700385 unsigned int flags) {
Paul Stewart3f68bb12012-03-15 13:33:10 -0700386 VLOG(2) << base::StringPrintf("%s: dst %s/%d src %s/%d index %d mode %d "
387 "flags 0x%x",
mukesh agrawalbf14e942012-03-02 14:36:34 -0800388 __func__, entry.dst.ToString().c_str(),
Paul Stewart3f68bb12012-03-15 13:33:10 -0700389 entry.dst.prefix(),
390 entry.src.ToString().c_str(),
391 entry.src.prefix(), interface_index, mode,
392 flags);
Paul Stewart75e89d22011-08-01 10:00:02 -0700393
Paul Stewartf748a362012-03-07 12:01:20 -0800394 RTNLMessage message(
Paul Stewart9a908082011-08-31 12:18:48 -0700395 RTNLMessage::kTypeRoute,
Paul Stewart75e89d22011-08-01 10:00:02 -0700396 mode,
Paul Stewarte6132022011-08-16 09:11:02 -0700397 NLM_F_REQUEST | flags,
Paul Stewart75e89d22011-08-01 10:00:02 -0700398 0,
399 0,
400 0,
401 entry.dst.family());
402
Paul Stewartf748a362012-03-07 12:01:20 -0800403 message.set_route_status(RTNLMessage::RouteStatus(
Paul Stewart9e3fcd72011-08-26 15:46:16 -0700404 entry.dst.prefix(),
405 entry.src.prefix(),
Paul Stewart75e89d22011-08-01 10:00:02 -0700406 RT_TABLE_MAIN,
407 RTPROT_BOOT,
408 entry.scope,
409 RTN_UNICAST,
410 0));
411
Paul Stewartf748a362012-03-07 12:01:20 -0800412 message.SetAttribute(RTA_DST, entry.dst.address());
Paul Stewart75e89d22011-08-01 10:00:02 -0700413 if (!entry.src.IsDefault()) {
Paul Stewartf748a362012-03-07 12:01:20 -0800414 message.SetAttribute(RTA_SRC, entry.src.address());
Paul Stewart75e89d22011-08-01 10:00:02 -0700415 }
416 if (!entry.gateway.IsDefault()) {
Paul Stewartf748a362012-03-07 12:01:20 -0800417 message.SetAttribute(RTA_GATEWAY, entry.gateway.address());
Paul Stewart75e89d22011-08-01 10:00:02 -0700418 }
Paul Stewartf748a362012-03-07 12:01:20 -0800419 message.SetAttribute(RTA_PRIORITY,
420 ByteString::CreateFromCPUUInt32(entry.metric));
421 message.SetAttribute(RTA_OIF,
422 ByteString::CreateFromCPUUInt32(interface_index));
Paul Stewart75e89d22011-08-01 10:00:02 -0700423
Paul Stewartf748a362012-03-07 12:01:20 -0800424 return rtnl_handler_->SendMessage(&message);
Paul Stewart75e89d22011-08-01 10:00:02 -0700425}
426
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800427// Somewhat surprisingly, the kernel allows you to create multiple routes
428// to the same destination through the same interface with different metrics.
429// Therefore, to change the metric on a route, we can't just use the
430// NLM_F_REPLACE flag by itself. We have to explicitly remove the old route.
431// We do so after creating the route at a new metric so there is no traffic
432// disruption to existing network streams.
433void RoutingTable::ReplaceMetric(uint32 interface_index,
mukesh agrawald4ef6772012-02-21 16:28:04 -0800434 RoutingTableEntry *entry,
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800435 uint32 metric) {
Paul Stewartf748a362012-03-07 12:01:20 -0800436 VLOG(2) << __func__ << " index " << interface_index << " metric " << metric;
mukesh agrawald4ef6772012-02-21 16:28:04 -0800437 RoutingTableEntry new_entry = *entry;
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800438 new_entry.metric = metric;
439 // First create the route at the new metric.
440 ApplyRoute(interface_index, new_entry, RTNLMessage::kModeAdd,
441 NLM_F_CREATE | NLM_F_REPLACE);
442 // Then delete the route at the old metric.
mukesh agrawald4ef6772012-02-21 16:28:04 -0800443 ApplyRoute(interface_index, *entry, RTNLMessage::kModeDelete, 0);
444 // Now, update our routing table (via |*entry|) from |new_entry|.
445 *entry = new_entry;
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800446}
447
Paul Stewart75e89d22011-08-01 10:00:02 -0700448bool RoutingTable::FlushCache() {
449 static const char *kPaths[2] = { kRouteFlushPath4, kRouteFlushPath6 };
450 bool ret = true;
451
452 VLOG(2) << __func__;
453
454 for (size_t i = 0; i < arraysize(kPaths); ++i) {
455 if (file_util::WriteFile(FilePath(kPaths[i]), "-1", 2) != 2) {
456 LOG(ERROR) << base::StringPrintf("Cannot write to route flush file %s",
457 kPaths[i]);
458 ret = false;
459 }
460 }
461
462 return ret;
463}
464
Paul Stewartf748a362012-03-07 12:01:20 -0800465bool RoutingTable::RequestRouteToHost(const IPAddress &address,
466 int interface_index) {
467 RTNLMessage message(
468 RTNLMessage::kTypeRoute,
469 RTNLMessage::kModeQuery,
470 NLM_F_REQUEST,
471 0,
472 0,
473 interface_index,
474 address.family());
475
476 RTNLMessage::RouteStatus status;
477 status.dst_prefix = address.prefix();
478 message.set_route_status(status);
479 message.SetAttribute(RTA_DST, address.address());
Paul Stewart536820d2012-03-19 16:05:59 -0700480
481 if (interface_index != -1) {
482 message.SetAttribute(RTA_OIF,
483 ByteString::CreateFromCPUUInt32(interface_index));
484 }
Paul Stewartf748a362012-03-07 12:01:20 -0800485
486 if (!rtnl_handler_->SendMessage(&message)) {
487 return false;
488 }
489
490 // Save the sequence number of the request so we can create a route for
491 // this host when we get a reply.
492 route_query_sequences_.push(message.seq());
493
494 return true;
495}
496
Paul Stewart75e89d22011-08-01 10:00:02 -0700497} // namespace shill