blob: d6fe96701fa08b07ec35c6eb7a7f4babdb041fc6 [file] [log] [blame]
Paul Stewartf748a362012-03-07 12:01:20 -08001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Paul Stewarta3c56f92011-05-26 07:08:52 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef SHILL_RTNL_HANDLER_
6#define SHILL_RTNL_HANDLER_
7
Darin Petkove0a312e2011-07-20 13:45:28 -07008#include <string>
Paul Stewarta3c56f92011-05-26 07:08:52 -07009#include <vector>
10
Eric Shienbrood3e20a232012-02-16 11:35:56 -050011#include <base/callback.h>
Paul Stewarta3c56f92011-05-26 07:08:52 -070012#include <base/hash_tables.h>
Paul Stewart0d2ada32011-08-09 17:01:57 -070013#include <base/lazy_instance.h>
Paul Stewarta3c56f92011-05-26 07:08:52 -070014#include <base/memory/ref_counted.h>
15#include <base/memory/scoped_ptr.h>
Darin Petkovca432fc2011-07-08 15:56:57 -070016#include <gtest/gtest_prod.h> // for FRIEND_TEST
Paul Stewarta3c56f92011-05-26 07:08:52 -070017
18#include "shill/device.h"
19
Paul Stewart26b327e2011-10-19 11:38:09 -070020#include "shill/event_dispatcher.h"
Paul Stewarta3c56f92011-05-26 07:08:52 -070021#include "shill/io_handler.h"
22#include "shill/rtnl_listener.h"
Paul Stewart9a908082011-08-31 12:18:48 -070023#include "shill/rtnl_message.h"
Paul Stewarta3c56f92011-05-26 07:08:52 -070024
25struct nlmsghdr;
26
27namespace shill {
28
Paul Stewartc39f1132011-06-22 12:02:28 -070029class IPConfig;
Darin Petkov633ac6f2011-07-08 13:56:13 -070030class Sockets;
Paul Stewartc39f1132011-06-22 12:02:28 -070031
Darin Petkov633ac6f2011-07-08 13:56:13 -070032// This singleton class is responsible for interacting with the RTNL subsystem.
33// RTNL provides (among other things) access to interface discovery (add/remove
34// events), interface state monitoring and the ability to change interace flags.
35// Similar functionality also exists for IP address configuration for interfaces
36// and IP routing tables.
Paul Stewarta3c56f92011-05-26 07:08:52 -070037//
Darin Petkov633ac6f2011-07-08 13:56:13 -070038// RTNLHandler provides access to these events through a callback system and
39// provides utility functions to make changes to interface, address and routing
40// state.
Paul Stewarta3c56f92011-05-26 07:08:52 -070041class RTNLHandler {
42 public:
Darin Petkov633ac6f2011-07-08 13:56:13 -070043 static const int kRequestLink = 1;
44 static const int kRequestAddr = 2;
45 static const int kRequestRoute = 4;
Paul Stewarta3c56f92011-05-26 07:08:52 -070046
Paul Stewart0d2ada32011-08-09 17:01:57 -070047 virtual ~RTNLHandler();
48
Paul Stewarta3c56f92011-05-26 07:08:52 -070049 // Since this is a singleton, use RTNHandler::GetInstance()->Foo()
50 static RTNLHandler *GetInstance();
51
Darin Petkov633ac6f2011-07-08 13:56:13 -070052 // This starts the event-monitoring function of the RTNL handler. This
53 // function requires an EventDispatcher pointer so it can add itself to the
54 // event loop.
Paul Stewartdd60e452011-08-08 11:38:36 -070055 virtual void Start(EventDispatcher *dispatcher, Sockets *sockets);
Darin Petkove0a312e2011-07-20 13:45:28 -070056
Paul Stewarta3c56f92011-05-26 07:08:52 -070057 // Add an RTNL event listener to the list of entities that will
58 // be notified of RTNL events.
Paul Stewartdd60e452011-08-08 11:38:36 -070059 virtual void AddListener(RTNLListener *to_add);
Darin Petkove0a312e2011-07-20 13:45:28 -070060
Paul Stewarta3c56f92011-05-26 07:08:52 -070061 // Remove a previously added RTNL event listener
Paul Stewartdd60e452011-08-08 11:38:36 -070062 virtual void RemoveListener(RTNLListener *to_remove);
Paul Stewarta3c56f92011-05-26 07:08:52 -070063
Paul Stewartc39f1132011-06-22 12:02:28 -070064 // Set flags on a network interface that has a kernel index of
Paul Stewarta3c56f92011-05-26 07:08:52 -070065 // 'interface_index'. Only the flags bits set in 'change' will
66 // be set, and they will be set to the corresponding bit in 'flags'.
Paul Stewartdd60e452011-08-08 11:38:36 -070067 virtual void SetInterfaceFlags(int interface_index,
68 unsigned int flags,
69 unsigned int change);
Darin Petkove0a312e2011-07-20 13:45:28 -070070
Paul Stewartc39f1132011-06-22 12:02:28 -070071 // Set address of a network interface that has a kernel index of
72 // 'interface_index'.
Paul Stewart9a908082011-08-31 12:18:48 -070073 virtual bool AddInterfaceAddress(int interface_index,
74 const IPAddress &local,
Paul Stewart48100b02012-03-19 07:53:52 -070075 const IPAddress &gateway,
76 const IPAddress &peer);
Darin Petkove0a312e2011-07-20 13:45:28 -070077
Paul Stewartc39f1132011-06-22 12:02:28 -070078 // Remove address from a network interface that has a kernel index of
79 // 'interface_index'.
Paul Stewartdd60e452011-08-08 11:38:36 -070080 virtual bool RemoveInterfaceAddress(int interface_index,
Paul Stewart9a908082011-08-31 12:18:48 -070081 const IPAddress &local);
Darin Petkove0a312e2011-07-20 13:45:28 -070082
Paul Stewartcba0f7f2012-02-29 16:33:05 -080083 // Remove a network interface from the kernel.
84 virtual bool RemoveInterface(int interface_index);
85
Paul Stewarta3c56f92011-05-26 07:08:52 -070086 // Request that various tables (link, address, routing) tables be
87 // exhaustively dumped via RTNL. As results arrive from the kernel
88 // they will be broadcast to all listeners. The possible values
89 // (multiple can be ORred together) are below.
Paul Stewartdd60e452011-08-08 11:38:36 -070090 virtual void RequestDump(int request_flags);
Paul Stewarta3c56f92011-05-26 07:08:52 -070091
Darin Petkove0a312e2011-07-20 13:45:28 -070092 // Returns the index of interface |interface_name|, or -1 if unable to
93 // determine the index.
Paul Stewartdd60e452011-08-08 11:38:36 -070094 virtual int GetInterfaceIndex(const std::string &interface_name);
Darin Petkove0a312e2011-07-20 13:45:28 -070095
Paul Stewart75e89d22011-08-01 10:00:02 -070096 // Send a formatted RTNL message. The sequence number in the message is set.
Paul Stewartdd60e452011-08-08 11:38:36 -070097 virtual bool SendMessage(RTNLMessage *message);
Paul Stewart75e89d22011-08-01 10:00:02 -070098
Paul Stewart0d2ada32011-08-09 17:01:57 -070099 protected:
100 RTNLHandler();
101
Paul Stewarta3c56f92011-05-26 07:08:52 -0700102 private:
Paul Stewart0d2ada32011-08-09 17:01:57 -0700103 friend struct base::DefaultLazyInstanceTraits<RTNLHandler>;
Darin Petkov0828f5f2011-08-11 10:18:52 -0700104 friend class CellularTest;
Darin Petkov633ac6f2011-07-08 13:56:13 -0700105 friend class DeviceInfoTest;
Darin Petkove0a312e2011-07-20 13:45:28 -0700106 friend class ModemTest;
107 friend class RTNLHandlerTest;
Paul Stewart75e89d22011-08-01 10:00:02 -0700108 friend class RoutingTableTest;
Paul Stewart0d2ada32011-08-09 17:01:57 -0700109
Darin Petkovca432fc2011-07-08 15:56:57 -0700110 FRIEND_TEST(RTNLListenerTest, NoRun);
111 FRIEND_TEST(RTNLListenerTest, Run);
Thieu Lecaef8932012-02-28 16:06:59 -0800112 FRIEND_TEST(RoutingTableTest, RouteDeleteForeign);
Darin Petkov633ac6f2011-07-08 13:56:13 -0700113
Paul Stewart65c40f52011-08-08 07:27:46 -0700114 // This stops the event-monitoring function of the RTNL handler -- it is
115 // private since it will never happen in normal running, but is useful for
116 // tests.
117 void Stop();
118
Paul Stewarta3c56f92011-05-26 07:08:52 -0700119 // Dispatches an rtnl message to all listeners
Chris Masone2aa97072011-08-09 17:35:08 -0700120 void DispatchEvent(int type, const RTNLMessage &msg);
Paul Stewarta3c56f92011-05-26 07:08:52 -0700121 // Send the next table-dump request to the kernel
Paul Stewartf748a362012-03-07 12:01:20 -0800122 void NextRequest(uint32 seq);
Paul Stewarta3c56f92011-05-26 07:08:52 -0700123 // Parse an incoming rtnl message from the kernel
124 void ParseRTNL(InputData *data);
Paul Stewarta3c56f92011-05-26 07:08:52 -0700125
Paul Stewart9a908082011-08-31 12:18:48 -0700126 bool AddressRequest(int interface_index,
127 RTNLMessage::Mode mode,
128 int flags,
129 const IPAddress &local,
Paul Stewart48100b02012-03-19 07:53:52 -0700130 const IPAddress &gateway,
131 const IPAddress &peer);
Darin Petkov633ac6f2011-07-08 13:56:13 -0700132 Sockets *sockets_;
Paul Stewarta3c56f92011-05-26 07:08:52 -0700133 bool in_request_;
134
135 int rtnl_socket_;
Paul Stewartf748a362012-03-07 12:01:20 -0800136 uint32 request_flags_;
137 uint32 request_sequence_;
138 uint32 last_dump_sequence_;
Paul Stewarta3c56f92011-05-26 07:08:52 -0700139
140 std::vector<RTNLListener *> listeners_;
Eric Shienbrood3e20a232012-02-16 11:35:56 -0500141 base::Callback<void(InputData *)> rtnl_callback_;
Paul Stewart26b327e2011-10-19 11:38:09 -0700142 scoped_ptr<IOHandler> rtnl_handler_;
Paul Stewarta3c56f92011-05-26 07:08:52 -0700143
Paul Stewarta3c56f92011-05-26 07:08:52 -0700144 DISALLOW_COPY_AND_ASSIGN(RTNLHandler);
145};
146
147} // namespace shill
148
149#endif // SHILL_RTNL_HANDLER_