Add wifi policy 50/143450/7 accepted/tizen/4.0/unified/20170920.081755 accepted/tizen/unified/20170921.072431 submit/tizen/20170920.045814 submit/tizen/20170921.042645 submit/tizen_4.0/20170920.045210
authorJaemin Ryu <jm77.ryu@samsung.com>
Thu, 10 Aug 2017 04:11:59 +0000 (13:11 +0900)
committerJaemin Ryu <jm77.ryu@samsung.com>
Thu, 14 Sep 2017 00:52:19 +0000 (00:52 +0000)
Change-Id: I1604fde9698edf96ccea28575db407360e0f7b21
Signed-off-by: Jaemin Ryu <jm77.ryu@samsung.com>
CMakeLists.txt [new file with mode: 0755]
api/CMakeLists.txt [new file with mode: 0755]
api/dpm-wifi.pc.in [new file with mode: 0644]
api/wifi.cpp [new file with mode: 0644]
api/wifi.h [new file with mode: 0644]
dpm-wifi.manifest [new file with mode: 0644]
packaging/dpm-wifi.spec [new file with mode: 0755]
plugin/CMakeLists.txt [new file with mode: 0755]
plugin/wifi.cpp [new file with mode: 0644]

diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100755 (executable)
index 0000000..abd8d2c
--- /dev/null
@@ -0,0 +1,85 @@
+#
+# Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
+
+PROJECT(dpm-wifi)
+
+IF(NOT DEFINED VERSION)
+       SET(VERSION "0.0.1")
+ENDIF(NOT DEFINED VERSION)
+
+INCLUDE(FindPkgConfig)
+
+IF(NOT CMAKE_BUILD_TYPE)
+       SET(CMAKE_BUILD_TYPE "DEBUG")
+ENDIF(NOT CMAKE_BUILD_TYPE)
+
+SET(DPM_API     ${PROJECT_SOURCE_DIR}/api)
+SET(DPM_PLUGIN  ${PROJECT_SOURCE_DIR}/plugin)
+
+IF("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.7)
+       SET(CXX_STD "c++0x")
+else()
+       SET(CXX_STD "c++11")
+endif()
+
+SET(COMPILE_BASE_FLAGS         "-g -fPIC -Werror -Wall -Wl,--as-needed -Wl,--no-whole-archive")
+SET(CMAKE_C_FLAGS_PROFILING    "${COMPILE_BASE_FLAGS} -O0 -pg")
+SET(CMAKE_CXX_FLAGS_PROFILING  "${COMPILE_BASE_FLAGS} -O0 -pg -std=${CXX_STD} -fno-rtti")
+SET(CMAKE_C_FLAGS_DEBUG                "${COMPILE_BASE_FLAGS} -O0 -ggdb")
+SET(CMAKE_CXX_FLAGS_DEBUG      "${COMPILE_BASE_FLAGS} -O0 -ggdb -std=${CXX_STD} -fno-rtti")
+SET(CMAKE_C_FLAGS_RELEASE      "${COMPILE_BASE_FLAGS} -O2 -DNDEBUG")
+SET(CMAKE_CXX_FLAGS_RELEASE    "${COMPILE_BASE_FLAGS} -O2 -DNDEBUG -std=${CXX_STD} -fno-rtti")
+SET(CMAKE_C_FLAGS_CCOV         "${COMPILE_BASE_FLAGS} -O0 --coverage")
+SET(CMAKE_CXX_FLAGS_CCOV       "${COMPILE_BASE_FLAGS} -O0 --coverage -std=${CXX_STD} -fno-rtti")
+
+IF(NOT DEFINED LIB_INSTALL_DIR)
+       SET(LIB_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}")
+ENDIF(NOT DEFINED LIB_INSTALL_DIR)
+
+IF(NOT DEFINED INCLUDE_INSTALL_DIR)
+       SET(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_INCLUDEDIR}")
+ENDIF(NOT DEFINED INCLUDE_INSTALL_DIR)
+
+IF(NOT DEFINED CONF_INSTALL_DIR)
+       SET(CONF_INSTALL_DIR "${SYSCONF_INSTALL_DIR}/dpm")
+ENDIF(NOT DEFINED CONF_INSTALL_DIR)
+
+IF(NOT DEFINED DATA_INSTALL_DIR)
+       SET(DATA_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/share/dpm")
+ENDIF(NOT DEFINED DATA_INSTALL_DIR)
+
+IF(NOT DEFINED DB_INSTALL_DIR)
+       SET(DB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/dbspace")
+ENDIF(NOT DEFINED DB_INSTALL_DIR)
+
+IF(NOT DEFINED RUN_INSTALL_DIR)
+       SET(RUN_INSTALL_DIR "/var/run")
+ENDIF(NOT DEFINED RUN_INSTALL_DIR)
+
+IF(NOT DEFINED PAMD_INSTALL_DIR)
+       SET(PAMD_INSTALL_DIR "${SYSCONF_INSTALL_DIR}/pam.d")
+ENDIF(NOT DEFINED PAMD_INSTALL_DIR)
+
+IF(NOT DEFINED SYSTEMD_UNIT_INSTALL_DIR)
+       SET(SYSTEMD_UNIT_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib/systemd/system")
+ENDIF(NOT DEFINED SYSTEMD_UNIT_INSTALL_DIR)
+
+ADD_DEFINITIONS(-DUG_WAYLAND)
+
+ADD_SUBDIRECTORY(${DPM_PLUGIN})
+ADD_SUBDIRECTORY(${DPM_API})
diff --git a/api/CMakeLists.txt b/api/CMakeLists.txt
new file mode 100755 (executable)
index 0000000..cf1cc4d
--- /dev/null
@@ -0,0 +1,48 @@
+#
+# Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+SET(TARGET ${PROJECT_NAME})
+SET(PC_FILE "${TARGET}.pc")
+
+SET(LIB_VERSION "${VERSION}")
+SET(LIB_SOVERSION "0")
+
+SET(API_SOURCES "wifi.cpp")
+SET(API_HEADERS "wifi.h")
+
+SET(DEPENDENCY      klay
+                                       dpm-pil
+                    capi-base-common
+                    capi-system-info
+)
+
+PKG_CHECK_MODULES(API_DEPS REQUIRED ${DEPENDENCY})
+
+SET (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,noexecstack")
+
+ADD_LIBRARY(${TARGET} SHARED ${API_SOURCES})
+
+SET_TARGET_PROPERTIES(${TARGET} PROPERTIES COMPILE_FLAGS "-fvisibility=default")
+SET_TARGET_PROPERTIES(${TARGET} PROPERTIES SOVERSION ${LIB_SOVERSION})
+SET_TARGET_PROPERTIES(${TARGET} PROPERTIES VERSION   ${LIB_VERSION})
+
+INCLUDE_DIRECTORIES(SYSTEM ${API_DEPS_INCLUDE_DIRS})
+TARGET_LINK_LIBRARIES(${TARGET} ${API_DEPS_LIBRARIES} pthread)
+
+CONFIGURE_FILE(${PC_FILE}.in ${CMAKE_BINARY_DIR}/${PC_FILE} @ONLY)
+
+INSTALL(FILES ${CMAKE_BINARY_DIR}/${PC_FILE} DESTINATION ${LIB_INSTALL_DIR}/pkgconfig)
+INSTALL(TARGETS ${TARGET} DESTINATION ${LIB_INSTALL_DIR} COMPONENT RuntimeLibraries)
+INSTALL(FILES ${API_HEADERS} DESTINATION ${INCLUDE_INSTALL_DIR}/dpm)
diff --git a/api/dpm-wifi.pc.in b/api/dpm-wifi.pc.in
new file mode 100644 (file)
index 0000000..0d62b71
--- /dev/null
@@ -0,0 +1,12 @@
+# Package Information for pkg-config
+
+prefix=@CMAKE_INSTALL_PREFIX@
+exec_prefix=@CMAKE_INSTALL_PREFIX@
+libdir=@LIB_INSTALL_DIR@
+includedir=@INCLUDE_INSTALL_DIR@
+
+Name: Wi-Fi policy module
+Description: Wi-Fi policy module for device policy manager
+Version: @VERSION@
+Libs: -L${libdir} -ldpm-wifi
+Cflags: -I${includedir}/dpm
diff --git a/api/wifi.cpp b/api/wifi.cpp
new file mode 100644 (file)
index 0000000..d72deb4
--- /dev/null
@@ -0,0 +1,120 @@
+/*
+ *  Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License
+ */
+#include <tizen.h>
+#include <tizen_type.h>
+
+#include <dpm/pil/policy-client.h>
+
+#include "wifi.h"
+
+EXPORT_API int dpm_wifi_set_state(device_policy_manager_h handle, bool allow)
+{
+       RET_ON_FAILURE(handle, DPM_ERROR_INVALID_PARAMETER);
+
+       DevicePolicyClient &client = GetDevicePolicyClient(handle);
+
+       try {
+               Status<int> status { -1 };
+               status = client.methodCall<int>("Wifi::setState", allow);
+               return status.get();
+       } catch (...) {
+               return -1;
+       }
+}
+
+EXPORT_API int dpm_wifi_get_state(device_policy_manager_h handle, bool *is_allowed)
+{
+       RET_ON_FAILURE(handle, DPM_ERROR_INVALID_PARAMETER);
+       RET_ON_FAILURE(is_allowed, DPM_ERROR_INVALID_PARAMETER);
+
+       DevicePolicyClient &client = GetDevicePolicyClient(handle);
+
+    try {
+               Status<bool> status { true };
+               status = client.methodCall<bool>("Wifi::getState");
+               *is_allowed = status.get();
+       } catch (...) {
+               return -1;
+       }
+
+       return DPM_ERROR_NONE;
+}
+
+EXPORT_API int dpm_wifi_set_hotspot_state(device_policy_manager_h handle, bool allow)
+{
+       RET_ON_FAILURE(handle, DPM_ERROR_INVALID_PARAMETER);
+
+       DevicePolicyClient &client = GetDevicePolicyClient(handle);
+
+       try {
+               Status<int> status { -1 };
+               status = client.methodCall<int>("Wifi::setHotspotState", allow);
+               return status.get();
+       } catch (...) {
+               return -1;
+       }
+}
+
+EXPORT_API int dpm_wifi_get_wifi_hotspot_state(device_policy_manager_h handle, bool *is_allowed)
+{
+       RET_ON_FAILURE(handle, DPM_ERROR_INVALID_PARAMETER);
+       RET_ON_FAILURE(is_allowed, DPM_ERROR_INVALID_PARAMETER);
+
+       DevicePolicyClient &client = GetDevicePolicyClient(handle);
+
+       try {
+               Status<bool> status { true };
+               status = client.methodCall<bool>("Wifi::getHotspotState");
+               *is_allowed = status.get();
+       } catch (...) {
+               return -1;
+       }
+
+       return DPM_ERROR_NONE;
+}
+
+EXPORT_API int dpm_wifi_set_profile_change_restriction(device_policy_manager_h handle, bool enable)
+{
+       RET_ON_FAILURE(handle, DPM_ERROR_INVALID_PARAMETER);
+
+       DevicePolicyClient &client = GetDevicePolicyClient(handle);
+
+       try {
+               Status<int> status { -1 };
+               status = client.methodCall<int>("Wifi::setProfileChangeRestriction", enable);
+               return status.get();
+       } catch (...) {
+               return -1;
+       }
+}
+
+EXPORT_API int dpm_wifi_is_profile_change_restricted(device_policy_manager_h handle, bool *enable)
+{
+       RET_ON_FAILURE(handle, DPM_ERROR_INVALID_PARAMETER);
+       RET_ON_FAILURE(enable, DPM_ERROR_INVALID_PARAMETER);
+
+       DevicePolicyClient &client = GetDevicePolicyClient(handle);
+
+       try {
+               Status<bool> status { false };
+               status = client.methodCall<bool>("Wifi::isProfileChangeRestricted");
+               *enable = status.get();
+       } catch (...) {
+               return -1;
+       }
+
+       return DPM_ERROR_NONE;
+}
diff --git a/api/wifi.h b/api/wifi.h
new file mode 100644 (file)
index 0000000..77443b2
--- /dev/null
@@ -0,0 +1,172 @@
+/*
+ *  Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License
+ */
+
+#ifndef __CAPI_DPM_WIFI_POLICY_H__
+#define __CAPI_DPM_WIFI_POLICY_H__
+
+#include <stdbool.h>
+
+typedef void * device_policy_manager_h;
+
+/**
+ * @file wifi.h
+ * @brief This file provides APIs to control wifi policy
+ */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ * @addtogroup  CAPI_DPM_WIFI_POLICY_MODULE
+ * @{
+ */
+
+/**
+ * @partner
+ * @brief       Allows or disallows user to change the Wi-Fi state.
+ * @details     An administrator can use this API to allow or disallow user to
+ *              change the Wi-Fi state. If it is disallowed, user does not have UI
+ *              access to change the state.
+ * @since_tizen 3.0
+ * @privlevel   partner
+ * @privilege   %http://tizen.org/privilege/dpm.wifi
+ * @param[in]   handle Device policy manager handle
+ * @param[in]   allow If true, allow user to change Wi-Fi state,
+ *              if false, disallow user to change Wi-Fi state.
+ * @return      #DPM_ERROR_NONE on success, otherwise a negative value
+ * @retval      #DPM_ERROR_NONE Successful
+ * @retval      #DPM_ERROR_TIMED_OUT Time out
+ * @retval      #DPM_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval      #DPM_ERROR_PERMISSION_DENIED The application does not have
+ *              the privilege to call this API
+ * @pre         The handle must be created by dpm_manager_create().
+ * @see         dpm_manager_create()
+ * @see         dpm_wifi_get_state()
+ */
+int dpm_wifi_set_state(device_policy_manager_h handle, bool allow);
+
+/**
+ * @brief       Checks whether the Wi-Fi state change is allowed or not.
+ * @details     An administrator can use this API to check whether user is
+ *              allowed to change Wi-Fi state or not.
+ * @since_tizen 3.0
+ * @param[in]   handle Device policy manager handle
+ * @param[out]  is_allowed true if the change is allowed, false otherwise.
+ * @return      #DPM_ERROR_NONE on success, otherwise a negative value
+ * @retval      #DPM_ERROR_NONE Successful
+ * @retval      #DPM_ERROR_TIMED_OUT Time out
+ * @retval      #DPM_ERROR_INVALID_PARAMETER Invalid parameter
+ * @pre         The handle must be created by dpm_manager_create().
+ * @see         dpm_manager_create()
+ * @see         dpm_wifi_set_state()
+ */
+int dpm_wifi_get_state(device_policy_manager_h handle, bool *is_allowed);
+
+/**
+ * @partner
+ * @brief       Allows or disallows user to change Wi-Fi hotspot state change.
+ * @details     An administrator can use this API to allow or disallow user to change Wi-Fi
+ *              hotspot state. When it is disallowed, the UI is grayed out so user cannot
+ *              change Wi-Fi hotspot state.
+ * @since_tizen 3.0
+ * @privlevel   partner
+ * @privilege   %http://tizen.org/privilege/dpm.wifi
+ * @param[in]   handle Device policy manager handle
+ * @param[in]   allow If true, allow user to change Wi-Fi hostspot state,
+ *              if false, disallow user to change Wi-Fi hotspot state.
+ * @return      #DPM_ERROR_NONE on success, otherwise a negative value
+ * @retval      #DPM_ERROR_NONE Successful
+ * @retval      #DPM_ERROR_TIMED_OUT Time out
+ * @retval      #DPM_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval      #DPM_ERROR_PERMISSION_DENIED The application does not have
+ *              the privilege to call this API
+ * @pre         The handle must be created by dpm_manager_create().
+ * @see         dpm_manager_create()
+ * @see         dpm_wifi_get_hotspot_state()
+ */
+int dpm_wifi_set_hotspot_state(device_policy_manager_h handle, bool allow);
+
+/**
+ * @brief       Checks whether the the Wi-Fi hotspot state change is allowed or not.
+ * @details     An administrator can use this API to check whether user is allowed to change
+ *              Wi-Fi hotspot state or not.
+ *              If the Wi-Fi hotspot state change is disallowed, the UI is grayed out so user can not
+ *              change its state.
+ * @since_tizen 3.0
+ * @param[in]   handle Device policy manager handle
+ * @param[out]  is_allowed true if the state change is allowed, false otherwise.
+ * @return      #DPM_ERROR_NONE on success, otherwise a negative value
+ * @retval      #DPM_ERROR_NONE Successful
+ * @retval      #DPM_ERROR_TIMED_OUT Time out
+ * @retval      #DPM_ERROR_INVALID_PARAMETER Invalid parameter
+ * @pre         The handle must be created by dpm_manager_create().
+ * @see         dpm_manager_create()
+ * @see         dpm_wifi_set_hotspot_state()
+ */
+int dpm_wifi_get_hotspot_state(device_policy_manager_h handle, bool *is_allowed);
+
+/**
+ * @brief       Allows or disallows user to modify some Wi-Fi profiles of network settings.
+ * @details     An administrator can use this API to allow or disallow users to modify selected
+ *              Wi-Fi profiles like static ip configuration, proxy settings, security type
+ *              and others. When this policy is in effect the user is only allowed to
+ *              modify only the username, password, anonymous identity, and wep key.
+ *              In addition, the user cannot remove the network. When false, the user can
+ *              modify all Wi-fi network profiles normally and also remove it.
+ * @since_tizen 3.0
+ * @param[in]   handle The device policy manager handle
+ * @param[in]   enable true to enable restriction mode for wifi profile changes, else false
+ * @return      #DPM_ERROR_NONE on success, otherwise a negative value
+ * @retval      #DPM_ERROR_NONE Successful
+ * @retval      #DPM_ERROR_TIMEOUT Time out
+ * @retval      #DPM_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval      #DPM_ERROR_PERMISSION_DENIED The application does not have
+ *              the privilege to call this API
+ * @pre         handle must be created by dpm_context_acquire_wifi_policy()
+ * @see         dpm_manager_create()
+ * @see         dpm_wifi_is_profile_change_restricted()
+ */
+int dpm_wifi_set_profile_change_restriction(device_policy_manager_h handle, bool enable);
+
+/**
+ * @brief       Checks if the user is allowed to modify certain Wi-Fi profiles.
+ * @details     An administrator can use this API to check whether the user is
+ *              allowed to modify Wi-Fi profiles. The user is restricted in modifying
+ *              Wi-Fi profiles if at least one administrator has set the value to TRUE.
+ * @since_tizen 3.0
+ * @param[in]   handle The device policy manager handle
+ * @param[out]  is_enabled true if one or more administrators enabled restriction
+ *              false if user can change all Wi-Fi profiles
+ * @return      #DPM_ERROR_NONE on success, otherwise a negative value
+ * @retval      #DPM_ERROR_NONE Successful
+ * @retval      #DPM_ERROR_TIMEOUT Time out
+ * @retval      #DPM_ERROR_INVALID_PARAMETER Invalid parameter
+ * @pre         handle must be created by dpm_context_acquire_wifi_policy()
+ * @see         dpm_manager_create()
+ * @see         dpm_wifi_set_profile_change_restriction()
+ */
+int dpm_wifi_is_profile_change_restricted(device_policy_manager_h handle, bool *is_enabled);
+
+/**
+ * @}
+ */
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif //! __CAPI_DPM_WIFI_POLICY_H__
diff --git a/dpm-wifi.manifest b/dpm-wifi.manifest
new file mode 100644 (file)
index 0000000..a76fdba
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+       <request>
+               <domain name="_" />
+       </request>
+</manifest>
diff --git a/packaging/dpm-wifi.spec b/packaging/dpm-wifi.spec
new file mode 100755 (executable)
index 0000000..66e96a4
--- /dev/null
@@ -0,0 +1,78 @@
+Name:    dpm-wifi
+Version: 1.0.1
+Release: 0
+License: Apache-2.0
+Source0: %{name}-%{version}.tar.gz
+Summary: Tizen Device Policy Manager Wi-Fi Policy Module
+Group:   Security/Other
+BuildRequires: gcc
+BuildRequires: cmake
+BuildRequires: gettext-tools
+BuildRequires: pkgconfig(klay)
+BuildRequires: pkgconfig(dpm-pil)
+BuildRequires: pkgconfig(capi-network-wifi-manager)
+BuildRequires: pkgconfig(capi-network-connection)
+BuildRequires: pkgconfig(capi-system-info)
+BuildRequires: pkgconfig(capi-base-common)
+
+%description
+The dpm-wifi package provides Wi-Fi policy module for device policy manager
+
+%files
+%manifest dpm-wifi.manifest
+%defattr(644,root,root,755)
+%attr(755,root,root) /opt/data/dpm/plugins/wifi
+%attr(755,root,root) %{_libdir}/libdpm-wifi.so.%{version}
+%{_libdir}/libdpm-wifi.so.0
+
+%prep
+%setup -q
+
+%build
+%{!?build_type:%define build_type "RELEASE"}
+
+%if %{build_type} == "DEBUG" || %{build_type} == "PROFILING" || %{build_type} == "CCOV"
+       CFLAGS="$CFLAGS -Wp,-U_FORTIFY_SOURCE"
+       CXXFLAGS="$CXXFLAGS -Wp,-U_FORTIFY_SOURCE"
+%endif
+
+%cmake . -DVERSION=%{version} \
+         -DCMAKE_BUILD_TYPE=%{build_type} \
+         -DSCRIPT_INSTALL_DIR=%{_scriptdir} \
+         -DSYSTEMD_UNIT_INSTALL_DIR=%{_unitdir} \
+         -DDATA_INSTALL_DIR=%{TZ_SYS_DATA}/dpm \
+         -DDB_INSTALL_DIR=%{TZ_SYS_DB} \
+         -DRUN_INSTALL_DIR=%{TZ_SYS_RUN} \
+         -DAPP_INSTALL_PREFIX="%{TZ_SYS_RO_APP}" \
+         -DAPP_SHARE_PACKAGES_DIR="%{TZ_SYS_RO_PACKAGES}" \
+
+make %{?jobs:-j%jobs}
+
+%install
+%make_install
+
+%clean
+rm -rf %{buildroot}
+
+%post
+
+%preun
+
+%postun
+
+## Devel Package ##############################################################
+%package -n libdpm-wifi-devel
+Summary: Libraries and header files for device policy client development
+Group: Development/Libraries
+Requires: device-policy-manager = %{version}-%{release}
+
+%description -n libdpm-wifi-devel
+The libdpm-wifi-devel package includes the libraries and header files necessary for
+developing the DPM client program.
+
+%files -n libdpm-wifi-devel
+%manifest dpm-wifi.manifest
+%defattr(644,root,root,755)
+%{_libdir}/libdpm-wifi.so
+%{_libdir}/pkgconfig/dpm-wifi.pc
+%{_includedir}/dpm
diff --git a/plugin/CMakeLists.txt b/plugin/CMakeLists.txt
new file mode 100755 (executable)
index 0000000..2131c00
--- /dev/null
@@ -0,0 +1,35 @@
+#
+# Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+SET(TARGET "dpm-plugin-wifi")
+
+SET(PLUGIN_SOURCES "wifi.cpp")
+
+SET(DEPENDENCY      klay
+                                       dpm-pil
+                                       capi-network-wifi-manager
+                                       capi-network-connection
+)
+
+PKG_CHECK_MODULES(PLUGIN_DEPS REQUIRED ${DEPENDENCY})
+
+SET (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,noexecstack")
+
+ADD_LIBRARY(${TARGET} SHARED ${PLUGIN_SOURCES})
+SET_TARGET_PROPERTIES(${TARGET} PROPERTIES COMPILE_FLAGS "-fvisibility=default")
+INCLUDE_DIRECTORIES(SYSTEM ${PLUGIN_DEPS_INCLUDE_DIRS})
+TARGET_LINK_LIBRARIES(${TARGET} ${PLUGIN_DEPS_LIBRARIES})
+
+INSTALL(FILES libdpm-plugin-wifi.so RENAME wifi DESTINATION /opt/data/dpm/plugins)
diff --git a/plugin/wifi.cpp b/plugin/wifi.cpp
new file mode 100644 (file)
index 0000000..460a548
--- /dev/null
@@ -0,0 +1,236 @@
+/*
+ *  Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License
+ */
+
+#include <arpa/inet.h>
+
+#include <cstdlib>
+#include <functional>
+#include <unordered_set>
+
+#include <wifi-manager.h>
+
+#include <klay/dbus/connection.h>
+
+#include <dpm/pil/policy-context.h>
+#include <dpm/pil/policy-model.h>
+#include <dpm/pil/policy-storage.h>
+#include <dpm/pil/policy-event.h>
+
+#define NETCONFIG_INTERFACE            \
+       "net.netconfig",                        \
+       "/net/netconfig/network",       \
+       "net.netconfig.network"
+
+class ModeChange : public GlobalPolicy<DataSetInt> {
+public:
+       ModeChange() : GlobalPolicy("wifi")
+       {
+               PolicyEventNotifier::create("wifi");
+       }
+
+       bool apply(const DataType& value)
+       {
+               int enable = value;
+               try {
+                       dbus::Connection &systemDBus = dbus::Connection::getSystem();
+                       systemDBus.methodcall(NETCONFIG_INTERFACE,
+                                                                 "DevicePolicySetWifi",
+                                                                 -1,
+                                                                 "",
+                                                                 "(i)",
+                                                                 enable);
+               } catch (runtime::Exception& e) {
+                       ERROR("Failed to chaneg Wi-Fi state");
+                       return false;
+               }
+
+               PolicyEventNotifier::emit("wifi", enable ? "allowed" : "disallowed");
+               return true;
+       }
+};
+
+class ProfileChange : public GlobalPolicy<DataSetInt> {
+public:
+       ProfileChange() : GlobalPolicy("wifi-profile-change")
+       {
+               PolicyEventNotifier::create("wifi-profile-change");
+       }
+
+       bool apply(const DataType& value)
+       {
+               int enable = value;
+               try {
+                       dbus::Connection &systemDBus = dbus::Connection::getSystem();
+                       systemDBus.methodcall(NETCONFIG_INTERFACE,
+                                                                 "DevicePolicySetWifiProfile",
+                                                                 -1,
+                                                                 "",
+                                                                 "(i)",
+                                                                 enable);
+               } catch (runtime::Exception& e) {
+                       ERROR("Failed to set Wi-Fi profile change restriction");
+                       return false;
+               }
+               PolicyEventNotifier::emit("wifi-profile-change", enable ? "allowed" : "disallowed");
+               return true;
+       }
+};
+
+class Hotspot : public GlobalPolicy<DataSetInt> {
+public:
+       Hotspot() : GlobalPolicy("wifi-hotspot")
+       {
+               PolicyEventNotifier::create("wifi-hotspot");
+       }
+
+       bool apply(const DataType& value)
+       {
+               int enable = value;
+               PolicyEventNotifier::emit("wifi-hotspot", enable ? "allowed" : "disallowed");
+               return true;
+       }
+};
+
+class Wifi : public AbstractPolicyProvider {
+public:
+       Wifi();
+       ~Wifi();
+
+       int setState(bool enable);
+       bool getState();
+       int setHotspotState(bool enable);
+       bool getHotspotState();
+       int setProfileChangeRestriction(bool enable);
+       bool isProfileChangeRestricted();
+
+       static void onConnectionStateChanged(wifi_manager_connection_state_e state,
+                                                                                wifi_manager_ap_h ap, void *user_data);
+
+private:
+       wifi_manager_h handle;
+
+       ModeChange modeChange;
+       ProfileChange profileChange;
+       Hotspot hotspot;
+};
+
+
+Wifi::Wifi() : handle(nullptr)
+{
+       int ret = 0;
+
+       ret = ::wifi_manager_initialize(&handle);
+       if (ret != WIFI_MANAGER_ERROR_NONE) {
+               if (ret == WIFI_MANAGER_ERROR_NOT_SUPPORTED) {
+                       return;
+               }
+               throw runtime::Exception("WiFi Manager initialization failed");
+       }
+
+       ret = ::wifi_manager_set_connection_state_changed_cb(handle, &onConnectionStateChanged, this);
+       if (ret != WIFI_MANAGER_ERROR_NONE) {
+               throw runtime::Exception("WiFi Manager set connection state changed callback failed");
+       }
+}
+
+Wifi::~Wifi()
+{
+       if (handle) {
+               ::wifi_manager_unset_connection_state_changed_cb(handle);
+               ::wifi_manager_deinitialize(handle);
+       }
+}
+
+void Wifi::onConnectionStateChanged(wifi_manager_connection_state_e state,
+                                                                       wifi_manager_ap_h ap, void *user_data)
+{
+       if (state == WIFI_MANAGER_CONNECTION_STATE_FAILURE ||
+               state == WIFI_MANAGER_CONNECTION_STATE_DISCONNECTED) {
+               return;
+       }
+}
+
+int Wifi::setState(bool enable)
+{
+       try {
+               modeChange.set(enable);
+       } catch (runtime::Exception& e) {
+               ERROR(e.what());
+               return -1;
+       }
+
+       return 0;
+}
+
+bool Wifi::getState()
+{
+       return modeChange.get();
+}
+
+int Wifi::setHotspotState(bool enable)
+{
+       try {
+               hotspot.set(enable);
+       } catch (runtime::Exception& e) {
+               ERROR(e.what());
+               return -1;
+       }
+
+       return 0;
+}
+
+bool Wifi::getHotspotState()
+{
+       return hotspot.get();
+}
+
+int Wifi::setProfileChangeRestriction(bool enable)
+{
+       try {
+               profileChange.set(enable);
+       } catch (runtime::Exception& e) {
+               ERROR(e.what());
+               return -1;
+       }
+
+       return 0;
+}
+
+bool Wifi::isProfileChangeRestricted()
+{
+       return profileChange.get();
+}
+
+extern "C" {
+
+#define PRIVILEGE "http://tizen.org/privilege/dpm.wifi"
+
+AbstractPolicyProvider *PolicyFactory(PolicyControlContext& context)
+{
+       Wifi *policy = new Wifi();
+
+       context.expose(policy, PRIVILEGE, (int)(Wifi::setState)(bool));
+       context.expose(policy, PRIVILEGE, (int)(Wifi::setHotspotState)(bool));
+       context.expose(policy, PRIVILEGE, (int)(Wifi::setProfileChangeRestriction)(bool));
+
+       context.expose(policy, "", (bool)(Wifi::getState)());
+       context.expose(policy, "", (bool)(Wifi::getHotspotState)());
+       context.expose(policy, "", (bool)(Wifi::isProfileChangeRestricted)());
+
+       return policy;
+}
+
+} // extern "C"