diff options
| author | Anders Heimer <anders.heimer@est.tech> | 2026-05-18 16:59:08 +0200 |
|---|---|---|
| committer | Paul Barker <paul@pbarker.dev> | 2026-06-08 21:44:04 +0100 |
| commit | a42a436300d336b7d196ce76a02fb472dbda9d94 (patch) | |
| tree | 3751b441cfb6a91d5fe581099ba60970cce54e11 /bitbake/lib/bb/tests/fetch.py | |
| parent | d4576e3c081a7ee7b57d48421c4c4f491cb4defe (diff) | |
| download | poky-a42a436300d336b7d196ce76a02fb472dbda9d94.tar.gz | |
bitbake: fetch2: validate deb/ipk data member names
The deb/ipk unpack path selects a data archive member from 'ar -t'
output and then passes that member name to a shell command. Previously,
any member beginning with data.tar. was selected.
Only select known deb/ipk data archive member names when datafile is
created. Quote the package path used in the shell command as it can come
from the local fetch path.
Add local fetcher regression coverage for quoted package filenames,
valid compressed data members, and unsupported or unsafe data member
names.
(Bitbake rev: a32064d0f10b9f5a163a25f410a4e39dccf9cb93)
Signed-off-by: Anders Heimer <anders.heimer@est.tech>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 73ae3a2447ec93df39bc66cf3d8f9b2ea1bfe3bf)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
Diffstat (limited to 'bitbake/lib/bb/tests/fetch.py')
| -rw-r--r-- | bitbake/lib/bb/tests/fetch.py | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py index 3775ab0f33..5735cf8f45 100644 --- a/bitbake/lib/bb/tests/fetch.py +++ b/bitbake/lib/bb/tests/fetch.py | |||
| @@ -13,6 +13,7 @@ import tempfile | |||
| 13 | import collections | 13 | import collections |
| 14 | import os | 14 | import os |
| 15 | import signal | 15 | import signal |
| 16 | import subprocess | ||
| 16 | import tarfile | 17 | import tarfile |
| 17 | from bb.fetch2 import URI | 18 | from bb.fetch2 import URI |
| 18 | from bb.fetch2 import FetchMethod | 19 | from bb.fetch2 import FetchMethod |
| @@ -731,6 +732,34 @@ class FetcherLocalTest(FetcherTest): | |||
| 731 | bb.process.run('tar cjf archive.tar.bz2 -C dir .', cwd=self.localsrcdir) | 732 | bb.process.run('tar cjf archive.tar.bz2 -C dir .', cwd=self.localsrcdir) |
| 732 | self.d.setVar("FILESPATH", self.localsrcdir) | 733 | self.d.setVar("FILESPATH", self.localsrcdir) |
| 733 | 734 | ||
| 735 | def make_ar_package(self, package_name, data_member="data.tar"): | ||
| 736 | if not shutil.which("ar"): | ||
| 737 | self.skipTest("ar not installed") | ||
| 738 | |||
| 739 | workdir = tempfile.mkdtemp(dir=self.tempdir) | ||
| 740 | payload = os.path.join(workdir, "payload") | ||
| 741 | with open(payload, "w") as f: | ||
| 742 | f.write("payload\n") | ||
| 743 | |||
| 744 | data_path = os.path.join(workdir, data_member) | ||
| 745 | mode = "w:gz" if data_member.endswith(".gz") else "w" | ||
| 746 | with tarfile.open(data_path, mode) as archive: | ||
| 747 | archive.add(payload, arcname="payload") | ||
| 748 | |||
| 749 | with open(os.path.join(workdir, "debian-binary"), "w") as f: | ||
| 750 | f.write("2.0\n") | ||
| 751 | |||
| 752 | control = os.path.join(workdir, "control") | ||
| 753 | with open(control, "w") as f: | ||
| 754 | f.write("Package: fetch-test\nVersion: 1\nArchitecture: all\n") | ||
| 755 | with tarfile.open(os.path.join(workdir, "control.tar"), "w") as archive: | ||
| 756 | archive.add(control, arcname="control") | ||
| 757 | |||
| 758 | package_path = os.path.join(self.localsrcdir, package_name) | ||
| 759 | subprocess.check_call(["ar", "r", package_path, "debian-binary", "control.tar", data_member], | ||
| 760 | cwd=workdir, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) | ||
| 761 | return package_name | ||
| 762 | |||
| 734 | def fetchUnpack(self, uris): | 763 | def fetchUnpack(self, uris): |
| 735 | fetcher = bb.fetch.Fetch(uris, self.d) | 764 | fetcher = bb.fetch.Fetch(uris, self.d) |
| 736 | fetcher.download() | 765 | fetcher.download() |
| @@ -800,6 +829,30 @@ class FetcherLocalTest(FetcherTest): | |||
| 800 | tree = self.fetchUnpack(['file://archive.tar.bz2;subdir=bar;striplevel=1']) | 829 | tree = self.fetchUnpack(['file://archive.tar.bz2;subdir=bar;striplevel=1']) |
| 801 | self.assertEqual(tree, ['bar/c', 'bar/d', 'bar/subdir/e']) | 830 | self.assertEqual(tree, ['bar/c', 'bar/d', 'bar/subdir/e']) |
| 802 | 831 | ||
| 832 | def test_local_deb_quoted_filename(self): | ||
| 833 | package = self.make_ar_package("archive$(id).deb") | ||
| 834 | tree = self.fetchUnpack(['file://%s' % package]) | ||
| 835 | self.assertEqual(tree, ['payload']) | ||
| 836 | |||
| 837 | def test_local_ipk_gz_data_member(self): | ||
| 838 | package = self.make_ar_package("archive.ipk", data_member="data.tar.gz") | ||
| 839 | tree = self.fetchUnpack(['file://%s' % package]) | ||
| 840 | self.assertEqual(tree, ['payload']) | ||
| 841 | |||
| 842 | def test_local_deb_rejects_unknown_data_member_suffix(self): | ||
| 843 | package = self.make_ar_package("archive.deb", data_member="data.tar.foo") | ||
| 844 | with self.assertRaises(bb.fetch2.UnpackError) as context: | ||
| 845 | self.fetchUnpack(['file://%s' % package]) | ||
| 846 | |||
| 847 | self.assertIn("does not contain supported data.tar* file", str(context.exception)) | ||
| 848 | |||
| 849 | def test_local_deb_rejects_unsafe_data_member(self): | ||
| 850 | package = self.make_ar_package("archive.deb", data_member="data.tar.xz;id") | ||
| 851 | with self.assertRaises(bb.fetch2.UnpackError) as context: | ||
| 852 | self.fetchUnpack(['file://%s' % package]) | ||
| 853 | |||
| 854 | self.assertIn("does not contain supported data.tar* file", str(context.exception)) | ||
| 855 | |||
| 803 | def dummyGitTest(self, suffix): | 856 | def dummyGitTest(self, suffix): |
| 804 | # Create dummy local Git repo | 857 | # Create dummy local Git repo |
| 805 | src_dir = tempfile.mkdtemp(dir=self.tempdir, | 858 | src_dir = tempfile.mkdtemp(dir=self.tempdir, |
