<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/poky.git, branch yocto-3.1.25</title>
<subtitle>Mirror of git.yoctoproject.org/poky</subtitle>
<id>https://git.enea.com/cgit/linux/poky.git/atom?h=yocto-3.1.25</id>
<link rel='self' href='https://git.enea.com/cgit/linux/poky.git/atom?h=yocto-3.1.25'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/'/>
<updated>2023-05-03T22:31:05+00:00</updated>
<entry>
<title>build-appliance-image: Update to dunfell head revision</title>
<updated>2023-05-03T22:31:05+00:00</updated>
<author>
<name>Steve Sakoman</name>
<email>steve@sakoman.com</email>
</author>
<published>2023-05-03T22:29:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=a631bfc3a38f7d00b2c666661a89a758a0af9831'/>
<id>urn:sha1:a631bfc3a38f7d00b2c666661a89a758a0af9831</id>
<content type='text'>
(From OE-Core rev: fd4cc8d7b5156c43d162a1a5a809fae507457ef4)

Signed-off-by: Steve Sakoman &lt;steve@sakoman.com&gt;
</content>
</entry>
<entry>
<title>poky.conf: bump version for 3.1.25</title>
<updated>2023-05-03T14:12:38+00:00</updated>
<author>
<name>Steve Sakoman</name>
<email>steve@sakoman.com</email>
</author>
<published>2023-05-01T15:20:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=ee461b42358db458f39e558b8667fbcffb6d8044'/>
<id>urn:sha1:ee461b42358db458f39e558b8667fbcffb6d8044</id>
<content type='text'>
(From meta-yocto rev: 0faaa6c13564565a5fe7f7ff00000c146c511cc4)

Signed-off-by: Steve Sakoman &lt;steve@sakoman.com&gt;
</content>
</entry>
<entry>
<title>documentation: update for 3.1.25</title>
<updated>2023-05-03T14:09:42+00:00</updated>
<author>
<name>Steve Sakoman</name>
<email>steve@sakoman.com</email>
</author>
<published>2023-05-01T14:34:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=68801aaf80f27d566b5d2db75b3f4d0a7f08cf0e'/>
<id>urn:sha1:68801aaf80f27d566b5d2db75b3f4d0a7f08cf0e</id>
<content type='text'>
(From yocto-docs rev: 19b7932e6af89943b899687c1f5cb91181cd3580)

Signed-off-by: Steve Sakoman &lt;steve@sakoman.com&gt;
Reviewed-by: Michael Opdenacker &lt;michael.opdenacker@bootlin.com&gt;
Signed-off-by: Steve Sakoman &lt;steve@sakoman.com&gt;
</content>
</entry>
<entry>
<title>populate_sdk_base: add zip options</title>
<updated>2023-05-03T14:09:42+00:00</updated>
<author>
<name>Christoph Lauer</name>
<email>christoph.lauer@xtronic.de</email>
</author>
<published>2023-04-23T08:12:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=38f85fe6ddea1e88897c2a95d6f661c1f822009e'/>
<id>urn:sha1:38f85fe6ddea1e88897c2a95d6f661c1f822009e</id>
<content type='text'>
Add SDK_ZIP_OPTIONS to remove symbolic link creation in zip archive or add options, e.g. for encryption of the zip archive.

(From OE-Core rev: 04b62f9459b401c276255f166d0738b6f902a576)

(From OE-Core rev: b9e0c3ced645cab74b2488a26b8f656a94b2a6f5)

Signed-off-by: Christoph Lauer &lt;christoph.lauer@xtronic.de&gt;
Signed-off-by: Alexandre Belloni &lt;alexandre.belloni@bootlin.com&gt;
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
Signed-off-by: Steve Sakoman &lt;steve@sakoman.com&gt;
</content>
</entry>
<entry>
<title>go: fix CVE-2023-24534 denial of service from excessive memory allocation</title>
<updated>2023-05-03T14:09:42+00:00</updated>
<author>
<name>Vivek Kumbhar</name>
<email>vkumbhar@mvista.com</email>
</author>
<published>2023-04-28T14:44:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=62034cd62590ea783f28b0a819f4a2039931bbbb'/>
<id>urn:sha1:62034cd62590ea783f28b0a819f4a2039931bbbb</id>
<content type='text'>
A parsed MIME header is a map[string][]string. In the common case,
a header contains many one-element []string slices. To avoid
allocating a separate slice for each key, ReadMIMEHeader looks
ahead in the input to predict the number of keys that will be
parsed, and allocates a single []string of that length.
The individual slices are then allocated out of the larger one.

The prediction of the number of header keys was done by counting
newlines in the input buffer, which does not take into account
header continuation lines (where a header key/value spans multiple
lines) or the end of the header block and the start of the body.
This could lead to a substantial amount of overallocation, for
example when the body consists of nothing but a large block of
newlines.

Fix header key count prediction to take into account the end of
the headers (indicated by a blank line) and continuation lines
(starting with whitespace).

Thanks to Jakob Ackermann (@das7pad) for reporting this issue.

Fixes CVE-2023-24534
For #58975
Fixes #59267

(From OE-Core rev: daa6aa9c7198a07322f1828a9db457fec86191cf)

