OSDN Git Service

Fetch the mac address in GetInterfaceNameAndIndex
[android-x86/system-connectivity-wificond.git] / server.h
1 /*
2  * Copyright (C) 2016 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef WIFICOND_SERVER_H_
18 #define WIFICOND_SERVER_H_
19
20 #include <memory>
21 #include <string>
22 #include <vector>
23
24 #include <android-base/macros.h>
25 #include <wifi_hal/driver_tool.h>
26 #include <wifi_system/hal_tool.h>
27 #include <wifi_system/interface_tool.h>
28
29 #include "android/net/wifi/BnWificond.h"
30 #include "android/net/wifi/IApInterface.h"
31 #include "android/net/wifi/IClientInterface.h"
32
33 #include "wificond/ap_interface_impl.h"
34 #include "wificond/client_interface_impl.h"
35
36 namespace android {
37 namespace wificond {
38
39 class NL80211Packet;
40 class NetlinkUtils;
41 class ScanUtils;
42
43 class Server : public android::net::wifi::BnWificond {
44  public:
45   Server(std::unique_ptr<wifi_system::HalTool> hal_tool,
46          std::unique_ptr<wifi_system::InterfaceTool> if_tool,
47          std::unique_ptr<wifi_hal::DriverTool> driver_tool,
48          NetlinkUtils* netlink_utils,
49          ScanUtils* scan_utils);
50   ~Server() override = default;
51
52   android::binder::Status createApInterface(
53       android::sp<android::net::wifi::IApInterface>*
54           created_interface) override;
55
56   android::binder::Status createClientInterface(
57       android::sp<android::net::wifi::IClientInterface>*
58           created_interface) override;
59
60   android::binder::Status tearDownInterfaces() override;
61
62  private:
63   // Does the actual work of setting up an interface for a particular mode.
64   //
65   // |mode| is one of WIFI_GET_FW_PATH_* defined in hardware_legacy/wifi.h.
66   // |interface_name| is a pointer to a string to store the name of Linux
67   //     network interface that has been setup.
68   //
69   // Returns true on success, false otherwise.
70   bool SetupInterfaceForMode(int mode,
71                              std::string* interface_name,
72                              uint32_t* interface_index,
73                              std::vector<uint8_t>* interface_mac_addr);
74   bool RefreshWiphyIndex();
75
76   const std::unique_ptr<wifi_system::HalTool> hal_tool_;
77   const std::unique_ptr<wifi_system::InterfaceTool> if_tool_;
78   const std::unique_ptr<wifi_hal::DriverTool> driver_tool_;
79   NetlinkUtils* const netlink_utils_;
80   ScanUtils* const scan_utils_;
81
82   uint32_t wiphy_index_;
83   std::vector<std::unique_ptr<ApInterfaceImpl>> ap_interfaces_;
84   std::vector<std::unique_ptr<ClientInterfaceImpl>> client_interfaces_;
85
86   DISALLOW_COPY_AND_ASSIGN(Server);
87 };
88
89 }  // namespace wificond
90 }  // namespace android
91
92 #endif  // WIFICOND_SERVER_H_