1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
|
-- Author: Lauri T. Aarnio
-- Copyright (C) 2007 Lauri Leukkunen <lle@rahina.org>
-- Copyright (c) 2009 Nokia Corporation.
-- Licensed under MIT license.
--
-- "accel" mode = build accelerator mode, to be used for software
-- development & building when the rootstrap and the tools are "twins":
-- Built from the same sources, but tools contains native binaries while
-- the rootstrap contains target binaries.
-- Rule file interface version, mandatory.
--
rule_file_interface_version = "21"
----------------------------------
tools = tools_root
if (not tools) then
tools = "/"
end
sb2_share_dir = sbox_user_home_dir.."/.scratchbox2/"..sbox_target.."/share"
-- =========== Exec policies: ===========
--
-- For tools: If tools_root is set and libsb2 has been installed there,
-- then dynamic libraries can be used from tools_root (otherwise we'll
-- be using the libs from the host OS)
devel_mode_tools_ld_so = nil -- default = not needed
devel_mode_tools_ld_library_path = nil -- default = not needed
-- localization support for tools
devel_mode_locale_path = nil
if ((tools_root ~= nil) and conf_tools_sb2_installed) then
if (conf_tools_ld_so ~= nil) then
-- Ok to use dynamic libraries from tools!
devel_mode_tools_ld_so = conf_tools_ld_so
devel_mode_tools_ld_library_path = conf_tools_ld_so_library_path
end
if (conf_tools_locale_path ~= nil) then
-- use locales from tools
devel_mode_locale_path = conf_tools_locale_path
end
end
tools_script_interp_rules = {
rules = {
{dir = "/scratchbox/tools/bin",
replace_by = tools .. "/usr/bin", log_level = "warning"},
{prefix = "/", map_to = tools}
}
}
exec_policy_tools = {
name = "Tools",
native_app_ld_so = devel_mode_tools_ld_so,
native_app_ld_so_supports_argv0 = conf_tools_ld_so_supports_argv0,
native_app_ld_library_path = devel_mode_tools_ld_library_path,
native_app_locale_path = devel_mode_locale_path,
script_log_level = "debug",
script_log_message = "SCRIPT from tools",
script_interpreter_rules = tools_script_interp_rules,
script_set_argv0_to_mapped_interpreter = true,
}
exec_policy_tools_perl = {
name = "Tools-perl",
native_app_ld_so = devel_mode_tools_ld_so,
native_app_ld_so_supports_argv0 = conf_tools_ld_so_supports_argv0,
native_app_ld_library_path = devel_mode_tools_ld_library_path,
native_app_locale_path = devel_mode_locale_path,
script_log_level = "debug",
script_log_message = "SCRIPT from tools (t.p)",
script_interpreter_rules = tools_script_interp_rules,
script_set_argv0_to_mapped_interpreter = true,
}
exec_policy_tools_python = {
name = "Tools-python",
native_app_ld_so = devel_mode_tools_ld_so,
native_app_ld_so_supports_argv0 = conf_tools_ld_so_supports_argv0,
native_app_ld_library_path = devel_mode_tools_ld_library_path,
native_app_locale_path = devel_mode_locale_path,
script_log_level = "debug",
script_log_message = "SCRIPT from tools (t.p)",
script_interpreter_rules = tools_script_interp_rules,
script_set_argv0_to_mapped_interpreter = true,
}
-- For target binaries:
-- First, note that "foreign" binaries are easy to handle, no problem there.
-- But if CPU transparency method has not been set, then host CPU == target CPU:
-- we have "target's native" and "host's native" binaries, that would look
-- identical (and valid!) to the kernel. But they need to use different
-- loaders and dynamic libraries! The solution is that we use the location
-- (as determined by the mapping engine) to decide the execution policy.
devel_mode_target_ld_so = nil -- default = not needed
devel_mode_target_ld_library_path = nil -- default = not needed
if (conf_target_sb2_installed) then
if (conf_target_ld_so ~= nil) then
-- use dynamic libraries from target,
-- when executing native binaries!
devel_mode_target_ld_so = conf_target_ld_so
devel_mode_target_ld_library_path = conf_target_ld_so_library_path
-- FIXME: This exec policy should process (map components of)
-- the current value of LD_LIBRARY_PATH, and add the results
-- to devel_mode_target_ld_library_path just before exec.
-- This has not been done yet.
end
end
exec_policy_target = {
name = "Rootstrap",
native_app_ld_so = devel_mode_target_ld_so,
native_app_ld_so_supports_argv0 = conf_target_ld_so_supports_argv0,
native_app_ld_library_path = devel_mode_target_ld_library_path,
native_app_locale_path = conf_target_locale_path,
}
--
-- For real host binaries:
exec_policy_host_os = {
name = "Host",
log_level = "debug",
log_message = "executing in host OS mode",
script_interpreter_rules = {
rules = {
{prefix = "/", use_orig_path = true}
}
},
}
-- =========== Actions for conditional rules ===========
test_first_target_then_tools_default_is_target = {
{ if_exists_then_map_to = target_root, readonly = true },
{ if_exists_then_map_to = tools, readonly = true },
{ map_to = target_root, readonly = true }
}
test_first_tools_default_is_target = {
{ if_exists_then_map_to = tools, readonly = true },
{ map_to = target_root, readonly = true }
}
perl_lib_test = {
{ if_active_exec_policy_is = "Tools-perl",
map_to = tools, readonly = true },
{ if_active_exec_policy_is = "Rootstrap",
map_to = target_root, readonly = true },
{ if_active_exec_policy_is = "Host",
use_orig_path = true, readonly = true },
{ map_to = target_root, readonly = true }
}
perl_bin_test = {
{ if_redirect_ignore_is_active = "/usr/bin/perl",
map_to = target_root, readonly = true },
{ if_redirect_force_is_active = "/usr/bin/perl",
map_to = tools, readonly = true,
exec_policy = exec_policy_tools_perl },
{ if_active_exec_policy_is = "Rootstrap",
map_to = target_root, readonly = true },
{ if_active_exec_policy_is = "Tools-perl",
map_to = tools, readonly = true },
{ map_to = target_root, readonly = true }
}
python_bin_test = {
{ if_redirect_ignore_is_active = "/usr/bin/python",
map_to = target_root, readonly = true },
{ if_redirect_force_is_active = "/usr/bin/python",
map_to = tools, readonly = true,
exec_policy = exec_policy_tools_python },
{ if_active_exec_policy_is = "Rootstrap",
map_to = target_root, readonly = true },
{ if_active_exec_policy_is = "Tools-python",
map_to = tools, readonly = true },
{ map_to = target_root, readonly = true }
}
python_lib_test = {
{ if_active_exec_policy_is = "Tools-python",
map_to = tools, readonly = true },
{ if_active_exec_policy_is = "Rootstrap",
map_to = target_root, readonly = true },
{ if_active_exec_policy_is = "Host",
use_orig_path = true, readonly = true },
{ map_to = target_root, readonly = true }
}
terminfo_test = {
{ if_active_exec_policy_is = "Tools",
map_to = tools, readonly = true },
{ if_active_exec_policy_is = "Rootstrap",
map_to = target_root, readonly = true },
{ if_active_exec_policy_is = "Host",
use_orig_path = true, readonly = true },
{ map_to = target_root, readonly = true }
}
--
-- Message catalogs (LC_MESSAGES) are taken based on
-- active exec policy.
--
message_catalog_test = {
{ if_active_exec_policy_is = "Tools",
map_to = tools, readonly = true },
{ if_active_exec_policy_is = "Rootstrap",
map_to = target_root, readonly = true },
{ if_active_exec_policy_is = "Host",
use_orig_path = true, readonly = true },
{ map_to = target_root, readonly = true }
}
-- =========== Mapping rule chains ===========
-- Used when dir = "/usr/share":
devel_mode_rules_usr_share = {
rules = {
-- -----------------------------------------------
-- 1. General SB2 environment:
{prefix = sbox_dir .. "/share/scratchbox2/host_usr",
replace_by = "/usr", readonly = true},
{prefix = sbox_dir .. "/share/scratchbox2",
use_orig_path = true, readonly = true},
-- -----------------------------------------------
-- Perl:
{prefix = "/usr/share/perl", actions = perl_lib_test},
-- Python:
{prefix = "/usr/share/python", actions = python_lib_test},
{prefix = "/usr/share/pygobject", actions = python_lib_test},
-- -----------------------------------------------
{dir = "/usr/share/aclocal", map_to = target_root,
readonly = true},
-- 100. DEFAULT RULES:
{prefix = "/usr/share",
actions = test_first_target_then_tools_default_is_target},
}
}
-- Used when dir = "/usr/bin":
devel_mode_rules_usr_bin = {
rules = {
-- -----------------------------------------------
-- 1. General SB2 environment:
{prefix = "/usr/bin/sb2-",
use_orig_path = true, readonly = true},
-- -----------------------------------------------
-- 20. /usr/bin/*:
-- tools that need special processing:
{prefix = "/usr/bin/host-",
use_orig_path = true, readonly = true},
-- "localedef" *must* be used from the target, the version
-- which exists in tools_root appers to work but doesn't..
{path = "/usr/bin/localedef", map_to = target_root,
readonly = true},
-- "chrpath" comes from target, too, but we haven't
-- verified what happens if it was used from tools.
{path = "/usr/bin/chrpath", map_to = target_root,
readonly = true},
-- 19. perl & python:
-- processing depends on SBOX_REDIRECT_IGNORE,
-- SBOX_REDIRECT_FORCE and
-- name of the current mapping mode.
-- (these are real prefixes, version number may
-- be included in the name (/usr/bin/python2.5 etc))
{prefix = "/usr/bin/perl", actions = perl_bin_test},
{prefix = "/usr/bin/python", actions = python_bin_test},
-- next, automatically generated rules for /usr/bin:
{dir = "/usr/bin", chain = argvmods_rules_for_usr_bin,
virtual_path = true}, -- don't reverse these.
-- and finally, the default:
{dir = "/usr/bin",
actions = test_first_tools_default_is_target},
}
}
-- Used when dir = "/usr":
devel_mode_rules_usr = {
rules = {
{dir = "/usr/share", chain = devel_mode_rules_usr_share},
{dir = "/usr/bin", chain = devel_mode_rules_usr_bin},
-- -----------------------------------------------
-- 40. /usr/lib/*
-- Most of /usr/lib should come from target_root, but
-- there are exceptions: Some tools have private subdirectories
-- there.
{prefix = "/usr/lib/gcc", map_to = tools, readonly = true},
{prefix = "/usr/lib/perl", actions = perl_lib_test},
{prefix = "/usr/lib/python", actions = python_lib_test},
{prefix = "/usr/lib/dpkg", map_to = tools, readonly = true},
{prefix = "/usr/lib/apt", map_to = tools, readonly = true},
{prefix = "/usr/lib/libfakeroot", map_to = tools, readonly = true},
{prefix = "/usr/lib",
actions = test_first_target_then_tools_default_is_target},
-- -----------------------------------------------
-- 50. /usr/src/*
{path = "/usr/src", map_to = target_root, readonly = true},
{prefix = "/usr/src/", map_to = target_root, readonly = true},
-- -----------------------------------------------
-- 55. X11 (/usr/X11R6/*)
{prefix = "/usr/X11R6/lib", map_to = target_root,
readonly = true},
{prefix = "/usr/X11R6/include", map_to = target_root,
readonly = true},
-- -----------------------------------------------
-- 60. /usr/include/*
{prefix = "/usr/include", map_to = target_root,
readonly = true},
-- -----------------------------------------------
{dir = "/usr/sbin",
actions = test_first_tools_default_is_target},
-- -----------------------------------------------
-- 100. DEFAULT RULES:
-- the root directory must not be mapped:
-- "standard" directories are mapped to tools_root,
-- but everything else defaults to the host system
-- (so that things like /mnt, /media and /opt are
-- used from the host)
{prefix = "/usr", map_to = tools, readonly = true},
}
}
devel_mode_rules_etc = {
rules = {
-- -----------------------------------------------
-- 70. /etc/*
--
{prefix = "/etc/gconf/2", map_to = target_root,
readonly = true},
{prefix = "/etc/dbus-1", map_to = target_root,
readonly = true},
{prefix = "/etc/osso-af-init", map_to = target_root,
readonly = true},
{prefix = "/etc/gtk-2.0", map_to = target_root,
readonly = true},
{prefix = "/etc/apt", map_to = target_root, readonly = true},
{prefix = "/etc/terminfo", actions = terminfo_test},
-- Perl & Python:
{prefix = "/etc/perl", actions = perl_lib_test},
{prefix = "/etc/python", actions = python_lib_test},
-- Files that must not be mapped:
{prefix = "/etc/resolvconf", use_orig_path = true,
readonly = true},
{prefix = "/etc/resolv.conf",
use_orig_path = true, readonly = true},
{path = "/etc/passwd",
use_orig_path = true, readonly = true},
{path = "/etc/shadow",
use_orig_path = true, readonly = true},
-- default rules:
{dir = "/etc",
actions = test_first_target_then_tools_default_is_target},
}
}
devel_mode_rules_var = {
rules = {
-- -----------------------------------------------
-- 80. /var/*
{prefix = "/var/run/resolvconf", use_orig_path = true,
readonly = true},
{prefix = "/var/run", map_to = session_dir},
-- files from package "xkbutils":
{prefix = "/var/lib/xkb", map_to = target_root,
readonly = true},
-- apt & dpkg:
{prefix = "/var/lib/apt", map_to = target_root,
readonly = true},
{prefix = "/var/cache/apt", map_to = target_root,
readonly = true},
{prefix = "/var/lib/dpkg", map_to = target_root,
readonly = true},
{prefix = "/var/cache/dpkg", map_to = target_root,
readonly = true},
{prefix = "/var/cache/debconf", map_to = target_root,
readonly = true},
{prefix = "/var/lib/dbus", map_to = target_root,
readonly = true},
{prefix = "/var/log", map_to = target_root,
readonly = true},
-- default rules:
{dir = "/var",
actions = test_first_target_then_tools_default_is_target},
}
}
devel_mode_rules_scratchbox1 = {
rules = {
-- -----------------------------------------------
-- 98. Scratchbox 1 emulation rules
-- (some packages have hard-coded paths to the SB1 enviroment;
-- replace those by the correct locations in our environment)
-- (these are marked "virtual"; these won't be reversed)
-- "libtool" for arm
{prefix = "/scratchbox/compilers/cs2005q3.2-glibc2.5-arm/arch_tools/share/libtool",
replace_by = sb2_share_dir .. "/libtool",
log_level = "warning",
readonly = true, virtual_path = true},
-- "libtool" for i386
{prefix = "/scratchbox/compilers/cs2005q3.2-glibc-i386/arch_tools/share",
replace_by = tools .. "/usr/share",
log_level = "warning",
readonly = true, virtual_path = true},
-- compiler tools:
{prefix = "/scratchbox/compilers/bin",
replace_by = "/usr/bin",
log_level = "warning",
readonly = true, virtual_path = true},
-- Scratchbox 1 tools/bin
--
-- set exec_policy for perl & python:
{prefix = "/scratchbox/tools/bin/perl",
replace_by = tools .. "/usr/bin/perl",
exec_policy = exec_policy_tools_perl,
log_level = "warning",
readonly = true, virtual_path = true},
{prefix = "/scratchbox/tools/bin/python",
replace_by = tools .. "/usr/bin/python",
exec_policy = exec_policy_tools_python,
log_level = "warning",
readonly = true, virtual_path = true},
--
-- Other tools:
{prefix = "/scratchbox/tools/bin",
replace_by = tools .. "/usr/bin",
log_level = "warning",
readonly = true, virtual_path = true},
-- "policy-rc.d" checks if scratchbox-version exists,
-- to detect if it is running inside scratchbox..
{prefix = "/scratchbox/etc/scratchbox-version",
replace_by = "/usr/share/scratchbox2/version",
log_level = "warning",
readonly = true, virtual_path = true},
{prefix = "/scratchbox/tools/autotools/automake-1.7/share/automake-1.7",
replace_by = tools .. "/usr/share/automake-1.7",
log_level = "warning",
readonly = true, virtual_path = true},
-- otherwise, don't map /scratchbox, some people still
-- keep their projects there.
{prefix = "/scratchbox", use_orig_path = true},
}
}
simple_chain = {
next_chain = nil,
binary = nil,
rules = {
-- -----------------------------------------------
-- 1. The session directory
{dir = session_dir, use_orig_path = true},
-- -----------------------------------------------
-- 2. Development environment special destinations:
{prefix = "/sb2/wrappers",
replace_by = session_dir .. "/wrappers." .. active_mapmode,
readonly = true},
{prefix = "/sb2/scripts",
replace_by = sbox_dir.."/share/scratchbox2/scripts",
readonly = true},
-- tools_root should not be mapped twice.
{prefix = tools, use_orig_path = true, readonly = true},
-- -----------------------------------------------
-- 5. Maemo SDK+
{prefix = "/opt/maemo",
use_orig_path = true, readonly = true},
-- -----------------------------------------------
-- 10. Home directories
{prefix = sbox_user_home_dir, use_orig_path = true},
-- "user" is a special username at least on the Maemo platform:
-- (but note that if the real user name is "user",
-- our previous rule handled that and this rule won't be used)
{prefix = "/home/user", map_to = target_root},
-- Home directories = not mapped, R/W access
{prefix = "/home", use_orig_path = true},
-- -----------------------------------------------
-- 20. /bin/*:
-- tools that need special processing:
{path = "/bin/sh",
replace_by = tools .. "/bin/bash", readonly = true},
-- -----------------------------------------------
-- 30. /lib/*
--
-- terminfo search path is by default:
-- /etc/terminfo, /lib/terminfo and /usr/share/terminfo
-- we map these depending on active exec policy.
--
-- Other rules are in /etc and /usr/share rules above.
--
{prefix = "/lib/terminfo", actions = terminfo_test},
{prefix = "/lib", map_to = target_root, readonly = true},
-- -----------------------------------------------
-- 40. /usr
{dir = "/usr", chain = devel_mode_rules_usr},
-- -----------------------------------------------
-- 70. /etc/*
--
{dir = "/etc", chain = devel_mode_rules_etc},
-- -----------------------------------------------
-- 80. /var/*
{dir = "/var", chain = devel_mode_rules_var},
-- -----------------------------------------------
-- 85. /tmp
{prefix = "/tmp", map_to = session_dir},
-- -----------------------------------------------
-- 90. Top-level directories that must not be mapped:
{prefix = "/dev", use_orig_path = true},
{dir = "/proc", custom_map_funct = sb2_procfs_mapper,
virtual_path = true},
{prefix = "/sys",
use_orig_path = true, readonly = true},
-- -----------------------------------------------
-- 95. Some virtual paths:
{prefix = "/host_usr", map_to = target_root, readonly = true},
-- unmodified view of the rootstrap, can be used as destination
-- directory when installing stuff to the rootstrap
-- This provides is R/W access to the target_root!
{prefix = "/target_root", replace_by = target_root},
-- -----------------------------------------------
-- 98. Scratchbox 1 emulation rules
-- (some packages have hard-coded paths to the SB1 enviroment;
-- replace those by the correct locations in our environment)
-- (these are marked "virtual"; these won't be reversed)
{dir = "/scratchbox", chain = devel_mode_rules_scratchbox1},
-- -----------------------------------------------
-- 100. DEFAULT RULES:
-- the root directory must not be mapped:
{path = "/", use_orig_path = true},
-- "standard" directories default to tools_root
-- (except that bin and sbin also test for target-
-- specific programs from target_root),
-- but everything else defaults to the host system
-- (so that things like /mnt, /media and /opt are
-- used from the host)
{dir = "/bin",
actions = test_first_tools_default_is_target},
{dir = "/sbin",
actions = test_first_tools_default_is_target},
-- Default = Host, R/W access
{prefix = "/", use_orig_path = true}
}
}
-- Path mapping rules.
export_chains = {
simple_chain
}
-- Exec policy rules.
-- These are used only if the mapping rule did not provide an exec policy.
--
-- Note that the real path (mapped path) is used
-- when looking up rules from here!
devel_exec_policies = {
next_chain = nil,
binary = nil,
rules = {
-- Tools:
-- (tools must be listed first, the tools directory
-- might be under user's home directory)
{prefix = tools .. "/usr/bin/perl",
exec_policy = exec_policy_tools_perl},
{prefix = tools .. "/usr/bin/python",
exec_policy = exec_policy_tools_python},
{prefix = tools, exec_policy = exec_policy_tools},
-- ~/bin probably contains programs for the host OS:
{prefix = sbox_user_home_dir.."/bin",
exec_policy = exec_policy_host_os},
-- Other places under the home directory are expected
-- to contain target binaries:
{prefix = sbox_user_home_dir, exec_policy = exec_policy_target},
-- Target binaries:
{prefix = target_root, exec_policy = exec_policy_target},
-- -----------------------------------------------
-- DEFAULT RULE (must exist):
{prefix = "/", exec_policy = exec_policy_host_os}
}
}
exec_policy_chains = {
devel_exec_policies
}
-- This table lists all exec policies - this is used when the current
-- process wants to locate the currently active policy
all_exec_policies = {
exec_policy_host_os,
exec_policy_target,
exec_policy_tools,
exec_policy_tools_perl,
exec_policy_tools_python,
}
|