diff options
-rw-r--r-- | meta-oe/recipes-devtools/perl/libdbi-perl/0001-Fix-building-on-Fedora-40-with-GCC-14.2.1.patch | 28 | ||||
-rw-r--r-- | meta-oe/recipes-devtools/perl/libdbi-perl/CVE-2014-10402.patch | 56 | ||||
-rw-r--r-- | meta-oe/recipes-devtools/perl/libdbi-perl_1.644.bb (renamed from meta-oe/recipes-devtools/perl/libdbi-perl_1.643.bb) | 9 |
3 files changed, 32 insertions, 61 deletions
diff --git a/meta-oe/recipes-devtools/perl/libdbi-perl/0001-Fix-building-on-Fedora-40-with-GCC-14.2.1.patch b/meta-oe/recipes-devtools/perl/libdbi-perl/0001-Fix-building-on-Fedora-40-with-GCC-14.2.1.patch new file mode 100644 index 0000000000..f29d6c4d8f --- /dev/null +++ b/meta-oe/recipes-devtools/perl/libdbi-perl/0001-Fix-building-on-Fedora-40-with-GCC-14.2.1.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | From dc970a868a4c2d7e2051b533e0a3588ef1d35530 Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Dani=C3=ABl=20van=20Eeden?= <git@myname.nl> | ||
3 | Date: Mon, 26 Aug 2024 10:17:01 +0200 | ||
4 | Subject: [PATCH] Fix building on Fedora 40 with GCC 14.2.1 | ||
5 | |||
6 | Upstream-Status: Backport [https://github.com/perl5-dbi/dbi/commit/d6e2bf13ac6043f5b0a9a147805b4915bd70e631] | ||
7 | |||
8 | Signed-off-by: Changqing Li <changqing.li@windriver.com> | ||
9 | --- | ||
10 | DBI.xs | 2 +- | ||
11 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
12 | |||
13 | diff --git a/DBI.xs b/DBI.xs | ||
14 | index 747e341..9b1d136 100644 | ||
15 | --- a/DBI.xs | ||
16 | +++ b/DBI.xs | ||
17 | @@ -1106,7 +1106,7 @@ dbih_inner(pTHX_ SV *orv, const char *what) | ||
18 | if (!SvMAGICAL(ohv)) { | ||
19 | if (!what) | ||
20 | return NULL; | ||
21 | - if (!hv_fetch(ohv,"_NO_DESTRUCT_WARN",17,0)) | ||
22 | + if (!hv_fetch((HV*)ohv,"_NO_DESTRUCT_WARN",17,0)) | ||
23 | sv_dump(orv); | ||
24 | croak("%s handle %s is not a DBI handle (has no magic)", | ||
25 | what, neatsvpv(orv,0)); | ||
26 | -- | ||
27 | 2.46.0 | ||
28 | |||
diff --git a/meta-oe/recipes-devtools/perl/libdbi-perl/CVE-2014-10402.patch b/meta-oe/recipes-devtools/perl/libdbi-perl/CVE-2014-10402.patch deleted file mode 100644 index b41bbe0a50..0000000000 --- a/meta-oe/recipes-devtools/perl/libdbi-perl/CVE-2014-10402.patch +++ /dev/null | |||
@@ -1,56 +0,0 @@ | |||
1 | Backport patch to fix CVE-2014-10402. | ||
2 | |||
3 | CVE: CVE-2014-10402 | ||
4 | Upstream-Status: Backport [https://github.com/rehsack/dbi/commit/19d0fb1] | ||
5 | |||
6 | Ref: | ||
7 | https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=972180#12 | ||
8 | |||
9 | Signed-off-by: Kai Kang <kai.kang@windriver.com> | ||
10 | |||
11 | |||
12 | From 19d0fb169eed475e1c053e99036b8668625cfa94 Mon Sep 17 00:00:00 2001 | ||
13 | From: Jens Rehsack <sno@netbsd.org> | ||
14 | Date: Tue, 6 Oct 2020 10:22:17 +0200 | ||
15 | Subject: [PATCH] lib/DBD/File.pm: fix CVE-2014-10401 | ||
16 | |||
17 | Dig into the root cause of RT#99508 - which resulted in CVE-2014-10401 - and | ||
18 | figure out that DBI->parse_dsn is the wrong helper to parse our attributes in | ||
19 | DSN, since in DBD::dr::connect only the "dbname" remains from DSN which causes | ||
20 | parse_dsn to bailout. | ||
21 | |||
22 | Parsing on our own similar to parse_dsn shows the way out. | ||
23 | |||
24 | Signed-off-by: Jens Rehsack <sno@netbsd.org> | ||
25 | --- | ||
26 | lib/DBD/File.pm | 7 +++++-- | ||
27 | 1 file changed, 5 insertions(+), 2 deletions(-) | ||
28 | |||
29 | diff --git a/lib/DBD/File.pm b/lib/DBD/File.pm | ||
30 | index fb14e9a..f55076f 100644 | ||
31 | --- a/lib/DBD/File.pm | ||
32 | +++ b/lib/DBD/File.pm | ||
33 | @@ -109,7 +109,11 @@ sub connect | ||
34 | # We do not (yet) care about conflicting attributes here | ||
35 | # my $dbh = DBI->connect ("dbi:CSV:f_dir=test", undef, undef, { f_dir => "text" }); | ||
36 | # will test here that both test and text should exist | ||
37 | - if (my $attr_hash = (DBI->parse_dsn ($dbname))[3]) { | ||
38 | + # | ||
39 | + # Parsing on our own similar to parse_dsn to find attributes in 'dbname' parameter. | ||
40 | + if ($dbname) { | ||
41 | + my @attrs = split /;/ => $dbname; | ||
42 | + my $attr_hash = { map { split /\s*=>?\s*|\s*,\s*/, $_} @attrs }; | ||
43 | if (defined $attr_hash->{f_dir} && ! -d $attr_hash->{f_dir}) { | ||
44 | my $msg = "No such directory '$attr_hash->{f_dir}"; | ||
45 | $drh->set_err (2, $msg); | ||
46 | @@ -120,7 +124,6 @@ sub connect | ||
47 | if ($attr and defined $attr->{f_dir} && ! -d $attr->{f_dir}) { | ||
48 | my $msg = "No such directory '$attr->{f_dir}"; | ||
49 | $drh->set_err (2, $msg); | ||
50 | - $attr->{RaiseError} and croak $msg; | ||
51 | return; | ||
52 | } | ||
53 | |||
54 | -- | ||
55 | 2.17.1 | ||
56 | |||
diff --git a/meta-oe/recipes-devtools/perl/libdbi-perl_1.643.bb b/meta-oe/recipes-devtools/perl/libdbi-perl_1.644.bb index 1fee83a8fd..7f6c9059d0 100644 --- a/meta-oe/recipes-devtools/perl/libdbi-perl_1.643.bb +++ b/meta-oe/recipes-devtools/perl/libdbi-perl_1.644.bb | |||
@@ -7,13 +7,12 @@ database interface independent of the actual database being used. \ | |||
7 | HOMEPAGE = "http://search.cpan.org/dist/DBI/" | 7 | HOMEPAGE = "http://search.cpan.org/dist/DBI/" |
8 | SECTION = "libs" | 8 | SECTION = "libs" |
9 | LICENSE = "Artistic-1.0 | GPL-1.0-or-later" | 9 | LICENSE = "Artistic-1.0 | GPL-1.0-or-later" |
10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=10982c7148e0a012c0fd80534522f5c5" | 10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=8097b88c6165f0d43949441e6ea581cd" |
11 | 11 | ||
12 | SRC_URI = "http://search.cpan.org/CPAN/authors/id/T/TI/TIMB/DBI-${PV}.tar.gz \ | 12 | SRC_URI = "https://cpan.metacpan.org/authors/id/H/HM/HMBRAND/DBI-${PV}.tar.gz \ |
13 | file://CVE-2014-10402.patch \ | 13 | file://0001-Fix-building-on-Fedora-40-with-GCC-14.2.1.patch \ |
14 | " | 14 | " |
15 | SRC_URI[md5sum] = "352f80b1e23769c116082a90905d7398" | 15 | SRC_URI[sha256sum] = "2297b99de09e67086640b590699e0e982fb469da63a93fe28dc14782db7a53c8" |
16 | SRC_URI[sha256sum] = "8a2b993db560a2c373c174ee976a51027dd780ec766ae17620c20393d2e836fa" | ||
17 | 16 | ||
18 | S = "${WORKDIR}/DBI-${PV}" | 17 | S = "${WORKDIR}/DBI-${PV}" |
19 | 18 | ||