blob: eebad2b3c5b0f9820285c20274fb5c6a2fb8f982 [file] [log] [blame]
Justin Yun24c29f12017-06-16 18:11:35 +09001# Copyright (C) 2017 The Android Open Source Project
2#
3# Bionic loader config file.
4#
5
6# Don't change the order here. The first pattern that matches with the
Steven Morelandab338c12017-11-28 12:41:56 -08007# absolute path of an executable is selected.
Justin Yun24c29f12017-06-16 18:11:35 +09008dir.system = /system/bin/
9dir.system = /system/xbin/
Inseob Kim25195da2018-05-31 13:03:58 +090010dir.system = /product/bin/
Jiyong Park2498e1b2017-12-12 22:11:47 +090011
12dir.vendor = /odm/bin/
Justin Yun24c29f12017-06-16 18:11:35 +090013dir.vendor = /vendor/bin/
Jiyong Park2498e1b2017-12-12 22:11:47 +090014dir.vendor = /data/nativetest/odm
15dir.vendor = /data/nativetest64/odm
16dir.vendor = /data/benchmarktest/odm
17dir.vendor = /data/benchmarktest64/odm
Justin Yun24c29f12017-06-16 18:11:35 +090018dir.vendor = /data/nativetest/vendor
19dir.vendor = /data/nativetest64/vendor
20dir.vendor = /data/benchmarktest/vendor
21dir.vendor = /data/benchmarktest64/vendor
Jiyong Park2498e1b2017-12-12 22:11:47 +090022
Justin Yun24c29f12017-06-16 18:11:35 +090023dir.system = /data/nativetest
24dir.system = /data/nativetest64
25dir.system = /data/benchmarktest
26dir.system = /data/benchmarktest64
27
Jiyong Parkd7e6cb22018-03-20 01:12:31 +090028dir.postinstall = /postinstall
29
Justin Yun24c29f12017-06-16 18:11:35 +090030[system]
31additional.namespaces = sphal,vndk,rs
32
33###############################################################################
34# "default" namespace
35#
Jiyong Park55f05d72017-08-28 14:42:49 +090036# Framework-side code runs in this namespace. Libs from /vendor partition
Justin Yun24c29f12017-06-16 18:11:35 +090037# can't be loaded in this namespace.
38###############################################################################
Jiyong Park55f05d72017-08-28 14:42:49 +090039namespace.default.isolated = true
Justin Yun24c29f12017-06-16 18:11:35 +090040
Inseob Kim67cb0562018-05-04 11:39:12 +090041namespace.default.search.paths = /system/${LIB}
42namespace.default.search.paths += /product/${LIB}
Jiyong Park2498e1b2017-12-12 22:11:47 +090043
44# We can't have entire /system/${LIB} as permitted paths because doing so
45# makes it possible to load libs in /system/${LIB}/vndk* directories by
46# their absolute paths (e.g. dlopen("/system/lib/vndk/libbase.so");).
47# VNDK libs are built with previous versions of Android and thus must not be
48# loaded into this namespace where libs built with the current version of
49# Android are loaded. Mixing the two types of libs in the same namespace can
50# cause unexpected problem.
51namespace.default.permitted.paths = /system/${LIB}/drm
52namespace.default.permitted.paths += /system/${LIB}/extractors
53namespace.default.permitted.paths += /system/${LIB}/hw
Inseob Kim67cb0562018-05-04 11:39:12 +090054namespace.default.permitted.paths += /product/${LIB}
Inseob Kim39189362018-06-18 13:21:45 +090055namespace.default.permitted.paths += /system/product/${LIB}
Jiyong Park2498e1b2017-12-12 22:11:47 +090056# These are where odex files are located. libart has to be able to dlopen the files
57namespace.default.permitted.paths += /system/framework
58namespace.default.permitted.paths += /system/app
59namespace.default.permitted.paths += /system/priv-app
60namespace.default.permitted.paths += /vendor/framework
61namespace.default.permitted.paths += /vendor/app
62namespace.default.permitted.paths += /vendor/priv-app
Bowgo Tsai39476ff2018-03-14 16:19:03 +080063namespace.default.permitted.paths += /odm/framework
64namespace.default.permitted.paths += /odm/app
65namespace.default.permitted.paths += /odm/priv-app
Jiyong Park2498e1b2017-12-12 22:11:47 +090066namespace.default.permitted.paths += /oem/app
Jaekyun Seokdff165d2017-11-28 12:10:10 +090067namespace.default.permitted.paths += /product/framework
68namespace.default.permitted.paths += /product/app
69namespace.default.permitted.paths += /product/priv-app
Inseob Kim39189362018-06-18 13:21:45 +090070namespace.default.permitted.paths += /system/product/framework
71namespace.default.permitted.paths += /system/product/app
72namespace.default.permitted.paths += /system/product/priv-app
Jiyong Park2498e1b2017-12-12 22:11:47 +090073namespace.default.permitted.paths += /data
74namespace.default.permitted.paths += /mnt/expand
75
76namespace.default.asan.search.paths = /data/asan/system/${LIB}
77namespace.default.asan.search.paths += /system/${LIB}
Inseob Kim67cb0562018-05-04 11:39:12 +090078namespace.default.asan.search.paths += /data/asan/product/${LIB}
79namespace.default.asan.search.paths += /product/${LIB}
Jiyong Park2498e1b2017-12-12 22:11:47 +090080
81namespace.default.asan.permitted.paths = /data
82namespace.default.asan.permitted.paths += /system/${LIB}/drm
83namespace.default.asan.permitted.paths += /system/${LIB}/extractors
84namespace.default.asan.permitted.paths += /system/${LIB}/hw
85namespace.default.asan.permitted.paths += /system/framework
86namespace.default.asan.permitted.paths += /system/app
87namespace.default.asan.permitted.paths += /system/priv-app
88namespace.default.asan.permitted.paths += /vendor/framework
89namespace.default.asan.permitted.paths += /vendor/app
90namespace.default.asan.permitted.paths += /vendor/priv-app
Bowgo Tsai39476ff2018-03-14 16:19:03 +080091namespace.default.asan.permitted.paths += /odm/framework
92namespace.default.asan.permitted.paths += /odm/app
93namespace.default.asan.permitted.paths += /odm/priv-app
Jiyong Park2498e1b2017-12-12 22:11:47 +090094namespace.default.asan.permitted.paths += /oem/app
Inseob Kim67cb0562018-05-04 11:39:12 +090095namespace.default.asan.permitted.paths += /product/${LIB}
Jaekyun Seokdff165d2017-11-28 12:10:10 +090096namespace.default.asan.permitted.paths += /product/framework
97namespace.default.asan.permitted.paths += /product/app
98namespace.default.asan.permitted.paths += /product/priv-app
Inseob Kim39189362018-06-18 13:21:45 +090099namespace.default.asan.permitted.paths += /system/product/${LIB}
100namespace.default.asan.permitted.paths += /system/product/framework
101namespace.default.asan.permitted.paths += /system/product/app
102namespace.default.asan.permitted.paths += /system/product/priv-app
Jiyong Park2498e1b2017-12-12 22:11:47 +0900103namespace.default.asan.permitted.paths += /mnt/expand
Justin Yun24c29f12017-06-16 18:11:35 +0900104
105###############################################################################
106# "sphal" namespace
107#
108# SP-HAL(Sameprocess-HAL)s are the only vendor libraries that are allowed to be
109# loaded inside system processes. libEGL_<chipset>.so, libGLESv2_<chipset>.so,
110# android.hardware.graphics.mapper@2.0-impl.so, etc are SP-HALs.
111#
112# This namespace is exclusivly for SP-HALs. When the framework tries to dynami-
113# cally load SP-HALs, android_dlopen_ext() is used to explicitly specifying
114# that they should be searched and loaded from this namespace.
115#
116# Note that there is no link from the default namespace to this namespace.
117###############################################################################
118namespace.sphal.isolated = true
119namespace.sphal.visible = true
Justin Yun24c29f12017-06-16 18:11:35 +0900120
Jiyong Park2498e1b2017-12-12 22:11:47 +0900121namespace.sphal.search.paths = /odm/${LIB}
122namespace.sphal.search.paths += /vendor/${LIB}
123
124namespace.sphal.permitted.paths = /odm/${LIB}
125namespace.sphal.permitted.paths += /vendor/${LIB}
126
127namespace.sphal.asan.search.paths = /data/asan/odm/${LIB}
128namespace.sphal.asan.search.paths += /odm/${LIB}
129namespace.sphal.asan.search.paths += /data/asan/vendor/${LIB}
130namespace.sphal.asan.search.paths += /vendor/${LIB}
131
132namespace.sphal.asan.permitted.paths = /data/asan/odm/${LIB}
133namespace.sphal.asan.permitted.paths += /odm/${LIB}
134namespace.sphal.asan.permitted.paths += /data/asan/vendor/${LIB}
135namespace.sphal.asan.permitted.paths += /vendor/${LIB}
Justin Yun24c29f12017-06-16 18:11:35 +0900136
137# Once in this namespace, access to libraries in /system/lib is restricted. Only
138# libs listed here can be used.
139namespace.sphal.links = default,vndk,rs
140
Jiyong Park2498e1b2017-12-12 22:11:47 +0900141namespace.sphal.link.default.shared_libs = %LLNDK_LIBRARIES%
142namespace.sphal.link.default.shared_libs += %SANITIZER_RUNTIME_LIBRARIES%
Justin Yun24c29f12017-06-16 18:11:35 +0900143
Jiyong Park36798462017-08-04 19:08:06 +0900144namespace.sphal.link.vndk.shared_libs = %VNDK_SAMEPROCESS_LIBRARIES%
Justin Yun24c29f12017-06-16 18:11:35 +0900145
146# Renderscript gets separate namespace
147namespace.sphal.link.rs.shared_libs = libRS_internal.so
148
149###############################################################################
150# "rs" namespace
151#
152# This namespace is exclusively for Renderscript internal libraries.
153# This namespace has slightly looser restriction than the vndk namespace because
154# of the genuine characteristics of Renderscript; /data is in the permitted path
155# to load the compiled *.so file and libmediandk.so can be used here.
156###############################################################################
157namespace.rs.isolated = true
158namespace.rs.visible = true
Justin Yun24c29f12017-06-16 18:11:35 +0900159
Jiyong Park60a29662017-12-13 16:59:21 +0900160namespace.rs.search.paths = /odm/${LIB}/vndk-sp
161namespace.rs.search.paths += /vendor/${LIB}/vndk-sp
Justin Yuncbbf1952018-01-16 11:46:21 +0900162namespace.rs.search.paths += /system/${LIB}/vndk-sp%VNDK_VER%
Jiyong Park2498e1b2017-12-12 22:11:47 +0900163namespace.rs.search.paths += /odm/${LIB}
164namespace.rs.search.paths += /vendor/${LIB}
165
166namespace.rs.permitted.paths = /odm/${LIB}
167namespace.rs.permitted.paths += /vendor/${LIB}
168namespace.rs.permitted.paths += /data
169
Jiyong Park60a29662017-12-13 16:59:21 +0900170namespace.rs.asan.search.paths = /data/asan/odm/${LIB}/vndk-sp
171namespace.rs.asan.search.paths += /odm/${LIB}/vndk-sp
172namespace.rs.asan.search.paths += /data/asan/vendor/${LIB}/vndk-sp
173namespace.rs.asan.search.paths += /vendor/${LIB}/vndk-sp
Justin Yuncbbf1952018-01-16 11:46:21 +0900174namespace.rs.asan.search.paths += /data/asan/system/${LIB}/vndk-sp%VNDK_VER%
175namespace.rs.asan.search.paths += /system/${LIB}/vndk-sp%VNDK_VER%
Jiyong Park2498e1b2017-12-12 22:11:47 +0900176namespace.rs.asan.search.paths += /data/asan/odm/${LIB}
177namespace.rs.asan.search.paths += /odm/${LIB}
178namespace.rs.asan.search.paths += /data/asan/vendor/${LIB}
179namespace.rs.asan.search.paths += /vendor/${LIB}
180
181namespace.rs.asan.permitted.paths = /data/asan/odm/${LIB}
182namespace.rs.asan.permitted.paths += /odm/${LIB}
183namespace.rs.asan.permitted.paths += /data/asan/vendor/${LIB}
184namespace.rs.asan.permitted.paths += /vendor/${LIB}
185namespace.rs.asan.permitted.paths += /data
Justin Yun24c29f12017-06-16 18:11:35 +0900186
187namespace.rs.links = default,vndk
Jiyong Park2498e1b2017-12-12 22:11:47 +0900188
189namespace.rs.link.default.shared_libs = %LLNDK_LIBRARIES%
190namespace.rs.link.default.shared_libs += %SANITIZER_RUNTIME_LIBRARIES%
Jiyong Parkad7ddd52017-12-07 09:59:48 +0900191# Private LLNDK libs (e.g. libft2.so) are exceptionally allowed to this
192# namespace because RS framework libs are using them.
193namespace.rs.link.default.shared_libs += %PRIVATE_LLNDK_LIBRARIES%
Jiyong Park2498e1b2017-12-12 22:11:47 +0900194
Jiyong Park36798462017-08-04 19:08:06 +0900195namespace.rs.link.vndk.shared_libs = %VNDK_SAMEPROCESS_LIBRARIES%
Justin Yun24c29f12017-06-16 18:11:35 +0900196
197###############################################################################
198# "vndk" namespace
199#
200# This namespace is exclusively for vndk-sp libs.
201###############################################################################
202namespace.vndk.isolated = true
Jiyong Parka07f3052017-08-22 10:26:10 +0900203namespace.vndk.visible = true
Justin Yun24c29f12017-06-16 18:11:35 +0900204
Jiyong Park60a29662017-12-13 16:59:21 +0900205namespace.vndk.search.paths = /odm/${LIB}/vndk-sp
206namespace.vndk.search.paths += /vendor/${LIB}/vndk-sp
Justin Yuncbbf1952018-01-16 11:46:21 +0900207namespace.vndk.search.paths += /system/${LIB}/vndk-sp%VNDK_VER%
Jiyong Park2498e1b2017-12-12 22:11:47 +0900208
209namespace.vndk.permitted.paths = /odm/${LIB}/hw
210namespace.vndk.permitted.paths += /odm/${LIB}/egl
211namespace.vndk.permitted.paths += /vendor/${LIB}/hw
212namespace.vndk.permitted.paths += /vendor/${LIB}/egl
213# This is exceptionally required since android.hidl.memory@1.0-impl.so is here
Justin Yuncbbf1952018-01-16 11:46:21 +0900214namespace.vndk.permitted.paths += /system/${LIB}/vndk-sp%VNDK_VER%/hw
Jiyong Park2498e1b2017-12-12 22:11:47 +0900215
Jiyong Park60a29662017-12-13 16:59:21 +0900216namespace.vndk.asan.search.paths = /data/asan/odm/${LIB}/vndk-sp
217namespace.vndk.asan.search.paths += /odm/${LIB}/vndk-sp
218namespace.vndk.asan.search.paths += /data/asan/vendor/${LIB}/vndk-sp
219namespace.vndk.asan.search.paths += /vendor/${LIB}/vndk-sp
Justin Yuncbbf1952018-01-16 11:46:21 +0900220namespace.vndk.asan.search.paths += /data/asan/system/${LIB}/vndk-sp%VNDK_VER%
221namespace.vndk.asan.search.paths += /system/${LIB}/vndk-sp%VNDK_VER%
Jiyong Park2498e1b2017-12-12 22:11:47 +0900222
223namespace.vndk.asan.permitted.paths = /data/asan/odm/${LIB}/hw
224namespace.vndk.asan.permitted.paths += /odm/${LIB}/hw
225namespace.vndk.asan.permitted.paths += /data/asan/odm/${LIB}/egl
226namespace.vndk.asan.permitted.paths += /odm/${LIB}/egl
227namespace.vndk.asan.permitted.paths += /data/asan/vendor/${LIB}/hw
228namespace.vndk.asan.permitted.paths += /vendor/${LIB}/hw
229namespace.vndk.asan.permitted.paths += /data/asan/vendor/${LIB}/egl
230namespace.vndk.asan.permitted.paths += /vendor/${LIB}/egl
231
Justin Yuncbbf1952018-01-16 11:46:21 +0900232namespace.vndk.asan.permitted.paths += /data/asan/system/${LIB}/vndk-sp%VNDK_VER%/hw
233namespace.vndk.asan.permitted.paths += /system/${LIB}/vndk-sp%VNDK_VER%/hw
Justin Yun24c29f12017-06-16 18:11:35 +0900234
Logan Chien86677472018-03-29 14:08:48 +0800235# The "vndk" namespace links to "default" namespace for LLNDK libs and links to
236# "sphal" namespace for vendor libs. The ordering matters. The "default"
237# namespace has higher priority than the "sphal" namespace.
238namespace.vndk.links = default,sphal
239
Justin Yun24c29f12017-06-16 18:11:35 +0900240# When these NDK libs are required inside this namespace, then it is redirected
241# to the default namespace. This is possible since their ABI is stable across
242# Android releases.
Jiyong Park2498e1b2017-12-12 22:11:47 +0900243namespace.vndk.link.default.shared_libs = %LLNDK_LIBRARIES%
244namespace.vndk.link.default.shared_libs += %SANITIZER_RUNTIME_LIBRARIES%
Justin Yun24c29f12017-06-16 18:11:35 +0900245
Logan Chien86677472018-03-29 14:08:48 +0800246# Allow VNDK-SP extensions to use vendor libraries
247namespace.vndk.link.sphal.allow_all_shared_libs = true
248
Justin Yun24c29f12017-06-16 18:11:35 +0900249###############################################################################
250# Namespace config for vendor processes. In O, no restriction is enforced for
251# them. However, in O-MR1, access to /system/${LIB} will not be allowed to
252# the default namespace. 'system' namespace will be added to give limited
253# (LL-NDK only) access.
254###############################################################################
255[vendor]
Logan Chien225b71d2017-12-15 22:19:57 +0800256additional.namespaces = system,vndk
Justin Yun24c29f12017-06-16 18:11:35 +0900257
258###############################################################################
259# "default" namespace
260#
Jiyong Parkad7ddd52017-12-07 09:59:48 +0900261# This is the default linker namespace for a vendor process (a process started
262# from /vendor/bin/*). The main executable and the libs under /vendor/lib[64]
263# are loaded directly into this namespace. However, other libs under the system
264# partition (VNDK and LLNDK libraries) are not loaded here but from the
265# separate namespace 'system'. The delegation to the system namespace is done
266# via the 'namespace.default.link.system.shared_libs' property below.
Justin Yun24c29f12017-06-16 18:11:35 +0900267###############################################################################
268namespace.default.isolated = true
269namespace.default.visible = true
270
Jiyong Park2498e1b2017-12-12 22:11:47 +0900271namespace.default.search.paths = /odm/${LIB}
Jiyong Park2498e1b2017-12-12 22:11:47 +0900272namespace.default.search.paths += /vendor/${LIB}
Justin Yun24c29f12017-06-16 18:11:35 +0900273
Jiyong Park2498e1b2017-12-12 22:11:47 +0900274namespace.default.permitted.paths = /odm
275namespace.default.permitted.paths += /vendor
276
277namespace.default.asan.search.paths = /data/asan/odm/${LIB}
278namespace.default.asan.search.paths += /odm/${LIB}
Jiyong Park2498e1b2017-12-12 22:11:47 +0900279namespace.default.asan.search.paths += /data/asan/vendor/${LIB}
280namespace.default.asan.search.paths += /vendor/${LIB}
Jiyong Park2498e1b2017-12-12 22:11:47 +0900281
Jiyong Park2498e1b2017-12-12 22:11:47 +0900282namespace.default.asan.permitted.paths = /data/asan/odm
283namespace.default.asan.permitted.paths += /odm
284namespace.default.asan.permitted.paths += /data/asan/vendor
285namespace.default.asan.permitted.paths += /vendor
Justin Yun24c29f12017-06-16 18:11:35 +0900286
Logan Chien225b71d2017-12-15 22:19:57 +0800287namespace.default.links = system,vndk
288namespace.default.link.system.shared_libs = %LLNDK_LIBRARIES%
289namespace.default.link.vndk.shared_libs = %VNDK_SAMEPROCESS_LIBRARIES%
290namespace.default.link.vndk.shared_libs += %VNDK_CORE_LIBRARIES%
291
292###############################################################################
293# "vndk" namespace
294#
295# This namespace is where VNDK and VNDK-SP libraries are loaded for
296# a vendor process.
297###############################################################################
298namespace.vndk.isolated = false
299
Logan Chien91b3fb42018-01-11 20:00:37 +0800300namespace.vndk.search.paths = /odm/${LIB}/vndk
301namespace.vndk.search.paths += /odm/${LIB}/vndk-sp
302namespace.vndk.search.paths += /vendor/${LIB}/vndk
303namespace.vndk.search.paths += /vendor/${LIB}/vndk-sp
304namespace.vndk.search.paths += /system/${LIB}/vndk-sp%VNDK_VER%
Justin Yuncbbf1952018-01-16 11:46:21 +0900305namespace.vndk.search.paths += /system/${LIB}/vndk%VNDK_VER%
Logan Chien225b71d2017-12-15 22:19:57 +0800306
Logan Chien91b3fb42018-01-11 20:00:37 +0800307namespace.vndk.asan.search.paths = /data/asan/odm/${LIB}/vndk
308namespace.vndk.asan.search.paths += /odm/${LIB}/vndk
309namespace.vndk.asan.search.paths += /data/asan/odm/${LIB}/vndk-sp
310namespace.vndk.asan.search.paths += /odm/${LIB}/vndk-sp
311namespace.vndk.asan.search.paths += /data/asan/vendor/${LIB}/vndk
312namespace.vndk.asan.search.paths += /vendor/${LIB}/vndk
313namespace.vndk.asan.search.paths += /data/asan/vendor/${LIB}/vndk-sp
314namespace.vndk.asan.search.paths += /vendor/${LIB}/vndk-sp
315namespace.vndk.asan.search.paths += /data/asan/system/${LIB}/vndk-sp%VNDK_VER%
Justin Yuncbbf1952018-01-16 11:46:21 +0900316namespace.vndk.asan.search.paths += /system/${LIB}/vndk-sp%VNDK_VER%
317namespace.vndk.asan.search.paths += /data/asan/system/${LIB}/vndk%VNDK_VER%
318namespace.vndk.asan.search.paths += /system/${LIB}/vndk%VNDK_VER%
Logan Chien225b71d2017-12-15 22:19:57 +0800319
320# When these NDK libs are required inside this namespace, then it is redirected
321# to the system namespace. This is possible since their ABI is stable across
322# Android releases.
Logan Chienea4a2bd2018-01-18 12:06:14 +0800323namespace.vndk.links = system,default
Logan Chien225b71d2017-12-15 22:19:57 +0800324namespace.vndk.link.system.shared_libs = %LLNDK_LIBRARIES%
325namespace.vndk.link.system.shared_libs += %SANITIZER_RUNTIME_LIBRARIES%
Justin Yun24c29f12017-06-16 18:11:35 +0900326
Logan Chienea4a2bd2018-01-18 12:06:14 +0800327namespace.vndk.link.default.allow_all_shared_libs = true
328
Justin Yun24c29f12017-06-16 18:11:35 +0900329###############################################################################
330# "system" namespace
331#
Jiyong Parkad7ddd52017-12-07 09:59:48 +0900332# This namespace is where system libs (VNDK and LLNDK libs) are loaded for
333# a vendor process.
Justin Yun24c29f12017-06-16 18:11:35 +0900334###############################################################################
335namespace.system.isolated = false
Justin Yun24c29f12017-06-16 18:11:35 +0900336
Inseob Kim67cb0562018-05-04 11:39:12 +0900337namespace.system.search.paths = /system/${LIB}
338namespace.system.search.paths += /product/${LIB}
Jiyong Park2498e1b2017-12-12 22:11:47 +0900339
Logan Chien225b71d2017-12-15 22:19:57 +0800340namespace.system.asan.search.paths = /data/asan/system/${LIB}
Jiyong Park2498e1b2017-12-12 22:11:47 +0900341namespace.system.asan.search.paths += /system/${LIB}
Inseob Kim67cb0562018-05-04 11:39:12 +0900342namespace.system.asan.search.paths += /data/asan/product/${LIB}
343namespace.system.asan.search.paths += /product/${LIB}
Jiyong Parkd7e6cb22018-03-20 01:12:31 +0900344
345###############################################################################
346# Namespace config for binaries under /postinstall.
347# Only one default namespace is defined and it has no directories other than
348# /system/lib in the search paths. This is because linker calls realpath on the
349# search paths and this causes selinux denial if the paths (/vendor, /odm) are
350# not allowed to the poinstall binaries. There is no reason to allow the
351# binaries to access the paths.
352###############################################################################
353[postinstall]
354namespace.default.isolated = false
Inseob Kim67cb0562018-05-04 11:39:12 +0900355namespace.default.search.paths = /system/${LIB}
356namespace.default.search.paths += /product/${LIB}