You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
/*
|
|
* Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2
|
|
* as published by the Free Software Foundation.
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/kobject.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/string.h>
|
|
#include <linux/sysfs.h>
|
|
#include <linux/defex.h>
|
|
#include "include/defex_internal.h"
|
|
|
|
|
|
int defex_get_features(void)
|
|
{
|
|
int features = 0;
|
|
#ifdef DEFEX_PED_ENABLE
|
|
#if !defined(DEFEX_PERMISSIVE_PED)
|
|
features |= GLOBAL_PED_STATUS;
|
|
#else
|
|
if (global_privesc_obj->status != 0)
|
|
features |= FEATURE_CHECK_CREDS;
|
|
if (global_privesc_obj->status == 2)
|
|
features |= FEATURE_CHECK_CREDS_SOFT;
|
|
#endif /* DEFEX_PERMISSIVE_PED */
|
|
#endif /* DEFEX_PED_ENABLE */
|
|
|
|
#ifdef DEFEX_SAFEPLACE_ENABLE
|
|
#if !defined(DEFEX_PERMISSIVE_SP)
|
|
features |= GLOBAL_SAFEPLACE_STATUS;
|
|
#else
|
|
if (global_safeplace_obj->status != 0)
|
|
features |= FEATURE_SAFEPLACE;
|
|
if (global_safeplace_obj->status == 2)
|
|
features |= FEATURE_SAFEPLACE_SOFT;
|
|
#endif /* DEFEX_PERMISSIVE_SP */
|
|
#endif /* DEFEX_SAFEPLACE_ENABLE */
|
|
return features;
|
|
}
|
|
|