blob: c119472db465264c28d1c2479da1d768abb117df [file] [log] [blame]
Paul Stewarta3c56f92011-05-26 07:08:52 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2// 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
11#include <base/callback_old.h>
12#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,
75 const IPAddress &gateway);
Darin Petkove0a312e2011-07-20 13:45:28 -070076
Paul Stewartc39f1132011-06-22 12:02:28 -070077 // Remove address from a network interface that has a kernel index of
78 // 'interface_index'.
Paul Stewartdd60e452011-08-08 11:38:36 -070079 virtual bool RemoveInterfaceAddress(int interface_index,
Paul Stewart9a908082011-08-31 12:18:48 -070080 const IPAddress &local);
Darin Petkove0a312e2011-07-20 13:45:28 -070081
Paul Stewarta3c56f92011-05-26 07:08:52 -070082 // Request that various tables (link, address, routing) tables be
83 // exhaustively dumped via RTNL. As results arrive from the kernel
84 // they will be broadcast to all listeners. The possible values
85 // (multiple can be ORred together) are below.
Paul Stewartdd60e452011-08-08 11:38:36 -070086 virtual void RequestDump(int request_flags);
Paul Stewarta3c56f92011-05-26 07:08:52 -070087
Darin Petkove0a312e2011-07-20 13:45:28 -070088 // Returns the index of interface |interface_name|, or -1 if unable to
89 // determine the index.
Paul Stewartdd60e452011-08-08 11:38:36 -070090 virtual int GetInterfaceIndex(const std::string &interface_name);
Darin Petkove0a312e2011-07-20 13:45:28 -070091
Paul Stewart75e89d22011-08-01 10:00:02 -070092 // Send a formatted RTNL message. The sequence number in the message is set.
Paul Stewartdd60e452011-08-08 11:38:36 -070093 virtual bool SendMessage(RTNLMessage *message);
Paul Stewart75e89d22011-08-01 10:00:02 -070094
Paul Stewart0d2ada32011-08-09 17:01:57 -070095 protected:
96 RTNLHandler();
97
Paul Stewarta3c56f92011-05-26 07:08:52 -070098 private:
Paul Stewart0d2ada32011-08-09 17:01:57 -070099 friend struct base::DefaultLazyInstanceTraits<RTNLHandler>;
Darin Petkov0828f5f2011-08-11 10:18:52 -0700100 friend class CellularTest;
Darin Petkov633ac6f2011-07-08 13:56:13 -0700101 friend class DeviceInfoTest;
Darin Petkove0a312e2011-07-20 13:45:28 -0700102 friend class ModemTest;
103 friend class RTNLHandlerTest;
Paul Stewart75e89d22011-08-01 10:00:02 -0700104 friend class RoutingTableTest;
Paul Stewart0d2ada32011-08-09 17:01:57 -0700105
Darin Petkovca432fc2011-07-08 15:56:57 -0700106 FRIEND_TEST(RTNLListenerTest, NoRun);
107 FRIEND_TEST(RTNLListenerTest, Run);
Darin Petkov633ac6f2011-07-08 13:56:13 -0700108
Paul Stewart65c40f52011-08-08 07:27:46 -0700109 // This stops the event-monitoring function of the RTNL handler -- it is
110 // private since it will never happen in normal running, but is useful for
111 // tests.
112 void Stop();
113
Paul Stewarta3c56f92011-05-26 07:08:52 -0700114 // Dispatches an rtnl message to all listeners
Chris Masone2aa97072011-08-09 17:35:08 -0700115 void DispatchEvent(int type, const RTNLMessage &msg);
Paul Stewarta3c56f92011-05-26 07:08:52 -0700116 // Send the next table-dump request to the kernel
117 void NextRequest(uint32_t seq);
118 // Parse an incoming rtnl message from the kernel
119 void ParseRTNL(InputData *data);
Paul Stewarta3c56f92011-05-26 07:08:52 -0700120
Paul Stewart9a908082011-08-31 12:18:48 -0700121 bool AddressRequest(int interface_index,
122 RTNLMessage::Mode mode,
123 int flags,
124 const IPAddress &local,
125 const IPAddress &gateway);
Darin Petkov633ac6f2011-07-08 13:56:13 -0700126 Sockets *sockets_;
Paul Stewarta3c56f92011-05-26 07:08:52 -0700127 bool in_request_;
128
129 int rtnl_socket_;
130 uint32_t request_flags_;
131 uint32_t request_sequence_;
Paul Stewart9a908082011-08-31 12:18:48 -0700132 uint32_t last_dump_sequence_;
Paul Stewarta3c56f92011-05-26 07:08:52 -0700133
134 std::vector<RTNLListener *> listeners_;
135 scoped_ptr<Callback1<InputData *>::Type> rtnl_callback_;
Paul Stewart26b327e2011-10-19 11:38:09 -0700136 scoped_ptr<IOHandler> rtnl_handler_;
Paul Stewarta3c56f92011-05-26 07:08:52 -0700137
Paul Stewarta3c56f92011-05-26 07:08:52 -0700138 DISALLOW_COPY_AND_ASSIGN(RTNLHandler);
139};
140
141} // namespace shill
142
143#endif // SHILL_RTNL_HANDLER_