Signed-off-by: Vivek Kumbhar &lt;vkumbhar@mvista.com&gt;
Signed-off-by: Steve Sakoman &lt;steve@sakoman.com&gt;
</content>
</entry>
<entry>
<title>curl: Security fix CVE-2023-27533, CVE-2023-27535 and CVE-2023-27536</title>
<updated>2023-05-03T14:09:42+00:00</updated>
<author>
<name>Vijay Anusuri</name>
<email>vanusuri@mvista.com</email>
</author>
<published>2023-04-27T02:25:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=87a450e2224aa7cb55432df004f38a1045af619c'/>
<id>urn:sha1:87a450e2224aa7cb55432df004f38a1045af619c</id>
<content type='text'>
Upstream-Status: Backport [https://git.launchpad.net/ubuntu/+source/curl/tree/debian/patches?h=ubuntu/focal-security &amp; https://github.com/curl/curl/commit/538b1e79a6e7b0bb829ab4cecc828d32105d0684 &amp; https://github.com/curl/curl/commit/ed5095ed94281989e103c72e032200b83be37878 &amp; https://github.com/curl/curl/commit/f18af4f874cecab82a9797e8c7541e0990c7a64c &amp; https://github.com/curl/curl/commit/8f4608468b890dce2dad9f91d5607ee7e9c1aba1 &amp; https://github.com/curl/curl/commit/cb49e67303dbafbab1cebf4086e3ec15b7d56ee5]

(From OE-Core rev: 08ffa2437967a642a4c8e35e2158bb369454764a)

Signed-off-by: Vijay Anusuri &lt;vanusuri@mvista.com&gt;
Signed-off-by: Steve Sakoman &lt;steve@sakoman.com&gt;
</content>
</entry>
<entry>
<title>qemu: Whitelist CVE-2023-0664</title>
<updated>2023-05-03T14:09:42+00:00</updated>
<author>
<name>Virendra Thakur</name>
<email>virendrak@kpit.com</email>
</author>
<published>2023-04-27T08:09:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=d58a0c32395fdf48f144ba7f59820134364f7ea6'/>
<id>urn:sha1:d58a0c32395fdf48f144ba7f59820134364f7ea6</id>
<content type='text'>
This CVE is related to Windows.

Link: https://nvd.nist.gov/vuln/detail/CVE-2023-0664

(From OE-Core rev: 8efb0fc7e7db4bad3dbc40d8f890a6c2e7be38fa)

Signed-off-by: Virendra Thakur &lt;virendrak@kpit.com&gt;
Signed-off-by: Steve Sakoman &lt;steve@sakoman.com&gt;
</content>
</entry>
<entry>
<title>openssl: Fix CVE-2023-0466</title>
<updated>2023-05-03T14:09:42+00:00</updated>
<author>
<name>Omkar Patil</name>
<email>omkar.patil@kpit.com</email>
</author>
<published>2023-04-26T07:47:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=667eb766abe23489a3f72e6ff41d0f19743439be'/>
<id>urn:sha1:667eb766abe23489a3f72e6ff41d0f19743439be</id>
<content type='text'>
Add patch to fix CVE-2023-0466

Link: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a

(From OE-Core rev: a80d772593b3a38c062e546557d5f8d76eb71fe4)

Signed-off-by: Omkar Patil &lt;omkar.patil@kpit.com&gt;
Signed-off-by: Omkar Patil &lt;omkarpatil10.93@gmail.com&gt;
Signed-off-by: Steve Sakoman &lt;steve@sakoman.com&gt;
</content>
</entry>
<entry>
<title>openssl: Fix CVE-2023-0465</title>
<updated>2023-05-03T14:09:42+00:00</updated>
<author>
<name>Omkar Patil</name>
<email>omkar.patil@kpit.com</email>
</author>
<published>2023-04-26T07:47:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=56c03791cdbd22521733e12a0b6af7a1c04b3100'/>
<id>urn:sha1:56c03791cdbd22521733e12a0b6af7a1c04b3100</id>
<content type='text'>
Add patch to fix CVE-2023-0465

Link: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95

(From OE-Core rev: cbca55301bb065a6506e65cf64cc90b598e39789)

Signed-off-by: Omkar Patil &lt;omkar.patil@kpit.com&gt;
Signed-off-by: Omkar Patil &lt;omkarpatil10.93@gmail.com&gt;
Signed-off-by: Steve Sakoman &lt;steve@sakoman.com&gt;
</content>
</entry>
<entry>
<title>openssl: Fix CVE-2023-0464</title>
<updated>2023-05-03T14:09:42+00:00</updated>
<author>
<name>Nikhil R</name>
<email>nikhil.r@kpit.com</email>
</author>
<published>2023-04-26T07:47:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=acd638685c5a8d6ceca0592d50dd7891baf0eaff'/>
<id>urn:sha1:acd638685c5a8d6ceca0592d50dd7891baf0eaff</id>
<content type='text'>
Fix CVE-2023-0464 for openssl

A security vulnerability has been identified in all supported versions
of OpenSSL related to the verification of X.509 certificate chains
that include policy constraints.  Attackers may be able to exploit
this vulnerability by creating a malicious certificate chain that
triggers exponential use of computational resources, leading
to a denial-of-service(DoS) attack on affected systems.

Link: https://git.openssl.org/gitweb/?p=openssl.git;a=patch;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b

(From OE-Core rev: 0c50550e2c8fca3263776c2bb985a8c58b920b99)

Signed-off-by: Nikhil R &lt;nikhil.r@kpit.com&gt;
Signed-off-by: Omkar Patil &lt;omkarpatil10.93@gmail.com&gt;
Signed-off-by: Steve Sakoman &lt;steve@sakoman.com&gt;
</content>
</entry>
</feed>
