OSDN Git Service

Merge "Get interface index from kernel for wificond"
[android-x86/system-connectivity-wificond.git] / ap_interface_impl.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_AP_INTERFACE_IMPL_H_
18 #define WIFICOND_AP_INTERFACE_IMPL_H_
19
20 #include <memory>
21 #include <string>
22 #include <vector>
23
24 #include <android-base/macros.h>
25 #include <wifi_system/hostapd_manager.h>
26
27 #include "android/net/wifi/IApInterface.h"
28
29 namespace android {
30 namespace wificond {
31
32 class ApInterfaceBinder;
33
34 // Holds the guts of how we control network interfaces capable of exposing an AP
35 // via hostapd.  Because remote processes may hold on to the corresponding
36 // binder object past the lifetime of the local object, we are forced to
37 // keep this object separate from the binder representation of itself.
38 class ApInterfaceImpl {
39  public:
40   ApInterfaceImpl(const std::string& interface_name,
41                   uint32_t interface_index,
42                   std::unique_ptr<wifi_system::HostapdManager> hostapd_manager);
43   ~ApInterfaceImpl();
44
45   // Get a pointer to the binder representing this ApInterfaceImpl.
46   android::sp<android::net::wifi::IApInterface> GetBinder() const;
47
48   bool StartHostapd();
49   bool StopHostapd();
50   bool WriteHostapdConfig(
51       const std::vector<uint8_t>& ssid,
52       bool is_hidden,
53       int32_t channel,
54       wifi_system::HostapdManager::EncryptionType encryption_type,
55       const std::vector<uint8_t>& passphrase);
56
57  private:
58   const std::string interface_name_;
59   const uint32_t interface_index_;
60   const std::unique_ptr<wifi_system::HostapdManager> hostapd_manager_;
61   const android::sp<ApInterfaceBinder> binder_;
62
63   DISALLOW_COPY_AND_ASSIGN(ApInterfaceImpl);
64 };
65
66 }  // namespace wificond
67 }  // namespace android
68
69 #endif  // WIFICOND_AP_INTERFACE_IMPL_H_