platform_system_sepolicy/flagging/te_macros
Inseob Kim 8697fc80fd Add macro for board API level guard
'starting_at_board_api' macro is added to guard system/sepolicy/public
types and attributes. The macro will work only when compiling vendor/odm
sepolicy. When compiling platform sepolicy (system / system_ext /
product), rules will always be included, regardless of board API level.

Policy authors should guard new public types and attributes with this
macro, similar to LLNDK. The new types and attributes will be exposed
since next vFRC release.

Bug: 330671090
Test: manually build with various board API level, see output
Change-Id: I03c601ce8fe1f77c7608dc488317d20276fd2d47
2024-04-19 10:33:38 +09:00

24 lines
1.1 KiB
Text

####################################
# is_flag_enabled(flag, rules)
# SELinux rules which apply only if given feature is turned on
define(`is_flag_enabled', `ifelse(target_flag_$1, `true', `$2')')
####################################
# is_flag_disabled(flag, rules)
# SELinux rules which apply only if given feature is turned off
define(`is_flag_disabled', `ifelse(target_flag_$1, `true', , `$2')')
####################################
# starting_at_board_api(api_level, rules)
#
# This macro conditionally exposes SELinux rules within system/sepolicy/public,
# ensuring they are available to vendors only when the board API level is at or
# above the specified 'api_level'.
#
# * Platform sepolicy: Rules are always enabled, regardless of API level.
# * Vendor sepolicy: Rules are enabled only when the board API level meets or
# exceeds the value provided in 'api_level'.
#
# Apply this macro to public types and attributes (in system/sepolicy/public) to
# restrict vendor access based on board API level.
define(`starting_at_board_api', `ifelse(eval(target_board_api_level >= $1), 1, `$2')')