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 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
|
#!/usr/bin/env bats
load helpers
@test "run" {
skip_if_no_runtime
_prefetch alpine
${OCI} --version
createrandom ${TEST_SCRATCH_DIR}/randomfile
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah mount $cid
root=$output
run_buildah config --workingdir /tmp $cid
run_buildah run $cid pwd
expect_output "/tmp"
run_buildah config --workingdir /root $cid
run_buildah run $cid pwd
expect_output "/root"
cp ${TEST_SCRATCH_DIR}/randomfile $root/tmp/
run_buildah run $cid cp /tmp/randomfile /tmp/other-randomfile
test -s $root/tmp/other-randomfile
cmp ${TEST_SCRATCH_DIR}/randomfile $root/tmp/other-randomfile
seq 100000 | buildah run $cid -- sh -c 'while read i; do echo $i; done'
}
@test "run--args" {
skip_if_no_runtime
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
# This should fail, because buildah run doesn't have a -n flag.
run_buildah 125 run -n $cid echo test
# This should succeed, because buildah run stops caring at the --, which is preserved as part of the command.
run_buildah run $cid echo -- -n test
expect_output -- "-- -n test"
# This should succeed, because buildah run stops caring at the --, which is not part of the command.
run_buildah run $cid -- echo -n -- test
expect_output -- "-- test"
# This should succeed, because buildah run stops caring at the --.
run_buildah run $cid -- echo -- -n test --
expect_output -- "-- -n test --"
# This should succeed, because buildah run stops caring at the --.
run_buildah run $cid -- echo -n "test"
expect_output "test"
}
@test "run-cmd" {
skip_if_no_runtime
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah config --workingdir /tmp $cid
# Configured entrypoint/cmd shouldn't modify behaviour of run with no arguments
# empty entrypoint, configured cmd, empty run arguments
run_buildah config --entrypoint "" $cid
run_buildah config --cmd pwd $cid
run_buildah 125 run $cid
expect_output --substring "command must be specified" "empty entrypoint, cmd, no args"
# empty entrypoint, configured cmd, empty run arguments, end parsing option
run_buildah config --entrypoint "" $cid
run_buildah config --cmd pwd $cid
run_buildah 125 run $cid --
expect_output --substring "command must be specified" "empty entrypoint, cmd, no args, --"
# configured entrypoint, empty cmd, empty run arguments
run_buildah config --entrypoint pwd $cid
run_buildah config --cmd "" $cid
run_buildah 125 run $cid
expect_output --substring "command must be specified" "entrypoint, empty cmd, no args"
# configured entrypoint, empty cmd, empty run arguments, end parsing option
run_buildah config --entrypoint pwd $cid
run_buildah config --cmd "" $cid
run_buildah 125 run $cid --
expect_output --substring "command must be specified" "entrypoint, empty cmd, no args, --"
# configured entrypoint only, empty run arguments
run_buildah config --entrypoint pwd $cid
run_buildah 125 run $cid
expect_output --substring "command must be specified" "entrypoint, no args"
# configured entrypoint only, empty run arguments, end parsing option
run_buildah config --entrypoint pwd $cid
run_buildah 125 run $cid --
expect_output --substring "command must be specified" "entrypoint, no args, --"
# configured cmd only, empty run arguments
run_buildah config --cmd pwd $cid
run_buildah 125 run $cid
expect_output --substring "command must be specified" "cmd, no args"
# configured cmd only, empty run arguments, end parsing option
run_buildah config --cmd pwd $cid
run_buildah 125 run $cid --
expect_output --substring "command must be specified" "cmd, no args, --"
# configured entrypoint, configured cmd, empty run arguments
run_buildah config --entrypoint "pwd" $cid
run_buildah config --cmd "whoami" $cid
run_buildah 125 run $cid
expect_output --substring "command must be specified" "entrypoint, cmd, no args"
# configured entrypoint, configured cmd, empty run arguments, end parsing option
run_buildah config --entrypoint "pwd" $cid
run_buildah config --cmd "whoami" $cid
run_buildah 125 run $cid --
expect_output --substring "command must be specified" "entrypoint, cmd, no args"
# Configured entrypoint/cmd shouldn't modify behaviour of run with argument
# Note: entrypoint and cmd can be invalid in below tests as they should never execute
# empty entrypoint, configured cmd, configured run arguments
run_buildah config --entrypoint "" $cid
run_buildah config --cmd "/invalid/cmd" $cid
run_buildah run $cid -- pwd
expect_output "/tmp" "empty entrypoint, invalid cmd, pwd"
# configured entrypoint, empty cmd, configured run arguments
run_buildah config --entrypoint "/invalid/entrypoint" $cid
run_buildah config --cmd "" $cid
run_buildah run $cid -- pwd
expect_output "/tmp" "invalid entrypoint, empty cmd, pwd"
# configured entrypoint only, configured run arguments
run_buildah config --entrypoint "/invalid/entrypoint" $cid
run_buildah run $cid -- pwd
expect_output "/tmp" "invalid entrypoint, no cmd(??), pwd"
# configured cmd only, configured run arguments
run_buildah config --cmd "/invalid/cmd" $cid
run_buildah run $cid -- pwd
expect_output "/tmp" "invalid cmd, no entrypoint(??), pwd"
# configured entrypoint, configured cmd, configured run arguments
run_buildah config --entrypoint "/invalid/entrypoint" $cid
run_buildah config --cmd "/invalid/cmd" $cid
run_buildah run $cid -- pwd
expect_output "/tmp" "invalid cmd & entrypoint, pwd"
}
# Helper for run-user test. Generates a UID or GID that is not present
# in the given idfile (mounted /etc/passwd or /etc/group)
function random_unused_id() {
local idfile=$1
while :;do
id=$RANDOM
if ! fgrep -q :$id: $idfile; then
echo $id
return
fi
done
}
function configure_and_check_user() {
local setting=$1
local expect_u=$2
local expect_g=$3
run_buildah config -u "$setting" $cid
run_buildah run -- $cid id -u
expect_output "$expect_u" "id -u ($setting)"
run_buildah run -- $cid id -g
expect_output "$expect_g" "id -g ($setting)"
}
@test "run-user" {
skip_if_no_runtime
eval $(go env)
echo CGO_ENABLED=${CGO_ENABLED}
if test "$CGO_ENABLED" -ne 1; then
skip "CGO_ENABLED = '$CGO_ENABLED'"
fi
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah mount $cid
root=$output
testuser=jimbo
testbogususer=nosuchuser
testgroup=jimbogroup
testuid=$(random_unused_id $root/etc/passwd)
testotheruid=$(random_unused_id $root/etc/passwd)
testgid=$(random_unused_id $root/etc/group)
testgroupid=$(random_unused_id $root/etc/group)
echo "$testuser:x:$testuid:$testgid:Jimbo Jenkins:/home/$testuser:/bin/sh" >> $root/etc/passwd
echo "$testgroup:x:$testgroupid:" >> $root/etc/group
configure_and_check_user "" 0 0
configure_and_check_user "${testuser}" $testuid $testgid
configure_and_check_user "${testuid}" $testuid $testgid
configure_and_check_user "${testuser}:${testgroup}" $testuid $testgroupid
configure_and_check_user "${testuid}:${testgroup}" $testuid $testgroupid
configure_and_check_user "${testotheruid}:${testgroup}" $testotheruid $testgroupid
configure_and_check_user "${testotheruid}" $testotheruid 0
configure_and_check_user "${testuser}:${testgroupid}" $testuid $testgroupid
configure_and_check_user "${testuid}:${testgroupid}" $testuid $testgroupid
run_buildah config -u ${testbogususer} $cid
run_buildah 125 run -- $cid id -u
expect_output --substring "unknown user" "id -u (bogus user)"
run_buildah 125 run -- $cid id -g
expect_output --substring "unknown user" "id -g (bogus user)"
ln -vsf /etc/passwd $root/etc/passwd
run_buildah config -u ${testuser}:${testgroup} $cid
run_buildah 125 run -- $cid id -u
echo "$output"
expect_output --substring "unknown user" "run as unknown user"
}
@test "run --env" {
skip_if_no_runtime
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah config --env foo=foo $cid
# Ensure foo=foo from `buildah config`
run_buildah run $cid -- /bin/sh -c 'echo $foo'
expect_output "foo"
# Ensure foo=bar from --env override
run_buildah run --env foo=bar $cid -- /bin/sh -c 'echo $foo'
expect_output "bar"
# Reference foo=baz from process environment
foo=baz run_buildah run --env foo $cid -- /bin/sh -c 'echo $foo'
expect_output "baz"
# Ensure that the --env override did not persist
run_buildah run $cid -- /bin/sh -c 'echo $foo'
expect_output "foo"
}
@test "run --group-add" {
skip_if_no_runtime
id=$RANDOM
_prefetch alpine
run_buildah from --group-add $id --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run $cid id -G
expect_output --substring "$id"
if is_rootless && has_supplemental_groups; then
run_buildah from --group-add keep-groups --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run $cid id -G
expect_output --substring "65534"
fi
}
@test "run --hostname" {
skip_if_no_runtime
_prefetch alpine
${OCI} --version
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run $cid hostname
[ "$output" != "foobar" ]
run_buildah run --hostname foobar $cid hostname
expect_output "foobar"
}
@test "run should also override /etc/hostname" {
skip_if_no_runtime
_prefetch alpine
${OCI} --version
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run --hostname foobar $cid hostname
expect_output "foobar"
hostname=$output
run_buildah run --hostname foobar $cid cat /etc/hostname
expect_output $hostname
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah inspect --format "{{ .ContainerID }}" $cid
id=$output
run_buildah run $cid cat /etc/hostname
expect_output "${id:0:12}"
run_buildah run --no-hostname $cid cat /etc/hostname
expect_output 'localhost'
}
@test "run --volume" {
skip_if_no_runtime
zflag=
if which selinuxenabled > /dev/null 2> /dev/null ; then
if selinuxenabled ; then
zflag=z
fi
fi
${OCI} --version
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
mkdir -p ${TEST_SCRATCH_DIR}/was-empty
# As a baseline, this should succeed.
run_buildah run -v ${TEST_SCRATCH_DIR}/was-empty:/var/not-empty${zflag:+:${zflag}} $cid touch /var/not-empty/testfile
# Parsing options that with comma, this should succeed.
run_buildah run -v ${TEST_SCRATCH_DIR}/was-empty:/var/not-empty:rw,rshared${zflag:+,${zflag}} $cid touch /var/not-empty/testfile
# If we're parsing the options at all, this should be read-only, so it should fail.
run_buildah 1 run -v ${TEST_SCRATCH_DIR}/was-empty:/var/not-empty:ro${zflag:+,${zflag}} $cid touch /var/not-empty/testfile
# Even if the parent directory doesn't exist yet, this should succeed.
run_buildah run -v ${TEST_SCRATCH_DIR}/was-empty:/var/multi-level/subdirectory $cid touch /var/multi-level/subdirectory/testfile
# And check the same for file volumes.
run_buildah run -v ${TEST_SCRATCH_DIR}/was-empty/testfile:/var/different-multi-level/subdirectory/testfile $cid touch /var/different-multi-level/subdirectory/testfile
# And check the same for file volumes.
# Make sure directories show up inside of container on builtin mounts
run_buildah run -v ${TEST_SCRATCH_DIR}/was-empty:/run/secrets/testdir $cid ls -ld /run/secrets/testdir
}
@test "run overlay --volume with custom upper and workdir" {
skip_if_no_runtime
zflag=
if which selinuxenabled > /dev/null 2> /dev/null ; then
if selinuxenabled ; then
zflag=z
fi
fi
${OCI} --version
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
mkdir -p ${TEST_SCRATCH_DIR}/upperdir
mkdir -p ${TEST_SCRATCH_DIR}/workdir
mkdir -p ${TEST_SCRATCH_DIR}/lower
echo 'hello' >> ${TEST_SCRATCH_DIR}/lower/hello
# As a baseline, this should succeed.
run_buildah run -v ${TEST_SCRATCH_DIR}/lower:/test:O,upperdir=${TEST_SCRATCH_DIR}/upperdir,workdir=${TEST_SCRATCH_DIR}/workdir${zflag:+:${zflag}} $cid cat /test/hello
expect_output "hello"
run_buildah run -v ${TEST_SCRATCH_DIR}/lower:/test:O,upperdir=${TEST_SCRATCH_DIR}/upperdir,workdir=${TEST_SCRATCH_DIR}/workdir${zflag:+:${zflag}} $cid sh -c 'echo "world" > /test/world'
#upper dir should persist content
result="$(cat ${TEST_SCRATCH_DIR}/upperdir/world)"
test "$result" == "world"
}
@test "run --volume with U flag" {
skip_if_no_runtime
# Create source volume.
mkdir ${TEST_SCRATCH_DIR}/testdata
# Create the container.
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
ctr="$output"
# Test user can create file in the mounted volume.
run_buildah run --user 888:888 --volume ${TEST_SCRATCH_DIR}/testdata:/mnt:z,U "$ctr" touch /mnt/testfile1.txt
# Test created file has correct UID and GID ownership.
run_buildah run --user 888:888 --volume ${TEST_SCRATCH_DIR}/testdata:/mnt:z,U "$ctr" stat -c "%u:%g" /mnt/testfile1.txt
expect_output "888:888"
}
@test "run --user and verify gid in supplemental groups" {
skip_if_no_runtime
# Create the container.
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
ctr="$output"
# Run with uid:gid 1000:1000 and verify if gid is present in additional groups
run_buildah run --user 1000:1000 "$ctr" cat /proc/self/status
# gid 1000 must be in additional/supplemental groups
expect_output --substring "Groups: 1000 "
}
@test "run --workingdir" {
skip_if_no_runtime
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run $cid pwd
expect_output "/"
run_buildah run --workingdir /bin $cid pwd
expect_output "/bin"
# Ensure the /bin workingdir override did not persist
run_buildah run $cid pwd
expect_output "/"
}
@test "run --mount" {
skip_if_no_runtime
zflag=
if which selinuxenabled > /dev/null 2> /dev/null ; then
if selinuxenabled ; then
zflag=z
fi
fi
${OCI} --version
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
mkdir -p ${TEST_SCRATCH_DIR}/was:empty
# As a baseline, this should succeed.
run_buildah run --mount type=tmpfs,dst=/var/tmpfs-not-empty $cid touch /var/tmpfs-not-empty/testfile
# This should succeed, but the writes should effectively be discarded
run_buildah run --mount type=bind,src=${TEST_SCRATCH_DIR}/was:empty,dst=/var/not-empty,rw${zflag:+,${zflag}} $cid touch /var/not-empty/testfile
if test -r ${TEST_SCRATCH_DIR}/was:empty/testfile ; then
die write to mounted type=bind was not discarded, ${TEST_SCRATCH_DIR}/was:empty/testfile exists
fi
# If we're parsing the options at all, this should be read-only, so it should fail.
run_buildah 1 run --mount type=bind,src=${TEST_SCRATCH_DIR}/was:empty,dst=/var/not-empty,ro${zflag:+,${zflag}} $cid touch /var/not-empty/testfile
# Even if the parent directory doesn't exist yet, this should succeed, but again the write should be discarded.
run_buildah run --mount type=bind,src=${TEST_SCRATCH_DIR}/was:empty,dst=/var/multi-level/subdirectory,rw${zflag:+,${zflag}} $cid touch /var/multi-level/subdirectory/testfile
if test -r ${TEST_SCRATCH_DIR}/was:empty/testfile ; then
die write to mounted type=bind was not discarded, ${TEST_SCRATCH_DIR}/was:empty/testfile exists
fi
# And check the same for file volumes, which make life harder because the kernel's overlay
# filesystem really only wants to be dealing with directories.
: > ${TEST_SCRATCH_DIR}/was:empty/testfile
run_buildah run --mount type=bind,src=${TEST_SCRATCH_DIR}/was:empty/testfile,dst=/var/different-multi-level/subdirectory/testfile,rw${zflag:+,${zflag}} $cid sh -c 'echo wrote > /var/different-multi-level/subdirectory/testfile'
if test -s ${TEST_SCRATCH_DIR}/was:empty/testfile ; then
die write to mounted type=bind was not discarded, ${TEST_SCRATCH_DIR}/was:empty/testfile was written to
fi
}
@test "run --mount=type=bind with from like buildkit" {
skip_if_no_runtime
zflag=
if which selinuxenabled > /dev/null 2> /dev/null ; then
if selinuxenabled ; then
zflag=,z
fi
fi
run_buildah build -t buildkitbase $WITH_POLICY_JSON -f $BUDFILES/buildkit-mount-from/Dockerfilebuildkitbase $BUDFILES/buildkit-mount-from/
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run --mount type=bind,source=.,from=buildkitbase,target=/test${zflag} $cid cat /test/hello1
expect_output --substring "hello1"
run_buildah run --mount type=bind,source=subdir,from=buildkitbase,target=/test${zflag} $cid cat /test/hello
expect_output --substring "hello2"
}
@test "run --mount=type=cache like buildkit" {
skip_if_no_runtime
zflag=
if which selinuxenabled > /dev/null 2> /dev/null ; then
if selinuxenabled ; then
zflag=,z
fi
fi
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run --mount type=cache,target=/test${zflag} $cid sh -c 'mkdir -p /test/subdir && echo "hello" > /test/subdir/h.txt && cat /test/subdir/h.txt'
run_buildah run --mount type=cache,src=subdir,target=/test${zflag} $cid cat /test/h.txt
expect_output --substring "hello"
}
@test "run symlinks" {
skip_if_no_runtime
${OCI} --version
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
mkdir -p ${TEST_SCRATCH_DIR}/tmp
ln -s tmp ${TEST_SCRATCH_DIR}/tmp2
export TMPDIR=${TEST_SCRATCH_DIR}/tmp2
run_buildah run $cid id
}
@test "run --cap-add/--cap-drop" {
skip_if_no_runtime
${OCI} --version
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
# Try with default caps.
run_buildah run $cid grep ^CapEff /proc/self/status
defaultcaps="$output"
# Try adding DAC_OVERRIDE.
run_buildah run --cap-add CAP_DAC_OVERRIDE $cid grep ^CapEff /proc/self/status
addedcaps="$output"
# Try dropping DAC_OVERRIDE.
run_buildah run --cap-drop CAP_DAC_OVERRIDE $cid grep ^CapEff /proc/self/status
droppedcaps="$output"
# Okay, now the "dropped" and "added" should be different.
test "$addedcaps" != "$droppedcaps"
# And one or the other should be different from the default, with the other being the same.
if test "$defaultcaps" == "$addedcaps" ; then
test "$defaultcaps" != "$droppedcaps"
fi
if test "$defaultcaps" == "$droppedcaps" ; then
test "$defaultcaps" != "$addedcaps"
fi
}
@test "Check if containers run with correct open files/processes limits" {
skip_if_no_runtime
skip "FIXME: we cannot rely on podman-run ulimits matching buildah-bud (see #5820)"
# we need to not use the list of limits that are set in our default
# ${TEST_SOURCES}/containers.conf for the sake of other tests, and override
# any that might be picked up from system-wide configuration
echo '[containers]' > ${TEST_SCRATCH_DIR}/containers.conf
echo 'default_ulimits = []' >> ${TEST_SCRATCH_DIR}/containers.conf
export CONTAINERS_CONF=${TEST_SCRATCH_DIR}/containers.conf
_prefetch alpine
run podman run --rm alpine sh -c "awk '/open files/{print \$4 \"/\" \$5}' /proc/self/limits"
podman_files=$output
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run $cid awk '/open files/{print $4 "/" $5}' /proc/self/limits
expect_output "${podman_files}" "limits: podman and buildah should agree on open files"
run podman run --rm alpine sh -c "awk '/processes/{print \$3 \"/\" \$4}' /proc/self/limits"
podman_processes=$output
run_buildah run $cid awk '/processes/{print $3 "/" $4}' /proc/self/limits
expect_output ${podman_processes} "processes should match podman"
run_buildah rm $cid
run_buildah from --quiet --ulimit nofile=300:400 --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run $cid awk '/open files/{print $4}' /proc/self/limits
expect_output "300" "limits: open files (w/file limit)"
run_buildah rm $cid
run_buildah from --quiet --ulimit nproc=100:200 --ulimit nofile=300:400 --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run $cid awk '/open files/{print $4}' /proc/self/limits
expect_output "300" "limits: open files (w/file & proc limits)"
run_buildah run $cid awk '/processes/{print $3}' /proc/self/limits
expect_output "100" "limits: processes (w/file & proc limits)"
unset CONTAINERS_CONF
}
@test "run-builtin-volume-omitted" {
# This image is known to include a volume, but not include the mountpoint
# in the image.
_prefetch quay.io/libpod/registry:volume_omitted
run_buildah from --quiet --pull=ifmissing $WITH_POLICY_JSON quay.io/libpod/registry:volume_omitted
cid=$output
run_buildah mount $cid
mnt=$output
# By default, the mountpoint should not be there.
run test -d "$mnt"/var/lib/registry
echo "$output"
[ "$status" -ne 0 ]
# We'll create the mountpoint for "run".
run_buildah run $cid ls -1 /var/lib
expect_output --substring "registry"
# Double-check that the mountpoint is there.
test -d "$mnt"/var/lib/registry
}
@test "run-exit-status" {
skip_if_no_runtime
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah 42 run ${cid} sh -c 'exit 42'
}
@test "run-exit-status on non executable" {
skip_if_no_runtime
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah 1 run ${cid} /etc
}
@test "Verify /run/.containerenv exist" {
skip_if_rootless_environment
skip_if_no_runtime
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
# test a standard mount to /run/.containerenv
run_buildah run $cid ls -1 /run/.containerenv
expect_output --substring "/run/.containerenv"
run_buildah run $cid sh -c '. /run/.containerenv; echo $engine'
expect_output --substring "buildah"
run_buildah run $cid sh -c '. /run/.containerenv; echo $name'
expect_output "alpine-working-container"
run_buildah run $cid sh -c '. /run/.containerenv; echo $image'
expect_output --substring "alpine:latest"
rootless=0
if ["$(id -u)" -ne 0 ]; then
rootless=1
fi
run_buildah run $cid sh -c '. /run/.containerenv; echo $rootless'
expect_output ${rootless}
}
@test "run-device" {
skip_if_no_runtime
_prefetch alpine
run_buildah from --quiet --pull=false --device /dev/fuse $WITH_POLICY_JSON alpine
cid=$output
run_buildah 0 run ${cid} ls /dev/fuse
run_buildah from --quiet --pull=false --device /dev/fuse:/dev/fuse:rm $WITH_POLICY_JSON alpine
cid=$output
run_buildah 0 run ${cid} ls /dev/fuse
run_buildah from --quiet --pull=false --device /dev/fuse:/dev/fuse:rwm $WITH_POLICY_JSON alpine
cid=$output
run_buildah 0 run ${cid} ls /dev/fuse
}
@test "run-device-Rename" {
skip_if_rootless_environment
skip_if_no_runtime
skip_if_chroot
skip_if_rootless
_prefetch alpine
run_buildah from --quiet --pull=false --device /dev/fuse:/dev/fuse1 $WITH_POLICY_JSON alpine
cid=$output
run_buildah 0 run ${cid} ls /dev/fuse1
}
@test "run check /etc/hosts" {
skip_if_rootless_environment
skip_if_no_runtime
skip_if_in_container
${OCI} --version
# We use ubuntu image because it has no /etc/hosts file. This
# allows the fake_host test below to be an equality check,
# not a substring check.
_prefetch ubuntu
local hostname=h-$(random_string)
run_buildah from --quiet --pull=false $WITH_POLICY_JSON ubuntu
cid=$output
run_buildah 125 run --network=bogus $cid cat /etc/hosts
expect_output --substring "unable to find network with name or ID bogus: network not found"
run_buildah run --hostname $hostname $cid cat /etc/hosts
expect_output --substring "(10.88.*|10.0.2.100)[[:blank:]]$hostname $cid"
ip=$(hostname -I | cut -f 1 -d " ")
expect_output --substring "$ip.*host.containers.internal"
hosts="127.0.0.5 host1
127.0.0.6 host2"
base_hosts_file="$TEST_SCRATCH_DIR/base_hosts"
echo "$hosts" > "$base_hosts_file"
containers_conf_file="$TEST_SCRATCH_DIR/containers.conf"
echo -e "[containers]\nbase_hosts_file = \"$base_hosts_file\"" > "$containers_conf_file"
CONTAINERS_CONF="$containers_conf_file" run_buildah run --hostname $hostname $cid cat /etc/hosts
expect_output --substring "127.0.0.5[[:blank:]]host1"
expect_output --substring "127.0.0.6[[:blank:]]host2"
expect_output --substring "(10.88.*|10.0.2.100)[[:blank:]]$hostname $cid"
# now check that hostname from base file is not overwritten
CONTAINERS_CONF="$containers_conf_file" run_buildah run --hostname host1 $cid cat /etc/hosts
expect_output --substring "127.0.0.5[[:blank:]]host1"
expect_output --substring "127.0.0.6[[:blank:]]host2"
expect_output --substring "(10.88.*|10.0.2.100)[[:blank:]]$cid"
assert "$output" !~ "(10.88.*|10.0.2.100)[[:blank:]]host1 $cid" "Container IP should not contain host1"
# check slirp4netns sets correct hostname with another cidr
run_buildah run --network slirp4netns:cidr=192.168.2.0/24 --hostname $hostname $cid cat /etc/hosts
expect_output --substring "192.168.2.100[[:blank:]]$hostname $cid"
run_buildah run --network=container $cid cat /etc/hosts
m=$(buildah mount $cid)
run cat $m/etc/hosts
[ "$status" -eq 0 ]
expect_output --substring ""
run_buildah rm -a
run_buildah from --quiet --pull=false $WITH_POLICY_JSON ubuntu
cid=$output
run_buildah run --network=host --hostname $hostname $cid cat /etc/hosts
assert "$output" =~ "$ip[[:blank:]]$hostname"
hostOutput=$output
m=$(buildah mount $cid)
run cat $m/etc/hosts
[ "$status" -eq 0 ]
expect_output --substring ""
run_buildah run --network=host --no-hosts $cid cat /etc/hosts
[ "$output" != "$hostOutput" ]
# --isolation chroot implies host networking so check for the correct hosts entry
run_buildah run --isolation chroot --hostname $hostname $cid cat /etc/hosts
assert "$output" =~ "$ip[[:blank:]]$hostname"
run_buildah rm -a
run_buildah from --quiet --pull=false $WITH_POLICY_JSON ubuntu
cid=$output
run_buildah run --network=none $cid sh -c 'echo "110.110.110.0 fake_host" >> /etc/hosts; cat /etc/hosts'
expect_output "110.110.110.0 fake_host"
m=$(buildah mount $cid)
run cat $m/etc/hosts
[ "$status" -eq 0 ]
expect_output "110.110.110.0 fake_host"
run_buildah rm -a
}
@test "run check /etc/hosts and resolv.conf with --network pasta" {
skip_if_no_runtime
skip_if_chroot
skip_if_root_environment "pasta only works rootless"
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
local hostname=h-$(random_string)
ip=$(hostname -I | cut -f 1 -d " ")
run_buildah run --network pasta --hostname $hostname $cid cat /etc/hosts
assert "$output" =~ "$ip[[:blank:]]$hostname $cid" "--network pasta adds correct hostname"
# FIXME we need pasta 20240814 or newer in the VMs to enable this
# assert "$output" =~ "169.254.1.2[[:blank:]]host.containers.internal" "--network pasta adds correct internal entry"
# check with containers.conf setting
echo -e "[network]\ndefault_rootless_network_cmd = \"pasta\"" > ${TEST_SCRATCH_DIR}/containers.conf
CONTAINERS_CONF_OVERRIDE=${TEST_SCRATCH_DIR}/containers.conf run_buildah run --hostname $hostname $cid cat /etc/hosts
assert "$output" =~ "$ip[[:blank:]]$hostname $cid" "default_rootless_network_cmd = \"pasta\" works"
# resolv.conf checks
run_buildah run --network pasta $cid grep nameserver /etc/resolv.conf
assert "${lines[0]}" == "nameserver 169.254.1.1" "first pasta nameserver should be stub forwarder"
run_buildah run --network pasta:--dns-forward,192.168.0.1 $cid grep nameserver /etc/resolv.conf
assert "${lines[0]}" == "nameserver 192.168.0.1" "pasta nameserver with --dns-forward"
}
@test "run check /etc/resolv.conf" {
skip_if_rootless_environment
skip_if_no_runtime
${OCI} --version
_prefetch alpine
# Make sure to read the correct /etc/resolv.conf file in case of systemd-resolved.
resolve_file=$(readlink -f /etc/resolv.conf)
if [[ "$resolve_file" == "/run/systemd/resolve/stub-resolv.conf" ]]; then
resolve_file="/run/systemd/resolve/resolv.conf"
fi
run grep nameserver $resolve_file
# filter out 127... nameservers
run grep -v "nameserver 127." <<< "$output"
nameservers="$output"
# in case of rootless add extra slirp4netns nameserver
if is_rootless; then
nameservers="nameserver 10.0.2.3
$output"
fi
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run --network=private $cid grep nameserver /etc/resolv.conf
# check that no 127... nameserver is in resolv.conf
assert "$output" !~ "^nameserver 127." "Container contains local nameserver"
assert "$nameservers" "Container nameservers match correct host nameservers"
if ! is_rootless; then
run_buildah mount $cid
assert "$output" != ""
assert "$(< $output/etc/resolv.conf)" = "" "resolv.conf is empty"
fi
run_buildah rm -a
run grep nameserver /etc/resolv.conf
nameservers="$output"
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run --isolation=chroot --network=host $cid grep nameserver /etc/resolv.conf
assert "$nameservers" "Container nameservers match the host nameservers"
if ! is_rootless; then
run_buildah mount $cid
assert "$output" != ""
assert "$(< $output/etc/resolv.conf)" = "" "resolv.conf is empty"
fi
run_buildah rm -a
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah 125 run --isolation=chroot --network=none $cid sh -c 'echo "nameserver 110.110.0.110" >> /etc/resolv.conf; cat /etc/resolv.conf'
expect_output --substring "cannot set --network other than host with --isolation chroot"
run_buildah rm -a
}
@test "run --network=none and --isolation chroot must conflict" {
skip_if_no_runtime
_prefetch alpine
run_buildah from --quiet --pull=ifmissing $WITH_POLICY_JSON alpine
cid=$output
# should fail by default
run_buildah 125 run --isolation=chroot --network=none $cid wget google.com
expect_output --substring "cannot set --network other than host with --isolation chroot"
}
@test "run --network=private must mount a fresh /sys" {
skip_if_no_runtime
_prefetch alpine
run_buildah from --quiet --pull=ifmissing $WITH_POLICY_JSON alpine
cid=$output
# verify there is no /sys/kernel/security in the container, that would mean /sys
# was bind mounted from the host.
run_buildah 1 run --network=private $cid grep /sys/kernel/security /proc/self/mountinfo
}
@test "run --network should override build --network" {
skip_if_no_runtime
_prefetch alpine
run_buildah from --network=none --quiet --pull=ifmissing $WITH_POLICY_JSON alpine
cid=$output
# should fail by default
run_buildah 1 run $cid wget google.com
expect_output --substring "bad"
# try pinging external website
run_buildah run --network=private $cid wget google.com
expect_output --substring "index.html"
run_buildah rm -a
}
@test "run --user" {
skip_if_no_runtime
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run --user sync $cid whoami
expect_output "sync"
run_buildah 125 run --user noexist $cid whoami
expect_output --substring "unknown user error"
}
@test "run --runtime --runtime-flag" {
skip_if_in_container
skip_if_no_runtime
_prefetch alpine
# Use seccomp to make crun output a warning message because crun writes few logs.
cat > ${TEST_SCRATCH_DIR}/seccomp.json << _EOF
{
"defaultAction": "SCMP_ACT_ALLOW",
"syscalls": [
{
"name": "unknown",
"action": "SCMP_ACT_KILL"
}
]
}
_EOF
run_buildah from --security-opt seccomp=${TEST_SCRATCH_DIR}/seccomp.json --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
local found_runtime=
if [ -n "$(command -v runc)" ]; then
found_runtime=y
run_buildah '?' run --runtime=runc --runtime-flag=debug $cid true
if [ "$status" -eq 0 ]; then
assert "$output" != "" "Output from running 'true' with --runtime-flag=debug"
else
# runc fully supports cgroup v2 (unified mode) since v1.0.0-rc93.
# older runc doesn't work on cgroup v2.
expect_output --substring "this version of runc doesn't work on cgroups v2" "should fail by unsupportability for cgroupv2"
fi
fi
if [ -n "$(command -v crun)" ]; then
found_runtime=y
run_buildah run --runtime=crun --runtime-flag=log=${TEST_SCRATCH_DIR}/oci-log $cid true
if test \! -e ${TEST_SCRATCH_DIR}/oci-log; then
die "the expected file ${TEST_SCRATCH_DIR}/oci-log was not created"
fi
fi
if [ -z "${found_runtime}" ]; then
skip "Did not find 'runc' nor 'crun' in \$PATH - could not run this test!"
fi
}
@test "run --terminal" {
skip_if_no_runtime
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run --terminal=true $cid ls --color=auto
colored="$output"
run_buildah run --terminal=false $cid ls --color=auto
uncolored="$output"
[ "$colored" != "$uncolored" ]
}
@test "rootless on cgroupv2 and systemd runs under user.slice" {
skip_if_no_runtime
skip_if_cgroupsv1
skip_if_in_container
skip_if_root_environment
if test "$DBUS_SESSION_BUS_ADDRESS" = ""; then
skip "$test does not work when DBUS_SESSION_BUS_ADDRESS is not defined"
fi
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run --cgroupns=host $cid cat /proc/self/cgroup
expect_output --substring "/user.slice/"
}
@test "run-inheritable-capabilities" {
skip_if_no_runtime
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
run_buildah run $cid grep ^CapInh: /proc/self/status
expect_output "CapInh: 0000000000000000"
run_buildah run --cap-add=ALL $cid grep ^CapInh: /proc/self/status
expect_output "CapInh: 0000000000000000"
}
@test "run masks" {
skip_if_no_runtime
_prefetch alpine
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
cid=$output
for mask in /proc/acpi /proc/kcore /proc/keys /proc/latency_stats /proc/sched_debug /proc/scsi /proc/timer_list /proc/timer_stats /sys/devices/virtual/powercap /sys/firmware /sys/fs/selinux; do
if test -d $mask; then
run_buildah run $cid ls $mask
expect_output "" "Directories should be empty"
fi
if test -f $mask; then
run_buildah run $cid cat $mask
expect_output "" "Directories should be empty"
fi
done
}
@test "empty run statement doesn't crash" {
skip_if_no_runtime
_prefetch alpine
cd ${TEST_SCRATCH_DIR}
printf 'FROM alpine\nRUN \\\n echo && echo' > Dockerfile
run_buildah bud --pull=false --layers .
printf 'FROM alpine\nRUN\n echo && echo' > Dockerfile
run_buildah ? bud --pull=false --layers .
expect_output --substring -- "-c requires an argument"
}
@test "root fs only mounted once" {
if test `uname` != Linux ; then
skip "not meaningful except on Linux"
fi
_prefetch busybox
run_buildah from --pull=never --quiet busybox
cid="$output"
run_buildah run $cid cat /proc/self/mountinfo
echo "$output" > ${TEST_SCRATCH_DIR}/mountinfo1
echo "# mountinfo unfiltered:"
cat ${TEST_SCRATCH_DIR}/mountinfo1
grep ' / rw,' ${TEST_SCRATCH_DIR}/mountinfo1 > ${TEST_SCRATCH_DIR}/mountinfo2
echo "# mountinfo grepped:"
cat ${TEST_SCRATCH_DIR}/mountinfo2
wc -l < ${TEST_SCRATCH_DIR}/mountinfo2 > ${TEST_SCRATCH_DIR}/mountinfo3
echo "# mountinfo count:"
cat ${TEST_SCRATCH_DIR}/mountinfo3
assert $(cat ${TEST_SCRATCH_DIR}/mountinfo3) -eq 1
}
|