mirror of
https://git.yoctoproject.org/poky
synced 2026-02-21 08:59:41 +01:00
Compare commits
62 Commits
yocto-3.1.
...
yocto-3.1.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
795339092f | ||
|
|
38793eecda | ||
|
|
25e51ec82a | ||
|
|
963a35872c | ||
|
|
75dde71fba | ||
|
|
9bb220ccc1 | ||
|
|
b8623317df | ||
|
|
8967fcbcc4 | ||
|
|
22767ef398 | ||
|
|
ec21b227cd | ||
|
|
947e5ff11c | ||
|
|
56485d82f6 | ||
|
|
80306758c6 | ||
|
|
bdfabf0409 | ||
|
|
cf5a00721f | ||
|
|
02bd7ece75 | ||
|
|
69f5804c8a | ||
|
|
11d99fba1f | ||
|
|
746b301d37 | ||
|
|
038e25aec3 | ||
|
|
1a6bf73119 | ||
|
|
57b3bf09e1 | ||
|
|
fc34eadb56 | ||
|
|
652e053d0c | ||
|
|
215a1a8237 | ||
|
|
3a71f5c1bf | ||
|
|
643c3b7bf3 | ||
|
|
80132fb2df | ||
|
|
0e5c82c4c9 | ||
|
|
15d764e697 | ||
|
|
1f2cf291e7 | ||
|
|
090075eb3a | ||
|
|
d875c5e57b | ||
|
|
f18d2289d0 | ||
|
|
de97f0eccc | ||
|
|
104c0e6938 | ||
|
|
8ee284f8b2 | ||
|
|
46f68b5121 | ||
|
|
e24afc304a | ||
|
|
22c84eea24 | ||
|
|
6e1c3966d1 | ||
|
|
44ce6c4a5d | ||
|
|
e1e7e3c7ba | ||
|
|
89a0148b50 | ||
|
|
47d6478126 | ||
|
|
30b0a2e1c5 | ||
|
|
82b03a6837 | ||
|
|
e006c87e22 | ||
|
|
1a5fb730ac | ||
|
|
3d9e8146d0 | ||
|
|
695c0cd680 | ||
|
|
8821203873 | ||
|
|
0beeed7d25 | ||
|
|
409df675a8 | ||
|
|
b2089f012a | ||
|
|
e4e3cfdf9c | ||
|
|
9071e52286 | ||
|
|
7b8020e282 | ||
|
|
37cc520f28 | ||
|
|
349e53d3cc | ||
|
|
1db38c5a18 | ||
|
|
b409a428c1 |
@@ -6,24 +6,24 @@ of OpenEmbedded. It is distro-less (can build a functional image with
|
||||
DISTRO = "nodistro") and contains only emulated machine support.
|
||||
|
||||
For information about OpenEmbedded, see the OpenEmbedded website:
|
||||
http://www.openembedded.org/
|
||||
https://www.openembedded.org/
|
||||
|
||||
The Yocto Project has extensive documentation about OE including a reference manual
|
||||
which can be found at:
|
||||
http://yoctoproject.org/documentation
|
||||
https://docs.yoctoproject.org/
|
||||
|
||||
|
||||
Contributing
|
||||
------------
|
||||
|
||||
Please refer to
|
||||
http://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded
|
||||
https://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded
|
||||
for guidelines on how to submit patches.
|
||||
|
||||
Mailing list:
|
||||
|
||||
http://lists.openembedded.org/mailman/listinfo/openembedded-core
|
||||
https://lists.openembedded.org/g/openembedded-core
|
||||
|
||||
Source code:
|
||||
|
||||
http://git.openembedded.org/openembedded-core/
|
||||
https://git.openembedded.org/openembedded-core/
|
||||
|
||||
@@ -74,8 +74,12 @@ class Command:
|
||||
result = command_method(self, commandline)
|
||||
except CommandError as exc:
|
||||
return None, exc.args[0]
|
||||
except (Exception, SystemExit):
|
||||
except (Exception, SystemExit) as exc:
|
||||
import traceback
|
||||
if isinstance(exc, bb.BBHandledException):
|
||||
# We need to start returning real exceptions here. Until we do, we can't
|
||||
# tell if an exception is an instance of bb.BBHandledException
|
||||
return None, "bb.BBHandledException()\n" + traceback.format_exc()
|
||||
return None, traceback.format_exc()
|
||||
else:
|
||||
return result, None
|
||||
|
||||
@@ -411,6 +411,8 @@ class BBCooker:
|
||||
self.data.disableTracking()
|
||||
|
||||
def parseConfiguration(self):
|
||||
self.updateCacheSync()
|
||||
|
||||
# Change nice level if we're asked to
|
||||
nice = self.data.getVar("BB_NICE_LEVEL")
|
||||
if nice:
|
||||
|
||||
@@ -348,7 +348,12 @@ class ServerCommunicator():
|
||||
logger.info("No reply from server in 30s")
|
||||
if not self.recv.poll(30):
|
||||
raise ProcessTimeout("Timeout while waiting for a reply from the bitbake server (60s)")
|
||||
return self.recv.get()
|
||||
ret, exc = self.recv.get()
|
||||
# Should probably turn all exceptions in exc back into exceptions?
|
||||
# For now, at least handle BBHandledException
|
||||
if exc and "BBHandledException" in exc:
|
||||
raise bb.BBHandledException()
|
||||
return ret, exc
|
||||
|
||||
def updateFeatureSet(self, featureset):
|
||||
_, error = self.runCommand(["setFeatures", featureset])
|
||||
|
||||
@@ -465,7 +465,16 @@ class Tinfoil:
|
||||
commandline = [command]
|
||||
if params:
|
||||
commandline.extend(params)
|
||||
result = self.server_connection.connection.runCommand(commandline)
|
||||
try:
|
||||
result = self.server_connection.connection.runCommand(commandline)
|
||||
finally:
|
||||
while True:
|
||||
event = self.wait_event()
|
||||
if not event:
|
||||
break
|
||||
if isinstance(event, logging.LogRecord):
|
||||
if event.taskpid == 0 or event.levelno > logging.INFO:
|
||||
self.logger.handle(event)
|
||||
if result[1]:
|
||||
raise TinfoilCommandFailed(result[1])
|
||||
return result[0]
|
||||
|
||||
@@ -380,14 +380,27 @@ _evt_list = [ "bb.runqueue.runQueueExitWait", "bb.event.LogExecTTY", "logging.Lo
|
||||
"bb.event.BuildBase", "bb.build.TaskStarted", "bb.build.TaskSucceeded", "bb.build.TaskFailedSilent",
|
||||
"bb.build.TaskProgress", "bb.event.ProcessStarted", "bb.event.ProcessProgress", "bb.event.ProcessFinished"]
|
||||
|
||||
def drain_events_errorhandling(eventHandler):
|
||||
# We don't have logging setup, we do need to show any events we see before exiting
|
||||
event = True
|
||||
logger = bb.msg.logger_create('bitbake', sys.stdout)
|
||||
while event:
|
||||
event = eventHandler.waitEvent(0)
|
||||
if isinstance(event, logging.LogRecord):
|
||||
logger.handle(event)
|
||||
|
||||
def main(server, eventHandler, params, tf = TerminalFilter):
|
||||
|
||||
if not params.observe_only:
|
||||
params.updateToServer(server, os.environ.copy())
|
||||
try:
|
||||
if not params.observe_only:
|
||||
params.updateToServer(server, os.environ.copy())
|
||||
|
||||
includelogs, loglines, consolelogfile, logconfigfile = _log_settings_from_server(server, params.observe_only)
|
||||
includelogs, loglines, consolelogfile, logconfigfile = _log_settings_from_server(server, params.observe_only)
|
||||
|
||||
loglevel, _ = bb.msg.constructLogOptions()
|
||||
loglevel, _ = bb.msg.constructLogOptions()
|
||||
except bb.BBHandledException:
|
||||
drain_events_errorhandling(eventHandler)
|
||||
return 1
|
||||
|
||||
if params.options.quiet == 0:
|
||||
console_loglevel = loglevel
|
||||
|
||||
@@ -50,10 +50,10 @@ class ActionPlugin(LayerPlugin):
|
||||
if not (args.force or notadded):
|
||||
try:
|
||||
self.tinfoil.run_command('parseConfiguration')
|
||||
except bb.tinfoil.TinfoilUIException:
|
||||
except (bb.tinfoil.TinfoilUIException, bb.BBHandledException):
|
||||
# Restore the back up copy of bblayers.conf
|
||||
shutil.copy2(backup, bblayers_conf)
|
||||
bb.fatal("Parse failure with the specified layer added")
|
||||
bb.fatal("Parse failure with the specified layer added, aborting.")
|
||||
else:
|
||||
for item in notadded:
|
||||
sys.stderr.write("Specified layer %s is already in BBLAYERS\n" % item)
|
||||
|
||||
@@ -17,6 +17,7 @@ import sys
|
||||
import datetime
|
||||
|
||||
current_version = "3.1.12"
|
||||
bitbake_version = "1.46"
|
||||
|
||||
# String used in sidebar
|
||||
version = 'Version: ' + current_version
|
||||
@@ -82,7 +83,7 @@ extlinks = {
|
||||
|
||||
# Intersphinx config to use cross reference with Bitbake user manual
|
||||
intersphinx_mapping = {
|
||||
'bitbake': ('https://docs.yoctoproject.org/bitbake/1.46', None)
|
||||
'bitbake': ('https://docs.yoctoproject.org/bitbake/' + bitbake_version, None)
|
||||
}
|
||||
|
||||
# -- Options for HTML output -------------------------------------------------
|
||||
|
||||
@@ -3,7 +3,7 @@ DISTRO_NAME_NO_CAP : "dunfell"
|
||||
DISTRO_NAME : "Dunfell"
|
||||
DISTRO_NAME_NO_CAP_MINUS_ONE : "zeus"
|
||||
YOCTO_DOC_VERSION : "3.1.12"
|
||||
YOCTO_DOC_VERSION_MINUS_ONE : "3.0.2"
|
||||
YOCTO_DOC_VERSION_MINUS_ONE : "3.0.4"
|
||||
DISTRO_REL_TAG : "yocto-3.1.12"
|
||||
POKYVERSION : "23.0.12"
|
||||
YOCTO_POKY : "poky-&DISTRO_NAME_NO_CAP;-&POKYVERSION;"
|
||||
|
||||
@@ -184,8 +184,7 @@ The following BitBake changes have occurred.
|
||||
exceptions. Remove this argument in any calls to
|
||||
``bb.build.exec_func()`` in custom classes or scripts.
|
||||
|
||||
- The
|
||||
:term:`bitbake:BB_SETSCENE_VERIFY_FUNCTION2`
|
||||
- The ``BB_SETSCENE_VERIFY_FUNCTION2`` variable
|
||||
is no longer used. In the unlikely event that you have any references
|
||||
to it, they should be removed.
|
||||
|
||||
|
||||
@@ -1,11 +1,28 @@
|
||||
.. SPDX-License-Identifier: CC-BY-SA-2.0-UK
|
||||
|
||||
=========================
|
||||
Current Release Manuals
|
||||
=========================
|
||||
===========================
|
||||
Supported Release Manuals
|
||||
===========================
|
||||
|
||||
******************************
|
||||
Release Series 3.4 (honister)
|
||||
******************************
|
||||
|
||||
- :yocto_docs:`3.4 Documentation </3.4>`
|
||||
- :yocto_docs:`3.4.1 Documentation </3.4.1>`
|
||||
|
||||
******************************
|
||||
Release Series 3.3 (hardknott)
|
||||
******************************
|
||||
|
||||
- :yocto_docs:`3.3 Documentation </3.3>`
|
||||
- :yocto_docs:`3.3.1 Documentation </3.3.1>`
|
||||
- :yocto_docs:`3.3.2 Documentation </3.3.2>`
|
||||
- :yocto_docs:`3.3.3 Documentation </3.3.3>`
|
||||
- :yocto_docs:`3.3.4 Documentation </3.3.4>`
|
||||
|
||||
****************************
|
||||
3.1 'dunfell' Release Series
|
||||
Release Series 3.1 (dunfell)
|
||||
****************************
|
||||
|
||||
- :yocto_docs:`3.1 Documentation </3.1>`
|
||||
@@ -23,11 +40,21 @@
|
||||
- :yocto_docs:`3.1.12 Documentation </3.1.12>`
|
||||
|
||||
==========================
|
||||
Previous Release Manuals
|
||||
Outdated Release Manuals
|
||||
==========================
|
||||
|
||||
*******************************
|
||||
Release Series 3.2 (gatesgarth)
|
||||
*******************************
|
||||
|
||||
- :yocto_docs:`3.2 Documentation </3.2>`
|
||||
- :yocto_docs:`3.2.1 Documentation </3.2.1>`
|
||||
- :yocto_docs:`3.2.2 Documentation </3.2.2>`
|
||||
- :yocto_docs:`3.2.3 Documentation </3.2.3>`
|
||||
- :yocto_docs:`3.2.4 Documentation </3.2.4>`
|
||||
|
||||
*************************
|
||||
3.0 'zeus' Release Series
|
||||
Release Series 3.0 (zeus)
|
||||
*************************
|
||||
|
||||
- :yocto_docs:`3.0 Documentation </3.0>`
|
||||
@@ -37,7 +64,7 @@
|
||||
- :yocto_docs:`3.0.4 Documentation </3.0.4>`
|
||||
|
||||
****************************
|
||||
2.7 'warrior' Release Series
|
||||
Release Series 2.7 (warrior)
|
||||
****************************
|
||||
|
||||
- :yocto_docs:`2.7 Documentation </2.7>`
|
||||
@@ -47,7 +74,7 @@
|
||||
- :yocto_docs:`2.7.4 Documentation </2.7.4>`
|
||||
|
||||
*************************
|
||||
2.6 'thud' Release Series
|
||||
Release Series 2.6 (thud)
|
||||
*************************
|
||||
|
||||
- :yocto_docs:`2.6 Documentation </2.6>`
|
||||
@@ -57,16 +84,16 @@
|
||||
- :yocto_docs:`2.6.4 Documentation </2.6.4>`
|
||||
|
||||
*************************
|
||||
2.5 'sumo' Release Series
|
||||
Release Series 2.5 (sumo)
|
||||
*************************
|
||||
|
||||
- :yocto_docs:`2.5 Documentation </2.5>`
|
||||
- :yocto_docs:`2.5.1 Documentation </2.5.1>`
|
||||
- :yocto_docs:`2.5.2 Documentation </2.5.2>`
|
||||
- :yocto_docs:`2.5.3 Documentation </2.5.3>`
|
||||
|
||||
|
||||
**************************
|
||||
2.4 'rocko' Release Series
|
||||
Release Series 2.4 (rocko)
|
||||
**************************
|
||||
|
||||
- :yocto_docs:`2.4 Documentation </2.4>`
|
||||
@@ -76,7 +103,7 @@
|
||||
- :yocto_docs:`2.4.4 Documentation </2.4.4>`
|
||||
|
||||
*************************
|
||||
2.3 'pyro' Release Series
|
||||
Release Series 2.3 (pyro)
|
||||
*************************
|
||||
|
||||
- :yocto_docs:`2.3 Documentation </2.3>`
|
||||
@@ -86,7 +113,7 @@
|
||||
- :yocto_docs:`2.3.4 Documentation </2.3.4>`
|
||||
|
||||
**************************
|
||||
2.2 'morty' Release Series
|
||||
Release Series 2.2 (morty)
|
||||
**************************
|
||||
|
||||
- :yocto_docs:`2.2 Documentation </2.2>`
|
||||
@@ -95,7 +122,7 @@
|
||||
- :yocto_docs:`2.2.3 Documentation </2.2.3>`
|
||||
|
||||
****************************
|
||||
2.1 'krogoth' Release Series
|
||||
Release Series 2.1 (krogoth)
|
||||
****************************
|
||||
|
||||
- :yocto_docs:`2.1 Documentation </2.1>`
|
||||
@@ -104,7 +131,7 @@
|
||||
- :yocto_docs:`2.1.3 Documentation </2.1.3>`
|
||||
|
||||
***************************
|
||||
2.0 'jethro' Release Series
|
||||
Release Series 2.0 (jethro)
|
||||
***************************
|
||||
|
||||
- :yocto_docs:`1.9 Documentation </1.9>`
|
||||
@@ -114,7 +141,7 @@
|
||||
- :yocto_docs:`2.0.3 Documentation </2.0.3>`
|
||||
|
||||
*************************
|
||||
1.8 'fido' Release Series
|
||||
Release Series 1.8 (fido)
|
||||
*************************
|
||||
|
||||
- :yocto_docs:`1.8 Documentation </1.8>`
|
||||
@@ -122,7 +149,7 @@
|
||||
- :yocto_docs:`1.8.2 Documentation </1.8.2>`
|
||||
|
||||
**************************
|
||||
1.7 'dizzy' Release Series
|
||||
Release Series 1.7 (dizzy)
|
||||
**************************
|
||||
|
||||
- :yocto_docs:`1.7 Documentation </1.7>`
|
||||
@@ -131,16 +158,16 @@
|
||||
- :yocto_docs:`1.7.3 Documentation </1.7.3>`
|
||||
|
||||
**************************
|
||||
1.6 'daisy' Release Series
|
||||
Release Series 1.6 (daisy)
|
||||
**************************
|
||||
|
||||
- :yocto_docs:`1.6 Documentation </1.6>`
|
||||
- :yocto_docs:`1.6.1 Documentation </1.6.1>`
|
||||
- :yocto_docs:`1.6.2 Documentation </1.6.2>`
|
||||
- :yocto_docs:`1.6.3 Documentation </1.6.3>`
|
||||
|
||||
|
||||
*************************
|
||||
1.5 'dora' Release Series
|
||||
Release Series 1.5 (dora)
|
||||
*************************
|
||||
|
||||
- :yocto_docs:`1.5 Documentation </1.5>`
|
||||
@@ -150,7 +177,7 @@
|
||||
- :yocto_docs:`1.5.4 Documentation </1.5.4>`
|
||||
|
||||
**************************
|
||||
1.4 'dylan' Release Series
|
||||
Release Series 1.4 (dylan)
|
||||
**************************
|
||||
|
||||
- :yocto_docs:`1.4 Documentation </1.4>`
|
||||
@@ -159,9 +186,9 @@
|
||||
- :yocto_docs:`1.4.3 Documentation </1.4.3>`
|
||||
- :yocto_docs:`1.4.4 Documentation </1.4.4>`
|
||||
- :yocto_docs:`1.4.5 Documentation </1.4.5>`
|
||||
|
||||
|
||||
**************************
|
||||
1.3 'danny' Release Series
|
||||
Release Series 1.3 (danny)
|
||||
**************************
|
||||
|
||||
- :yocto_docs:`1.3 Documentation </1.3>`
|
||||
@@ -169,7 +196,7 @@
|
||||
- :yocto_docs:`1.3.2 Documentation </1.3.2>`
|
||||
|
||||
***************************
|
||||
1.2 'denzil' Release Series
|
||||
Release Series 1.2 (denzil)
|
||||
***************************
|
||||
|
||||
- :yocto_docs:`1.2 Documentation </1.2>`
|
||||
@@ -177,7 +204,7 @@
|
||||
- :yocto_docs:`1.2.2 Documentation </1.2.2>`
|
||||
|
||||
***************************
|
||||
1.1 'edison' Release Series
|
||||
Release Series 1.1 (edison)
|
||||
***************************
|
||||
|
||||
- :yocto_docs:`1.1 Documentation </1.1>`
|
||||
@@ -185,7 +212,7 @@
|
||||
- :yocto_docs:`1.1.2 Documentation </1.1.2>`
|
||||
|
||||
****************************
|
||||
1.0 'bernard' Release Series
|
||||
Release Series 1.0 (bernard)
|
||||
****************************
|
||||
|
||||
- :yocto_docs:`1.0 Documentation </1.0>`
|
||||
@@ -193,7 +220,7 @@
|
||||
- :yocto_docs:`1.0.2 Documentation </1.0.2>`
|
||||
|
||||
****************************
|
||||
0.9 'laverne' Release Series
|
||||
Release Series 0.9 (laverne)
|
||||
****************************
|
||||
|
||||
- :yocto_docs:`0.9 Documentation </0.9>`
|
||||
|
||||
@@ -2,7 +2,10 @@
|
||||
'use strict';
|
||||
|
||||
var all_versions = {
|
||||
'dev': 'dev (3.3)',
|
||||
'dev': 'dev (3.5)',
|
||||
'3.4.1': '3.4.1',
|
||||
'3.3.4': '3.3.4',
|
||||
'3.2.4': '3.2.4',
|
||||
'3.1.12': '3.1.12',
|
||||
'3.0.4': '3.0.4',
|
||||
'2.7.4': '2.7.4',
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
DISTRO = "poky"
|
||||
DISTRO_NAME = "Poky (Yocto Project Reference Distro)"
|
||||
DISTRO_VERSION = "3.1.12"
|
||||
DISTRO_VERSION = "3.1.13"
|
||||
DISTRO_CODENAME = "dunfell"
|
||||
SDK_VENDOR = "-pokysdk"
|
||||
SDK_VERSION = "${@d.getVar('DISTRO_VERSION').replace('snapshot-${DATE}', 'snapshot')}"
|
||||
|
||||
@@ -953,23 +953,19 @@ def write_latest_srcrev(d, pkghistdir):
|
||||
value = value.replace('"', '').strip()
|
||||
old_tag_srcrevs[key] = value
|
||||
with open(srcrevfile, 'w') as f:
|
||||
orig_srcrev = d.getVar('SRCREV', False) or 'INVALID'
|
||||
if orig_srcrev != 'INVALID':
|
||||
f.write('# SRCREV = "%s"\n' % orig_srcrev)
|
||||
if len(srcrevs) > 1:
|
||||
for name, srcrev in sorted(srcrevs.items()):
|
||||
orig_srcrev = d.getVar('SRCREV_%s' % name, False)
|
||||
if orig_srcrev:
|
||||
f.write('# SRCREV_%s = "%s"\n' % (name, orig_srcrev))
|
||||
f.write('SRCREV_%s = "%s"\n' % (name, srcrev))
|
||||
else:
|
||||
f.write('SRCREV = "%s"\n' % next(iter(srcrevs.values())))
|
||||
if len(tag_srcrevs) > 0:
|
||||
for name, srcrev in sorted(tag_srcrevs.items()):
|
||||
f.write('# tag_%s = "%s"\n' % (name, srcrev))
|
||||
if name in old_tag_srcrevs and old_tag_srcrevs[name] != srcrev:
|
||||
pkg = d.getVar('PN')
|
||||
bb.warn("Revision for tag %s in package %s was changed since last build (from %s to %s)" % (name, pkg, old_tag_srcrevs[name], srcrev))
|
||||
for name, srcrev in sorted(srcrevs.items()):
|
||||
suffix = "_" + name
|
||||
if name == "default":
|
||||
suffix = ""
|
||||
orig_srcrev = d.getVar('SRCREV%s' % suffix, False)
|
||||
if orig_srcrev:
|
||||
f.write('# SRCREV%s = "%s"\n' % (suffix, orig_srcrev))
|
||||
f.write('SRCREV%s = "%s"\n' % (suffix, srcrev))
|
||||
for name, srcrev in sorted(tag_srcrevs.items()):
|
||||
f.write('# tag_%s = "%s"\n' % (name, srcrev))
|
||||
if name in old_tag_srcrevs and old_tag_srcrevs[name] != srcrev:
|
||||
pkg = d.getVar('PN')
|
||||
bb.warn("Revision for tag %s in package %s was changed since last build (from %s to %s)" % (name, pkg, old_tag_srcrevs[name], srcrev))
|
||||
|
||||
else:
|
||||
if os.path.exists(srcrevfile):
|
||||
|
||||
@@ -315,8 +315,8 @@ do_package_write_deb[dirs] = "${PKGWRITEDIRDEB}"
|
||||
do_package_write_deb[cleandirs] = "${PKGWRITEDIRDEB}"
|
||||
do_package_write_deb[umask] = "022"
|
||||
do_package_write_deb[depends] += "${@oe.utils.build_depends_string(d.getVar('PACKAGE_WRITE_DEPS'), 'do_populate_sysroot')}"
|
||||
addtask package_write_deb after do_packagedata do_package
|
||||
|
||||
EPOCHTASK ??= ""
|
||||
addtask package_write_deb after do_packagedata do_package ${EPOCHTASK}
|
||||
|
||||
PACKAGEINDEXDEPS += "dpkg-native:do_populate_sysroot"
|
||||
PACKAGEINDEXDEPS += "apt-native:do_populate_sysroot"
|
||||
|
||||
@@ -274,7 +274,8 @@ do_package_write_ipk[dirs] = "${PKGWRITEDIRIPK}"
|
||||
do_package_write_ipk[cleandirs] = "${PKGWRITEDIRIPK}"
|
||||
do_package_write_ipk[umask] = "022"
|
||||
do_package_write_ipk[depends] += "${@oe.utils.build_depends_string(d.getVar('PACKAGE_WRITE_DEPS'), 'do_populate_sysroot')}"
|
||||
addtask package_write_ipk after do_packagedata do_package
|
||||
EPOCHTASK ??= ""
|
||||
addtask package_write_ipk after do_packagedata do_package ${EPOCHTASK}
|
||||
|
||||
PACKAGEINDEXDEPS += "opkg-utils-native:do_populate_sysroot"
|
||||
PACKAGEINDEXDEPS += "opkg-native:do_populate_sysroot"
|
||||
|
||||
@@ -743,7 +743,8 @@ do_package_write_rpm[dirs] = "${PKGWRITEDIRRPM}"
|
||||
do_package_write_rpm[cleandirs] = "${PKGWRITEDIRRPM}"
|
||||
do_package_write_rpm[umask] = "022"
|
||||
do_package_write_rpm[depends] += "${@oe.utils.build_depends_string(d.getVar('PACKAGE_WRITE_DEPS'), 'do_populate_sysroot')}"
|
||||
addtask package_write_rpm after do_packagedata do_package
|
||||
EPOCHTASK ??= ""
|
||||
addtask package_write_rpm after do_packagedata do_package ${EPOCHTASK}
|
||||
|
||||
PACKAGEINDEXDEPS += "rpm-native:do_populate_sysroot"
|
||||
PACKAGEINDEXDEPS += "createrepo-c-native:do_populate_sysroot"
|
||||
|
||||
@@ -106,6 +106,8 @@ python create_source_date_epoch_stamp() {
|
||||
os.rename(tmp_file, epochfile)
|
||||
}
|
||||
|
||||
EPOCHTASK = "do_deploy_source_date_epoch"
|
||||
|
||||
# Generate the stamp after do_unpack runs
|
||||
do_unpack[postfuncs] += "create_source_date_epoch_stamp"
|
||||
|
||||
|
||||
@@ -44,7 +44,14 @@ CVE_CHECK_WHITELIST += "CVE-2010-4756"
|
||||
# exposing this interface in an exploitable way
|
||||
CVE_CHECK_WHITELIST += "CVE-2020-29509 CVE-2020-29511"
|
||||
|
||||
|
||||
# db
|
||||
# Since Oracle relicensed bdb, the open source community is slowly but surely replacing bdb with
|
||||
# supported and open source friendly alternatives. As a result these CVEs are unlikely to ever be fixed.
|
||||
CVE_CHECK_WHITELIST += "CVE-2015-2583 CVE-2015-2624 CVE-2015-2626 CVE-2015-2640 CVE-2015-2654 \
|
||||
CVE-2015-2656 CVE-2015-4754 CVE-2015-4764 CVE-2015-4774 CVE-2015-4775 CVE-2015-4776 CVE-2015-4777 \
|
||||
CVE-2015-4778 CVE-2015-4779 CVE-2015-4780 CVE-2015-4781 CVE-2015-4782 CVE-2015-4783 CVE-2015-4784 \
|
||||
CVE-2015-4785 CVE-2015-4786 CVE-2015-4787 CVE-2015-4788 CVE-2015-4789 CVE-2015-4790 CVE-2016-0682 \
|
||||
CVE-2016-0689 CVE-2016-0692 CVE-2016-0694 CVE-2016-3418 CVE-2020-2981"
|
||||
|
||||
#### CPE update pending ####
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ from oeqa.core.decorator.depends import OETestDepends
|
||||
from oeqa.core.decorator.data import skipIfNotFeature
|
||||
|
||||
# need some kernel fragments
|
||||
# echo "KERNEL_FEATURES_append += \" features\/kernel\-sample\/kernel\-sample.scc\"" >> local.conf
|
||||
# echo "KERNEL_FEATURES_append = \" features\/kernel\-sample\/kernel\-sample.scc\"" >> local.conf
|
||||
class KSample(OERuntimeTestCase):
|
||||
def cmd_and_check(self, cmd='', match_string=''):
|
||||
status, output = self.target.run(cmd)
|
||||
|
||||
@@ -296,7 +296,7 @@ class ParseLogsTest(OERuntimeTestCase):
|
||||
grepcmd = 'grep '
|
||||
grepcmd += '-Ei "'
|
||||
for error in errors:
|
||||
grepcmd += '\<' + error + '\>' + '|'
|
||||
grepcmd += r'\<' + error + r'\>' + '|'
|
||||
grepcmd = grepcmd[:-1]
|
||||
grepcmd += '" ' + str(log) + " | grep -Eiv \'"
|
||||
|
||||
@@ -307,13 +307,13 @@ class ParseLogsTest(OERuntimeTestCase):
|
||||
errorlist = ignore_errors['default']
|
||||
|
||||
for ignore_error in errorlist:
|
||||
ignore_error = ignore_error.replace('(', '\(')
|
||||
ignore_error = ignore_error.replace(')', '\)')
|
||||
ignore_error = ignore_error.replace('(', r'\(')
|
||||
ignore_error = ignore_error.replace(')', r'\)')
|
||||
ignore_error = ignore_error.replace("'", '.')
|
||||
ignore_error = ignore_error.replace('?', '\?')
|
||||
ignore_error = ignore_error.replace('[', '\[')
|
||||
ignore_error = ignore_error.replace(']', '\]')
|
||||
ignore_error = ignore_error.replace('*', '\*')
|
||||
ignore_error = ignore_error.replace('?', r'\?')
|
||||
ignore_error = ignore_error.replace('[', r'\[')
|
||||
ignore_error = ignore_error.replace(']', r'\]')
|
||||
ignore_error = ignore_error.replace('*', r'\*')
|
||||
ignore_error = ignore_error.replace('0-9', '[0-9]')
|
||||
grepcmd += ignore_error + '|'
|
||||
grepcmd = grepcmd[:-1]
|
||||
|
||||
@@ -442,6 +442,7 @@ class DevtoolAddTests(DevtoolBase):
|
||||
tempdir = tempfile.mkdtemp(prefix='devtoolqa')
|
||||
self.track_for_cleanup(tempdir)
|
||||
url = 'gitsm://git.yoctoproject.org/mraa'
|
||||
url_branch = '%s;branch=master' % url
|
||||
checkrev = 'ae127b19a50aa54255e4330ccfdd9a5d058e581d'
|
||||
testrecipe = 'mraa'
|
||||
srcdir = os.path.join(tempdir, testrecipe)
|
||||
@@ -462,7 +463,7 @@ class DevtoolAddTests(DevtoolBase):
|
||||
checkvars = {}
|
||||
checkvars['S'] = '${WORKDIR}/git'
|
||||
checkvars['PV'] = '1.0+git${SRCPV}'
|
||||
checkvars['SRC_URI'] = url
|
||||
checkvars['SRC_URI'] = url_branch
|
||||
checkvars['SRCREV'] = '${AUTOREV}'
|
||||
self._test_recipe_contents(recipefile, checkvars, [])
|
||||
# Try with revision and version specified
|
||||
@@ -481,7 +482,7 @@ class DevtoolAddTests(DevtoolBase):
|
||||
checkvars = {}
|
||||
checkvars['S'] = '${WORKDIR}/git'
|
||||
checkvars['PV'] = '1.5+git${SRCPV}'
|
||||
checkvars['SRC_URI'] = url
|
||||
checkvars['SRC_URI'] = url_branch
|
||||
checkvars['SRCREV'] = checkrev
|
||||
self._test_recipe_contents(recipefile, checkvars, [])
|
||||
|
||||
|
||||
@@ -240,7 +240,7 @@ USERADD_GID_TABLES += "files/static-group"
|
||||
def test_no_busybox_base_utils(self):
|
||||
config = """
|
||||
# Enable x11
|
||||
DISTRO_FEATURES_append += "x11"
|
||||
DISTRO_FEATURES_append = " x11"
|
||||
|
||||
# Switch to systemd
|
||||
DISTRO_FEATURES += "systemd"
|
||||
|
||||
@@ -179,6 +179,8 @@ class TestImage(OESelftestTestCase):
|
||||
self.skipTest('virgl isn\'t working with Debian 8')
|
||||
if distro and distro == 'centos-7':
|
||||
self.skipTest('virgl isn\'t working with Centos 7')
|
||||
if distro and distro == 'centos-8':
|
||||
self.skipTest('virgl isn\'t working with Centos 8')
|
||||
if distro and distro == 'opensuseleap-15.0':
|
||||
self.skipTest('virgl isn\'t working with Opensuse 15.0')
|
||||
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
From ecdcf0df6c28c65ca6d1e5638726e13e373c76c5 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Wed, 11 Nov 2020 22:58:55 -0800
|
||||
Subject: [PATCH] Fix cross compilation using autoconf detected AR
|
||||
|
||||
currently its using 'ar' program from build host, which is not expected,
|
||||
we need to respect AR passed in environment
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
configure.in | 7 +++++++
|
||||
1 file changed, 7 insertions(+)
|
||||
|
||||
diff --git a/configure.in b/configure.in
|
||||
index 4ddbe8b..b7c3c31 100644
|
||||
--- a/configure.in
|
||||
+++ b/configure.in
|
||||
@@ -84,6 +84,13 @@ AC_ARG_ENABLE(syslog,
|
||||
])
|
||||
|
||||
dnl Checks for programs.
|
||||
+m4_ifndef([AC_PROG_AR],[dnl
|
||||
+ AN_MAKEVAR([AR], [AC_PROG_AR])
|
||||
+ AN_PROGRAM([ar], [AC_PROG_AR])
|
||||
+ AC_DEFUN([AC_PROG_AR],
|
||||
+ [AC_CHECK_TOOL(AR, ar, :)])
|
||||
+])
|
||||
+AC_PROG_AR
|
||||
AC_PROG_CC
|
||||
AC_PROG_GCC_TRADITIONAL
|
||||
dnl AC_PROG_INSTALL included in AM_INIT_AUTOMAKE
|
||||
--
|
||||
2.29.2
|
||||
|
||||
@@ -19,6 +19,7 @@ SRC_URI = "http://www.ohse.de/uwe/releases/lrzsz-${PV}.tar.gz \
|
||||
file://lrzsz-check-locale.h.patch \
|
||||
file://cve-2018-10195.patch \
|
||||
file://include.patch \
|
||||
file://0001-Fix-cross-compilation-using-autoconf-detected-AR.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "b5ce6a74abc9b9eb2af94dffdfd372a4"
|
||||
|
||||
@@ -21,7 +21,7 @@ SRC_URI = "https://ftp.isc.org/isc/bind9/${PV}/${BPN}-${PV}.tar.gz \
|
||||
file://0001-avoid-start-failure-with-bind-user.patch \
|
||||
"
|
||||
|
||||
SRC_URI[sha256sum] = "cbf8cb4b74dd1452d97c3a2a8c625ea346df8516b4b3508ef07443121a591342"
|
||||
SRC_URI[sha256sum] = "1c882705827b6aafa45d917ae3b20eccccc8d5df3c4477df44b04382e6c47562"
|
||||
|
||||
UPSTREAM_CHECK_URI = "https://ftp.isc.org/isc/bind9/"
|
||||
# stay at 9.11 until 9.16, from 9.16 follow the ESV versions divisible by 4
|
||||
@@ -5,7 +5,7 @@ Ssh (Secure Shell) is a program for logging into a remote machine \
|
||||
and for executing commands on a remote machine."
|
||||
HOMEPAGE = "http://www.openssh.com/"
|
||||
SECTION = "console/network"
|
||||
LICENSE = "BSD & ISC & MIT"
|
||||
LICENSE = "BSD-2-Clause & BSD-3-Clause & BSD-4-Clause & ISC & MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENCE;md5=18d9e5a8b3dd1790d73502f50426d4d3"
|
||||
|
||||
DEPENDS = "zlib openssl virtual/crypt"
|
||||
|
||||
53
meta/recipes-core/busybox/busybox/CVE-2021-42374.patch
Normal file
53
meta/recipes-core/busybox/busybox/CVE-2021-42374.patch
Normal file
@@ -0,0 +1,53 @@
|
||||
From 04f052c56ded5ab6a904e3a264a73dc0412b2e78 Mon Sep 17 00:00:00 2001
|
||||
From: Denys Vlasenko <vda.linux@googlemail.com>
|
||||
Date: Tue, 15 Jun 2021 15:07:57 +0200
|
||||
Subject: [PATCH] unlzma: fix a case where we could read before beginning of
|
||||
buffer
|
||||
Cc: pavel@zhukoff.net
|
||||
|
||||
Testcase:
|
||||
|
||||
21 01 01 00 00 00 00 00 e7 01 01 01 ef 00 df b6
|
||||
00 17 02 10 11 0f ff 00 16 00 00
|
||||
|
||||
Unfortunately, the bug is not reliably causing a segfault,
|
||||
the behavior depends on what's in memory before the buffer.
|
||||
|
||||
function old new delta
|
||||
unpack_lzma_stream 2762 2768 +6
|
||||
|
||||
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
|
||||
|
||||
Signed-off-by: Pavel Zhukov <pavel.zhukov@huawei.com>
|
||||
|
||||
CVE: CVE-2021-42374
|
||||
Upstream-Status: Backport [https://git.busybox.net/busybox/commit/?h=1_33_stable&id=d326be2850ea2bd78fe2c22d6c45c3b861d82937]
|
||||
Comment: testdata dropped because of binary format
|
||||
|
||||
---
|
||||
archival/libarchive/decompress_unlzma.c | 5 ++++-
|
||||
testsuite/unlzma.tests | 17 +++++++++++++----
|
||||
testsuite/unlzma_issue_3.lzma | Bin 0 -> 27 bytes
|
||||
3 files changed, 17 insertions(+), 5 deletions(-)
|
||||
create mode 100644 testsuite/unlzma_issue_3.lzma
|
||||
|
||||
diff --git a/archival/libarchive/decompress_unlzma.c b/archival/libarchive/decompress_unlzma.c
|
||||
index 0744f231a1d64d92676b0cada2342f88f3b39b31..fb5aac8fe9ea0c53e0c2d7a7cbd05a753e39bc9d 100644
|
||||
--- a/archival/libarchive/decompress_unlzma.c
|
||||
+++ b/archival/libarchive/decompress_unlzma.c
|
||||
@@ -290,8 +290,11 @@ unpack_lzma_stream(transformer_state_t *xstate)
|
||||
uint32_t pos;
|
||||
|
||||
pos = buffer_pos - rep0;
|
||||
- if ((int32_t)pos < 0)
|
||||
+ if ((int32_t)pos < 0) {
|
||||
pos += header.dict_size;
|
||||
+ if ((int32_t)pos < 0)
|
||||
+ goto bad;
|
||||
+ }
|
||||
match_byte = buffer[pos];
|
||||
do {
|
||||
int bit;
|
||||
--
|
||||
2.34.0
|
||||
|
||||
138
meta/recipes-core/busybox/busybox/CVE-2021-42376.patch
Normal file
138
meta/recipes-core/busybox/busybox/CVE-2021-42376.patch
Normal file
@@ -0,0 +1,138 @@
|
||||
From 56a335378ac100d51c30b21eee499a2effa37fba Mon Sep 17 00:00:00 2001
|
||||
From: Denys Vlasenko <vda.linux@googlemail.com>
|
||||
Date: Tue, 15 Jun 2021 16:05:57 +0200
|
||||
Subject: hush: fix handling of \^C and "^C"
|
||||
|
||||
function old new delta
|
||||
parse_stream 2238 2252 +14
|
||||
encode_string 243 256 +13
|
||||
------------------------------------------------------------------------------
|
||||
(add/remove: 0/0 grow/shrink: 2/0 up/down: 27/0) Total: 27 bytes
|
||||
|
||||
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
|
||||
(cherry picked from commit 1b7a9b68d0e9aa19147d7fda16eb9a6b54156985)
|
||||
|
||||
Signed-off-by: Pavel Zhukov <pavel.zhukov@huawei.com>
|
||||
|
||||
CVE: CVE-2021-42376
|
||||
Upstream-Status: Backport [https://git.busybox.net/busybox/patch/?id=56a335378ac100d51c30b21eee499a2effa37fba]
|
||||
Comment: No changes in any hunk
|
||||
---
|
||||
shell/ash_test/ash-misc/control_char3.right | 1 +
|
||||
shell/ash_test/ash-misc/control_char3.tests | 2 ++
|
||||
shell/ash_test/ash-misc/control_char4.right | 1 +
|
||||
shell/ash_test/ash-misc/control_char4.tests | 2 ++
|
||||
shell/hush.c | 11 +++++++++++
|
||||
shell/hush_test/hush-misc/control_char3.right | 1 +
|
||||
shell/hush_test/hush-misc/control_char3.tests | 2 ++
|
||||
shell/hush_test/hush-misc/control_char4.right | 1 +
|
||||
shell/hush_test/hush-misc/control_char4.tests | 2 ++
|
||||
9 files changed, 23 insertions(+)
|
||||
create mode 100644 shell/ash_test/ash-misc/control_char3.right
|
||||
create mode 100755 shell/ash_test/ash-misc/control_char3.tests
|
||||
create mode 100644 shell/ash_test/ash-misc/control_char4.right
|
||||
create mode 100755 shell/ash_test/ash-misc/control_char4.tests
|
||||
create mode 100644 shell/hush_test/hush-misc/control_char3.right
|
||||
create mode 100755 shell/hush_test/hush-misc/control_char3.tests
|
||||
create mode 100644 shell/hush_test/hush-misc/control_char4.right
|
||||
create mode 100755 shell/hush_test/hush-misc/control_char4.tests
|
||||
|
||||
diff --git a/shell/ash_test/ash-misc/control_char3.right b/shell/ash_test/ash-misc/control_char3.right
|
||||
new file mode 100644
|
||||
index 000000000..283e02cbb
|
||||
--- /dev/null
|
||||
+++ b/shell/ash_test/ash-misc/control_char3.right
|
||||
@@ -0,0 +1 @@
|
||||
+SHELL: line 1: : not found
|
||||
diff --git a/shell/ash_test/ash-misc/control_char3.tests b/shell/ash_test/ash-misc/control_char3.tests
|
||||
new file mode 100755
|
||||
index 000000000..4359db3f3
|
||||
--- /dev/null
|
||||
+++ b/shell/ash_test/ash-misc/control_char3.tests
|
||||
@@ -0,0 +1,2 @@
|
||||
+# (set argv0 to "SHELL" to avoid "/path/to/shell: blah" in error messages)
|
||||
+$THIS_SH -c '\' SHELL
|
||||
diff --git a/shell/ash_test/ash-misc/control_char4.right b/shell/ash_test/ash-misc/control_char4.right
|
||||
new file mode 100644
|
||||
index 000000000..2bf18e684
|
||||
--- /dev/null
|
||||
+++ b/shell/ash_test/ash-misc/control_char4.right
|
||||
@@ -0,0 +1 @@
|
||||
+SHELL: line 1: -: not found
|
||||
diff --git a/shell/ash_test/ash-misc/control_char4.tests b/shell/ash_test/ash-misc/control_char4.tests
|
||||
new file mode 100755
|
||||
index 000000000..48010f154
|
||||
--- /dev/null
|
||||
+++ b/shell/ash_test/ash-misc/control_char4.tests
|
||||
@@ -0,0 +1,2 @@
|
||||
+# (set argv0 to "SHELL" to avoid "/path/to/shell: blah" in error messages)
|
||||
+$THIS_SH -c '"-"' SHELL
|
||||
diff --git a/shell/hush.c b/shell/hush.c
|
||||
index 9fead37da..249728b9d 100644
|
||||
--- a/shell/hush.c
|
||||
+++ b/shell/hush.c
|
||||
@@ -5235,6 +5235,11 @@ static int encode_string(o_string *as_string,
|
||||
}
|
||||
#endif
|
||||
o_addQchr(dest, ch);
|
||||
+ if (ch == SPECIAL_VAR_SYMBOL) {
|
||||
+ /* Convert "^C" to corresponding special variable reference */
|
||||
+ o_addchr(dest, SPECIAL_VAR_QUOTED_SVS);
|
||||
+ o_addchr(dest, SPECIAL_VAR_SYMBOL);
|
||||
+ }
|
||||
goto again;
|
||||
#undef as_string
|
||||
}
|
||||
@@ -5346,6 +5351,11 @@ static struct pipe *parse_stream(char **pstring,
|
||||
if (ch == '\n')
|
||||
continue; /* drop \<newline>, get next char */
|
||||
nommu_addchr(&ctx.as_string, '\\');
|
||||
+ if (ch == SPECIAL_VAR_SYMBOL) {
|
||||
+ nommu_addchr(&ctx.as_string, ch);
|
||||
+ /* Convert \^C to corresponding special variable reference */
|
||||
+ goto case_SPECIAL_VAR_SYMBOL;
|
||||
+ }
|
||||
o_addchr(&ctx.word, '\\');
|
||||
if (ch == EOF) {
|
||||
/* Testcase: eval 'echo Ok\' */
|
||||
@@ -5670,6 +5680,7 @@ static struct pipe *parse_stream(char **pstring,
|
||||
/* Note: nommu_addchr(&ctx.as_string, ch) is already done */
|
||||
|
||||
switch (ch) {
|
||||
+ case_SPECIAL_VAR_SYMBOL:
|
||||
case SPECIAL_VAR_SYMBOL:
|
||||
/* Convert raw ^C to corresponding special variable reference */
|
||||
o_addchr(&ctx.word, SPECIAL_VAR_SYMBOL);
|
||||
diff --git a/shell/hush_test/hush-misc/control_char3.right b/shell/hush_test/hush-misc/control_char3.right
|
||||
new file mode 100644
|
||||
index 000000000..94b4f8699
|
||||
--- /dev/null
|
||||
+++ b/shell/hush_test/hush-misc/control_char3.right
|
||||
@@ -0,0 +1 @@
|
||||
+hush: can't execute '': No such file or directory
|
||||
diff --git a/shell/hush_test/hush-misc/control_char3.tests b/shell/hush_test/hush-misc/control_char3.tests
|
||||
new file mode 100755
|
||||
index 000000000..4359db3f3
|
||||
--- /dev/null
|
||||
+++ b/shell/hush_test/hush-misc/control_char3.tests
|
||||
@@ -0,0 +1,2 @@
|
||||
+# (set argv0 to "SHELL" to avoid "/path/to/shell: blah" in error messages)
|
||||
+$THIS_SH -c '\' SHELL
|
||||
diff --git a/shell/hush_test/hush-misc/control_char4.right b/shell/hush_test/hush-misc/control_char4.right
|
||||
new file mode 100644
|
||||
index 000000000..698e21427
|
||||
--- /dev/null
|
||||
+++ b/shell/hush_test/hush-misc/control_char4.right
|
||||
@@ -0,0 +1 @@
|
||||
+hush: can't execute '-': No such file or directory
|
||||
diff --git a/shell/hush_test/hush-misc/control_char4.tests b/shell/hush_test/hush-misc/control_char4.tests
|
||||
new file mode 100755
|
||||
index 000000000..48010f154
|
||||
--- /dev/null
|
||||
+++ b/shell/hush_test/hush-misc/control_char4.tests
|
||||
@@ -0,0 +1,2 @@
|
||||
+# (set argv0 to "SHELL" to avoid "/path/to/shell: blah" in error messages)
|
||||
+$THIS_SH -c '"-"' SHELL
|
||||
--
|
||||
cgit v1.2.3
|
||||
|
||||
@@ -52,6 +52,9 @@ SRC_URI = "https://busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
|
||||
file://0001-hwclock-make-glibc-2.31-compatible.patch \
|
||||
file://0001-decompress_gunzip-Fix-DoS-if-gzip-is-corrupt.patch \
|
||||
file://0001-mktemp-add-tmpdir-option.patch \
|
||||
file://CVE-2021-42374.patch \
|
||||
file://CVE-2021-42376.patch \
|
||||
file://CVE-2021-423xx-awk.patch \
|
||||
"
|
||||
SRC_URI_append_libc-musl = " file://musl.cfg "
|
||||
|
||||
|
||||
215
meta/recipes-core/busybox/files/CVE-2021-423xx-awk.patch
Normal file
215
meta/recipes-core/busybox/files/CVE-2021-423xx-awk.patch
Normal file
@@ -0,0 +1,215 @@
|
||||
From a21708eb8d07b4a6dbc1d3e4ace4c5721515a84c Mon Sep 17 00:00:00 2001
|
||||
From: Sana Kazi <Sana.Kazi@kpit.com>
|
||||
Date: Wed, 8 Dec 2021 12:25:34 +0530
|
||||
Subject: [PATCH] busybox: Fix multiple security issues in awk
|
||||
|
||||
Description: fix multiple security issues in awk
|
||||
Origin: backported awk.c from busybox 1.34.1
|
||||
|
||||
CVE: CVE-2021-42378
|
||||
CVE: CVE-2021-42379
|
||||
CVE: CVE-2021-42380
|
||||
CVE: CVE-2021-42381
|
||||
CVE: CVE-2021-42382
|
||||
CVE: CVE-2021-42384
|
||||
CVE: CVE-2021-42385
|
||||
CVE: CVE-2021-42386
|
||||
|
||||
Upstream-Status: Backport [https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/busybox/1:1.30.1-6ubuntu3.1/busybox_1.30.1-6ubuntu3.1.debian.tar.xz]
|
||||
|
||||
Comment: Refreshed first hunk and removed few hunks as they are already present in source.
|
||||
|
||||
Signed-off-by: Sana Kazi <Sana.Kazi@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <Ranjitsinh.Rathod@kpit.com>
|
||||
|
||||
---
|
||||
editors/awk.c | 80 ++++++++++++++++++++++++++++++++++++++-------------
|
||||
1 file changed, 60 insertions(+), 20 deletions(-)
|
||||
|
||||
diff --git a/editors/awk.c b/editors/awk.c
|
||||
index d25508e..4e4f282 100644
|
||||
--- a/editors/awk.c
|
||||
+++ b/editors/awk.c
|
||||
@@ -272,7 +272,8 @@ typedef struct tsplitter_s {
|
||||
/* if previous token class is CONCAT1 and next is CONCAT2, concatenation */
|
||||
/* operator is inserted between them */
|
||||
#define TC_CONCAT1 (TC_VARIABLE | TC_ARRTERM | TC_SEQTERM \
|
||||
- | TC_STRING | TC_NUMBER | TC_UOPPOST)
|
||||
+ | TC_STRING | TC_NUMBER | TC_UOPPOST \
|
||||
+ | TC_LENGTH)
|
||||
#define TC_CONCAT2 (TC_OPERAND | TC_UOPPRE)
|
||||
|
||||
#define OF_RES1 0x010000
|
||||
@@ -404,7 +405,7 @@ static const char tokenlist[] ALIGN1 =
|
||||
|
||||
#define OC_B OC_BUILTIN
|
||||
|
||||
-static const uint32_t tokeninfo[] = {
|
||||
+static const uint32_t tokeninfo[] ALIGN4 = {
|
||||
0,
|
||||
0,
|
||||
OC_REGEXP,
|
||||
@@ -1070,8 +1071,10 @@ static uint32_t next_token(uint32_t expected)
|
||||
const uint32_t *ti;
|
||||
|
||||
if (t_rollback) {
|
||||
+ debug_printf_parse("%s: using rolled-back token\n", __func__);
|
||||
t_rollback = FALSE;
|
||||
} else if (concat_inserted) {
|
||||
+ debug_printf_parse("%s: using concat-inserted token\n", __func__);
|
||||
concat_inserted = FALSE;
|
||||
t_tclass = save_tclass;
|
||||
t_info = save_info;
|
||||
@@ -1200,7 +1203,11 @@ static uint32_t next_token(uint32_t expected)
|
||||
goto readnext;
|
||||
|
||||
/* insert concatenation operator when needed */
|
||||
- if ((ltclass & TC_CONCAT1) && (tc & TC_CONCAT2) && (expected & TC_BINOP)) {
|
||||
+ debug_printf_parse("%s: %x %x %x concat_inserted?\n", __func__,
|
||||
+ (ltclass & TC_CONCAT1), (tc & TC_CONCAT2), (expected & TC_BINOP));
|
||||
+ if ((ltclass & TC_CONCAT1) && (tc & TC_CONCAT2) && (expected & TC_BINOP)
|
||||
+ && !(ltclass == TC_LENGTH && tc == TC_SEQSTART) /* but not for "length(..." */
|
||||
+ ) {
|
||||
concat_inserted = TRUE;
|
||||
save_tclass = tc;
|
||||
save_info = t_info;
|
||||
@@ -1208,6 +1215,7 @@ static uint32_t next_token(uint32_t expected)
|
||||
t_info = OC_CONCAT | SS | P(35);
|
||||
}
|
||||
|
||||
+ debug_printf_parse("%s: t_tclass=tc=%x\n", __func__, t_tclass);
|
||||
t_tclass = tc;
|
||||
}
|
||||
ltclass = t_tclass;
|
||||
@@ -1218,6 +1226,7 @@ static uint32_t next_token(uint32_t expected)
|
||||
EMSG_UNEXP_EOS : EMSG_UNEXP_TOKEN);
|
||||
}
|
||||
|
||||
+ debug_printf_parse("%s: returning, ltclass:%x t_double:%f\n", __func__, ltclass, t_double);
|
||||
return ltclass;
|
||||
#undef concat_inserted
|
||||
#undef save_tclass
|
||||
@@ -1282,7 +1291,7 @@ static node *parse_expr(uint32_t iexp)
|
||||
glptr = NULL;
|
||||
|
||||
} else if (tc & (TC_BINOP | TC_UOPPOST)) {
|
||||
- debug_printf_parse("%s: TC_BINOP | TC_UOPPOST\n", __func__);
|
||||
+ debug_printf_parse("%s: TC_BINOP | TC_UOPPOST tc:%x\n", __func__, tc);
|
||||
/* for binary and postfix-unary operators, jump back over
|
||||
* previous operators with higher priority */
|
||||
vn = cn;
|
||||
@@ -1350,8 +1359,10 @@ static node *parse_expr(uint32_t iexp)
|
||||
v = cn->l.v = xzalloc(sizeof(var));
|
||||
if (tc & TC_NUMBER)
|
||||
setvar_i(v, t_double);
|
||||
- else
|
||||
+ else {
|
||||
setvar_s(v, t_string);
|
||||
+ xtc &= ~TC_UOPPOST; /* "str"++ is not allowed */
|
||||
+ }
|
||||
break;
|
||||
|
||||
case TC_REGEXP:
|
||||
@@ -1387,7 +1398,12 @@ static node *parse_expr(uint32_t iexp)
|
||||
|
||||
case TC_LENGTH:
|
||||
debug_printf_parse("%s: TC_LENGTH\n", __func__);
|
||||
- next_token(TC_SEQSTART | TC_OPTERM | TC_GRPTERM);
|
||||
+ next_token(TC_SEQSTART /* length(...) */
|
||||
+ | TC_OPTERM /* length; (or newline)*/
|
||||
+ | TC_GRPTERM /* length } */
|
||||
+ | TC_BINOPX /* length <op> NUM */
|
||||
+ | TC_COMMA /* print length, 1 */
|
||||
+ );
|
||||
rollback_token();
|
||||
if (t_tclass & TC_SEQSTART) {
|
||||
/* It was a "(" token. Handle just like TC_BUILTIN */
|
||||
@@ -1747,12 +1763,34 @@ static void fsrealloc(int size)
|
||||
nfields = size;
|
||||
}
|
||||
|
||||
+static int regexec1_nonempty(const regex_t *preg, const char *s, regmatch_t pmatch[])
|
||||
+{
|
||||
+ int r = regexec(preg, s, 1, pmatch, 0);
|
||||
+ if (r == 0 && pmatch[0].rm_eo == 0) {
|
||||
+ /* For example, happens when FS can match
|
||||
+ * an empty string (awk -F ' *'). Logically,
|
||||
+ * this should split into one-char fields.
|
||||
+ * However, gawk 5.0.1 searches for first
|
||||
+ * _non-empty_ separator string match:
|
||||
+ */
|
||||
+ size_t ofs = 0;
|
||||
+ do {
|
||||
+ ofs++;
|
||||
+ if (!s[ofs])
|
||||
+ return REG_NOMATCH;
|
||||
+ regexec(preg, s + ofs, 1, pmatch, 0);
|
||||
+ } while (pmatch[0].rm_eo == 0);
|
||||
+ pmatch[0].rm_so += ofs;
|
||||
+ pmatch[0].rm_eo += ofs;
|
||||
+ }
|
||||
+ return r;
|
||||
+}
|
||||
+
|
||||
static int awk_split(const char *s, node *spl, char **slist)
|
||||
{
|
||||
- int l, n;
|
||||
+ int n;
|
||||
char c[4];
|
||||
char *s1;
|
||||
- regmatch_t pmatch[2]; // TODO: why [2]? [1] is enough...
|
||||
|
||||
/* in worst case, each char would be a separate field */
|
||||
*slist = s1 = xzalloc(strlen(s) * 2 + 3);
|
||||
@@ -1769,29 +1807,31 @@ static int awk_split(const char *s, node *spl, char **slist)
|
||||
return n; /* "": zero fields */
|
||||
n++; /* at least one field will be there */
|
||||
do {
|
||||
+ int l;
|
||||
+ regmatch_t pmatch[2]; // TODO: why [2]? [1] is enough...
|
||||
+
|
||||
l = strcspn(s, c+2); /* len till next NUL or \n */
|
||||
- if (regexec(icase ? spl->r.ire : spl->l.re, s, 1, pmatch, 0) == 0
|
||||
+ if (regexec1_nonempty(icase ? spl->r.ire : spl->l.re, s, pmatch) == 0
|
||||
&& pmatch[0].rm_so <= l
|
||||
) {
|
||||
+ /* if (pmatch[0].rm_eo == 0) ... - impossible */
|
||||
l = pmatch[0].rm_so;
|
||||
- if (pmatch[0].rm_eo == 0) {
|
||||
- l++;
|
||||
- pmatch[0].rm_eo++;
|
||||
- }
|
||||
n++; /* we saw yet another delimiter */
|
||||
} else {
|
||||
pmatch[0].rm_eo = l;
|
||||
if (s[l])
|
||||
pmatch[0].rm_eo++;
|
||||
}
|
||||
- memcpy(s1, s, l);
|
||||
- /* make sure we remove *all* of the separator chars */
|
||||
- do {
|
||||
- s1[l] = '\0';
|
||||
- } while (++l < pmatch[0].rm_eo);
|
||||
- nextword(&s1);
|
||||
+ s1 = mempcpy(s1, s, l);
|
||||
+ *s1++ = '\0';
|
||||
s += pmatch[0].rm_eo;
|
||||
} while (*s);
|
||||
+
|
||||
+ /* echo a-- | awk -F-- '{ print NF, length($NF), $NF }'
|
||||
+ * should print "2 0 ":
|
||||
+ */
|
||||
+ *s1 = '\0';
|
||||
+
|
||||
return n;
|
||||
}
|
||||
if (c[0] == '\0') { /* null split */
|
||||
@@ -1995,7 +2035,7 @@ static int ptest(node *pattern)
|
||||
static int awk_getline(rstream *rsm, var *v)
|
||||
{
|
||||
char *b;
|
||||
- regmatch_t pmatch[2];
|
||||
+ regmatch_t pmatch[2]; // TODO: why [2]? [1] is enough...
|
||||
int size, a, p, pp = 0;
|
||||
int fd, so, eo, r, rp;
|
||||
char c, *m, *s;
|
||||
129
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27218.patch
Normal file
129
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27218.patch
Normal file
@@ -0,0 +1,129 @@
|
||||
Backport of:
|
||||
|
||||
From 0f384c88a241bbbd884487b1c40b7b75f1e638d3 Mon Sep 17 00:00:00 2001
|
||||
From: Krzesimir Nowak <qdlacz@gmail.com>
|
||||
Date: Wed, 10 Feb 2021 23:51:07 +0100
|
||||
Subject: [PATCH] gbytearray: Do not accept too large byte arrays
|
||||
|
||||
GByteArray uses guint for storing the length of the byte array, but it
|
||||
also has a constructor (g_byte_array_new_take) that takes length as a
|
||||
gsize. gsize may be larger than guint (64 bits for gsize vs 32 bits
|
||||
for guint). It is possible to call the function with a value greater
|
||||
than G_MAXUINT, which will result in silent length truncation. This
|
||||
may happen as a result of unreffing GBytes into GByteArray, so rather
|
||||
be loud about it.
|
||||
|
||||
(Test case tweaked by Philip Withnall.)
|
||||
|
||||
(Backport 2.66: Add #include gstrfuncsprivate.h in the test case for
|
||||
`g_memdup2()`.)
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27218
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
glib/garray.c | 6 ++++++
|
||||
glib/gbytes.c | 4 ++++
|
||||
glib/tests/bytes.c | 35 ++++++++++++++++++++++++++++++++++-
|
||||
3 files changed, 44 insertions(+), 1 deletion(-)
|
||||
|
||||
--- a/glib/garray.c
|
||||
+++ b/glib/garray.c
|
||||
@@ -2234,6 +2234,10 @@ g_byte_array_steal (GByteArray *array,
|
||||
* Create byte array containing the data. The data will be owned by the array
|
||||
* and will be freed with g_free(), i.e. it could be allocated using g_strdup().
|
||||
*
|
||||
+ * Do not use it if @len is greater than %G_MAXUINT. #GByteArray
|
||||
+ * stores the length of its data in #guint, which may be shorter than
|
||||
+ * #gsize.
|
||||
+ *
|
||||
* Since: 2.32
|
||||
*
|
||||
* Returns: (transfer full): a new #GByteArray
|
||||
@@ -2245,6 +2249,8 @@ g_byte_array_new_take (guint8 *data,
|
||||
GByteArray *array;
|
||||
GRealArray *real;
|
||||
|
||||
+ g_return_val_if_fail (len <= G_MAXUINT, NULL);
|
||||
+
|
||||
array = g_byte_array_new ();
|
||||
real = (GRealArray *)array;
|
||||
g_assert (real->data == NULL);
|
||||
--- a/glib/gbytes.c
|
||||
+++ b/glib/gbytes.c
|
||||
@@ -519,6 +519,10 @@ g_bytes_unref_to_data (GBytes *bytes,
|
||||
* g_bytes_new(), g_bytes_new_take() or g_byte_array_free_to_bytes(). In all
|
||||
* other cases the data is copied.
|
||||
*
|
||||
+ * Do not use it if @bytes contains more than %G_MAXUINT
|
||||
+ * bytes. #GByteArray stores the length of its data in #guint, which
|
||||
+ * may be shorter than #gsize, that @bytes is using.
|
||||
+ *
|
||||
* Returns: (transfer full): a new mutable #GByteArray containing the same byte data
|
||||
*
|
||||
* Since: 2.32
|
||||
--- a/glib/tests/bytes.c
|
||||
+++ b/glib/tests/bytes.c
|
||||
@@ -10,12 +10,12 @@
|
||||
*/
|
||||
|
||||
#undef G_DISABLE_ASSERT
|
||||
-#undef G_LOG_DOMAIN
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "glib.h"
|
||||
+#include "glib/gstrfuncsprivate.h"
|
||||
|
||||
/* Keep in sync with glib/gbytes.c */
|
||||
struct _GBytes
|
||||
@@ -334,6 +334,38 @@ test_to_array_transferred (void)
|
||||
}
|
||||
|
||||
static void
|
||||
+test_to_array_transferred_oversize (void)
|
||||
+{
|
||||
+ g_test_message ("g_bytes_unref_to_array() can only take GBytes up to "
|
||||
+ "G_MAXUINT in length; test that longer ones are rejected");
|
||||
+
|
||||
+ if (sizeof (guint) >= sizeof (gsize))
|
||||
+ {
|
||||
+ g_test_skip ("Skipping test as guint is not smaller than gsize");
|
||||
+ }
|
||||
+ else if (g_test_undefined ())
|
||||
+ {
|
||||
+ GByteArray *array = NULL;
|
||||
+ GBytes *bytes = NULL;
|
||||
+ gpointer data = g_memdup2 (NYAN, N_NYAN);
|
||||
+ gsize len = ((gsize) G_MAXUINT) + 1;
|
||||
+
|
||||
+ bytes = g_bytes_new_take (data, len);
|
||||
+ g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL,
|
||||
+ "g_byte_array_new_take: assertion 'len <= G_MAXUINT' failed");
|
||||
+ array = g_bytes_unref_to_array (g_steal_pointer (&bytes));
|
||||
+ g_test_assert_expected_messages ();
|
||||
+ g_assert_null (array);
|
||||
+
|
||||
+ g_free (data);
|
||||
+ }
|
||||
+ else
|
||||
+ {
|
||||
+ g_test_skip ("Skipping test as testing undefined behaviour is disabled");
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
+static void
|
||||
test_to_array_two_refs (void)
|
||||
{
|
||||
gconstpointer memory;
|
||||
@@ -410,6 +442,7 @@ main (int argc, char *argv[])
|
||||
g_test_add_func ("/bytes/to-array/transfered", test_to_array_transferred);
|
||||
g_test_add_func ("/bytes/to-array/two-refs", test_to_array_two_refs);
|
||||
g_test_add_func ("/bytes/to-array/non-malloc", test_to_array_non_malloc);
|
||||
+ g_test_add_func ("/bytes/to-array/transferred/oversize", test_to_array_transferred_oversize);
|
||||
g_test_add_func ("/bytes/null", test_null);
|
||||
|
||||
return g_test_run ();
|
||||
170
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-01.patch
Normal file
170
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-01.patch
Normal file
@@ -0,0 +1,170 @@
|
||||
Backport of:
|
||||
|
||||
From 5e5f75a77e399c638be66d74e5daa8caeb433e00 Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Thu, 4 Feb 2021 13:30:52 +0000
|
||||
Subject: [PATCH 01/11] gstrfuncs: Add internal g_memdup2() function
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
This will replace the existing `g_memdup()` function for use within
|
||||
GLib. It has an unavoidable security flaw of taking its `byte_size`
|
||||
argument as a `guint` rather than as a `gsize`. Most callers will
|
||||
expect it to be a `gsize`, and may pass in large values which could
|
||||
silently be truncated, resulting in an undersize allocation compared
|
||||
to what the caller expects.
|
||||
|
||||
This could lead to a classic buffer overflow vulnerability for many
|
||||
callers of `g_memdup()`.
|
||||
|
||||
`g_memdup2()`, in comparison, takes its `byte_size` as a `gsize`.
|
||||
|
||||
Spotted by Kevin Backhouse of GHSL.
|
||||
|
||||
In GLib 2.68, `g_memdup2()` will be a new public API. In this version
|
||||
for backport to older stable releases, it’s a new `static inline` API
|
||||
in a private header, so that use of `g_memdup()` within GLib can be
|
||||
fixed without adding a new API in a stable release series.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
Helps: GHSL-2021-045
|
||||
Helps: #2319
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
docs/reference/glib/meson.build | 1 +
|
||||
glib/gstrfuncsprivate.h | 55 +++++++++++++++++++++++++++++++++
|
||||
glib/meson.build | 1 +
|
||||
glib/tests/strfuncs.c | 23 ++++++++++++++
|
||||
4 files changed, 80 insertions(+)
|
||||
create mode 100644 glib/gstrfuncsprivate.h
|
||||
|
||||
--- a/docs/reference/glib/meson.build
|
||||
+++ b/docs/reference/glib/meson.build
|
||||
@@ -22,6 +22,7 @@ if get_option('gtk_doc')
|
||||
'gprintfint.h',
|
||||
'gmirroringtable.h',
|
||||
'gscripttable.h',
|
||||
+ 'gstrfuncsprivate.h',
|
||||
'glib-mirroring-tab',
|
||||
'gnulib',
|
||||
'pcre',
|
||||
--- /dev/null
|
||||
+++ b/glib/gstrfuncsprivate.h
|
||||
@@ -0,0 +1,55 @@
|
||||
+/* GLIB - Library of useful routines for C programming
|
||||
+ * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
||||
+ *
|
||||
+ * This library is free software; you can redistribute it and/or
|
||||
+ * modify it under the terms of the GNU Lesser General Public
|
||||
+ * License as published by the Free Software Foundation; either
|
||||
+ * version 2.1 of the License, or (at your option) any later version.
|
||||
+ *
|
||||
+ * This library is distributed in the hope that it will be useful,
|
||||
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ * Lesser General Public License for more details.
|
||||
+ *
|
||||
+ * You should have received a copy of the GNU Lesser General Public
|
||||
+ * License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||
+ */
|
||||
+
|
||||
+#include <glib.h>
|
||||
+#include <string.h>
|
||||
+
|
||||
+/*
|
||||
+ * g_memdup2:
|
||||
+ * @mem: (nullable): the memory to copy.
|
||||
+ * @byte_size: the number of bytes to copy.
|
||||
+ *
|
||||
+ * Allocates @byte_size bytes of memory, and copies @byte_size bytes into it
|
||||
+ * from @mem. If @mem is %NULL it returns %NULL.
|
||||
+ *
|
||||
+ * This replaces g_memdup(), which was prone to integer overflows when
|
||||
+ * converting the argument from a #gsize to a #guint.
|
||||
+ *
|
||||
+ * This static inline version is a backport of the new public API from
|
||||
+ * GLib 2.68, kept internal to GLib for backport to older stable releases.
|
||||
+ * See https://gitlab.gnome.org/GNOME/glib/-/issues/2319.
|
||||
+ *
|
||||
+ * Returns: (nullable): a pointer to the newly-allocated copy of the memory,
|
||||
+ * or %NULL if @mem is %NULL.
|
||||
+ * Since: 2.68
|
||||
+ */
|
||||
+static inline gpointer
|
||||
+g_memdup2 (gconstpointer mem,
|
||||
+ gsize byte_size)
|
||||
+{
|
||||
+ gpointer new_mem;
|
||||
+
|
||||
+ if (mem && byte_size != 0)
|
||||
+ {
|
||||
+ new_mem = g_malloc (byte_size);
|
||||
+ memcpy (new_mem, mem, byte_size);
|
||||
+ }
|
||||
+ else
|
||||
+ new_mem = NULL;
|
||||
+
|
||||
+ return new_mem;
|
||||
+}
|
||||
--- a/glib/meson.build
|
||||
+++ b/glib/meson.build
|
||||
@@ -268,6 +268,7 @@ glib_sources = files(
|
||||
'gslist.c',
|
||||
'gstdio.c',
|
||||
'gstrfuncs.c',
|
||||
+ 'gstrfuncsprivate.h',
|
||||
'gstring.c',
|
||||
'gstringchunk.c',
|
||||
'gtestutils.c',
|
||||
--- a/glib/tests/strfuncs.c
|
||||
+++ b/glib/tests/strfuncs.c
|
||||
@@ -32,6 +32,8 @@
|
||||
#include <string.h>
|
||||
#include "glib.h"
|
||||
|
||||
+#include "gstrfuncsprivate.h"
|
||||
+
|
||||
#if defined (_MSC_VER) && (_MSC_VER <= 1800)
|
||||
#define isnan(x) _isnan(x)
|
||||
|
||||
@@ -219,6 +221,26 @@ test_memdup (void)
|
||||
g_free (str_dup);
|
||||
}
|
||||
|
||||
+/* Testing g_memdup2() function with various positive and negative cases */
|
||||
+static void
|
||||
+test_memdup2 (void)
|
||||
+{
|
||||
+ gchar *str_dup = NULL;
|
||||
+ const gchar *str = "The quick brown fox jumps over the lazy dog";
|
||||
+
|
||||
+ /* Testing negative cases */
|
||||
+ g_assert_null (g_memdup2 (NULL, 1024));
|
||||
+ g_assert_null (g_memdup2 (str, 0));
|
||||
+ g_assert_null (g_memdup2 (NULL, 0));
|
||||
+
|
||||
+ /* Testing normal usage cases */
|
||||
+ str_dup = g_memdup2 (str, strlen (str) + 1);
|
||||
+ g_assert_nonnull (str_dup);
|
||||
+ g_assert_cmpstr (str, ==, str_dup);
|
||||
+
|
||||
+ g_free (str_dup);
|
||||
+}
|
||||
+
|
||||
/* Testing g_strpcpy() function with various positive and negative cases */
|
||||
static void
|
||||
test_stpcpy (void)
|
||||
@@ -2523,6 +2545,7 @@ main (int argc,
|
||||
g_test_add_func ("/strfuncs/has-prefix", test_has_prefix);
|
||||
g_test_add_func ("/strfuncs/has-suffix", test_has_suffix);
|
||||
g_test_add_func ("/strfuncs/memdup", test_memdup);
|
||||
+ g_test_add_func ("/strfuncs/memdup2", test_memdup2);
|
||||
g_test_add_func ("/strfuncs/stpcpy", test_stpcpy);
|
||||
g_test_add_func ("/strfuncs/str_match_string", test_str_match_string);
|
||||
g_test_add_func ("/strfuncs/str_tokenize_and_fold", test_str_tokenize_and_fold);
|
||||
249
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-02.patch
Normal file
249
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-02.patch
Normal file
@@ -0,0 +1,249 @@
|
||||
From be8834340a2d928ece82025463ae23dee2c333d0 Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Thu, 4 Feb 2021 13:37:56 +0000
|
||||
Subject: [PATCH 02/11] gio: Use g_memdup2() instead of g_memdup() in obvious
|
||||
places
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Convert all the call sites which use `g_memdup()`’s length argument
|
||||
trivially (for example, by passing a `sizeof()`), so that they use
|
||||
`g_memdup2()` instead.
|
||||
|
||||
In almost all of these cases the use of `g_memdup()` would not have
|
||||
caused problems, but it will soon be deprecated, so best port away from
|
||||
it.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
Helps: #2319
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/gdbusconnection.c | 5 +++--
|
||||
gio/gdbusinterfaceskeleton.c | 3 ++-
|
||||
gio/gfile.c | 7 ++++---
|
||||
gio/gsettingsschema.c | 5 +++--
|
||||
gio/gwin32registrykey.c | 8 +++++---
|
||||
gio/tests/async-close-output-stream.c | 6 ++++--
|
||||
gio/tests/gdbus-export.c | 5 +++--
|
||||
gio/win32/gwinhttpfile.c | 9 +++++----
|
||||
8 files changed, 29 insertions(+), 19 deletions(-)
|
||||
|
||||
--- a/gio/gdbusconnection.c
|
||||
+++ b/gio/gdbusconnection.c
|
||||
@@ -110,6 +110,7 @@
|
||||
#include "gasyncinitable.h"
|
||||
#include "giostream.h"
|
||||
#include "gasyncresult.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
#include "gtask.h"
|
||||
#include "gmarshal-internal.h"
|
||||
|
||||
@@ -4007,7 +4008,7 @@ _g_dbus_interface_vtable_copy (const GDB
|
||||
/* Don't waste memory by copying padding - remember to update this
|
||||
* when changing struct _GDBusInterfaceVTable in gdbusconnection.h
|
||||
*/
|
||||
- return g_memdup ((gconstpointer) vtable, 3 * sizeof (gpointer));
|
||||
+ return g_memdup2 ((gconstpointer) vtable, 3 * sizeof (gpointer));
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -4024,7 +4025,7 @@ _g_dbus_subtree_vtable_copy (const GDBus
|
||||
/* Don't waste memory by copying padding - remember to update this
|
||||
* when changing struct _GDBusSubtreeVTable in gdbusconnection.h
|
||||
*/
|
||||
- return g_memdup ((gconstpointer) vtable, 3 * sizeof (gpointer));
|
||||
+ return g_memdup2 ((gconstpointer) vtable, 3 * sizeof (gpointer));
|
||||
}
|
||||
|
||||
static void
|
||||
--- a/gio/gdbusinterfaceskeleton.c
|
||||
+++ b/gio/gdbusinterfaceskeleton.c
|
||||
@@ -28,6 +28,7 @@
|
||||
#include "gdbusmethodinvocation.h"
|
||||
#include "gdbusconnection.h"
|
||||
#include "gmarshal-internal.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
#include "gtask.h"
|
||||
#include "gioerror.h"
|
||||
|
||||
@@ -701,7 +702,7 @@ add_connection_locked (GDBusInterfaceSke
|
||||
* properly before building the hooked_vtable, so we create it
|
||||
* once at the last minute.
|
||||
*/
|
||||
- interface_->priv->hooked_vtable = g_memdup (g_dbus_interface_skeleton_get_vtable (interface_), sizeof (GDBusInterfaceVTable));
|
||||
+ interface_->priv->hooked_vtable = g_memdup2 (g_dbus_interface_skeleton_get_vtable (interface_), sizeof (GDBusInterfaceVTable));
|
||||
interface_->priv->hooked_vtable->method_call = skeleton_intercept_handle_method_call;
|
||||
}
|
||||
|
||||
--- a/gio/gfile.c
|
||||
+++ b/gio/gfile.c
|
||||
@@ -60,6 +60,7 @@
|
||||
#include "gasyncresult.h"
|
||||
#include "gioerror.h"
|
||||
#include "glibintl.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
|
||||
|
||||
/**
|
||||
@@ -7854,7 +7855,7 @@ measure_disk_usage_progress (gboolean re
|
||||
g_main_context_invoke_full (g_task_get_context (task),
|
||||
g_task_get_priority (task),
|
||||
measure_disk_usage_invoke_progress,
|
||||
- g_memdup (&progress, sizeof progress),
|
||||
+ g_memdup2 (&progress, sizeof progress),
|
||||
g_free);
|
||||
}
|
||||
|
||||
@@ -7872,7 +7873,7 @@ measure_disk_usage_thread (GTask
|
||||
data->progress_callback ? measure_disk_usage_progress : NULL, task,
|
||||
&result.disk_usage, &result.num_dirs, &result.num_files,
|
||||
&error))
|
||||
- g_task_return_pointer (task, g_memdup (&result, sizeof result), g_free);
|
||||
+ g_task_return_pointer (task, g_memdup2 (&result, sizeof result), g_free);
|
||||
else
|
||||
g_task_return_error (task, error);
|
||||
}
|
||||
@@ -7896,7 +7897,7 @@ g_file_real_measure_disk_usage_async (GF
|
||||
|
||||
task = g_task_new (file, cancellable, callback, user_data);
|
||||
g_task_set_source_tag (task, g_file_real_measure_disk_usage_async);
|
||||
- g_task_set_task_data (task, g_memdup (&data, sizeof data), g_free);
|
||||
+ g_task_set_task_data (task, g_memdup2 (&data, sizeof data), g_free);
|
||||
g_task_set_priority (task, io_priority);
|
||||
|
||||
g_task_run_in_thread (task, measure_disk_usage_thread);
|
||||
--- a/gio/gsettingsschema.c
|
||||
+++ b/gio/gsettingsschema.c
|
||||
@@ -20,6 +20,7 @@
|
||||
|
||||
#include "gsettingsschema-internal.h"
|
||||
#include "gsettings.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
|
||||
#include "gvdb/gvdb-reader.h"
|
||||
#include "strinfo.c"
|
||||
@@ -1067,9 +1068,9 @@ g_settings_schema_list_children (GSettin
|
||||
|
||||
if (g_str_has_suffix (key, "/"))
|
||||
{
|
||||
- gint length = strlen (key);
|
||||
+ gsize length = strlen (key);
|
||||
|
||||
- strv[j] = g_memdup (key, length);
|
||||
+ strv[j] = g_memdup2 (key, length);
|
||||
strv[j][length - 1] = '\0';
|
||||
j++;
|
||||
}
|
||||
--- a/gio/gwin32registrykey.c
|
||||
+++ b/gio/gwin32registrykey.c
|
||||
@@ -28,6 +28,8 @@
|
||||
#include <ntstatus.h>
|
||||
#include <winternl.h>
|
||||
|
||||
+#include "gstrfuncsprivate.h"
|
||||
+
|
||||
#ifndef _WDMDDK_
|
||||
typedef enum _KEY_INFORMATION_CLASS {
|
||||
KeyBasicInformation,
|
||||
@@ -247,7 +249,7 @@ g_win32_registry_value_iter_copy (const
|
||||
new_iter->value_name_size = iter->value_name_size;
|
||||
|
||||
if (iter->value_data != NULL)
|
||||
- new_iter->value_data = g_memdup (iter->value_data, iter->value_data_size);
|
||||
+ new_iter->value_data = g_memdup2 (iter->value_data, iter->value_data_size);
|
||||
|
||||
new_iter->value_data_size = iter->value_data_size;
|
||||
|
||||
@@ -268,8 +270,8 @@ g_win32_registry_value_iter_copy (const
|
||||
new_iter->value_data_expanded_charsize = iter->value_data_expanded_charsize;
|
||||
|
||||
if (iter->value_data_expanded_u8 != NULL)
|
||||
- new_iter->value_data_expanded_u8 = g_memdup (iter->value_data_expanded_u8,
|
||||
- iter->value_data_expanded_charsize);
|
||||
+ new_iter->value_data_expanded_u8 = g_memdup2 (iter->value_data_expanded_u8,
|
||||
+ iter->value_data_expanded_charsize);
|
||||
|
||||
new_iter->value_data_expanded_u8_size = iter->value_data_expanded_charsize;
|
||||
|
||||
--- a/gio/tests/async-close-output-stream.c
|
||||
+++ b/gio/tests/async-close-output-stream.c
|
||||
@@ -24,6 +24,8 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
+#include "gstrfuncsprivate.h"
|
||||
+
|
||||
#define DATA_TO_WRITE "Hello world\n"
|
||||
|
||||
typedef struct
|
||||
@@ -147,9 +149,9 @@ prepare_data (SetupData *data,
|
||||
|
||||
data->expected_size = g_memory_output_stream_get_data_size (G_MEMORY_OUTPUT_STREAM (data->data_stream));
|
||||
|
||||
- g_assert_cmpint (data->expected_size, >, 0);
|
||||
+ g_assert_cmpuint (data->expected_size, >, 0);
|
||||
|
||||
- data->expected_output = g_memdup (written, (guint)data->expected_size);
|
||||
+ data->expected_output = g_memdup2 (written, data->expected_size);
|
||||
|
||||
/* then recreate the streams and prepare them for the asynchronous close */
|
||||
destroy_streams (data);
|
||||
--- a/gio/tests/gdbus-export.c
|
||||
+++ b/gio/tests/gdbus-export.c
|
||||
@@ -23,6 +23,7 @@
|
||||
#include <string.h>
|
||||
|
||||
#include "gdbus-tests.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
|
||||
/* all tests rely on a shared mainloop */
|
||||
static GMainLoop *loop = NULL;
|
||||
@@ -671,7 +672,7 @@ subtree_introspect (GDBusConnection
|
||||
g_assert_not_reached ();
|
||||
}
|
||||
|
||||
- return g_memdup (interfaces, 2 * sizeof (void *));
|
||||
+ return g_memdup2 (interfaces, 2 * sizeof (void *));
|
||||
}
|
||||
|
||||
static const GDBusInterfaceVTable *
|
||||
@@ -727,7 +728,7 @@ dynamic_subtree_introspect (GDBusConnect
|
||||
{
|
||||
const GDBusInterfaceInfo *interfaces[2] = { &dyna_interface_info, NULL };
|
||||
|
||||
- return g_memdup (interfaces, 2 * sizeof (void *));
|
||||
+ return g_memdup2 (interfaces, 2 * sizeof (void *));
|
||||
}
|
||||
|
||||
static const GDBusInterfaceVTable *
|
||||
--- a/gio/win32/gwinhttpfile.c
|
||||
+++ b/gio/win32/gwinhttpfile.c
|
||||
@@ -29,6 +29,7 @@
|
||||
#include "gio/gfile.h"
|
||||
#include "gio/gfileattribute.h"
|
||||
#include "gio/gfileinfo.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
#include "gwinhttpfile.h"
|
||||
#include "gwinhttpfileinputstream.h"
|
||||
#include "gwinhttpfileoutputstream.h"
|
||||
@@ -393,10 +394,10 @@
|
||||
child = g_object_new (G_TYPE_WINHTTP_FILE, NULL);
|
||||
child->vfs = winhttp_file->vfs;
|
||||
child->url = winhttp_file->url;
|
||||
- child->url.lpszScheme = g_memdup (winhttp_file->url.lpszScheme, (winhttp_file->url.dwSchemeLength+1)*2);
|
||||
- child->url.lpszHostName = g_memdup (winhttp_file->url.lpszHostName, (winhttp_file->url.dwHostNameLength+1)*2);
|
||||
- child->url.lpszUserName = g_memdup (winhttp_file->url.lpszUserName, (winhttp_file->url.dwUserNameLength+1)*2);
|
||||
- child->url.lpszPassword = g_memdup (winhttp_file->url.lpszPassword, (winhttp_file->url.dwPasswordLength+1)*2);
|
||||
+ child->url.lpszScheme = g_memdup2 (winhttp_file->url.lpszScheme, (winhttp_file->url.dwSchemeLength+1)*2);
|
||||
+ child->url.lpszHostName = g_memdup2 (winhttp_file->url.lpszHostName, (winhttp_file->url.dwHostNameLength+1)*2);
|
||||
+ child->url.lpszUserName = g_memdup2 (winhttp_file->url.lpszUserName, (winhttp_file->url.dwUserNameLength+1)*2);
|
||||
+ child->url.lpszPassword = g_memdup2 (winhttp_file->url.lpszPassword, (winhttp_file->url.dwPasswordLength+1)*2);
|
||||
child->url.lpszUrlPath = wnew_path;
|
||||
child->url.dwUrlPathLength = wcslen (wnew_path);
|
||||
child->url.lpszExtraInfo = NULL;
|
||||
131
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-03.patch
Normal file
131
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-03.patch
Normal file
@@ -0,0 +1,131 @@
|
||||
From 6110caea45b235420b98cd41d845cc92238f6781 Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Thu, 4 Feb 2021 13:39:25 +0000
|
||||
Subject: [PATCH 03/11] gobject: Use g_memdup2() instead of g_memdup() in
|
||||
obvious places
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Convert all the call sites which use `g_memdup()`’s length argument
|
||||
trivially (for example, by passing a `sizeof()`), so that they use
|
||||
`g_memdup2()` instead.
|
||||
|
||||
In almost all of these cases the use of `g_memdup()` would not have
|
||||
caused problems, but it will soon be deprecated, so best port away from
|
||||
it.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
Helps: #2319
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gobject/gsignal.c | 3 ++-
|
||||
gobject/gtype.c | 9 +++++----
|
||||
gobject/gtypemodule.c | 3 ++-
|
||||
gobject/tests/param.c | 4 +++-
|
||||
4 files changed, 12 insertions(+), 7 deletions(-)
|
||||
|
||||
--- a/gobject/gsignal.c
|
||||
+++ b/gobject/gsignal.c
|
||||
@@ -28,6 +28,7 @@
|
||||
#include <signal.h>
|
||||
|
||||
#include "gsignal.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
#include "gtype-private.h"
|
||||
#include "gbsearcharray.h"
|
||||
#include "gvaluecollector.h"
|
||||
@@ -1809,7 +1810,7 @@ g_signal_newv (const gchar *signal
|
||||
node->single_va_closure_is_valid = FALSE;
|
||||
node->flags = signal_flags & G_SIGNAL_FLAGS_MASK;
|
||||
node->n_params = n_params;
|
||||
- node->param_types = g_memdup (param_types, sizeof (GType) * n_params);
|
||||
+ node->param_types = g_memdup2 (param_types, sizeof (GType) * n_params);
|
||||
node->return_type = return_type;
|
||||
node->class_closure_bsa = NULL;
|
||||
if (accumulator)
|
||||
--- a/gobject/gtype.c
|
||||
+++ b/gobject/gtype.c
|
||||
@@ -33,6 +33,7 @@
|
||||
|
||||
#include "glib-private.h"
|
||||
#include "gconstructor.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#include <windows.h>
|
||||
@@ -1470,7 +1471,7 @@ type_add_interface_Wm (TypeNode
|
||||
iholder->next = iface_node_get_holders_L (iface);
|
||||
iface_node_set_holders_W (iface, iholder);
|
||||
iholder->instance_type = NODE_TYPE (node);
|
||||
- iholder->info = info ? g_memdup (info, sizeof (*info)) : NULL;
|
||||
+ iholder->info = info ? g_memdup2 (info, sizeof (*info)) : NULL;
|
||||
iholder->plugin = plugin;
|
||||
|
||||
/* create an iface entry for this type */
|
||||
@@ -1731,7 +1732,7 @@ type_iface_retrieve_holder_info_Wm (Type
|
||||
INVALID_RECURSION ("g_type_plugin_*", iholder->plugin, NODE_NAME (iface));
|
||||
|
||||
check_interface_info_I (iface, instance_type, &tmp_info);
|
||||
- iholder->info = g_memdup (&tmp_info, sizeof (tmp_info));
|
||||
+ iholder->info = g_memdup2 (&tmp_info, sizeof (tmp_info));
|
||||
}
|
||||
|
||||
return iholder; /* we don't modify write lock upon returning NULL */
|
||||
@@ -2016,10 +2017,10 @@ type_iface_vtable_base_init_Wm (TypeNode
|
||||
IFaceEntry *pentry = type_lookup_iface_entry_L (pnode, iface);
|
||||
|
||||
if (pentry)
|
||||
- vtable = g_memdup (pentry->vtable, iface->data->iface.vtable_size);
|
||||
+ vtable = g_memdup2 (pentry->vtable, iface->data->iface.vtable_size);
|
||||
}
|
||||
if (!vtable)
|
||||
- vtable = g_memdup (iface->data->iface.dflt_vtable, iface->data->iface.vtable_size);
|
||||
+ vtable = g_memdup2 (iface->data->iface.dflt_vtable, iface->data->iface.vtable_size);
|
||||
entry->vtable = vtable;
|
||||
vtable->g_type = NODE_TYPE (iface);
|
||||
vtable->g_instance_type = NODE_TYPE (node);
|
||||
--- a/gobject/gtypemodule.c
|
||||
+++ b/gobject/gtypemodule.c
|
||||
@@ -19,6 +19,7 @@
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
+#include "gstrfuncsprivate.h"
|
||||
#include "gtypeplugin.h"
|
||||
#include "gtypemodule.h"
|
||||
|
||||
@@ -436,7 +437,7 @@ g_type_module_register_type (GTypeModule
|
||||
module_type_info->loaded = TRUE;
|
||||
module_type_info->info = *type_info;
|
||||
if (type_info->value_table)
|
||||
- module_type_info->info.value_table = g_memdup (type_info->value_table,
|
||||
+ module_type_info->info.value_table = g_memdup2 (type_info->value_table,
|
||||
sizeof (GTypeValueTable));
|
||||
|
||||
return module_type_info->type;
|
||||
--- a/gobject/tests/param.c
|
||||
+++ b/gobject/tests/param.c
|
||||
@@ -2,6 +2,8 @@
|
||||
#include <glib-object.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
+#include "gstrfuncsprivate.h"
|
||||
+
|
||||
static void
|
||||
test_param_value (void)
|
||||
{
|
||||
@@ -874,7 +876,7 @@ main (int argc, char *argv[])
|
||||
test_path = g_strdup_printf ("/param/implement/subprocess/%d-%d-%d-%d",
|
||||
data.change_this_flag, data.change_this_type,
|
||||
data.use_this_flag, data.use_this_type);
|
||||
- test_data = g_memdup (&data, sizeof (TestParamImplementData));
|
||||
+ test_data = g_memdup2 (&data, sizeof (TestParamImplementData));
|
||||
g_test_add_data_func_full (test_path, test_data, test_param_implement_child, g_free);
|
||||
g_free (test_path);
|
||||
}
|
||||
298
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-04.patch
Normal file
298
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-04.patch
Normal file
@@ -0,0 +1,298 @@
|
||||
Backport of:
|
||||
|
||||
From 0736b7c1e7cf4232c5d7eb2b0fbfe9be81bd3baa Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Thu, 4 Feb 2021 13:41:21 +0000
|
||||
Subject: [PATCH 04/11] glib: Use g_memdup2() instead of g_memdup() in obvious
|
||||
places
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Convert all the call sites which use `g_memdup()`’s length argument
|
||||
trivially (for example, by passing a `sizeof()` or an existing `gsize`
|
||||
variable), so that they use `g_memdup2()` instead.
|
||||
|
||||
In almost all of these cases the use of `g_memdup()` would not have
|
||||
caused problems, but it will soon be deprecated, so best port away from
|
||||
it
|
||||
|
||||
In particular, this fixes an overflow within `g_bytes_new()`, identified
|
||||
as GHSL-2021-045 by GHSL team member Kevin Backhouse.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
Fixes: GHSL-2021-045
|
||||
Helps: #2319
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
glib/gbytes.c | 6 ++++--
|
||||
glib/gdir.c | 3 ++-
|
||||
glib/ghash.c | 7 ++++---
|
||||
glib/giochannel.c | 5 +++--
|
||||
glib/gslice.c | 3 ++-
|
||||
glib/gtestutils.c | 3 ++-
|
||||
glib/gvariant.c | 7 ++++---
|
||||
glib/gvarianttype.c | 3 ++-
|
||||
glib/tests/array-test.c | 4 +++-
|
||||
glib/tests/option-context.c | 6 ++++--
|
||||
glib/tests/uri.c | 8 +++++---
|
||||
11 files changed, 35 insertions(+), 20 deletions(-)
|
||||
|
||||
--- a/glib/gbytes.c
|
||||
+++ b/glib/gbytes.c
|
||||
@@ -34,6 +34,8 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
+#include "gstrfuncsprivate.h"
|
||||
+
|
||||
/**
|
||||
* GBytes:
|
||||
*
|
||||
@@ -95,7 +97,7 @@ g_bytes_new (gconstpointer data,
|
||||
{
|
||||
g_return_val_if_fail (data != NULL || size == 0, NULL);
|
||||
|
||||
- return g_bytes_new_take (g_memdup (data, size), size);
|
||||
+ return g_bytes_new_take (g_memdup2 (data, size), size);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -499,7 +501,7 @@ g_bytes_unref_to_data (GBytes *bytes,
|
||||
* Copy: Non g_malloc (or compatible) allocator, or static memory,
|
||||
* so we have to copy, and then unref.
|
||||
*/
|
||||
- result = g_memdup (bytes->data, bytes->size);
|
||||
+ result = g_memdup2 (bytes->data, bytes->size);
|
||||
*size = bytes->size;
|
||||
g_bytes_unref (bytes);
|
||||
}
|
||||
--- a/glib/gdir.c
|
||||
+++ b/glib/gdir.c
|
||||
@@ -37,6 +37,7 @@
|
||||
#include "gconvert.h"
|
||||
#include "gfileutils.h"
|
||||
#include "gstrfuncs.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
#include "gtestutils.h"
|
||||
#include "glibintl.h"
|
||||
|
||||
@@ -112,7 +113,7 @@ g_dir_open_with_errno (const gchar *path
|
||||
return NULL;
|
||||
#endif
|
||||
|
||||
- return g_memdup (&dir, sizeof dir);
|
||||
+ return g_memdup2 (&dir, sizeof dir);
|
||||
}
|
||||
|
||||
/**
|
||||
--- a/glib/ghash.c
|
||||
+++ b/glib/ghash.c
|
||||
@@ -34,6 +34,7 @@
|
||||
#include "gmacros.h"
|
||||
#include "glib-private.h"
|
||||
#include "gstrfuncs.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
#include "gatomic.h"
|
||||
#include "gtestutils.h"
|
||||
#include "gslice.h"
|
||||
@@ -962,7 +963,7 @@ g_hash_table_ensure_keyval_fits (GHashTa
|
||||
if (hash_table->have_big_keys)
|
||||
{
|
||||
if (key != value)
|
||||
- hash_table->values = g_memdup (hash_table->keys, sizeof (gpointer) * hash_table->size);
|
||||
+ hash_table->values = g_memdup2 (hash_table->keys, sizeof (gpointer) * hash_table->size);
|
||||
/* Keys and values are both big now, so no need for further checks */
|
||||
return;
|
||||
}
|
||||
@@ -970,7 +971,7 @@ g_hash_table_ensure_keyval_fits (GHashTa
|
||||
{
|
||||
if (key != value)
|
||||
{
|
||||
- hash_table->values = g_memdup (hash_table->keys, sizeof (guint) * hash_table->size);
|
||||
+ hash_table->values = g_memdup2 (hash_table->keys, sizeof (guint) * hash_table->size);
|
||||
is_a_set = FALSE;
|
||||
}
|
||||
}
|
||||
@@ -998,7 +999,7 @@ g_hash_table_ensure_keyval_fits (GHashTa
|
||||
|
||||
/* Just split if necessary */
|
||||
if (is_a_set && key != value)
|
||||
- hash_table->values = g_memdup (hash_table->keys, sizeof (gpointer) * hash_table->size);
|
||||
+ hash_table->values = g_memdup2 (hash_table->keys, sizeof (gpointer) * hash_table->size);
|
||||
|
||||
#endif
|
||||
}
|
||||
--- a/glib/giochannel.c
|
||||
+++ b/glib/giochannel.c
|
||||
@@ -35,7 +35,7 @@
|
||||
#include <errno.h>
|
||||
|
||||
#include "giochannel.h"
|
||||
-
|
||||
+#include "gstrfuncsprivate.h"
|
||||
#include "gstrfuncs.h"
|
||||
#include "gtestutils.h"
|
||||
#include "glibintl.h"
|
||||
|
||||
@@ -1673,10 +1674,10 @@ g_io_channel_read_line (GIOChannel *cha
|
||||
|
||||
/* Copy the read bytes (including any embedded nuls) and nul-terminate.
|
||||
* `USE_BUF (channel)->str` is guaranteed to be nul-terminated as it’s a
|
||||
- * #GString, so it’s safe to call g_memdup() with +1 length to allocate
|
||||
+ * #GString, so it’s safe to call g_memdup2() with +1 length to allocate
|
||||
* a nul-terminator. */
|
||||
g_assert (USE_BUF (channel));
|
||||
- line = g_memdup (USE_BUF (channel)->str, got_length + 1);
|
||||
+ line = g_memdup2 (USE_BUF (channel)->str, got_length + 1);
|
||||
line[got_length] = '\0';
|
||||
*str_return = g_steal_pointer (&line);
|
||||
g_string_erase (USE_BUF (channel), 0, got_length);
|
||||
--- a/glib/gslice.c
|
||||
+++ b/glib/gslice.c
|
||||
@@ -41,6 +41,7 @@
|
||||
#include "gmain.h"
|
||||
#include "gmem.h" /* gslice.h */
|
||||
#include "gstrfuncs.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
#include "gutils.h"
|
||||
#include "gtrashstack.h"
|
||||
#include "gtestutils.h"
|
||||
@@ -350,7 +351,7 @@ g_slice_get_config_state (GSliceConfig c
|
||||
array[i++] = allocator->contention_counters[address];
|
||||
array[i++] = allocator_get_magazine_threshold (allocator, address);
|
||||
*n_values = i;
|
||||
- return g_memdup (array, sizeof (array[0]) * *n_values);
|
||||
+ return g_memdup2 (array, sizeof (array[0]) * *n_values);
|
||||
default:
|
||||
return NULL;
|
||||
}
|
||||
--- a/glib/gtestutils.c
|
||||
+++ b/glib/gtestutils.c
|
||||
@@ -49,6 +49,7 @@
|
||||
#include "gpattern.h"
|
||||
#include "grand.h"
|
||||
#include "gstrfuncs.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
#include "gtimer.h"
|
||||
#include "gslice.h"
|
||||
#include "gspawn.h"
|
||||
@@ -3803,7 +3804,7 @@ g_test_log_extract (GTestLogBuffer *tbuf
|
||||
if (p <= tbuffer->data->str + mlength)
|
||||
{
|
||||
g_string_erase (tbuffer->data, 0, mlength);
|
||||
- tbuffer->msgs = g_slist_prepend (tbuffer->msgs, g_memdup (&msg, sizeof (msg)));
|
||||
+ tbuffer->msgs = g_slist_prepend (tbuffer->msgs, g_memdup2 (&msg, sizeof (msg)));
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
--- a/glib/gvariant.c
|
||||
+++ b/glib/gvariant.c
|
||||
@@ -33,6 +33,7 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
+#include "gstrfuncsprivate.h"
|
||||
|
||||
/**
|
||||
* SECTION:gvariant
|
||||
@@ -725,7 +726,7 @@ g_variant_new_variant (GVariant *value)
|
||||
g_variant_ref_sink (value);
|
||||
|
||||
return g_variant_new_from_children (G_VARIANT_TYPE_VARIANT,
|
||||
- g_memdup (&value, sizeof value),
|
||||
+ g_memdup2 (&value, sizeof value),
|
||||
1, g_variant_is_trusted (value));
|
||||
}
|
||||
|
||||
@@ -1229,7 +1230,7 @@ g_variant_new_fixed_array (const GVarian
|
||||
return NULL;
|
||||
}
|
||||
|
||||
- data = g_memdup (elements, n_elements * element_size);
|
||||
+ data = g_memdup2 (elements, n_elements * element_size);
|
||||
value = g_variant_new_from_data (array_type, data,
|
||||
n_elements * element_size,
|
||||
FALSE, g_free, data);
|
||||
@@ -1908,7 +1909,7 @@ g_variant_dup_bytestring (GVariant *valu
|
||||
if (length)
|
||||
*length = size;
|
||||
|
||||
- return g_memdup (original, size + 1);
|
||||
+ return g_memdup2 (original, size + 1);
|
||||
}
|
||||
|
||||
/**
|
||||
--- a/glib/gvarianttype.c
|
||||
+++ b/glib/gvarianttype.c
|
||||
@@ -28,6 +28,7 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
+#include "gstrfuncsprivate.h"
|
||||
|
||||
/**
|
||||
* SECTION:gvarianttype
|
||||
@@ -1181,7 +1182,7 @@ g_variant_type_new_tuple (const GVariant
|
||||
g_assert (offset < sizeof buffer);
|
||||
buffer[offset++] = ')';
|
||||
|
||||
- return (GVariantType *) g_memdup (buffer, offset);
|
||||
+ return (GVariantType *) g_memdup2 (buffer, offset);
|
||||
}
|
||||
|
||||
/**
|
||||
--- a/glib/tests/array-test.c
|
||||
+++ b/glib/tests/array-test.c
|
||||
@@ -29,6 +29,8 @@
|
||||
#include <string.h>
|
||||
#include "glib.h"
|
||||
|
||||
+#include "gstrfuncsprivate.h"
|
||||
+
|
||||
/* Test data to be passed to any function which calls g_array_new(), providing
|
||||
* the parameters for that call. Most #GArray tests should be repeated for all
|
||||
* possible values of #ArrayTestData. */
|
||||
@@ -1917,7 +1919,7 @@ byte_array_new_take (void)
|
||||
GByteArray *gbarray;
|
||||
guint8 *data;
|
||||
|
||||
- data = g_memdup ("woooweeewow", 11);
|
||||
+ data = g_memdup2 ("woooweeewow", 11);
|
||||
gbarray = g_byte_array_new_take (data, 11);
|
||||
g_assert (gbarray->data == data);
|
||||
g_assert_cmpuint (gbarray->len, ==, 11);
|
||||
--- a/glib/tests/option-context.c
|
||||
+++ b/glib/tests/option-context.c
|
||||
@@ -27,6 +27,8 @@
|
||||
#include <string.h>
|
||||
#include <locale.h>
|
||||
|
||||
+#include "gstrfuncsprivate.h"
|
||||
+
|
||||
static GOptionEntry main_entries[] = {
|
||||
{ "main-switch", 0, 0,
|
||||
G_OPTION_ARG_NONE, NULL,
|
||||
@@ -256,7 +258,7 @@ join_stringv (int argc, char **argv)
|
||||
static char **
|
||||
copy_stringv (char **argv, int argc)
|
||||
{
|
||||
- return g_memdup (argv, sizeof (char *) * (argc + 1));
|
||||
+ return g_memdup2 (argv, sizeof (char *) * (argc + 1));
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -2323,7 +2325,7 @@ test_group_parse (void)
|
||||
g_option_context_add_group (context, group);
|
||||
|
||||
argv = split_string ("program --test arg1 -f arg2 --group-test arg3 --frob arg4 -z arg5", &argc);
|
||||
- orig_argv = g_memdup (argv, (argc + 1) * sizeof (char *));
|
||||
+ orig_argv = g_memdup2 (argv, (argc + 1) * sizeof (char *));
|
||||
|
||||
retval = g_option_context_parse (context, &argc, &argv, &error);
|
||||
|
||||
54
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-05.patch
Normal file
54
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-05.patch
Normal file
@@ -0,0 +1,54 @@
|
||||
From 0cbad673215ec8a049b7fe2ff44b0beed31b376e Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Thu, 4 Feb 2021 16:12:24 +0000
|
||||
Subject: [PATCH 05/11] gwinhttpfile: Avoid arithmetic overflow when
|
||||
calculating a size
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
The members of `URL_COMPONENTS` (`winhttp_file->url`) are `DWORD`s, i.e.
|
||||
32-bit unsigned integers. Adding to and multiplying them may cause them
|
||||
to overflow the unsigned integer bounds, even if the result is passed to
|
||||
`g_memdup2()` which accepts a `gsize`.
|
||||
|
||||
Cast the `URL_COMPONENTS` members to `gsize` first to ensure that the
|
||||
arithmetic is done in terms of `gsize`s rather than unsigned integers.
|
||||
|
||||
Spotted by Sebastian Dröge.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
Helps: #2319
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/win32/gwinhttpfile.c | 8 ++++----
|
||||
1 file changed, 4 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/gio/win32/gwinhttpfile.c b/gio/win32/gwinhttpfile.c
|
||||
index 3f8fbd838..e0340e247 100644
|
||||
--- a/gio/win32/gwinhttpfile.c
|
||||
+++ b/gio/win32/gwinhttpfile.c
|
||||
@@ -410,10 +410,10 @@ g_winhttp_file_resolve_relative_path (GFile *file,
|
||||
child = g_object_new (G_TYPE_WINHTTP_FILE, NULL);
|
||||
child->vfs = winhttp_file->vfs;
|
||||
child->url = winhttp_file->url;
|
||||
- child->url.lpszScheme = g_memdup2 (winhttp_file->url.lpszScheme, (winhttp_file->url.dwSchemeLength+1)*2);
|
||||
- child->url.lpszHostName = g_memdup2 (winhttp_file->url.lpszHostName, (winhttp_file->url.dwHostNameLength+1)*2);
|
||||
- child->url.lpszUserName = g_memdup2 (winhttp_file->url.lpszUserName, (winhttp_file->url.dwUserNameLength+1)*2);
|
||||
- child->url.lpszPassword = g_memdup2 (winhttp_file->url.lpszPassword, (winhttp_file->url.dwPasswordLength+1)*2);
|
||||
+ child->url.lpszScheme = g_memdup2 (winhttp_file->url.lpszScheme, ((gsize) winhttp_file->url.dwSchemeLength + 1) * 2);
|
||||
+ child->url.lpszHostName = g_memdup2 (winhttp_file->url.lpszHostName, ((gsize) winhttp_file->url.dwHostNameLength + 1) * 2);
|
||||
+ child->url.lpszUserName = g_memdup2 (winhttp_file->url.lpszUserName, ((gsize) winhttp_file->url.dwUserNameLength + 1) * 2);
|
||||
+ child->url.lpszPassword = g_memdup2 (winhttp_file->url.lpszPassword, ((gsize) winhttp_file->url.dwPasswordLength + 1) * 2);
|
||||
child->url.lpszUrlPath = wnew_path;
|
||||
child->url.dwUrlPathLength = wcslen (wnew_path);
|
||||
child->url.lpszExtraInfo = NULL;
|
||||
--
|
||||
GitLab
|
||||
|
||||
|
||||
101
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-06.patch
Normal file
101
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-06.patch
Normal file
@@ -0,0 +1,101 @@
|
||||
From f9ee2275cbc312c0b4cdbc338a4fbb76eb36fb9a Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Thu, 4 Feb 2021 13:49:00 +0000
|
||||
Subject: [PATCH 06/11] gdatainputstream: Handle stop_chars_len internally as
|
||||
gsize
|
||||
|
||||
Previously it was handled as a `gssize`, which meant that if the
|
||||
`stop_chars` string was longer than `G_MAXSSIZE` there would be an
|
||||
overflow.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
Helps: #2319
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/gdatainputstream.c | 25 +++++++++++++++++--------
|
||||
1 file changed, 17 insertions(+), 8 deletions(-)
|
||||
|
||||
diff --git a/gio/gdatainputstream.c b/gio/gdatainputstream.c
|
||||
index 2e7750cb5..2cdcbda19 100644
|
||||
--- a/gio/gdatainputstream.c
|
||||
+++ b/gio/gdatainputstream.c
|
||||
@@ -27,6 +27,7 @@
|
||||
#include "gioenumtypes.h"
|
||||
#include "gioerror.h"
|
||||
#include "glibintl.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
@@ -856,7 +857,7 @@ static gssize
|
||||
scan_for_chars (GDataInputStream *stream,
|
||||
gsize *checked_out,
|
||||
const char *stop_chars,
|
||||
- gssize stop_chars_len)
|
||||
+ gsize stop_chars_len)
|
||||
{
|
||||
GBufferedInputStream *bstream;
|
||||
const char *buffer;
|
||||
@@ -952,7 +953,7 @@ typedef struct
|
||||
gsize checked;
|
||||
|
||||
gchar *stop_chars;
|
||||
- gssize stop_chars_len;
|
||||
+ gsize stop_chars_len;
|
||||
gsize length;
|
||||
} GDataInputStreamReadData;
|
||||
|
||||
@@ -1078,12 +1079,17 @@ g_data_input_stream_read_async (GDataInputStream *stream,
|
||||
{
|
||||
GDataInputStreamReadData *data;
|
||||
GTask *task;
|
||||
+ gsize stop_chars_len_unsigned;
|
||||
|
||||
data = g_slice_new0 (GDataInputStreamReadData);
|
||||
- if (stop_chars_len == -1)
|
||||
- stop_chars_len = strlen (stop_chars);
|
||||
- data->stop_chars = g_memdup (stop_chars, stop_chars_len);
|
||||
- data->stop_chars_len = stop_chars_len;
|
||||
+
|
||||
+ if (stop_chars_len < 0)
|
||||
+ stop_chars_len_unsigned = strlen (stop_chars);
|
||||
+ else
|
||||
+ stop_chars_len_unsigned = (gsize) stop_chars_len;
|
||||
+
|
||||
+ data->stop_chars = g_memdup2 (stop_chars, stop_chars_len_unsigned);
|
||||
+ data->stop_chars_len = stop_chars_len_unsigned;
|
||||
data->last_saw_cr = FALSE;
|
||||
|
||||
task = g_task_new (stream, cancellable, callback, user_data);
|
||||
@@ -1338,17 +1344,20 @@ g_data_input_stream_read_upto (GDataInputStream *stream,
|
||||
gssize found_pos;
|
||||
gssize res;
|
||||
char *data_until;
|
||||
+ gsize stop_chars_len_unsigned;
|
||||
|
||||
g_return_val_if_fail (G_IS_DATA_INPUT_STREAM (stream), NULL);
|
||||
|
||||
if (stop_chars_len < 0)
|
||||
- stop_chars_len = strlen (stop_chars);
|
||||
+ stop_chars_len_unsigned = strlen (stop_chars);
|
||||
+ else
|
||||
+ stop_chars_len_unsigned = (gsize) stop_chars_len;
|
||||
|
||||
bstream = G_BUFFERED_INPUT_STREAM (stream);
|
||||
|
||||
checked = 0;
|
||||
|
||||
- while ((found_pos = scan_for_chars (stream, &checked, stop_chars, stop_chars_len)) == -1)
|
||||
+ while ((found_pos = scan_for_chars (stream, &checked, stop_chars, stop_chars_len_unsigned)) == -1)
|
||||
{
|
||||
if (g_buffered_input_stream_get_available (bstream) ==
|
||||
g_buffered_input_stream_get_buffer_size (bstream))
|
||||
--
|
||||
GitLab
|
||||
|
||||
|
||||
76
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-07.patch
Normal file
76
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-07.patch
Normal file
@@ -0,0 +1,76 @@
|
||||
From 2aaf593a9eb96d84fe3be740aca2810a97d95592 Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Thu, 4 Feb 2021 13:50:37 +0000
|
||||
Subject: [PATCH 07/11] gwin32: Use gsize internally in g_wcsdup()
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
This allows it to handle strings up to length `G_MAXSIZE` — previously
|
||||
it would overflow with such strings.
|
||||
|
||||
Update the several copies of it identically.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
Helps: #2319
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/gwin32registrykey.c | 34 ++++++++++++++++++++++++++--------
|
||||
2 files changed, 38 insertions(+), 16 deletions(-)
|
||||
|
||||
diff --git a/gio/gwin32registrykey.c b/gio/gwin32registrykey.c
|
||||
index 548a94188..2eb67daf8 100644
|
||||
--- a/gio/gwin32registrykey.c
|
||||
+++ b/gio/gwin32registrykey.c
|
||||
@@ -127,16 +127,34 @@ typedef enum
|
||||
G_WIN32_REGISTRY_UPDATED_PATH = 1,
|
||||
} GWin32RegistryKeyUpdateFlag;
|
||||
|
||||
+static gsize
|
||||
+g_utf16_len (const gunichar2 *str)
|
||||
+{
|
||||
+ gsize result;
|
||||
+
|
||||
+ for (result = 0; str[0] != 0; str++, result++)
|
||||
+ ;
|
||||
+
|
||||
+ return result;
|
||||
+}
|
||||
+
|
||||
static gunichar2 *
|
||||
-g_wcsdup (const gunichar2 *str,
|
||||
- gssize str_size)
|
||||
+g_wcsdup (const gunichar2 *str, gssize str_len)
|
||||
{
|
||||
- if (str_size == -1)
|
||||
- {
|
||||
- str_size = wcslen (str) + 1;
|
||||
- str_size *= sizeof (gunichar2);
|
||||
- }
|
||||
- return g_memdup (str, str_size);
|
||||
+ gsize str_len_unsigned;
|
||||
+ gsize str_size;
|
||||
+
|
||||
+ g_return_val_if_fail (str != NULL, NULL);
|
||||
+
|
||||
+ if (str_len < 0)
|
||||
+ str_len_unsigned = g_utf16_len (str);
|
||||
+ else
|
||||
+ str_len_unsigned = (gsize) str_len;
|
||||
+
|
||||
+ g_assert (str_len_unsigned <= G_MAXSIZE / sizeof (gunichar2) - 1);
|
||||
+ str_size = (str_len_unsigned + 1) * sizeof (gunichar2);
|
||||
+
|
||||
+ return g_memdup2 (str, str_size);
|
||||
}
|
||||
|
||||
/**
|
||||
--
|
||||
GitLab
|
||||
|
||||
|
||||
101
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-08.patch
Normal file
101
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-08.patch
Normal file
@@ -0,0 +1,101 @@
|
||||
From ba8ca443051f93a74c0d03d62e70402036f967a5 Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Thu, 4 Feb 2021 13:58:32 +0000
|
||||
Subject: [PATCH 08/11] gkeyfilesettingsbackend: Handle long keys when
|
||||
converting paths
|
||||
|
||||
Previously, the code in `convert_path()` could not handle keys longer
|
||||
than `G_MAXINT`, and would overflow if that was exceeded.
|
||||
|
||||
Convert the code to use `gsize` and `g_memdup2()` throughout, and
|
||||
change from identifying the position of the final slash in the string
|
||||
using a signed offset `i`, to using a pointer to the character (and
|
||||
`strrchr()`). This allows the slash to be at any position in a
|
||||
`G_MAXSIZE`-long string, without sacrificing a bit of the offset for
|
||||
indicating whether a slash was found.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
Helps: #2319
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/gkeyfilesettingsbackend.c | 21 ++++++++++-----------
|
||||
1 file changed, 10 insertions(+), 11 deletions(-)
|
||||
|
||||
diff --git a/gio/gkeyfilesettingsbackend.c b/gio/gkeyfilesettingsbackend.c
|
||||
index cd5765afd..25b057672 100644
|
||||
--- a/gio/gkeyfilesettingsbackend.c
|
||||
+++ b/gio/gkeyfilesettingsbackend.c
|
||||
@@ -33,6 +33,7 @@
|
||||
#include "gfilemonitor.h"
|
||||
#include "gsimplepermission.h"
|
||||
#include "gsettingsbackendinternal.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
#include "giomodule-priv.h"
|
||||
#include "gportalsupport.h"
|
||||
|
||||
@@ -145,8 +146,8 @@ convert_path (GKeyfileSettingsBackend *kfsb,
|
||||
gchar **group,
|
||||
gchar **basename)
|
||||
{
|
||||
- gint key_len = strlen (key);
|
||||
- gint i;
|
||||
+ gsize key_len = strlen (key);
|
||||
+ const gchar *last_slash;
|
||||
|
||||
if (key_len < kfsb->prefix_len ||
|
||||
memcmp (key, kfsb->prefix, kfsb->prefix_len) != 0)
|
||||
@@ -155,38 +156,36 @@ convert_path (GKeyfileSettingsBackend *kfsb,
|
||||
key_len -= kfsb->prefix_len;
|
||||
key += kfsb->prefix_len;
|
||||
|
||||
- for (i = key_len; i >= 0; i--)
|
||||
- if (key[i] == '/')
|
||||
- break;
|
||||
+ last_slash = strrchr (key, '/');
|
||||
|
||||
if (kfsb->root_group)
|
||||
{
|
||||
/* if a root_group was specified, make sure the user hasn't given
|
||||
* a path that ghosts that group name
|
||||
*/
|
||||
- if (i == kfsb->root_group_len && memcmp (key, kfsb->root_group, i) == 0)
|
||||
+ if (last_slash != NULL && (last_slash - key) == kfsb->root_group_len && memcmp (key, kfsb->root_group, last_slash - key) == 0)
|
||||
return FALSE;
|
||||
}
|
||||
else
|
||||
{
|
||||
/* if no root_group was given, ensure that the user gave a path */
|
||||
- if (i == -1)
|
||||
+ if (last_slash == NULL)
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (group)
|
||||
{
|
||||
- if (i >= 0)
|
||||
+ if (last_slash != NULL)
|
||||
{
|
||||
- *group = g_memdup (key, i + 1);
|
||||
- (*group)[i] = '\0';
|
||||
+ *group = g_memdup2 (key, (last_slash - key) + 1);
|
||||
+ (*group)[(last_slash - key)] = '\0';
|
||||
}
|
||||
else
|
||||
*group = g_strdup (kfsb->root_group);
|
||||
}
|
||||
|
||||
if (basename)
|
||||
- *basename = g_memdup (key + i + 1, key_len - i);
|
||||
+ *basename = g_memdup2 (last_slash + 1, key_len - (last_slash - key));
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
--
|
||||
GitLab
|
||||
|
||||
|
||||
100
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-09.patch
Normal file
100
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-09.patch
Normal file
@@ -0,0 +1,100 @@
|
||||
From 65ec7f4d6e8832c481f6e00e2eb007b9a60024ce Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Thu, 4 Feb 2021 14:00:53 +0000
|
||||
Subject: [PATCH 09/11] =?UTF-8?q?gsocket:=20Use=20gsize=20to=20track=20nat?=
|
||||
=?UTF-8?q?ive=20sockaddr=E2=80=99s=20size?=
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Don’t use an `int`, that’s potentially too small. In practical terms,
|
||||
this is not a problem, since no socket address is going to be that big.
|
||||
|
||||
By making these changes we can use `g_memdup2()` without warnings,
|
||||
though. Fewer warnings is good.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
Helps: #2319
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/gsocket.c | 16 ++++++++++------
|
||||
1 file changed, 10 insertions(+), 6 deletions(-)
|
||||
|
||||
--- a/gio/gsocket.c
|
||||
+++ b/gio/gsocket.c
|
||||
@@ -75,6 +75,7 @@
|
||||
#include "gcredentialsprivate.h"
|
||||
#include "glibintl.h"
|
||||
#include "gioprivate.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
/* For Windows XP runtime compatibility, but use the system's if_nametoindex() if available */
|
||||
@@ -174,7 +175,7 @@ static gboolean g_socket_datagram_ba
|
||||
GError **error);
|
||||
|
||||
static GSocketAddress *
|
||||
-cache_recv_address (GSocket *socket, struct sockaddr *native, int native_len);
|
||||
+cache_recv_address (GSocket *socket, struct sockaddr *native, size_t native_len);
|
||||
|
||||
static gssize
|
||||
g_socket_receive_message_with_timeout (GSocket *socket,
|
||||
@@ -260,7 +261,7 @@ struct _GSocketPrivate
|
||||
struct {
|
||||
GSocketAddress *addr;
|
||||
struct sockaddr *native;
|
||||
- gint native_len;
|
||||
+ gsize native_len;
|
||||
guint64 last_used;
|
||||
} recv_addr_cache[RECV_ADDR_CACHE_SIZE];
|
||||
};
|
||||
@@ -5259,14 +5260,14 @@ g_socket_send_messages_with_timeout (GSo
|
||||
}
|
||||
|
||||
static GSocketAddress *
|
||||
-cache_recv_address (GSocket *socket, struct sockaddr *native, int native_len)
|
||||
+cache_recv_address (GSocket *socket, struct sockaddr *native, size_t native_len)
|
||||
{
|
||||
GSocketAddress *saddr;
|
||||
gint i;
|
||||
guint64 oldest_time = G_MAXUINT64;
|
||||
gint oldest_index = 0;
|
||||
|
||||
- if (native_len <= 0)
|
||||
+ if (native_len == 0)
|
||||
return NULL;
|
||||
|
||||
saddr = NULL;
|
||||
@@ -5274,7 +5275,7 @@ cache_recv_address (GSocket *socket, str
|
||||
{
|
||||
GSocketAddress *tmp = socket->priv->recv_addr_cache[i].addr;
|
||||
gpointer tmp_native = socket->priv->recv_addr_cache[i].native;
|
||||
- gint tmp_native_len = socket->priv->recv_addr_cache[i].native_len;
|
||||
+ gsize tmp_native_len = socket->priv->recv_addr_cache[i].native_len;
|
||||
|
||||
if (!tmp)
|
||||
continue;
|
||||
@@ -5304,7 +5305,7 @@ cache_recv_address (GSocket *socket, str
|
||||
g_free (socket->priv->recv_addr_cache[oldest_index].native);
|
||||
}
|
||||
|
||||
- socket->priv->recv_addr_cache[oldest_index].native = g_memdup (native, native_len);
|
||||
+ socket->priv->recv_addr_cache[oldest_index].native = g_memdup2 (native, native_len);
|
||||
socket->priv->recv_addr_cache[oldest_index].native_len = native_len;
|
||||
socket->priv->recv_addr_cache[oldest_index].addr = g_object_ref (saddr);
|
||||
socket->priv->recv_addr_cache[oldest_index].last_used = g_get_monotonic_time ();
|
||||
@@ -5452,6 +5453,9 @@ g_socket_receive_message_with_timeout (G
|
||||
/* do it */
|
||||
while (1)
|
||||
{
|
||||
+ /* addrlen has to be of type int because that’s how WSARecvFrom() is defined */
|
||||
+ G_STATIC_ASSERT (sizeof addr <= G_MAXINT);
|
||||
+
|
||||
addrlen = sizeof addr;
|
||||
if (address)
|
||||
result = WSARecvFrom (socket->priv->fd,
|
||||
59
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-10.patch
Normal file
59
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-10.patch
Normal file
@@ -0,0 +1,59 @@
|
||||
From 777b95a88f006d39d9fe6d3321db17e7b0d4b9a4 Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Thu, 4 Feb 2021 14:07:39 +0000
|
||||
Subject: [PATCH 10/11] gtlspassword: Forbid very long TLS passwords
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
The public API `g_tls_password_set_value_full()` (and the vfunc it
|
||||
invokes) can only accept a `gssize` length. Ensure that nul-terminated
|
||||
strings passed to `g_tls_password_set_value()` can’t exceed that length.
|
||||
Use `g_memdup2()` to avoid an overflow if they’re longer than
|
||||
`G_MAXUINT` similarly.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
Helps: #2319
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/gtlspassword.c | 10 ++++++++--
|
||||
1 file changed, 8 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/gio/gtlspassword.c b/gio/gtlspassword.c
|
||||
index 1e437a7b6..dbcec41a8 100644
|
||||
--- a/gio/gtlspassword.c
|
||||
+++ b/gio/gtlspassword.c
|
||||
@@ -23,6 +23,7 @@
|
||||
#include "glibintl.h"
|
||||
|
||||
#include "gioenumtypes.h"
|
||||
+#include "gstrfuncsprivate.h"
|
||||
#include "gtlspassword.h"
|
||||
|
||||
#include <string.h>
|
||||
@@ -287,9 +288,14 @@ g_tls_password_set_value (GTlsPassword *password,
|
||||
g_return_if_fail (G_IS_TLS_PASSWORD (password));
|
||||
|
||||
if (length < 0)
|
||||
- length = strlen ((gchar *)value);
|
||||
+ {
|
||||
+ /* FIXME: g_tls_password_set_value_full() doesn’t support unsigned gsize */
|
||||
+ gsize length_unsigned = strlen ((gchar *) value);
|
||||
+ g_return_if_fail (length_unsigned > G_MAXSSIZE);
|
||||
+ length = (gssize) length_unsigned;
|
||||
+ }
|
||||
|
||||
- g_tls_password_set_value_full (password, g_memdup (value, length), length, g_free);
|
||||
+ g_tls_password_set_value_full (password, g_memdup2 (value, (gsize) length), length, g_free);
|
||||
}
|
||||
|
||||
/**
|
||||
--
|
||||
GitLab
|
||||
|
||||
|
||||
63
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-11.patch
Normal file
63
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-11.patch
Normal file
@@ -0,0 +1,63 @@
|
||||
From ecdf91400e9a538695a0895b95ad7e8abcdf1749 Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Thu, 4 Feb 2021 14:09:40 +0000
|
||||
Subject: [PATCH 11/11] giochannel: Forbid very long line terminator strings
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
The public API `GIOChannel.line_term_len` is only a `guint`. Ensure that
|
||||
nul-terminated strings passed to `g_io_channel_set_line_term()` can’t
|
||||
exceed that length. Use `g_memdup2()` to avoid a warning (`g_memdup()`
|
||||
is due to be deprecated), but not to avoid a bug, since it’s also
|
||||
limited to `G_MAXUINT`.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
Helps: #2319
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
glib/giochannel.c | 17 +++++++++++++----
|
||||
1 file changed, 13 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/glib/giochannel.c b/glib/giochannel.c
|
||||
index c6a89d6e0..4dec20f77 100644
|
||||
--- a/glib/giochannel.c
|
||||
+++ b/glib/giochannel.c
|
||||
@@ -887,16 +887,25 @@ g_io_channel_set_line_term (GIOChannel *channel,
|
||||
const gchar *line_term,
|
||||
gint length)
|
||||
{
|
||||
+ guint length_unsigned;
|
||||
+
|
||||
g_return_if_fail (channel != NULL);
|
||||
g_return_if_fail (line_term == NULL || length != 0); /* Disallow "" */
|
||||
|
||||
if (line_term == NULL)
|
||||
- length = 0;
|
||||
- else if (length < 0)
|
||||
- length = strlen (line_term);
|
||||
+ length_unsigned = 0;
|
||||
+ else if (length >= 0)
|
||||
+ length_unsigned = (guint) length;
|
||||
+ else
|
||||
+ {
|
||||
+ /* FIXME: We’re constrained by line_term_len being a guint here */
|
||||
+ gsize length_size = strlen (line_term);
|
||||
+ g_return_if_fail (length_size > G_MAXUINT);
|
||||
+ length_unsigned = (guint) length_size;
|
||||
+ }
|
||||
|
||||
g_free (channel->line_term);
|
||||
- channel->line_term = line_term ? g_memdup (line_term, length) : NULL;
|
||||
+ channel->line_term = line_term ? g_memdup2 (line_term, length_unsigned) : NULL;
|
||||
channel->line_term_len = length;
|
||||
}
|
||||
|
||||
--
|
||||
GitLab
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
From f8273b9aded135fe07094faebd527e43851aaf6e Mon Sep 17 00:00:00 2001
|
||||
From: "Jan Alexander Steffens (heftig)" <jan.steffens@gmail.com>
|
||||
Date: Sun, 7 Feb 2021 23:32:40 +0100
|
||||
Subject: [PATCH 1/5] giochannel: Fix length_size bounds check
|
||||
|
||||
The inverted condition is an obvious error introduced by ecdf91400e9a.
|
||||
|
||||
Fixes https://gitlab.gnome.org/GNOME/glib/-/issues/2323
|
||||
|
||||
(cherry picked from commit a149bf2f9030168051942124536e303af8ba6176)
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
glib/giochannel.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/glib/giochannel.c b/glib/giochannel.c
|
||||
index 4dec20f77..c3f3102ff 100644
|
||||
--- a/glib/giochannel.c
|
||||
+++ b/glib/giochannel.c
|
||||
@@ -896,7 +896,7 @@ g_io_channel_set_line_term (GIOChannel *channel,
|
||||
{
|
||||
/* FIXME: We’re constrained by line_term_len being a guint here */
|
||||
gsize length_size = strlen (line_term);
|
||||
- g_return_if_fail (length_size > G_MAXUINT);
|
||||
+ g_return_if_fail (length_size <= G_MAXUINT);
|
||||
length_unsigned = (guint) length_size;
|
||||
}
|
||||
|
||||
--
|
||||
GitLab
|
||||
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
From e069c50467712e6d607822afd6b6c15c2c343dff Mon Sep 17 00:00:00 2001
|
||||
From: Simon McVittie <smcv@collabora.com>
|
||||
Date: Mon, 8 Feb 2021 10:34:50 +0000
|
||||
Subject: [PATCH 2/5] giochannel: Don't store negative line_term_len in
|
||||
GIOChannel struct
|
||||
|
||||
Adding test coverage indicated that this was another bug in 0cc11f74.
|
||||
|
||||
Fixes: 0cc11f74 "giochannel: Forbid very long line terminator strings"
|
||||
Resolves: https://gitlab.gnome.org/GNOME/glib/-/issues/2323
|
||||
Signed-off-by: Simon McVittie <smcv@collabora.com>
|
||||
(cherry picked from commit 5dc8b0014c03e7491d93b90275ab442e888a9628)
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
glib/giochannel.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/glib/giochannel.c b/glib/giochannel.c
|
||||
index c3f3102ff..19bb06ba6 100644
|
||||
--- a/glib/giochannel.c
|
||||
+++ b/glib/giochannel.c
|
||||
@@ -902,7 +902,7 @@ g_io_channel_set_line_term (GIOChannel *channel,
|
||||
|
||||
g_free (channel->line_term);
|
||||
channel->line_term = line_term ? g_memdup2 (line_term, length_unsigned) : NULL;
|
||||
- channel->line_term_len = length;
|
||||
+ channel->line_term_len = length_unsigned;
|
||||
}
|
||||
|
||||
/**
|
||||
--
|
||||
GitLab
|
||||
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
From 4506d1859a863087598c8d122740bae25b65b099 Mon Sep 17 00:00:00 2001
|
||||
From: Simon McVittie <smcv@collabora.com>
|
||||
Date: Mon, 8 Feb 2021 10:04:48 +0000
|
||||
Subject: [PATCH 4/5] gtlspassword: Fix inverted assertion
|
||||
|
||||
The intention here was to assert that the length of the password fits
|
||||
in a gssize. Passwords more than half the size of virtual memory are
|
||||
probably excessive.
|
||||
|
||||
Fixes: a8b204ff "gtlspassword: Forbid very long TLS passwords"
|
||||
Signed-off-by: Simon McVittie <smcv@collabora.com>
|
||||
(cherry picked from commit 61bb52ec42de1082bfb06ce1c737fc295bfe60b8)
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/gtlspassword.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/gio/gtlspassword.c b/gio/gtlspassword.c
|
||||
index dbcec41a8..bd86a6dfe 100644
|
||||
--- a/gio/gtlspassword.c
|
||||
+++ b/gio/gtlspassword.c
|
||||
@@ -291,7 +291,7 @@ g_tls_password_set_value (GTlsPassword *password,
|
||||
{
|
||||
/* FIXME: g_tls_password_set_value_full() doesn’t support unsigned gsize */
|
||||
gsize length_unsigned = strlen ((gchar *) value);
|
||||
- g_return_if_fail (length_unsigned > G_MAXSSIZE);
|
||||
+ g_return_if_fail (length_unsigned <= G_MAXSSIZE);
|
||||
length = (gssize) length_unsigned;
|
||||
}
|
||||
|
||||
--
|
||||
GitLab
|
||||
|
||||
|
||||
100
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-reg1-5.patch
Normal file
100
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-reg1-5.patch
Normal file
@@ -0,0 +1,100 @@
|
||||
From 3d1550354c3c6a8491c39881752d51cb7515f2c2 Mon Sep 17 00:00:00 2001
|
||||
From: Simon McVittie <smcv@collabora.com>
|
||||
Date: Mon, 8 Feb 2021 10:22:39 +0000
|
||||
Subject: [PATCH 5/5] tls-interaction: Add test coverage for various ways to
|
||||
set the password
|
||||
|
||||
Signed-off-by: Simon McVittie <smcv@collabora.com>
|
||||
(cherry picked from commit df4501316ca3903072400504a5ea76498db19538)
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/tests/tls-interaction.c | 55 +++++++++++++++++++++++++++++++++++++
|
||||
1 file changed, 55 insertions(+)
|
||||
|
||||
diff --git a/gio/tests/tls-interaction.c b/gio/tests/tls-interaction.c
|
||||
index 4f0737d7e..5661e8e0d 100644
|
||||
--- a/gio/tests/tls-interaction.c
|
||||
+++ b/gio/tests/tls-interaction.c
|
||||
@@ -174,6 +174,38 @@ test_interaction_ask_password_finish_failure (GTlsInteraction *interaction,
|
||||
}
|
||||
|
||||
|
||||
+/* Return a copy of @str that is allocated in a silly way, to exercise
|
||||
+ * custom free-functions. The returned pointer points to a copy of @str
|
||||
+ * in a buffer of the form "BEFORE \0 str \0 AFTER". */
|
||||
+static guchar *
|
||||
+special_dup (const char *str)
|
||||
+{
|
||||
+ GString *buf = g_string_new ("BEFORE");
|
||||
+ guchar *ret;
|
||||
+
|
||||
+ g_string_append_c (buf, '\0');
|
||||
+ g_string_append (buf, str);
|
||||
+ g_string_append_c (buf, '\0');
|
||||
+ g_string_append (buf, "AFTER");
|
||||
+ ret = (guchar *) g_string_free (buf, FALSE);
|
||||
+ return ret + strlen ("BEFORE") + 1;
|
||||
+}
|
||||
+
|
||||
+
|
||||
+/* Free a copy of @str that was made with special_dup(), after asserting
|
||||
+ * that it has not been corrupted. */
|
||||
+static void
|
||||
+special_free (gpointer p)
|
||||
+{
|
||||
+ gchar *s = p;
|
||||
+ gchar *buf = s - strlen ("BEFORE") - 1;
|
||||
+
|
||||
+ g_assert_cmpstr (buf, ==, "BEFORE");
|
||||
+ g_assert_cmpstr (s + strlen (s) + 1, ==, "AFTER");
|
||||
+ g_free (buf);
|
||||
+}
|
||||
+
|
||||
+
|
||||
static GTlsInteractionResult
|
||||
test_interaction_ask_password_sync_success (GTlsInteraction *interaction,
|
||||
GTlsPassword *password,
|
||||
@@ -181,6 +213,8 @@ test_interaction_ask_password_sync_success (GTlsInteraction *interaction,
|
||||
GError **error)
|
||||
{
|
||||
TestInteraction *self;
|
||||
+ const guchar *value;
|
||||
+ gsize len;
|
||||
|
||||
g_assert (TEST_IS_INTERACTION (interaction));
|
||||
self = TEST_INTERACTION (interaction);
|
||||
@@ -192,6 +226,27 @@ test_interaction_ask_password_sync_success (GTlsInteraction *interaction,
|
||||
g_assert (error != NULL);
|
||||
g_assert (*error == NULL);
|
||||
|
||||
+ /* Exercise different ways to set the value */
|
||||
+ g_tls_password_set_value (password, (const guchar *) "foo", 4);
|
||||
+ len = 0;
|
||||
+ value = g_tls_password_get_value (password, &len);
|
||||
+ g_assert_cmpmem (value, len, "foo", 4);
|
||||
+
|
||||
+ g_tls_password_set_value (password, (const guchar *) "bar", -1);
|
||||
+ len = 0;
|
||||
+ value = g_tls_password_get_value (password, &len);
|
||||
+ g_assert_cmpmem (value, len, "bar", 3);
|
||||
+
|
||||
+ g_tls_password_set_value_full (password, special_dup ("baa"), 4, special_free);
|
||||
+ len = 0;
|
||||
+ value = g_tls_password_get_value (password, &len);
|
||||
+ g_assert_cmpmem (value, len, "baa", 4);
|
||||
+
|
||||
+ g_tls_password_set_value_full (password, special_dup ("baz"), -1, special_free);
|
||||
+ len = 0;
|
||||
+ value = g_tls_password_get_value (password, &len);
|
||||
+ g_assert_cmpmem (value, len, "baz", 3);
|
||||
+
|
||||
/* Don't do this in real life. Include a null terminator for testing */
|
||||
g_tls_password_set_value (password, (const guchar *)"the password", 13);
|
||||
return G_TLS_INTERACTION_HANDLED;
|
||||
--
|
||||
GitLab
|
||||
|
||||
@@ -0,0 +1,49 @@
|
||||
From cb9ee701ef46c1819eed4e2a4dc181682bdfc176 Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Wed, 10 Feb 2021 21:16:39 +0000
|
||||
Subject: [PATCH 1/3] gkeyfilesettingsbackend: Fix basename handling when group
|
||||
is unset
|
||||
|
||||
Fix an effective regression in commit
|
||||
7781a9cbd2fd0aa84bee0f4eee88470640ff6706, which happens when
|
||||
`convert_path()` is called with a `key` which contains no slashes. In
|
||||
that case, the `key` is entirely the `basename`.
|
||||
|
||||
Prior to commit 7781a9cb, the code worked through a fluke of `i == -1`
|
||||
cancelling out with the various additions in the `g_memdup()` call, and
|
||||
effectively resulting in `g_strdup (key)`.
|
||||
|
||||
Spotted by Guido Berhoerster.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/gkeyfilesettingsbackend.c | 7 ++++++-
|
||||
1 file changed, 6 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/gio/gkeyfilesettingsbackend.c b/gio/gkeyfilesettingsbackend.c
|
||||
index 25b057672..861c3a661 100644
|
||||
--- a/gio/gkeyfilesettingsbackend.c
|
||||
+++ b/gio/gkeyfilesettingsbackend.c
|
||||
@@ -185,7 +185,12 @@ convert_path (GKeyfileSettingsBackend *kfsb,
|
||||
}
|
||||
|
||||
if (basename)
|
||||
- *basename = g_memdup2 (last_slash + 1, key_len - (last_slash - key));
|
||||
+ {
|
||||
+ if (last_slash != NULL)
|
||||
+ *basename = g_memdup2 (last_slash + 1, key_len - (last_slash - key));
|
||||
+ else
|
||||
+ *basename = g_strdup (key);
|
||||
+ }
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
--
|
||||
GitLab
|
||||
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
From 31e0d403ba635dbbacbfbff74295e5db02558d76 Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Wed, 10 Feb 2021 21:19:30 +0000
|
||||
Subject: [PATCH 2/3] gkeyfilesettingsbackend: Disallow empty key or group
|
||||
names
|
||||
|
||||
These should never have been allowed; they will result in precondition
|
||||
failures from the `GKeyFile` later on in the code.
|
||||
|
||||
A test will be added for this shortly.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/gkeyfilesettingsbackend.c | 7 +++++++
|
||||
1 file changed, 7 insertions(+)
|
||||
|
||||
diff --git a/gio/gkeyfilesettingsbackend.c b/gio/gkeyfilesettingsbackend.c
|
||||
index 861c3a661..de216e615 100644
|
||||
--- a/gio/gkeyfilesettingsbackend.c
|
||||
+++ b/gio/gkeyfilesettingsbackend.c
|
||||
@@ -158,6 +158,13 @@ convert_path (GKeyfileSettingsBackend *kfsb,
|
||||
|
||||
last_slash = strrchr (key, '/');
|
||||
|
||||
+ /* Disallow empty group names or key names */
|
||||
+ if (key_len == 0 ||
|
||||
+ (last_slash != NULL &&
|
||||
+ (*(last_slash + 1) == '\0' ||
|
||||
+ last_slash == key)))
|
||||
+ return FALSE;
|
||||
+
|
||||
if (kfsb->root_group)
|
||||
{
|
||||
/* if a root_group was specified, make sure the user hasn't given
|
||||
--
|
||||
GitLab
|
||||
|
||||
|
||||
232
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-reg2-3.patch
Normal file
232
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-27219-reg2-3.patch
Normal file
@@ -0,0 +1,232 @@
|
||||
Backport of:
|
||||
|
||||
From 221c26685354dea2b2732df94404e8e5e77a1591 Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Wed, 10 Feb 2021 21:21:36 +0000
|
||||
Subject: [PATCH 3/3] tests: Add tests for key name handling in the keyfile
|
||||
backend
|
||||
|
||||
This tests the two recent commits.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-27219
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/tests/gsettings.c | 170 +++++++++++++++++++++++++++++++++++++++++-
|
||||
1 file changed, 169 insertions(+), 1 deletion(-)
|
||||
|
||||
--- a/gio/tests/gsettings.c
|
||||
+++ b/gio/tests/gsettings.c
|
||||
@@ -1,3 +1,4 @@
|
||||
+#include <errno.h>
|
||||
#include <stdlib.h>
|
||||
#include <locale.h>
|
||||
#include <libintl.h>
|
||||
@@ -1740,6 +1741,14 @@ key_changed_cb (GSettings *settings, con
|
||||
(*b) = TRUE;
|
||||
}
|
||||
|
||||
+typedef struct
|
||||
+{
|
||||
+ const gchar *path;
|
||||
+ const gchar *root_group;
|
||||
+ const gchar *keyfile_group;
|
||||
+ const gchar *root_path;
|
||||
+} KeyfileTestData;
|
||||
+
|
||||
/*
|
||||
* Test that using a keyfile works
|
||||
*/
|
||||
@@ -1834,7 +1843,11 @@ test_keyfile (Fixture *fixture,
|
||||
g_free (str);
|
||||
|
||||
g_settings_set (settings, "farewell", "s", "cheerio");
|
||||
-
|
||||
+
|
||||
+ /* Check that empty keys/groups are not allowed. */
|
||||
+ g_assert_false (g_settings_is_writable (settings, ""));
|
||||
+ g_assert_false (g_settings_is_writable (settings, "/"));
|
||||
+
|
||||
/* When executing as root, changing the mode of the keyfile will have
|
||||
* no effect on the writability of the settings.
|
||||
*/
|
||||
@@ -1866,6 +1879,149 @@ test_keyfile (Fixture *fixture,
|
||||
g_free (keyfile_path);
|
||||
}
|
||||
|
||||
+/*
|
||||
+ * Test that using a keyfile works with a schema with no path set.
|
||||
+ */
|
||||
+static void
|
||||
+test_keyfile_no_path (Fixture *fixture,
|
||||
+ gconstpointer user_data)
|
||||
+{
|
||||
+ const KeyfileTestData *test_data = user_data;
|
||||
+ GSettingsBackend *kf_backend;
|
||||
+ GSettings *settings;
|
||||
+ GKeyFile *keyfile;
|
||||
+ gboolean writable;
|
||||
+ gchar *key = NULL;
|
||||
+ GError *error = NULL;
|
||||
+ gchar *keyfile_path = NULL, *store_path = NULL;
|
||||
+
|
||||
+ keyfile_path = g_build_filename (fixture->tmp_dir, "keyfile", NULL);
|
||||
+ store_path = g_build_filename (keyfile_path, "gsettings.store", NULL);
|
||||
+ kf_backend = g_keyfile_settings_backend_new (store_path, test_data->root_path, test_data->root_group);
|
||||
+ settings = g_settings_new_with_backend_and_path ("org.gtk.test.no-path", kf_backend, test_data->path);
|
||||
+ g_object_unref (kf_backend);
|
||||
+
|
||||
+ g_settings_reset (settings, "test-boolean");
|
||||
+ g_assert_true (g_settings_get_boolean (settings, "test-boolean"));
|
||||
+
|
||||
+ writable = g_settings_is_writable (settings, "test-boolean");
|
||||
+ g_assert_true (writable);
|
||||
+ g_settings_set (settings, "test-boolean", "b", FALSE);
|
||||
+
|
||||
+ g_assert_false (g_settings_get_boolean (settings, "test-boolean"));
|
||||
+
|
||||
+ g_settings_delay (settings);
|
||||
+ g_settings_set (settings, "test-boolean", "b", TRUE);
|
||||
+ g_settings_apply (settings);
|
||||
+
|
||||
+ keyfile = g_key_file_new ();
|
||||
+ g_assert_true (g_key_file_load_from_file (keyfile, store_path, 0, NULL));
|
||||
+
|
||||
+ g_assert_true (g_key_file_get_boolean (keyfile, test_data->keyfile_group, "test-boolean", NULL));
|
||||
+
|
||||
+ g_key_file_free (keyfile);
|
||||
+
|
||||
+ g_settings_reset (settings, "test-boolean");
|
||||
+ g_settings_apply (settings);
|
||||
+ keyfile = g_key_file_new ();
|
||||
+ g_assert_true (g_key_file_load_from_file (keyfile, store_path, 0, NULL));
|
||||
+
|
||||
+ g_assert_false (g_key_file_get_string (keyfile, test_data->keyfile_group, "test-boolean", &error));
|
||||
+ g_assert_error (error, G_KEY_FILE_ERROR, G_KEY_FILE_ERROR_KEY_NOT_FOUND);
|
||||
+ g_clear_error (&error);
|
||||
+
|
||||
+ /* Check that empty keys/groups are not allowed. */
|
||||
+ g_assert_false (g_settings_is_writable (settings, ""));
|
||||
+ g_assert_false (g_settings_is_writable (settings, "/"));
|
||||
+
|
||||
+ /* Keys which ghost the root group name are not allowed. This can only be
|
||||
+ * tested when the path is `/` as otherwise it acts as a prefix and prevents
|
||||
+ * any ghosting. */
|
||||
+ if (g_str_equal (test_data->path, "/"))
|
||||
+ {
|
||||
+ key = g_strdup_printf ("%s/%s", test_data->root_group, "");
|
||||
+ g_assert_false (g_settings_is_writable (settings, key));
|
||||
+ g_free (key);
|
||||
+
|
||||
+ key = g_strdup_printf ("%s/%s", test_data->root_group, "/");
|
||||
+ g_assert_false (g_settings_is_writable (settings, key));
|
||||
+ g_free (key);
|
||||
+
|
||||
+ key = g_strdup_printf ("%s/%s", test_data->root_group, "test-boolean");
|
||||
+ g_assert_false (g_settings_is_writable (settings, key));
|
||||
+ g_free (key);
|
||||
+ }
|
||||
+
|
||||
+ g_key_file_free (keyfile);
|
||||
+ g_object_unref (settings);
|
||||
+
|
||||
+ /* Clean up the temporary directory. */
|
||||
+ g_assert_cmpint (g_chmod (keyfile_path, 0777) == 0 ? 0 : errno, ==, 0);
|
||||
+ g_assert_cmpint (g_remove (store_path) == 0 ? 0 : errno, ==, 0);
|
||||
+ g_assert_cmpint (g_rmdir (keyfile_path) == 0 ? 0 : errno, ==, 0);
|
||||
+ g_free (store_path);
|
||||
+ g_free (keyfile_path);
|
||||
+}
|
||||
+
|
||||
+/*
|
||||
+ * Test that a keyfile rejects writes to keys outside its root path.
|
||||
+ */
|
||||
+static void
|
||||
+test_keyfile_outside_root_path (Fixture *fixture,
|
||||
+ gconstpointer user_data)
|
||||
+{
|
||||
+ GSettingsBackend *kf_backend;
|
||||
+ GSettings *settings;
|
||||
+ gchar *keyfile_path = NULL, *store_path = NULL;
|
||||
+
|
||||
+ keyfile_path = g_build_filename (fixture->tmp_dir, "keyfile", NULL);
|
||||
+ store_path = g_build_filename (keyfile_path, "gsettings.store", NULL);
|
||||
+ kf_backend = g_keyfile_settings_backend_new (store_path, "/tests/basic-types/", "root");
|
||||
+ settings = g_settings_new_with_backend_and_path ("org.gtk.test.no-path", kf_backend, "/tests/");
|
||||
+ g_object_unref (kf_backend);
|
||||
+
|
||||
+ g_assert_false (g_settings_is_writable (settings, "test-boolean"));
|
||||
+
|
||||
+ g_object_unref (settings);
|
||||
+
|
||||
+ /* Clean up the temporary directory. The keyfile probably doesn’t exist, so
|
||||
+ * don’t error on failure. */
|
||||
+ g_remove (store_path);
|
||||
+ g_assert_cmpint (g_rmdir (keyfile_path) == 0 ? 0 : errno, ==, 0);
|
||||
+ g_free (store_path);
|
||||
+ g_free (keyfile_path);
|
||||
+}
|
||||
+
|
||||
+/*
|
||||
+ * Test that a keyfile rejects writes to keys in the root if no root group is set.
|
||||
+ */
|
||||
+static void
|
||||
+test_keyfile_no_root_group (Fixture *fixture,
|
||||
+ gconstpointer user_data)
|
||||
+{
|
||||
+ GSettingsBackend *kf_backend;
|
||||
+ GSettings *settings;
|
||||
+ gchar *keyfile_path = NULL, *store_path = NULL;
|
||||
+
|
||||
+ keyfile_path = g_build_filename (fixture->tmp_dir, "keyfile", NULL);
|
||||
+ store_path = g_build_filename (keyfile_path, "gsettings.store", NULL);
|
||||
+ kf_backend = g_keyfile_settings_backend_new (store_path, "/", NULL);
|
||||
+ settings = g_settings_new_with_backend_and_path ("org.gtk.test.no-path", kf_backend, "/");
|
||||
+ g_object_unref (kf_backend);
|
||||
+
|
||||
+ g_assert_false (g_settings_is_writable (settings, "test-boolean"));
|
||||
+ g_assert_true (g_settings_is_writable (settings, "child/test-boolean"));
|
||||
+
|
||||
+ g_object_unref (settings);
|
||||
+
|
||||
+ /* Clean up the temporary directory. The keyfile probably doesn’t exist, so
|
||||
+ * don’t error on failure. */
|
||||
+ g_remove (store_path);
|
||||
+ g_assert_cmpint (g_rmdir (keyfile_path) == 0 ? 0 : errno, ==, 0);
|
||||
+ g_free (store_path);
|
||||
+ g_free (keyfile_path);
|
||||
+}
|
||||
+
|
||||
/* Test that getting child schemas works
|
||||
*/
|
||||
static void
|
||||
@@ -2844,6 +3000,14 @@ main (int argc, char *argv[])
|
||||
gchar *override_text;
|
||||
gchar *enums;
|
||||
gint result;
|
||||
+ const KeyfileTestData keyfile_test_data_explicit_path = { "/tests/", "root", "tests", "/" };
|
||||
+ const KeyfileTestData keyfile_test_data_empty_path = { "/", "root", "root", "/" };
|
||||
+ const KeyfileTestData keyfile_test_data_long_path = {
|
||||
+ "/tests/path/is/very/long/and/this/makes/some/comparisons/take/a/different/branch/",
|
||||
+ "root",
|
||||
+ "tests/path/is/very/long/and/this/makes/some/comparisons/take/a/different/branch",
|
||||
+ "/"
|
||||
+ };
|
||||
|
||||
/* Meson build sets this */
|
||||
#ifdef TEST_LOCALE_PATH
|
||||
@@ -2967,6 +3131,11 @@ main (int argc, char *argv[])
|
||||
}
|
||||
|
||||
g_test_add ("/gsettings/keyfile", Fixture, NULL, setup, test_keyfile, teardown);
|
||||
+ g_test_add ("/gsettings/keyfile/explicit-path", Fixture, &keyfile_test_data_explicit_path, setup, test_keyfile_no_path, teardown);
|
||||
+ g_test_add ("/gsettings/keyfile/empty-path", Fixture, &keyfile_test_data_empty_path, setup, test_keyfile_no_path, teardown);
|
||||
+ g_test_add ("/gsettings/keyfile/long-path", Fixture, &keyfile_test_data_long_path, setup, test_keyfile_no_path, teardown);
|
||||
+ g_test_add ("/gsettings/keyfile/outside-root-path", Fixture, NULL, setup, test_keyfile_outside_root_path, teardown);
|
||||
+ g_test_add ("/gsettings/keyfile/no-root-group", Fixture, NULL, setup, test_keyfile_no_root_group, teardown);
|
||||
g_test_add_func ("/gsettings/child-schema", test_child_schema);
|
||||
g_test_add_func ("/gsettings/strinfo", test_strinfo);
|
||||
g_test_add_func ("/gsettings/enums", test_enums);
|
||||
27
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-28153-1.patch
Normal file
27
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-28153-1.patch
Normal file
@@ -0,0 +1,27 @@
|
||||
From 78420a75aeb70569a8cd79fa0fea7b786b6f785f Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Wed, 24 Feb 2021 17:33:38 +0000
|
||||
Subject: [PATCH 1/5] glocalfileoutputstream: Fix a typo in a comment
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-28153
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/glocalfileoutputstream.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
--- a/gio/glocalfileoutputstream.c
|
||||
+++ b/gio/glocalfileoutputstream.c
|
||||
@@ -851,7 +851,7 @@ handle_overwrite_open (const char *fi
|
||||
mode = mode_from_flags_or_info (flags, reference_info);
|
||||
|
||||
/* We only need read access to the original file if we are creating a backup.
|
||||
- * We also add O_CREATE to avoid a race if the file was just removed */
|
||||
+ * We also add O_CREAT to avoid a race if the file was just removed */
|
||||
if (create_backup || readable)
|
||||
open_flags = O_RDWR | O_CREAT | O_BINARY;
|
||||
else
|
||||
42
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-28153-2.patch
Normal file
42
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-28153-2.patch
Normal file
@@ -0,0 +1,42 @@
|
||||
From 32d3d02a50e7dcec5f4cf7908e7ac88d575d8fc5 Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Wed, 24 Feb 2021 17:34:32 +0000
|
||||
Subject: [PATCH 2/5] tests: Stop using g_test_bug_base() in file tests
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Since a following commit is going to add a new test which references
|
||||
Gitlab, so it’s best to move the URI bases inside the test cases.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-28153
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/tests/file.c | 4 +---
|
||||
1 file changed, 1 insertion(+), 3 deletions(-)
|
||||
|
||||
--- a/gio/tests/file.c
|
||||
+++ b/gio/tests/file.c
|
||||
@@ -685,7 +685,7 @@ test_replace_cancel (void)
|
||||
guint count;
|
||||
GError *error = NULL;
|
||||
|
||||
- g_test_bug ("629301");
|
||||
+ g_test_bug ("https://bugzilla.gnome.org/629301");
|
||||
|
||||
path = g_dir_make_tmp ("g_file_replace_cancel_XXXXXX", &error);
|
||||
g_assert_no_error (error);
|
||||
@@ -1784,8 +1784,6 @@ main (int argc, char *argv[])
|
||||
{
|
||||
g_test_init (&argc, &argv, NULL);
|
||||
|
||||
- g_test_bug_base ("http://bugzilla.gnome.org/");
|
||||
-
|
||||
g_test_add_func ("/file/basic", test_basic);
|
||||
g_test_add_func ("/file/build-filename", test_build_filename);
|
||||
g_test_add_func ("/file/parent", test_parent);
|
||||
57
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-28153-3.patch
Normal file
57
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-28153-3.patch
Normal file
@@ -0,0 +1,57 @@
|
||||
Backport of:
|
||||
|
||||
From ce0eb088a68171eed3ac217cb92a72e36eb57d1b Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Wed, 10 Mar 2021 16:05:55 +0000
|
||||
Subject: [PATCH 3/5] glocalfileoutputstream: Factor out a flag check
|
||||
|
||||
This clarifies the code a little. It introduces no functional changes.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-28153
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/glocalfileoutputstream.c | 7 ++++---
|
||||
1 file changed, 4 insertions(+), 3 deletions(-)
|
||||
|
||||
--- a/gio/glocalfileoutputstream.c
|
||||
+++ b/gio/glocalfileoutputstream.c
|
||||
@@ -847,6 +847,7 @@ handle_overwrite_open (const char *fi
|
||||
int res;
|
||||
int mode;
|
||||
int errsv;
|
||||
+ gboolean replace_destination_set = (flags & G_FILE_CREATE_REPLACE_DESTINATION);
|
||||
|
||||
mode = mode_from_flags_or_info (flags, reference_info);
|
||||
|
||||
@@ -954,7 +955,7 @@ handle_overwrite_open (const char *fi
|
||||
* to a backup file and rewrite the contents of the file.
|
||||
*/
|
||||
|
||||
- if ((flags & G_FILE_CREATE_REPLACE_DESTINATION) ||
|
||||
+ if (replace_destination_set ||
|
||||
(!(original_stat.st_nlink > 1) && !is_symlink))
|
||||
{
|
||||
char *dirname, *tmp_filename;
|
||||
@@ -973,7 +974,7 @@ handle_overwrite_open (const char *fi
|
||||
|
||||
/* try to keep permissions (unless replacing) */
|
||||
|
||||
- if ( ! (flags & G_FILE_CREATE_REPLACE_DESTINATION) &&
|
||||
+ if (!replace_destination_set &&
|
||||
(
|
||||
#ifdef HAVE_FCHOWN
|
||||
fchown (tmpfd, original_stat.st_uid, original_stat.st_gid) == -1 ||
|
||||
@@ -1112,7 +1113,7 @@ handle_overwrite_open (const char *fi
|
||||
}
|
||||
}
|
||||
|
||||
- if (flags & G_FILE_CREATE_REPLACE_DESTINATION)
|
||||
+ if (replace_destination_set)
|
||||
{
|
||||
g_close (fd, NULL);
|
||||
|
||||
265
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-28153-4.patch
Normal file
265
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-28153-4.patch
Normal file
@@ -0,0 +1,265 @@
|
||||
Backport of:
|
||||
|
||||
From 317b3b587058a05dca95d56dac26568c5b098d33 Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Wed, 24 Feb 2021 17:36:07 +0000
|
||||
Subject: [PATCH 4/5] glocalfileoutputstream: Fix CREATE_REPLACE_DESTINATION
|
||||
with symlinks
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
The `G_FILE_CREATE_REPLACE_DESTINATION` flag is equivalent to unlinking
|
||||
the destination file and re-creating it from scratch. That did
|
||||
previously work, but in the process the code would call `open(O_CREAT)`
|
||||
on the file. If the file was a dangling symlink, this would create the
|
||||
destination file (empty). That’s not an intended side-effect, and has
|
||||
security implications if the symlink is controlled by a lower-privileged
|
||||
process.
|
||||
|
||||
Fix that by not opening the destination file if it’s a symlink, and
|
||||
adjusting the rest of the code to cope with
|
||||
- the fact that `fd == -1` is not an error iff `is_symlink` is true,
|
||||
- and that `original_stat` will contain the `lstat()` results for the
|
||||
symlink now, rather than the `stat()` results for its target (again,
|
||||
iff `is_symlink` is true).
|
||||
|
||||
This means that the target of the dangling symlink is no longer created,
|
||||
which was the bug. The symlink itself continues to be replaced (as
|
||||
before) with the new file — this is the intended behaviour of
|
||||
`g_file_replace()`.
|
||||
|
||||
The behaviour for non-symlink cases, or cases where the symlink was not
|
||||
dangling, should be unchanged.
|
||||
|
||||
Includes a unit test.
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
|
||||
Fixes: #2325
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-28153
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/glocalfileoutputstream.c | 77 ++++++++++++++++++-------
|
||||
gio/tests/file.c | 108 +++++++++++++++++++++++++++++++++++
|
||||
2 files changed, 163 insertions(+), 22 deletions(-)
|
||||
|
||||
--- a/gio/glocalfileoutputstream.c
|
||||
+++ b/gio/glocalfileoutputstream.c
|
||||
@@ -875,16 +875,22 @@ handle_overwrite_open (const char *fi
|
||||
/* Could be a symlink, or it could be a regular ELOOP error,
|
||||
* but then the next open will fail too. */
|
||||
is_symlink = TRUE;
|
||||
- fd = g_open (filename, open_flags, mode);
|
||||
+ if (!replace_destination_set)
|
||||
+ fd = g_open (filename, open_flags, mode);
|
||||
}
|
||||
-#else
|
||||
- fd = g_open (filename, open_flags, mode);
|
||||
- errsv = errno;
|
||||
+#else /* if !O_NOFOLLOW */
|
||||
/* This is racy, but we do it as soon as possible to minimize the race */
|
||||
is_symlink = g_file_test (filename, G_FILE_TEST_IS_SYMLINK);
|
||||
+
|
||||
+ if (!is_symlink || !replace_destination_set)
|
||||
+ {
|
||||
+ fd = g_open (filename, open_flags, mode);
|
||||
+ errsv = errno;
|
||||
+ }
|
||||
#endif
|
||||
|
||||
- if (fd == -1)
|
||||
+ if (fd == -1 &&
|
||||
+ (!is_symlink || !replace_destination_set))
|
||||
{
|
||||
char *display_name = g_filename_display_name (filename);
|
||||
g_set_error (error, G_IO_ERROR,
|
||||
@@ -898,7 +904,14 @@ handle_overwrite_open (const char *fi
|
||||
#ifdef G_OS_WIN32
|
||||
res = GLIB_PRIVATE_CALL (g_win32_fstat) (fd, &original_stat);
|
||||
#else
|
||||
- res = fstat (fd, &original_stat);
|
||||
+ if (!is_symlink)
|
||||
+ {
|
||||
+ res = fstat (fd, &original_stat);
|
||||
+ }
|
||||
+ else
|
||||
+ {
|
||||
+ res = lstat (filename, &original_stat);
|
||||
+ }
|
||||
#endif
|
||||
errsv = errno;
|
||||
|
||||
@@ -917,16 +930,27 @@ handle_overwrite_open (const char *fi
|
||||
if (!S_ISREG (original_stat.st_mode))
|
||||
{
|
||||
if (S_ISDIR (original_stat.st_mode))
|
||||
- g_set_error_literal (error,
|
||||
- G_IO_ERROR,
|
||||
- G_IO_ERROR_IS_DIRECTORY,
|
||||
- _("Target file is a directory"));
|
||||
- else
|
||||
- g_set_error_literal (error,
|
||||
+ {
|
||||
+ g_set_error_literal (error,
|
||||
+ G_IO_ERROR,
|
||||
+ G_IO_ERROR_IS_DIRECTORY,
|
||||
+ _("Target file is a directory"));
|
||||
+ goto err_out;
|
||||
+ }
|
||||
+ else if (!is_symlink ||
|
||||
+#ifdef S_ISLNK
|
||||
+ !S_ISLNK (original_stat.st_mode)
|
||||
+#else
|
||||
+ FALSE
|
||||
+#endif
|
||||
+ )
|
||||
+ {
|
||||
+ g_set_error_literal (error,
|
||||
G_IO_ERROR,
|
||||
G_IO_ERROR_NOT_REGULAR_FILE,
|
||||
_("Target file is not a regular file"));
|
||||
- goto err_out;
|
||||
+ goto err_out;
|
||||
+ }
|
||||
}
|
||||
|
||||
if (etag != NULL)
|
||||
@@ -1007,7 +1031,8 @@ handle_overwrite_open (const char *fi
|
||||
}
|
||||
}
|
||||
|
||||
- g_close (fd, NULL);
|
||||
+ if (fd >= 0)
|
||||
+ g_close (fd, NULL);
|
||||
*temp_filename = tmp_filename;
|
||||
return tmpfd;
|
||||
}
|
||||
--- a/gio/tests/file.c
|
||||
+++ b/gio/tests/file.c
|
||||
@@ -804,6 +804,113 @@ test_replace_cancel (void)
|
||||
g_object_unref (tmpdir);
|
||||
}
|
||||
|
||||
+static void
|
||||
+test_replace_symlink (void)
|
||||
+{
|
||||
+#ifdef G_OS_UNIX
|
||||
+ gchar *tmpdir_path = NULL;
|
||||
+ GFile *tmpdir = NULL, *source_file = NULL, *target_file = NULL;
|
||||
+ GFileOutputStream *stream = NULL;
|
||||
+ const gchar *new_contents = "this is a test message which should be written to source and not target";
|
||||
+ gsize n_written;
|
||||
+ GFileEnumerator *enumerator = NULL;
|
||||
+ GFileInfo *info = NULL;
|
||||
+ gchar *contents = NULL;
|
||||
+ gsize length = 0;
|
||||
+ GError *local_error = NULL;
|
||||
+
|
||||
+ g_test_bug ("https://gitlab.gnome.org/GNOME/glib/-/issues/2325");
|
||||
+ g_test_summary ("Test that G_FILE_CREATE_REPLACE_DESTINATION doesn’t follow symlinks");
|
||||
+
|
||||
+ /* Create a fresh, empty working directory. */
|
||||
+ tmpdir_path = g_dir_make_tmp ("g_file_replace_symlink_XXXXXX", &local_error);
|
||||
+ g_assert_no_error (local_error);
|
||||
+ tmpdir = g_file_new_for_path (tmpdir_path);
|
||||
+
|
||||
+ g_test_message ("Using temporary directory %s", tmpdir_path);
|
||||
+ g_free (tmpdir_path);
|
||||
+
|
||||
+ /* Create symlink `source` which points to `target`. */
|
||||
+ source_file = g_file_get_child (tmpdir, "source");
|
||||
+ target_file = g_file_get_child (tmpdir, "target");
|
||||
+ g_file_make_symbolic_link (source_file, "target", NULL, &local_error);
|
||||
+ g_assert_no_error (local_error);
|
||||
+
|
||||
+ /* Ensure that `target` doesn’t exist */
|
||||
+ g_assert_false (g_file_query_exists (target_file, NULL));
|
||||
+
|
||||
+ /* Replace the `source` symlink with a regular file using
|
||||
+ * %G_FILE_CREATE_REPLACE_DESTINATION, which should replace it *without*
|
||||
+ * following the symlink */
|
||||
+ stream = g_file_replace (source_file, NULL, FALSE /* no backup */,
|
||||
+ G_FILE_CREATE_REPLACE_DESTINATION, NULL, &local_error);
|
||||
+ g_assert_no_error (local_error);
|
||||
+
|
||||
+ g_output_stream_write_all (G_OUTPUT_STREAM (stream), new_contents, strlen (new_contents),
|
||||
+ &n_written, NULL, &local_error);
|
||||
+ g_assert_no_error (local_error);
|
||||
+ g_assert_cmpint (n_written, ==, strlen (new_contents));
|
||||
+
|
||||
+ g_output_stream_close (G_OUTPUT_STREAM (stream), NULL, &local_error);
|
||||
+ g_assert_no_error (local_error);
|
||||
+
|
||||
+ g_clear_object (&stream);
|
||||
+
|
||||
+ /* At this point, there should still only be one file: `source`. It should
|
||||
+ * now be a regular file. `target` should not exist. */
|
||||
+ enumerator = g_file_enumerate_children (tmpdir,
|
||||
+ G_FILE_ATTRIBUTE_STANDARD_NAME ","
|
||||
+ G_FILE_ATTRIBUTE_STANDARD_TYPE,
|
||||
+ G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS, NULL, &local_error);
|
||||
+ g_assert_no_error (local_error);
|
||||
+
|
||||
+ info = g_file_enumerator_next_file (enumerator, NULL, &local_error);
|
||||
+ g_assert_no_error (local_error);
|
||||
+ g_assert_nonnull (info);
|
||||
+
|
||||
+ g_assert_cmpstr (g_file_info_get_name (info), ==, "source");
|
||||
+ g_assert_cmpint (g_file_info_get_file_type (info), ==, G_FILE_TYPE_REGULAR);
|
||||
+
|
||||
+ g_clear_object (&info);
|
||||
+
|
||||
+ info = g_file_enumerator_next_file (enumerator, NULL, &local_error);
|
||||
+ g_assert_no_error (local_error);
|
||||
+ g_assert_null (info);
|
||||
+
|
||||
+ g_file_enumerator_close (enumerator, NULL, &local_error);
|
||||
+ g_assert_no_error (local_error);
|
||||
+ g_clear_object (&enumerator);
|
||||
+
|
||||
+ /* Double-check that `target` doesn’t exist */
|
||||
+ g_assert_false (g_file_query_exists (target_file, NULL));
|
||||
+
|
||||
+ /* Check the content of `source`. */
|
||||
+ g_file_load_contents (source_file,
|
||||
+ NULL,
|
||||
+ &contents,
|
||||
+ &length,
|
||||
+ NULL,
|
||||
+ &local_error);
|
||||
+ g_assert_no_error (local_error);
|
||||
+ g_assert_cmpstr (contents, ==, new_contents);
|
||||
+ g_assert_cmpuint (length, ==, strlen (new_contents));
|
||||
+ g_free (contents);
|
||||
+
|
||||
+ /* Tidy up. */
|
||||
+ g_file_delete (source_file, NULL, &local_error);
|
||||
+ g_assert_no_error (local_error);
|
||||
+
|
||||
+ g_file_delete (tmpdir, NULL, &local_error);
|
||||
+ g_assert_no_error (local_error);
|
||||
+
|
||||
+ g_clear_object (&target_file);
|
||||
+ g_clear_object (&source_file);
|
||||
+ g_clear_object (&tmpdir);
|
||||
+#else /* if !G_OS_UNIX */
|
||||
+ g_test_skip ("Symlink replacement tests can only be run on Unix")
|
||||
+#endif
|
||||
+}
|
||||
+
|
||||
static void
|
||||
on_file_deleted (GObject *object,
|
||||
GAsyncResult *result,
|
||||
@@ -1752,6 +1859,7 @@ main (int argc, char *argv[])
|
||||
g_test_add_data_func ("/file/async-create-delete/4096", GINT_TO_POINTER (4096), test_create_delete);
|
||||
g_test_add_func ("/file/replace-load", test_replace_load);
|
||||
g_test_add_func ("/file/replace-cancel", test_replace_cancel);
|
||||
+ g_test_add_func ("/file/replace-symlink", test_replace_symlink);
|
||||
g_test_add_func ("/file/async-delete", test_async_delete);
|
||||
#ifdef G_OS_UNIX
|
||||
g_test_add_func ("/file/copy-preserve-mode", test_copy_preserve_mode);
|
||||
55
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-28153-5.patch
Normal file
55
meta/recipes-core/glib-2.0/glib-2.0/CVE-2021-28153-5.patch
Normal file
@@ -0,0 +1,55 @@
|
||||
From 6c6439261bc7a8a0627519848a7222b3e1bd4ffe Mon Sep 17 00:00:00 2001
|
||||
From: Philip Withnall <pwithnall@endlessos.org>
|
||||
Date: Wed, 24 Feb 2021 17:42:24 +0000
|
||||
Subject: [PATCH 5/5] glocalfileoutputstream: Add a missing O_CLOEXEC flag to
|
||||
replace()
|
||||
|
||||
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
|
||||
|
||||
Upstream-Status: Backport [https://mirrors.ocf.berkeley.edu/ubuntu/pool/main/g/glib2.0/glib2.0_2.64.6-1~ubuntu20.04.3.debian.tar.xz]
|
||||
CVE: CVE-2021-28153
|
||||
Signed-off-by: Neetika Singh <Neetika.Singh@kpit.com>
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
---
|
||||
gio/glocalfileoutputstream.c | 15 ++++++++++++---
|
||||
1 file changed, 12 insertions(+), 3 deletions(-)
|
||||
|
||||
--- a/gio/glocalfileoutputstream.c
|
||||
+++ b/gio/glocalfileoutputstream.c
|
||||
@@ -58,6 +58,12 @@
|
||||
#define O_BINARY 0
|
||||
#endif
|
||||
|
||||
+#ifndef O_CLOEXEC
|
||||
+#define O_CLOEXEC 0
|
||||
+#else
|
||||
+#define HAVE_O_CLOEXEC 1
|
||||
+#endif
|
||||
+
|
||||
struct _GLocalFileOutputStreamPrivate {
|
||||
char *tmp_filename;
|
||||
char *original_filename;
|
||||
@@ -1223,7 +1229,7 @@ _g_local_file_output_stream_replace (con
|
||||
sync_on_close = FALSE;
|
||||
|
||||
/* If the file doesn't exist, create it */
|
||||
- open_flags = O_CREAT | O_EXCL | O_BINARY;
|
||||
+ open_flags = O_CREAT | O_EXCL | O_BINARY | O_CLOEXEC;
|
||||
if (readable)
|
||||
open_flags |= O_RDWR;
|
||||
else
|
||||
@@ -1253,8 +1259,11 @@ _g_local_file_output_stream_replace (con
|
||||
set_error_from_open_errno (filename, error);
|
||||
return NULL;
|
||||
}
|
||||
-
|
||||
-
|
||||
+#if !defined(HAVE_O_CLOEXEC) && defined(F_SETFD)
|
||||
+ else
|
||||
+ fcntl (fd, F_SETFD, FD_CLOEXEC);
|
||||
+#endif
|
||||
+
|
||||
stream = g_object_new (G_TYPE_LOCAL_FILE_OUTPUT_STREAM, NULL);
|
||||
stream->priv->fd = fd;
|
||||
stream->priv->sync_on_close = sync_on_close;
|
||||
@@ -18,6 +18,30 @@ SRC_URI = "${GNOME_MIRROR}/glib/${SHRT_VER}/glib-${PV}.tar.xz \
|
||||
file://0001-gio-tests-resources.c-comment-out-a-build-host-only-.patch \
|
||||
file://tzdata-update.patch \
|
||||
file://CVE-2020-35457.patch \
|
||||
file://CVE-2021-27218.patch \
|
||||
file://CVE-2021-27219-01.patch \
|
||||
file://CVE-2021-27219-02.patch \
|
||||
file://CVE-2021-27219-03.patch \
|
||||
file://CVE-2021-27219-04.patch \
|
||||
file://CVE-2021-27219-05.patch \
|
||||
file://CVE-2021-27219-06.patch \
|
||||
file://CVE-2021-27219-07.patch \
|
||||
file://CVE-2021-27219-08.patch \
|
||||
file://CVE-2021-27219-09.patch \
|
||||
file://CVE-2021-27219-10.patch \
|
||||
file://CVE-2021-27219-11.patch \
|
||||
file://CVE-2021-27219-reg1-1.patch \
|
||||
file://CVE-2021-27219-reg1-2.patch \
|
||||
file://CVE-2021-27219-reg1-4.patch \
|
||||
file://CVE-2021-27219-reg1-5.patch \
|
||||
file://CVE-2021-27219-reg2-1.patch \
|
||||
file://CVE-2021-27219-reg2-2.patch \
|
||||
file://CVE-2021-27219-reg2-3.patch \
|
||||
file://CVE-2021-28153-1.patch \
|
||||
file://CVE-2021-28153-2.patch \
|
||||
file://CVE-2021-28153-3.patch \
|
||||
file://CVE-2021-28153-4.patch \
|
||||
file://CVE-2021-28153-5.patch \
|
||||
"
|
||||
|
||||
SRC_URI_append_class-native = " file://relocate-modules.patch"
|
||||
|
||||
@@ -3,6 +3,6 @@ PV = "2.31+git${SRCPV}"
|
||||
SRCREV_glibc ?= "4f0a61f75385c9a5879cbe7202042e88f692a3c8"
|
||||
SRCREV_localedef ?= "cd9f958c4c94a638fa7b2b4e21627364f1a1a655"
|
||||
|
||||
GLIBC_GIT_URI ?= "git://sourceware.org/git/glibc.git;branch=master"
|
||||
GLIBC_GIT_URI ?= "git://sourceware.org/git/glibc.git"
|
||||
|
||||
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+\.\d+(\.(?!90)\d+)*)"
|
||||
|
||||
@@ -24,7 +24,7 @@ IMAGE_FSTYPES = "wic.vmdk"
|
||||
|
||||
inherit core-image setuptools3
|
||||
|
||||
SRCREV ?= "4b36bbb24396c77e6c16e741472240cca0980d9e"
|
||||
SRCREV ?= "38793eecdadd86343e1bc95281efa1f1ecba1876"
|
||||
SRC_URI = "git://git.yoctoproject.org/poky;branch=dunfell \
|
||||
file://Yocto_Build_Appliance.vmx \
|
||||
file://Yocto_Build_Appliance.vmxf \
|
||||
|
||||
30
meta/recipes-core/ncurses/files/CVE-2021-39537.patch
Normal file
30
meta/recipes-core/ncurses/files/CVE-2021-39537.patch
Normal file
@@ -0,0 +1,30 @@
|
||||
$NetBSD: patch-ncurses_tinfo_captoinfo.c,v 1.1 2021/10/09 07:52:36 wiz Exp $
|
||||
|
||||
Fix for CVE-2021-39537 from upstream:
|
||||
https://github.com/ThomasDickey/ncurses-snapshots/commit/63ca9e061f4644795d6f3f559557f3e1ed8c738b#diff-7e95c7bc5f213e9be438e69a9d5d0f261a14952bcbd692f7b9014217b8047340
|
||||
|
||||
CVE: CVE-2021-39537
|
||||
Upstream-Status: Backport [http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/devel/ncurses/patches/Attic/patch-ncurses_tinfo_captoinfo.c?rev=1.1&content-type=text/x-cvsweb-markup]
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
--- a/ncurses/tinfo/captoinfo.c 2020-02-02 23:34:34.000000000 +0000
|
||||
+++ b/ncurses/tinfo/captoinfo.c
|
||||
@@ -216,12 +216,15 @@ cvtchar(register const char *sp)
|
||||
}
|
||||
break;
|
||||
case '^':
|
||||
+ len = 2;
|
||||
c = UChar(*++sp);
|
||||
- if (c == '?')
|
||||
+ if (c == '?') {
|
||||
c = 127;
|
||||
- else
|
||||
+ } else if (c == '\0') {
|
||||
+ len = 1;
|
||||
+ } else {
|
||||
c &= 0x1f;
|
||||
- len = 2;
|
||||
+ }
|
||||
break;
|
||||
default:
|
||||
c = UChar(*sp);
|
||||
@@ -3,6 +3,7 @@ require ncurses.inc
|
||||
SRC_URI += "file://0001-tic-hang.patch \
|
||||
file://0002-configure-reproducible.patch \
|
||||
file://0003-gen-pkgconfig.in-Do-not-include-LDFLAGS-in-generated.patch \
|
||||
file://CVE-2021-39537.patch \
|
||||
"
|
||||
# commit id corresponds to the revision in package version
|
||||
SRCREV = "a669013cd5e9d6434e5301348ea51baf306c93c4"
|
||||
|
||||
@@ -12,7 +12,9 @@ do_configure[noexec] = "1"
|
||||
|
||||
# Other valid fields: BUILD_ID ID_LIKE ANSI_COLOR CPE_NAME
|
||||
# HOME_URL SUPPORT_URL BUG_REPORT_URL
|
||||
OS_RELEASE_FIELDS = "ID ID_LIKE NAME VERSION VERSION_ID PRETTY_NAME"
|
||||
OS_RELEASE_FIELDS = "\
|
||||
ID ID_LIKE NAME VERSION VERSION_ID PRETTY_NAME DISTRO_CODENAME \
|
||||
"
|
||||
OS_RELEASE_UNQUOTED_FIELDS = "ID VERSION_ID VARIANT_ID"
|
||||
|
||||
ID = "${DISTRO}"
|
||||
|
||||
@@ -96,6 +96,7 @@ PACKAGECONFIG ??= " \
|
||||
timesyncd \
|
||||
utmp \
|
||||
vconsole \
|
||||
wheel-group \
|
||||
xz \
|
||||
"
|
||||
|
||||
@@ -188,6 +189,7 @@ PACKAGECONFIG[sbinmerge] = "-Dsplit-bin=false,-Dsplit-bin=true"
|
||||
PACKAGECONFIG[utmp] = "-Dutmp=true,-Dutmp=false"
|
||||
PACKAGECONFIG[valgrind] = "-DVALGRIND=1,,valgrind"
|
||||
PACKAGECONFIG[vconsole] = "-Dvconsole=true,-Dvconsole=false,,${PN}-vconsole-setup"
|
||||
PACKAGECONFIG[wheel-group] = "-Dwheel-group=true, -Dwheel-group=false"
|
||||
# Verify keymaps on locale change
|
||||
PACKAGECONFIG[xkbcommon] = "-Dxkbcommon=true,-Dxkbcommon=false,libxkbcommon"
|
||||
PACKAGECONFIG[xz] = "-Dxz=true,-Dxz=false,xz"
|
||||
|
||||
@@ -7,6 +7,7 @@ SRC_URI += "file://OEToolchainConfig.cmake \
|
||||
file://environment.d-cmake.sh \
|
||||
file://0001-CMakeDetermineSystem-use-oe-environment-vars-to-load.patch \
|
||||
file://0005-Disable-use-of-ext2fs-ext2_fs.h-by-cmake-s-internal-.patch \
|
||||
file://0006-cmake-FindGTest-Add-target-for-gmock-library.patch \
|
||||
"
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,255 @@
|
||||
From 39eae0d6c1b398f18761abac7f55944f0290f8a1 Mon Sep 17 00:00:00 2001
|
||||
From: Eero Aaltonen <eero.aaltonen@iki.fi>
|
||||
Date: Sun, 17 Oct 2021 17:13:07 +0300
|
||||
Subject: [PATCH] FindGTest: Add target for gmock library
|
||||
|
||||
`googlemock` has been absorbed into the
|
||||
[googletest](https://github.com/google/googletest) project and is built
|
||||
and installed from the same source tree.
|
||||
|
||||
As GTest may be built with or without GMock, skip GMock if it is not
|
||||
present.
|
||||
|
||||
Do not provide result variables for GMock. They are not provided by
|
||||
upstream GTest's CMake Package Configuration File.
|
||||
|
||||
Also update the test case to cover linking to `GTest::gmock`.
|
||||
|
||||
The patch was imported from the Kitware git server
|
||||
(git@gitlab.kitware.com:cmake/cmake.git) as of commit id
|
||||
50bf457a0dd857cf976b22c5be7d333493233d1e
|
||||
|
||||
Patch was modified to support upper case variable `GTEST_FOUND`.
|
||||
|
||||
Upstream-Status: Accepted [https://gitlab.kitware.com/cmake/cmake/-/merge_requests/6632]
|
||||
Milestone: 3.23.0
|
||||
|
||||
Signed-off-by: Eero Aaltonen <eero.aaltonen@vaisala.com>
|
||||
---
|
||||
.../dev/FindGTest-target-for-gmock.rst | 4 +
|
||||
Modules/FindGTest.cmake | 133 +++++++++++++++---
|
||||
Tests/FindGTest/Test/CMakeLists.txt | 4 +
|
||||
3 files changed, 121 insertions(+), 20 deletions(-)
|
||||
create mode 100644 Help/release/dev/FindGTest-target-for-gmock.rst
|
||||
|
||||
diff --git a/Help/release/dev/FindGTest-target-for-gmock.rst b/Help/release/dev/FindGTest-target-for-gmock.rst
|
||||
new file mode 100644
|
||||
index 0000000000..f78242c80e
|
||||
--- /dev/null
|
||||
+++ b/Help/release/dev/FindGTest-target-for-gmock.rst
|
||||
@@ -0,0 +1,4 @@
|
||||
+FindGTest-target-for-gmock
|
||||
+--------------------------
|
||||
+
|
||||
+* The :module:`FindGTest` module now provides a target for GMock, if found.
|
||||
diff --git a/Modules/FindGTest.cmake b/Modules/FindGTest.cmake
|
||||
index e015a9840f..0331049594 100644
|
||||
--- a/Modules/FindGTest.cmake
|
||||
+++ b/Modules/FindGTest.cmake
|
||||
@@ -7,10 +7,23 @@ FindGTest
|
||||
|
||||
Locate the Google C++ Testing Framework.
|
||||
|
||||
+.. versionadded:: 3.20
|
||||
+ Upstream ``GTestConfig.cmake`` is used if possible.
|
||||
+
|
||||
Imported targets
|
||||
^^^^^^^^^^^^^^^^
|
||||
|
||||
-This module defines the following :prop_tgt:`IMPORTED` targets:
|
||||
+ This module defines the following :prop_tgt:`IMPORTED` targets:
|
||||
+
|
||||
+``GTest::gtest``
|
||||
+ The Google Test ``gtest`` library, if found; adds Thread::Thread
|
||||
+ automatically
|
||||
+``GTest::gtest_main``
|
||||
+ The Google Test ``gtest_main`` library, if found
|
||||
+
|
||||
+.. deprecated:: 3.20
|
||||
+ For backwards compatibility, this module defines additionally the
|
||||
+ following deprecated :prop_tgt:`IMPORTED` targets (available since 3.5):
|
||||
|
||||
``GTest::GTest``
|
||||
The Google Test ``gtest`` library, if found; adds Thread::Thread
|
||||
@@ -18,7 +31,6 @@ This module defines the following :prop_tgt:`IMPORTED` targets:
|
||||
``GTest::Main``
|
||||
The Google Test ``gtest_main`` library, if found
|
||||
|
||||
-
|
||||
Result variables
|
||||
^^^^^^^^^^^^^^^^
|
||||
|
||||
@@ -146,8 +158,42 @@ function(__gtest_import_library _target _var _config)
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
+function(__gtest_define_backwards_compatible_library_targets)
|
||||
+ set(GTEST_BOTH_LIBRARIES ${GTEST_LIBRARIES} ${GTEST_MAIN_LIBRARIES} PARENT_SCOPE)
|
||||
+
|
||||
+ # Add targets mapping the same library names as defined in
|
||||
+ # older versions of CMake's FindGTest
|
||||
+ if(NOT TARGET GTest::GTest)
|
||||
+ add_library(GTest::GTest INTERFACE IMPORTED)
|
||||
+ target_link_libraries(GTest::GTest INTERFACE GTest::gtest)
|
||||
+ endif()
|
||||
+ if(NOT TARGET GTest::Main)
|
||||
+ add_library(GTest::Main INTERFACE IMPORTED)
|
||||
+ target_link_libraries(GTest::Main INTERFACE GTest::gtest_main)
|
||||
+ endif()
|
||||
+endfunction()
|
||||
+
|
||||
#
|
||||
|
||||
+include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
||||
+
|
||||
+# first specifically look for the CMake version of GTest
|
||||
+find_package(GTest QUIET NO_MODULE)
|
||||
+
|
||||
+# if we found the GTest cmake package then we are done, and
|
||||
+# can print what we found and return.
|
||||
+if(GTest_FOUND)
|
||||
+ set(GTEST_FOUND ${GTest_FOUND})
|
||||
+ FIND_PACKAGE_HANDLE_STANDARD_ARGS(GTest HANDLE_COMPONENTS CONFIG_MODE)
|
||||
+
|
||||
+ set(GTEST_LIBRARIES GTest::gtest)
|
||||
+ set(GTEST_MAIN_LIBRARIES GTest::gtest_main)
|
||||
+
|
||||
+ __gtest_define_backwards_compatible_library_targets()
|
||||
+
|
||||
+ return()
|
||||
+endif()
|
||||
+
|
||||
if(NOT DEFINED GTEST_MSVC_SEARCH)
|
||||
set(GTEST_MSVC_SEARCH MD)
|
||||
endif()
|
||||
@@ -194,50 +240,97 @@ if(MSVC AND GTEST_MSVC_SEARCH STREQUAL "MD")
|
||||
__gtest_find_library(GTEST_LIBRARY_DEBUG gtest-mdd gtestd)
|
||||
__gtest_find_library(GTEST_MAIN_LIBRARY gtest_main-md gtest_main)
|
||||
__gtest_find_library(GTEST_MAIN_LIBRARY_DEBUG gtest_main-mdd gtest_maind)
|
||||
+ __gtest_find_library(GMOCK_LIBRARY gmock-md gmock)
|
||||
+ __gtest_find_library(GMOCK_LIBRARY_DEBUG gmock-mdd gmockd)
|
||||
+ __gtest_find_library(GMOCK_MAIN_LIBRARY gmock_main-md gmock_main)
|
||||
+ __gtest_find_library(GMOCK_MAIN_LIBRARY_DEBUG gmock_main-mdd gmock_maind)
|
||||
else()
|
||||
__gtest_find_library(GTEST_LIBRARY gtest)
|
||||
__gtest_find_library(GTEST_LIBRARY_DEBUG gtestd)
|
||||
__gtest_find_library(GTEST_MAIN_LIBRARY gtest_main)
|
||||
__gtest_find_library(GTEST_MAIN_LIBRARY_DEBUG gtest_maind)
|
||||
+ __gtest_find_library(GMOCK_LIBRARY gmock)
|
||||
+ __gtest_find_library(GMOCK_LIBRARY_DEBUG gmockd)
|
||||
+ __gtest_find_library(GMOCK_MAIN_LIBRARY gmock_main)
|
||||
+ __gtest_find_library(GMOCK_MAIN_LIBRARY_DEBUG gmock_maind)
|
||||
endif()
|
||||
|
||||
-include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
||||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(GTest DEFAULT_MSG GTEST_LIBRARY GTEST_INCLUDE_DIR GTEST_MAIN_LIBRARY)
|
||||
|
||||
-if(GTEST_FOUND)
|
||||
+if(GMOCK_LIBRARY AND GMOCK_MAIN_LIBRARY)
|
||||
+ set(GMock_FOUND True)
|
||||
+else()
|
||||
+ set(GMock_FOUND False)
|
||||
+endif()
|
||||
+
|
||||
+if(GTest_FOUND)
|
||||
set(GTEST_INCLUDE_DIRS ${GTEST_INCLUDE_DIR})
|
||||
__gtest_append_debugs(GTEST_LIBRARIES GTEST_LIBRARY)
|
||||
__gtest_append_debugs(GTEST_MAIN_LIBRARIES GTEST_MAIN_LIBRARY)
|
||||
- set(GTEST_BOTH_LIBRARIES ${GTEST_LIBRARIES} ${GTEST_MAIN_LIBRARIES})
|
||||
|
||||
find_package(Threads QUIET)
|
||||
|
||||
- if(NOT TARGET GTest::GTest)
|
||||
+ if(NOT TARGET GTest::gtest)
|
||||
__gtest_determine_library_type(GTEST_LIBRARY)
|
||||
- add_library(GTest::GTest ${GTEST_LIBRARY_TYPE} IMPORTED)
|
||||
+ add_library(GTest::gtest ${GTEST_LIBRARY_TYPE} IMPORTED)
|
||||
if(TARGET Threads::Threads)
|
||||
- set_target_properties(GTest::GTest PROPERTIES
|
||||
+ set_target_properties(GTest::gtest PROPERTIES
|
||||
INTERFACE_LINK_LIBRARIES Threads::Threads)
|
||||
endif()
|
||||
if(GTEST_LIBRARY_TYPE STREQUAL "SHARED")
|
||||
- set_target_properties(GTest::GTest PROPERTIES
|
||||
+ set_target_properties(GTest::gtest PROPERTIES
|
||||
INTERFACE_COMPILE_DEFINITIONS "GTEST_LINKED_AS_SHARED_LIBRARY=1")
|
||||
endif()
|
||||
if(GTEST_INCLUDE_DIRS)
|
||||
- set_target_properties(GTest::GTest PROPERTIES
|
||||
+ set_target_properties(GTest::gtest PROPERTIES
|
||||
INTERFACE_INCLUDE_DIRECTORIES "${GTEST_INCLUDE_DIRS}")
|
||||
endif()
|
||||
- __gtest_import_library(GTest::GTest GTEST_LIBRARY "")
|
||||
- __gtest_import_library(GTest::GTest GTEST_LIBRARY "RELEASE")
|
||||
- __gtest_import_library(GTest::GTest GTEST_LIBRARY "DEBUG")
|
||||
+ __gtest_import_library(GTest::gtest GTEST_LIBRARY "")
|
||||
+ __gtest_import_library(GTest::gtest GTEST_LIBRARY "RELEASE")
|
||||
+ __gtest_import_library(GTest::gtest GTEST_LIBRARY "DEBUG")
|
||||
endif()
|
||||
- if(NOT TARGET GTest::Main)
|
||||
+ if(NOT TARGET GTest::gtest_main)
|
||||
__gtest_determine_library_type(GTEST_MAIN_LIBRARY)
|
||||
- add_library(GTest::Main ${GTEST_MAIN_LIBRARY_TYPE} IMPORTED)
|
||||
- set_target_properties(GTest::Main PROPERTIES
|
||||
- INTERFACE_LINK_LIBRARIES "GTest::GTest")
|
||||
- __gtest_import_library(GTest::Main GTEST_MAIN_LIBRARY "")
|
||||
- __gtest_import_library(GTest::Main GTEST_MAIN_LIBRARY "RELEASE")
|
||||
- __gtest_import_library(GTest::Main GTEST_MAIN_LIBRARY "DEBUG")
|
||||
+ add_library(GTest::gtest_main ${GTEST_MAIN_LIBRARY_TYPE} IMPORTED)
|
||||
+ set_target_properties(GTest::gtest_main PROPERTIES
|
||||
+ INTERFACE_LINK_LIBRARIES "GTest::gtest")
|
||||
+ __gtest_import_library(GTest::gtest_main GTEST_MAIN_LIBRARY "")
|
||||
+ __gtest_import_library(GTest::gtest_main GTEST_MAIN_LIBRARY "RELEASE")
|
||||
+ __gtest_import_library(GTest::gtest_main GTEST_MAIN_LIBRARY "DEBUG")
|
||||
+ endif()
|
||||
+
|
||||
+ __gtest_define_backwards_compatible_library_targets()
|
||||
+endif()
|
||||
+
|
||||
+if(GMock_FOUND)
|
||||
+ if(NOT TARGET GTest::gmock)
|
||||
+ __gtest_determine_library_type(GMOCK_LIBRARY)
|
||||
+ add_library(GTest::gmock ${GMOCK_LIBRARY_TYPE} IMPORTED)
|
||||
+ set(_gmock_link_libraries "GTest::gtest")
|
||||
+ if(TARGET Threads::Threads)
|
||||
+ list(APPEND _gmock_link_libraries Threads::Threads)
|
||||
+ endif()
|
||||
+ set_target_properties(GTest::gmock PROPERTIES
|
||||
+ INTERFACE_LINK_LIBRARIES "${_gmock_link_libraries}")
|
||||
+ if(GMOCK_LIBRARY_TYPE STREQUAL "SHARED")
|
||||
+ set_target_properties(GTest::gmock PROPERTIES
|
||||
+ INTERFACE_COMPILE_DEFINITIONS "GMOCK_LINKED_AS_SHARED_LIBRARY=1")
|
||||
+ endif()
|
||||
+ if(GTEST_INCLUDE_DIRS)
|
||||
+ set_target_properties(GTest::gmock PROPERTIES
|
||||
+ INTERFACE_INCLUDE_DIRECTORIES "${GTEST_INCLUDE_DIRS}")
|
||||
+ endif()
|
||||
+ __gtest_import_library(GTest::gmock GMOCK_LIBRARY "")
|
||||
+ __gtest_import_library(GTest::gmock GMOCK_LIBRARY "RELEASE")
|
||||
+ __gtest_import_library(GTest::gmock GMOCK_LIBRARY "DEBUG")
|
||||
+ endif()
|
||||
+ if(NOT TARGET GTest::gmock_main)
|
||||
+ __gtest_determine_library_type(GMOCK_MAIN_LIBRARY)
|
||||
+ add_library(GTest::gmock_main ${GMOCK_MAIN_LIBRARY_TYPE} IMPORTED)
|
||||
+ set_target_properties(GTest::gmock_main PROPERTIES
|
||||
+ INTERFACE_LINK_LIBRARIES "GTest::gmock")
|
||||
+ __gtest_import_library(GTest::gmock_main GMOCK_MAIN_LIBRARY "")
|
||||
+ __gtest_import_library(GTest::gmock_main GMOCK_MAIN_LIBRARY "RELEASE")
|
||||
+ __gtest_import_library(GTest::gmock_main GMOCK_MAIN_LIBRARY "DEBUG")
|
||||
endif()
|
||||
endif()
|
||||
diff --git a/Tests/FindGTest/Test/CMakeLists.txt b/Tests/FindGTest/Test/CMakeLists.txt
|
||||
index b65b9d28f6..7d3a378a65 100644
|
||||
--- a/Tests/FindGTest/Test/CMakeLists.txt
|
||||
+++ b/Tests/FindGTest/Test/CMakeLists.txt
|
||||
@@ -12,3 +12,7 @@ add_executable(test_gtest_var main.cxx)
|
||||
target_include_directories(test_gtest_var PRIVATE ${GTEST_INCLUDE_DIRS})
|
||||
target_link_libraries(test_gtest_var PRIVATE ${GTEST_BOTH_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
|
||||
add_test(NAME test_gtest_var COMMAND test_gtest_var)
|
||||
+
|
||||
+add_executable(test_gmock_tgt main.cxx)
|
||||
+target_link_libraries(test_gmock_tgt GTest::gmock_main)
|
||||
+add_test(NAME test_gmock_tgt COMMAND test_gmock_tgt)
|
||||
--
|
||||
2.17.1
|
||||
|
||||
@@ -0,0 +1,60 @@
|
||||
From c88a77198c0156e425c2725f30e481207de5162f Mon Sep 17 00:00:00 2001
|
||||
From: Jaroslav Mracek <jmracek@redhat.com>
|
||||
Date: Tue, 3 Sep 2019 11:01:51 +0200
|
||||
Subject: [PATCH] Keep installed packages in upgrade job
|
||||
(RhBug:1728252,1644241,1741381)
|
||||
|
||||
In combination with marking of job as TARGETED it prevents from
|
||||
reinstalling of modified packages with same NEVRA.
|
||||
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=1728252
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=1644241
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=1741381
|
||||
|
||||
Closes: #1474
|
||||
Approved by: m-blaha
|
||||
|
||||
|
||||
Backport to fix bug in dnf in oe-core
|
||||
from https://github.com/rpm-software-management/dnf
|
||||
|
||||
Removed spec file portion of patch
|
||||
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Jate Sujjavanich <jatedev@gmail.com>
|
||||
---
|
||||
dnf.spec | 4 ++--
|
||||
dnf/base.py | 3 ---
|
||||
dnf/module/module_base.py | 2 +-
|
||||
3 files changed, 3 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/dnf/base.py b/dnf/base.py
|
||||
index b2ced61..628c154 100644
|
||||
--- a/dnf/base.py
|
||||
+++ b/dnf/base.py
|
||||
@@ -1968,9 +1968,6 @@ class Base(object):
|
||||
obsoletes=q.installed().union(q.upgrades()))
|
||||
# add obsoletes into transaction
|
||||
q = q.union(obsoletes)
|
||||
- # provide only available packages to solver otherwise selection of available
|
||||
- # possibilities will be ignored
|
||||
- q = q.available()
|
||||
if reponame is not None:
|
||||
q.filterm(reponame=reponame)
|
||||
q = self._merge_update_filters(q, pkg_spec=pkg_spec)
|
||||
diff --git a/dnf/module/module_base.py b/dnf/module/module_base.py
|
||||
index 976d730..ce70f63 100644
|
||||
--- a/dnf/module/module_base.py
|
||||
+++ b/dnf/module/module_base.py
|
||||
@@ -214,7 +214,7 @@ class ModuleBase(object):
|
||||
|
||||
if not upgrade_package_set:
|
||||
logger.error(_("Unable to match profile in argument {}").format(spec))
|
||||
- query = self.base.sack.query().available().filterm(name=upgrade_package_set)
|
||||
+ query = self.base.sack.query().filterm(name=upgrade_package_set)
|
||||
if query:
|
||||
sltr = dnf.selector.Selector(self.base.sack)
|
||||
sltr.set(pkg=query)
|
||||
--
|
||||
2.7.4
|
||||
|
||||
@@ -16,6 +16,7 @@ SRC_URI = "git://github.com/rpm-software-management/dnf.git;branch=master;protoc
|
||||
file://0030-Run-python-scripts-using-env.patch \
|
||||
file://Fix-SyntaxWarning.patch \
|
||||
file://0001-set-python-path-for-completion_helper.patch \
|
||||
file://0040-Keep-installed-packages-in-upgrade-job-RhBug-1728252.patch \
|
||||
"
|
||||
|
||||
SRCREV = "9947306a55271b8b7c9e2b6e3b7d582885b6045d"
|
||||
|
||||
@@ -124,3 +124,6 @@ EXTRA_OECONF_PATHS = "\
|
||||
--with-sysroot=/not/exist \
|
||||
--with-build-sysroot=${STAGING_DIR_TARGET} \
|
||||
"
|
||||
|
||||
# Is a binutils 2.26 issue, not gcc
|
||||
CVE_CHECK_WHITELIST += "CVE-2021-37322"
|
||||
|
||||
108
meta/recipes-devtools/git/files/CVE-2021-40330.patch
Normal file
108
meta/recipes-devtools/git/files/CVE-2021-40330.patch
Normal file
@@ -0,0 +1,108 @@
|
||||
From e77ca0c7d577408878d2b3e8c7336e6119cb3931 Mon Sep 17 00:00:00 2001
|
||||
From: Minjae Kim <flowergom@gmail.com>
|
||||
Date: Thu, 25 Nov 2021 06:36:26 +0000
|
||||
Subject: [PATCH] git_connect_git(): forbid newlines in host and path
|
||||
|
||||
When we connect to a git:// server, we send an initial request that
|
||||
looks something like:
|
||||
|
||||
002dgit-upload-pack repo.git\0host=example.com
|
||||
|
||||
If the repo path contains a newline, then it's included literally, and
|
||||
we get:
|
||||
|
||||
002egit-upload-pack repo
|
||||
.git\0host=example.com
|
||||
|
||||
This works fine if you really do have a newline in your repository name;
|
||||
the server side uses the pktline framing to parse the string, not
|
||||
newlines. However, there are many _other_ protocols in the wild that do
|
||||
parse on newlines, such as HTTP. So a carefully constructed git:// URL
|
||||
can actually turn into a valid HTTP request. For example:
|
||||
|
||||
git://localhost:1234/%0d%0a%0d%0aGET%20/%20HTTP/1.1 %0d%0aHost:localhost%0d%0a%0d%0a
|
||||
|
||||
becomes:
|
||||
|
||||
0050git-upload-pack /
|
||||
GET / HTTP/1.1
|
||||
Host:localhost
|
||||
|
||||
host=localhost:1234
|
||||
|
||||
on the wire. Again, this isn't a problem for a real Git server, but it
|
||||
does mean that feeding a malicious URL to Git (e.g., through a
|
||||
submodule) can cause it to make unexpected cross-protocol requests.
|
||||
Since repository names with newlines are presumably quite rare (and
|
||||
indeed, we already disallow them in git-over-http), let's just disallow
|
||||
them over this protocol.
|
||||
|
||||
Hostnames could likewise inject a newline, but this is unlikely a
|
||||
problem in practice; we'd try resolving the hostname with a newline in
|
||||
it, which wouldn't work. Still, it doesn't hurt to err on the side of
|
||||
caution there, since we would not expect them to work in the first
|
||||
place.
|
||||
|
||||
The ssh and local code paths are unaffected by this patch. In both cases
|
||||
we're trying to run upload-pack via a shell, and will quote the newline
|
||||
so that it makes it intact. An attacker can point an ssh url at an
|
||||
arbitrary port, of course, but unless there's an actual ssh server
|
||||
there, we'd never get as far as sending our shell command anyway. We
|
||||
_could_ similarly restrict newlines in those protocols out of caution,
|
||||
but there seems little benefit to doing so.
|
||||
|
||||
The new test here is run alongside the git-daemon tests, which cover the
|
||||
same protocol, but it shouldn't actually contact the daemon at all. In
|
||||
theory we could make the test more robust by setting up an actual
|
||||
repository with a newline in it (so that our clone would succeed if our
|
||||
new check didn't kick in). But a repo directory with newline in it is
|
||||
likely not portable across all filesystems. Likewise, we could check
|
||||
git-daemon's log that it was not contacted at all, but we do not
|
||||
currently record the log (and anyway, it would make the test racy with
|
||||
the daemon's log write). We'll just check the client-side stderr to make
|
||||
sure we hit the expected code path.
|
||||
|
||||
Reported-by: Harold Kim <h.kim@flatt.tech>
|
||||
Signed-off-by: Jeff King <peff@peff.net>
|
||||
Signed-off-by: Junio C Hamano <gitster@pobox.com>
|
||||
|
||||
Upstream-Status: Backported [https://github.com/git/git/commit/a02ea577174ab8ed18f847cf1693f213e0b9c473]
|
||||
CVE: CVE-2021-40330
|
||||
Signed-off-by: Minjae Kim <flowergom@gmail.com>
|
||||
---
|
||||
connect.c | 2 ++
|
||||
t/t5570-git-daemon.sh | 5 +++++
|
||||
2 files changed, 7 insertions(+)
|
||||
|
||||
diff --git a/connect.c b/connect.c
|
||||
index b6451ab..929de9a 100644
|
||||
--- a/connect.c
|
||||
+++ b/connect.c
|
||||
@@ -1064,6 +1064,8 @@ static struct child_process *git_connect_git(int fd[2], char *hostandport,
|
||||
target_host = xstrdup(hostandport);
|
||||
|
||||
transport_check_allowed("git");
|
||||
+ if (strchr(target_host, '\n') || strchr(path, '\n'))
|
||||
+ die(_("newline is forbidden in git:// hosts and repo paths"));
|
||||
|
||||
/*
|
||||
* These underlying connection commands die() if they
|
||||
diff --git a/t/t5570-git-daemon.sh b/t/t5570-git-daemon.sh
|
||||
index 34487bb..79cd218 100755
|
||||
--- a/t/t5570-git-daemon.sh
|
||||
+++ b/t/t5570-git-daemon.sh
|
||||
@@ -103,6 +103,11 @@ test_expect_success 'fetch notices corrupt idx' '
|
||||
)
|
||||
'
|
||||
|
||||
+test_expect_success 'client refuses to ask for repo with newline' '
|
||||
+ test_must_fail git clone "$GIT_DAEMON_URL/repo$LF.git" dst 2>stderr &&
|
||||
+ test_i18ngrep newline.is.forbidden stderr
|
||||
+'
|
||||
+
|
||||
test_remote_error()
|
||||
{
|
||||
do_export=YesPlease
|
||||
--
|
||||
2.17.1
|
||||
|
||||
@@ -10,7 +10,9 @@ PROVIDES_append_class-native = " git-replacement-native"
|
||||
SRC_URI = "${KERNELORG_MIRROR}/software/scm/git/git-${PV}.tar.gz;name=tarball \
|
||||
${KERNELORG_MIRROR}/software/scm/git/git-manpages-${PV}.tar.gz;name=manpages \
|
||||
file://CVE-2021-21300.patch \
|
||||
file://fixsort.patch"
|
||||
file://fixsort.patch \
|
||||
file://CVE-2021-40330.patch \
|
||||
"
|
||||
|
||||
S = "${WORKDIR}/git-${PV}"
|
||||
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
From b4c5a3312287f31a2075a235db846ff611586d2c Mon Sep 17 00:00:00 2001
|
||||
From: Jaroslav Mracek <jmracek@redhat.com>
|
||||
Date: Tue, 3 Sep 2019 11:01:23 +0200
|
||||
Subject: [PATCH] Mark job goal.upgrade with sltr as targeted
|
||||
|
||||
It allows to keep installed packages in upgrade set.
|
||||
|
||||
It also prevents from reinstalling of modified packages with same NEVRA.
|
||||
|
||||
|
||||
Backport commit b4c5a3312287f31a2075a235db846ff611586d2c from
|
||||
https://github.com/rpm-software-management/libdnf
|
||||
|
||||
This bug is present in oe-core's dnf
|
||||
|
||||
Remove changes to spec file from upstream
|
||||
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Jate Sujjavanich <jatedev@gmail.com>
|
||||
---
|
||||
libdnf.spec | 4 ++--
|
||||
libdnf/goal/Goal.cpp | 2 +-
|
||||
libdnf/goal/Goal.hpp | 6 ++++--
|
||||
3 files changed, 7 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/libdnf/goal/Goal.cpp b/libdnf/goal/Goal.cpp
|
||||
index b69be19..a38cbb4 100644
|
||||
--- a/libdnf/goal/Goal.cpp
|
||||
+++ b/libdnf/goal/Goal.cpp
|
||||
@@ -767,7 +767,7 @@ void
|
||||
Goal::upgrade(HySelector sltr)
|
||||
{
|
||||
pImpl->actions = static_cast<DnfGoalActions>(pImpl->actions | DNF_UPGRADE);
|
||||
- sltrToJob(sltr, &pImpl->staging, SOLVER_UPDATE);
|
||||
+ sltrToJob(sltr, &pImpl->staging, SOLVER_UPDATE|SOLVER_TARGETED);
|
||||
}
|
||||
|
||||
void
|
||||
diff --git a/libdnf/goal/Goal.hpp b/libdnf/goal/Goal.hpp
|
||||
index f33dfa2..d701317 100644
|
||||
--- a/libdnf/goal/Goal.hpp
|
||||
+++ b/libdnf/goal/Goal.hpp
|
||||
@@ -86,8 +86,10 @@ public:
|
||||
/**
|
||||
* @brief If selector ill formed, it rises std::runtime_error()
|
||||
*
|
||||
- * @param sltr p_sltr: It should contain only upgrades with obsoletes otherwise it can try to
|
||||
- * reinstall installonly packages.
|
||||
+ * @param sltr p_sltr: It contains upgrade-to packages and obsoletes. The presence of installed
|
||||
+ * packages prevents reinstalling packages with the same NEVRA but changed contant. To honor repo
|
||||
+ * priority all relevant packages must be present. To upgrade package foo from priority repo, all
|
||||
+ * installed and available packages of the foo must be in selector plus obsoletes of foo.
|
||||
*/
|
||||
void upgrade(HySelector sltr);
|
||||
void userInstalled(DnfPackage *pkg);
|
||||
--
|
||||
2.7.4
|
||||
|
||||
@@ -11,6 +11,7 @@ SRC_URI = "git://github.com/rpm-software-management/libdnf;branch=master;protoco
|
||||
file://0001-Add-WITH_TESTS-option.patch \
|
||||
file://0001-include-stdexcept-for-runtime_error.patch \
|
||||
file://fix-deprecation-warning.patch \
|
||||
file://0040-Mark-job-goal.upgrade-with-sltr-as-target.patch \
|
||||
"
|
||||
|
||||
SRCREV = "751f89045b80d58c0d05800f74357cf78cdf7e77"
|
||||
|
||||
@@ -42,8 +42,8 @@ SRC_URI_append_class-native = " \
|
||||
file://0001-Don-t-search-system-for-headers-libraries.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "5840ba601128f48fee4e7c98fbdac65d"
|
||||
SRC_URI[sha256sum] = "fb1a1114ebfe9e97199603c6083e20b236a0e007a2c51f29283ffb50c1420fb2"
|
||||
SRC_URI[md5sum] = "9dd8f82e586b776383c82e27923f8795"
|
||||
SRC_URI[sha256sum] = "b1d3a76420375343b5e8a22fceb1ac65b77193e9ed27146524f0a9db058728ea"
|
||||
|
||||
# exclude pre-releases for both python 2.x and 3.x
|
||||
UPSTREAM_CHECK_REGEX = "[Pp]ython-(?P<pver>\d+(\.\d+)+).tar"
|
||||
@@ -41,7 +41,7 @@ PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'zeroconf', 'avahi',
|
||||
PACKAGECONFIG[avahi] = "--enable-avahi,--disable-avahi,avahi"
|
||||
PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl"
|
||||
PACKAGECONFIG[pam] = "--enable-pam --with-pam-module=unix, --disable-pam, libpam"
|
||||
PACKAGECONFIG[systemd] = "--with-systemd=${systemd_system_unitdir},--without-systemd,systemd"
|
||||
PACKAGECONFIG[systemd] = "--with-systemd=${systemd_system_unitdir},--disable-systemd,systemd"
|
||||
PACKAGECONFIG[xinetd] = "--with-xinetd=${sysconfdir}/xinetd.d,--without-xinetd,xinetd"
|
||||
|
||||
EXTRA_OECONF = " \
|
||||
|
||||
@@ -11,9 +11,14 @@ been added.
|
||||
(Jobs may point inside the whatproviedes array, so we must not invalidate this
|
||||
area.)
|
||||
|
||||
Upstream-Status: Backport
|
||||
https://github.com/openSUSE/libsolv/commit/0077ef29eb46d2e1df2f230fc95a1d9748d49dec
|
||||
Upstream-Status: Backport [https://github.com/openSUSE/libsolv/commit/0077ef29eb46d2e1df2f230fc95a1d9748d49dec]
|
||||
CVE: CVE-2021-3200
|
||||
CVE: CVE-2021-33928
|
||||
CVE: CVE-2021-33929
|
||||
CVE: CVE-2021-33930
|
||||
CVE: CVE-2021-33938
|
||||
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
|
||||
|
||||
Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com>
|
||||
---
|
||||
ext/testcase.c | 21 +++++++++++++++++++++
|
||||
|
||||
@@ -132,7 +132,7 @@ LIC_FILES_CHKSUM = "file://LICENCE.Abilis;md5=b5ee3f410780e56711ad48eadc22b8bc \
|
||||
file://LICENCE.xc4000;md5=0ff51d2dc49fce04814c9155081092f0 \
|
||||
file://LICENCE.xc5000;md5=1e170c13175323c32c7f4d0998d53f66 \
|
||||
file://LICENCE.xc5000c;md5=12b02efa3049db65d524aeb418dd87ca \
|
||||
file://WHENCE;md5=76f012f7e9b2260d34eccf5726374f08 \
|
||||
file://WHENCE;md5=d627873bd934d7c52b2c8191304a8eb7 \
|
||||
"
|
||||
|
||||
# These are not common licenses, set NO_GENERIC_LICENSE for them
|
||||
@@ -205,7 +205,7 @@ PE = "1"
|
||||
|
||||
SRC_URI = "${KERNELORG_MIRROR}/linux/kernel/firmware/${BPN}-${PV}.tar.xz"
|
||||
|
||||
SRC_URI[sha256sum] = "2fb22a5d7d23bf1f5800ab8152b39a00a445fbf4923de5a01b59d3f6253f0a9f"
|
||||
SRC_URI[sha256sum] = "bc2657dd8eb82386a9a7ec6df9ccf31c32c7e9073c05d37786c1edc273f9440a"
|
||||
|
||||
inherit allarch
|
||||
|
||||
@@ -11,13 +11,13 @@ python () {
|
||||
raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it")
|
||||
}
|
||||
|
||||
SRCREV_machine ?= "88b78bac3bf83e6b3ef08d77f895bba5128cc1cd"
|
||||
SRCREV_meta ?= "9e3ab4e615b651c1b63d4f0cce71da79a3e89763"
|
||||
SRCREV_machine ?= "1a91fd560dcf8fa9e49fc2f17cb37483201a2b89"
|
||||
SRCREV_meta ?= "db8bfc3a107db2a059fb8efa442f7daa17e8d55c"
|
||||
|
||||
SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine \
|
||||
git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-5.4;destsuffix=${KMETA}"
|
||||
|
||||
LINUX_VERSION ?= "5.4.153"
|
||||
LINUX_VERSION ?= "5.4.158"
|
||||
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ KCONFIG_MODE = "--allnoconfig"
|
||||
|
||||
require recipes-kernel/linux/linux-yocto.inc
|
||||
|
||||
LINUX_VERSION ?= "5.4.153"
|
||||
LINUX_VERSION ?= "5.4.158"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
|
||||
|
||||
DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}"
|
||||
@@ -15,9 +15,9 @@ DEPENDS += "openssl-native util-linux-native"
|
||||
KMETA = "kernel-meta"
|
||||
KCONF_BSP_AUDIT_LEVEL = "2"
|
||||
|
||||
SRCREV_machine_qemuarm ?= "fed16a9b9cb56ce639eeddeedd756ad5207fa89e"
|
||||
SRCREV_machine ?= "942b0cc9a1ff13a66016167d4437f7694e96d04e"
|
||||
SRCREV_meta ?= "9e3ab4e615b651c1b63d4f0cce71da79a3e89763"
|
||||
SRCREV_machine_qemuarm ?= "9b7cd001c33ea463bbb23fda6a79900ffc88c484"
|
||||
SRCREV_machine ?= "80849cd7ef3a77895f8651cec85648578bef9135"
|
||||
SRCREV_meta ?= "db8bfc3a107db2a059fb8efa442f7daa17e8d55c"
|
||||
|
||||
PV = "${LINUX_VERSION}+git${SRCPV}"
|
||||
|
||||
|
||||
@@ -12,16 +12,16 @@ KBRANCH_qemux86 ?= "v5.4/standard/base"
|
||||
KBRANCH_qemux86-64 ?= "v5.4/standard/base"
|
||||
KBRANCH_qemumips64 ?= "v5.4/standard/mti-malta64"
|
||||
|
||||
SRCREV_machine_qemuarm ?= "7a9ca83b483c096e6bd5e1b99cca7fe2fb79fd1a"
|
||||
SRCREV_machine_qemuarm64 ?= "d2ea3664c5872b3046a2aa970035de51e359922f"
|
||||
SRCREV_machine_qemumips ?= "118685bb5211a7740de6bd419c68eb34728f8770"
|
||||
SRCREV_machine_qemuppc ?= "7e8785640416d3c6382f91a3f88e0eca14f0a8b5"
|
||||
SRCREV_machine_qemuriscv64 ?= "d54d61f9e363806a987c9ab01df0e66a31d4ead5"
|
||||
SRCREV_machine_qemux86 ?= "d54d61f9e363806a987c9ab01df0e66a31d4ead5"
|
||||
SRCREV_machine_qemux86-64 ?= "d54d61f9e363806a987c9ab01df0e66a31d4ead5"
|
||||
SRCREV_machine_qemumips64 ?= "bd5e23a14522aa81e0f0ee37f976edd108669eb5"
|
||||
SRCREV_machine ?= "d54d61f9e363806a987c9ab01df0e66a31d4ead5"
|
||||
SRCREV_meta ?= "9e3ab4e615b651c1b63d4f0cce71da79a3e89763"
|
||||
SRCREV_machine_qemuarm ?= "414c50525aea1ec953cca6d050d5c23db04de269"
|
||||
SRCREV_machine_qemuarm64 ?= "ba5e3380aa8a3789907c031beac2ce81d1eb5d50"
|
||||
SRCREV_machine_qemumips ?= "177841cfef0bd71b7b4f0e2e8e2ea3100ee4ea7a"
|
||||
SRCREV_machine_qemuppc ?= "c3b4b69caef59344d4a59a2327f9f0130db9ccbe"
|
||||
SRCREV_machine_qemuriscv64 ?= "76404f1ae59698b6a446dba29c885ca78c69c330"
|
||||
SRCREV_machine_qemux86 ?= "76404f1ae59698b6a446dba29c885ca78c69c330"
|
||||
SRCREV_machine_qemux86-64 ?= "76404f1ae59698b6a446dba29c885ca78c69c330"
|
||||
SRCREV_machine_qemumips64 ?= "75a3c9aeedd5a8070079d96d0301a303ca3351a8"
|
||||
SRCREV_machine ?= "76404f1ae59698b6a446dba29c885ca78c69c330"
|
||||
SRCREV_meta ?= "db8bfc3a107db2a059fb8efa442f7daa17e8d55c"
|
||||
|
||||
# remap qemuarm to qemuarma15 for the 5.4 kernel
|
||||
# KMACHINE_qemuarm ?= "qemuarma15"
|
||||
@@ -30,7 +30,7 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRA
|
||||
git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-5.4;destsuffix=${KMETA}"
|
||||
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
|
||||
LINUX_VERSION ?= "5.4.153"
|
||||
LINUX_VERSION ?= "5.4.158"
|
||||
|
||||
DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}"
|
||||
DEPENDS += "openssl-native util-linux-native"
|
||||
|
||||
@@ -39,7 +39,9 @@ EXTRA_OEMAKE += "KERNELDIR='${STAGING_KERNEL_DIR}'"
|
||||
|
||||
do_install_append() {
|
||||
# Delete empty directories to avoid QA failures if no modules were built
|
||||
find ${D}/${nonarch_base_libdir} -depth -type d -empty -exec rmdir {} \;
|
||||
if [ -d ${D}/${nonarch_base_libdir} ]; then
|
||||
find ${D}/${nonarch_base_libdir} -depth -type d -empty -exec rmdir {} \;
|
||||
fi
|
||||
}
|
||||
|
||||
python do_package_prepend() {
|
||||
|
||||
@@ -19,7 +19,7 @@ DEPENDS += "bc-native bison-native"
|
||||
DEPENDS += "gmp-native"
|
||||
|
||||
EXTRA_OEMAKE = " HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}" HOSTCPP="${BUILD_CPP}""
|
||||
EXTRA_OEMAKE += " HOSTCXX="${BUILD_CXX} ${BUILD_CXXFLAGS} ${BUILD_LDFLAGS}""
|
||||
EXTRA_OEMAKE += " HOSTCXX="${BUILD_CXX} ${BUILD_CXXFLAGS} ${BUILD_LDFLAGS}" CROSS_COMPILE=${TARGET_PREFIX}"
|
||||
|
||||
# Build some host tools under work-shared. CC, LD, and AR are probably
|
||||
# not used, but this is the historical way of invoking "make scripts".
|
||||
|
||||
27
meta/recipes-support/gmp/gmp/cve-2021-43618.patch
Normal file
27
meta/recipes-support/gmp/gmp/cve-2021-43618.patch
Normal file
@@ -0,0 +1,27 @@
|
||||
CVE: CVE-2021-43618
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
||||
|
||||
# HG changeset patch
|
||||
# User Marco Bodrato <bodrato@mail.dm.unipi.it>
|
||||
# Date 1634836009 -7200
|
||||
# Node ID 561a9c25298e17bb01896801ff353546c6923dbd
|
||||
# Parent e1fd9db13b475209a864577237ea4b9105b3e96e
|
||||
mpz/inp_raw.c: Avoid bit size overflows
|
||||
|
||||
diff -r e1fd9db13b47 -r 561a9c25298e mpz/inp_raw.c
|
||||
--- a/mpz/inp_raw.c Tue Dec 22 23:49:51 2020 +0100
|
||||
+++ b/mpz/inp_raw.c Thu Oct 21 19:06:49 2021 +0200
|
||||
@@ -88,8 +88,11 @@
|
||||
|
||||
abs_csize = ABS (csize);
|
||||
|
||||
+ if (UNLIKELY (abs_csize > ~(mp_bitcnt_t) 0 / 8))
|
||||
+ return 0; /* Bit size overflows */
|
||||
+
|
||||
/* round up to a multiple of limbs */
|
||||
- abs_xsize = BITS_TO_LIMBS (abs_csize*8);
|
||||
+ abs_xsize = BITS_TO_LIMBS ((mp_bitcnt_t) abs_csize * 8);
|
||||
|
||||
if (abs_xsize != 0)
|
||||
{
|
||||
@@ -12,6 +12,7 @@ SRC_URI = "https://gmplib.org/download/${BPN}/${BP}${REVISION}.tar.bz2 \
|
||||
file://use-includedir.patch \
|
||||
file://0001-Append-the-user-provided-flags-to-the-auto-detected-.patch \
|
||||
file://0001-confiure.ac-Believe-the-cflags-from-environment.patch \
|
||||
file://cve-2021-43618.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "c24161e0dd44cae78cd5f67193492a21"
|
||||
SRC_URI[sha256sum] = "f51c99cb114deb21a60075ffb494c1a210eb9d7cb729ed042ddb7de9534451ea"
|
||||
|
||||
@@ -1,109 +1,77 @@
|
||||
From 707c3c5c511ee70ad0e39ec613471f665305fbea Mon Sep 17 00:00:00 2001
|
||||
From e8b7f10be275bcedb5fc05ed4837a89bfd605c61 Mon Sep 17 00:00:00 2001
|
||||
From: NIIBE Yutaka <gniibe@fsij.org>
|
||||
Date: Fri, 21 May 2021 11:15:07 +0900
|
||||
Subject: [PATCH] cipher: Fix ElGamal encryption for other implementations.
|
||||
Date: Tue, 13 Apr 2021 10:00:00 +0900
|
||||
Subject: [PATCH] cipher: Hardening ElGamal by introducing exponent blinding
|
||||
too.
|
||||
|
||||
* cipher/elgamal.c (gen_k): Remove support of smaller K.
|
||||
(do_encrypt): Never use smaller K.
|
||||
(sign): Folllow the change of gen_k.
|
||||
* cipher/elgamal.c (do_encrypt): Also do exponent blinding.
|
||||
|
||||
--
|
||||
|
||||
Cherry-pick master commit of:
|
||||
632d80ef30e13de6926d503aa697f92b5dbfbc5e
|
||||
Base blinding had been introduced with USE_BLINDING. This patch add
|
||||
exponent blinding as well to mitigate side-channel attack on mpi_powm.
|
||||
|
||||
This change basically reverts encryption changes in two commits:
|
||||
|
||||
74386120dad6b3da62db37f7044267c8ef34689b
|
||||
78531373a342aeb847950f404343a05e36022065
|
||||
|
||||
Use of smaller K for ephemeral key in ElGamal encryption is only good,
|
||||
when we can guarantee that recipient's key is generated by our
|
||||
implementation (or compatible).
|
||||
|
||||
For detail, please see:
|
||||
|
||||
Luca De Feo, Bertram Poettering, Alessandro Sorniotti,
|
||||
"On the (in)security of ElGamal in OpenPGP";
|
||||
in the proceedings of CCS'2021.
|
||||
|
||||
CVE-id: CVE-2021-33560
|
||||
GnuPG-bug-id: 5328
|
||||
Suggested-by: Luca De Feo, Bertram Poettering, Alessandro Sorniotti
|
||||
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
|
||||
|
||||
Upstream-Status: Backport
|
||||
CVE: CVE-2021-33560
|
||||
Signed-off-by: Armin Kuster <akuster@mvista.com>
|
||||
Signed-off-by: Marta Rybczynska <marta.rybczynska@huawei.com>
|
||||
---
|
||||
cipher/elgamal.c | 24 ++++++------------------
|
||||
1 file changed, 6 insertions(+), 18 deletions(-)
|
||||
cipher/elgamal.c | 20 +++++++++++++++++---
|
||||
1 file changed, 17 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/cipher/elgamal.c b/cipher/elgamal.c
|
||||
index 4eb52d62..ae7a631e 100644
|
||||
index 4eb52d62..9835122f 100644
|
||||
--- a/cipher/elgamal.c
|
||||
+++ b/cipher/elgamal.c
|
||||
@@ -66,7 +66,7 @@ static const char *elg_names[] =
|
||||
|
||||
|
||||
static int test_keys (ELG_secret_key *sk, unsigned int nbits, int nodie);
|
||||
-static gcry_mpi_t gen_k (gcry_mpi_t p, int small_k);
|
||||
+static gcry_mpi_t gen_k (gcry_mpi_t p);
|
||||
static gcry_err_code_t generate (ELG_secret_key *sk, unsigned nbits,
|
||||
gcry_mpi_t **factors);
|
||||
static int check_secret_key (ELG_secret_key *sk);
|
||||
@@ -189,11 +189,10 @@ test_keys ( ELG_secret_key *sk, unsigned int nbits, int nodie )
|
||||
|
||||
/****************
|
||||
* Generate a random secret exponent k from prime p, so that k is
|
||||
- * relatively prime to p-1. With SMALL_K set, k will be selected for
|
||||
- * better encryption performance - this must never be used signing!
|
||||
+ * relatively prime to p-1.
|
||||
*/
|
||||
static gcry_mpi_t
|
||||
-gen_k( gcry_mpi_t p, int small_k )
|
||||
+gen_k( gcry_mpi_t p )
|
||||
@@ -522,8 +522,9 @@ do_encrypt(gcry_mpi_t a, gcry_mpi_t b, gcry_mpi_t input, ELG_public_key *pkey )
|
||||
static void
|
||||
decrypt (gcry_mpi_t output, gcry_mpi_t a, gcry_mpi_t b, ELG_secret_key *skey )
|
||||
{
|
||||
gcry_mpi_t k = mpi_alloc_secure( 0 );
|
||||
gcry_mpi_t temp = mpi_alloc( mpi_get_nlimbs(p) );
|
||||
@@ -202,18 +201,7 @@ gen_k( gcry_mpi_t p, int small_k )
|
||||
unsigned int nbits, nbytes;
|
||||
char *rndbuf = NULL;
|
||||
- gcry_mpi_t t1, t2, r;
|
||||
+ gcry_mpi_t t1, t2, r, r1, h;
|
||||
unsigned int nbits = mpi_get_nbits (skey->p);
|
||||
+ gcry_mpi_t x_blind;
|
||||
|
||||
- if (small_k)
|
||||
- {
|
||||
- /* Using a k much lesser than p is sufficient for encryption and
|
||||
- * it greatly improves the encryption performance. We use
|
||||
- * Wiener's table and add a large safety margin. */
|
||||
- nbits = wiener_map( orig_nbits ) * 3 / 2;
|
||||
- if( nbits >= orig_nbits )
|
||||
- BUG();
|
||||
- }
|
||||
- else
|
||||
- nbits = orig_nbits;
|
||||
-
|
||||
+ nbits = orig_nbits;
|
||||
mpi_normalize (a);
|
||||
mpi_normalize (b);
|
||||
@@ -534,20 +535,33 @@ decrypt (gcry_mpi_t output, gcry_mpi_t a, gcry_mpi_t b, ELG_secret_key *skey )
|
||||
|
||||
nbytes = (nbits+7)/8;
|
||||
if( DBG_CIPHER )
|
||||
@@ -492,7 +480,7 @@ do_encrypt(gcry_mpi_t a, gcry_mpi_t b, gcry_mpi_t input, ELG_public_key *pkey )
|
||||
* error code.
|
||||
*/
|
||||
t2 = mpi_snew (nbits);
|
||||
r = mpi_new (nbits);
|
||||
+ r1 = mpi_new (nbits);
|
||||
+ h = mpi_new (nbits);
|
||||
+ x_blind = mpi_snew (nbits);
|
||||
|
||||
- k = gen_k( pkey->p, 1 );
|
||||
+ k = gen_k( pkey->p );
|
||||
mpi_powm (a, pkey->g, k, pkey->p);
|
||||
/* We need a random number of about the prime size. The random
|
||||
number merely needs to be unpredictable; thus we use level 0. */
|
||||
_gcry_mpi_randomize (r, nbits, GCRY_WEAK_RANDOM);
|
||||
|
||||
+ /* Also, exponent blinding: x_blind = x + (p-1)*r1 */
|
||||
+ _gcry_mpi_randomize (r1, nbits, GCRY_WEAK_RANDOM);
|
||||
+ mpi_set_highbit (r1, nbits - 1);
|
||||
+ mpi_sub_ui (h, skey->p, 1);
|
||||
+ mpi_mul (x_blind, h, r1);
|
||||
+ mpi_add (x_blind, skey->x, x_blind);
|
||||
+
|
||||
/* t1 = r^x mod p */
|
||||
- mpi_powm (t1, r, skey->x, skey->p);
|
||||
+ mpi_powm (t1, r, x_blind, skey->p);
|
||||
/* t2 = (a * r)^-x mod p */
|
||||
mpi_mulm (t2, a, r, skey->p);
|
||||
- mpi_powm (t2, t2, skey->x, skey->p);
|
||||
+ mpi_powm (t2, t2, x_blind, skey->p);
|
||||
mpi_invm (t2, t2, skey->p);
|
||||
/* t1 = (t1 * t2) mod p*/
|
||||
mpi_mulm (t1, t1, t2, skey->p);
|
||||
|
||||
+ mpi_free (x_blind);
|
||||
+ mpi_free (h);
|
||||
+ mpi_free (r1);
|
||||
mpi_free (r);
|
||||
mpi_free (t2);
|
||||
|
||||
/* b = (y^k * input) mod p
|
||||
@@ -594,7 +582,7 @@ sign(gcry_mpi_t a, gcry_mpi_t b, gcry_mpi_t input, ELG_secret_key *skey )
|
||||
*
|
||||
*/
|
||||
mpi_sub_ui(p_1, p_1, 1);
|
||||
- k = gen_k( skey->p, 0 /* no small K ! */ );
|
||||
+ k = gen_k( skey->p );
|
||||
mpi_powm( a, skey->g, k, skey->p );
|
||||
mpi_mul(t, skey->x, a );
|
||||
mpi_subm(t, input, t, p_1 );
|
||||
--
|
||||
2.30.2
|
||||
2.11.0
|
||||
|
||||
|
||||
109
meta/recipes-support/libgcrypt/files/CVE-2021-40528.patch
Normal file
109
meta/recipes-support/libgcrypt/files/CVE-2021-40528.patch
Normal file
@@ -0,0 +1,109 @@
|
||||
From 707c3c5c511ee70ad0e39ec613471f665305fbea Mon Sep 17 00:00:00 2001
|
||||
From: NIIBE Yutaka <gniibe@fsij.org>
|
||||
Date: Fri, 21 May 2021 11:15:07 +0900
|
||||
Subject: [PATCH] cipher: Fix ElGamal encryption for other implementations.
|
||||
|
||||
* cipher/elgamal.c (gen_k): Remove support of smaller K.
|
||||
(do_encrypt): Never use smaller K.
|
||||
(sign): Folllow the change of gen_k.
|
||||
|
||||
--
|
||||
|
||||
Cherry-pick master commit of:
|
||||
632d80ef30e13de6926d503aa697f92b5dbfbc5e
|
||||
|
||||
This change basically reverts encryption changes in two commits:
|
||||
|
||||
74386120dad6b3da62db37f7044267c8ef34689b
|
||||
78531373a342aeb847950f404343a05e36022065
|
||||
|
||||
Use of smaller K for ephemeral key in ElGamal encryption is only good,
|
||||
when we can guarantee that recipient's key is generated by our
|
||||
implementation (or compatible).
|
||||
|
||||
For detail, please see:
|
||||
|
||||
Luca De Feo, Bertram Poettering, Alessandro Sorniotti,
|
||||
"On the (in)security of ElGamal in OpenPGP";
|
||||
in the proceedings of CCS'2021.
|
||||
|
||||
CVE-id: CVE-2021-33560
|
||||
GnuPG-bug-id: 5328
|
||||
Suggested-by: Luca De Feo, Bertram Poettering, Alessandro Sorniotti
|
||||
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
|
||||
|
||||
Upstream-Status: Backport
|
||||
CVE: CVE-2021-40528
|
||||
Signed-off-by: Armin Kuster <akuster@mvista.com>
|
||||
---
|
||||
cipher/elgamal.c | 24 ++++++------------------
|
||||
1 file changed, 6 insertions(+), 18 deletions(-)
|
||||
|
||||
diff --git a/cipher/elgamal.c b/cipher/elgamal.c
|
||||
index 4eb52d62..ae7a631e 100644
|
||||
--- a/cipher/elgamal.c
|
||||
+++ b/cipher/elgamal.c
|
||||
@@ -66,7 +66,7 @@ static const char *elg_names[] =
|
||||
|
||||
|
||||
static int test_keys (ELG_secret_key *sk, unsigned int nbits, int nodie);
|
||||
-static gcry_mpi_t gen_k (gcry_mpi_t p, int small_k);
|
||||
+static gcry_mpi_t gen_k (gcry_mpi_t p);
|
||||
static gcry_err_code_t generate (ELG_secret_key *sk, unsigned nbits,
|
||||
gcry_mpi_t **factors);
|
||||
static int check_secret_key (ELG_secret_key *sk);
|
||||
@@ -189,11 +189,10 @@ test_keys ( ELG_secret_key *sk, unsigned int nbits, int nodie )
|
||||
|
||||
/****************
|
||||
* Generate a random secret exponent k from prime p, so that k is
|
||||
- * relatively prime to p-1. With SMALL_K set, k will be selected for
|
||||
- * better encryption performance - this must never be used signing!
|
||||
+ * relatively prime to p-1.
|
||||
*/
|
||||
static gcry_mpi_t
|
||||
-gen_k( gcry_mpi_t p, int small_k )
|
||||
+gen_k( gcry_mpi_t p )
|
||||
{
|
||||
gcry_mpi_t k = mpi_alloc_secure( 0 );
|
||||
gcry_mpi_t temp = mpi_alloc( mpi_get_nlimbs(p) );
|
||||
@@ -202,18 +201,7 @@ gen_k( gcry_mpi_t p, int small_k )
|
||||
unsigned int nbits, nbytes;
|
||||
char *rndbuf = NULL;
|
||||
|
||||
- if (small_k)
|
||||
- {
|
||||
- /* Using a k much lesser than p is sufficient for encryption and
|
||||
- * it greatly improves the encryption performance. We use
|
||||
- * Wiener's table and add a large safety margin. */
|
||||
- nbits = wiener_map( orig_nbits ) * 3 / 2;
|
||||
- if( nbits >= orig_nbits )
|
||||
- BUG();
|
||||
- }
|
||||
- else
|
||||
- nbits = orig_nbits;
|
||||
-
|
||||
+ nbits = orig_nbits;
|
||||
|
||||
nbytes = (nbits+7)/8;
|
||||
if( DBG_CIPHER )
|
||||
@@ -492,7 +480,7 @@ do_encrypt(gcry_mpi_t a, gcry_mpi_t b, gcry_mpi_t input, ELG_public_key *pkey )
|
||||
* error code.
|
||||
*/
|
||||
|
||||
- k = gen_k( pkey->p, 1 );
|
||||
+ k = gen_k( pkey->p );
|
||||
mpi_powm (a, pkey->g, k, pkey->p);
|
||||
|
||||
/* b = (y^k * input) mod p
|
||||
@@ -594,7 +582,7 @@ sign(gcry_mpi_t a, gcry_mpi_t b, gcry_mpi_t input, ELG_secret_key *skey )
|
||||
*
|
||||
*/
|
||||
mpi_sub_ui(p_1, p_1, 1);
|
||||
- k = gen_k( skey->p, 0 /* no small K ! */ );
|
||||
+ k = gen_k( skey->p );
|
||||
mpi_powm( a, skey->g, k, skey->p );
|
||||
mpi_mul(t, skey->x, a );
|
||||
mpi_subm(t, input, t, p_1 );
|
||||
--
|
||||
2.30.2
|
||||
|
||||
@@ -29,6 +29,7 @@ SRC_URI = "${GNUPG_MIRROR}/libgcrypt/libgcrypt-${PV}.tar.bz2 \
|
||||
file://0003-GCM-move-look-up-table-to-.data-section-and-unshare-.patch \
|
||||
file://determinism.patch \
|
||||
file://CVE-2021-33560.patch \
|
||||
file://CVE-2021-40528.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "348cc4601ca34307fc6cd6c945467743"
|
||||
SRC_URI[sha256sum] = "3b4a2a94cb637eff5bdebbcaf46f4d95c4f25206f459809339cdada0eb577ac3"
|
||||
|
||||
@@ -10,7 +10,7 @@ SECTION = "devel"
|
||||
LICENSE = "BSD-3-Clause"
|
||||
LIC_FILES_CHKSUM = "file://LICENCE;md5=b1588d3bb4cb0e1f5a597d908f8c5b37"
|
||||
|
||||
SRC_URI = "https://ftp.pcre.org/pub/pcre/pcre2-${PV}.tar.bz2 \
|
||||
SRC_URI = "https://github.com/PhilipHazel/pcre2/releases/download/pcre2-${PV}/pcre2-${PV}.tar.bz2 \
|
||||
file://pcre-cross.patch \
|
||||
"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ HOMEPAGE = "http://www.pcre.org"
|
||||
SECTION = "devel"
|
||||
LICENSE = "BSD-3-Clause"
|
||||
LIC_FILES_CHKSUM = "file://LICENCE;md5=3bb381a66a5385b246d4877922e7511e"
|
||||
SRC_URI = "https://ftp.pcre.org/pub/pcre/pcre-${PV}.tar.bz2 \
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/pcre/pcre-${PV}.tar.bz2 \
|
||||
file://run-ptest \
|
||||
file://Makefile \
|
||||
"
|
||||
|
||||
@@ -0,0 +1,420 @@
|
||||
From 51112447b316813ad1ae50ea66feca4eb755a424 Mon Sep 17 00:00:00 2001
|
||||
From: Yichao Yu <yyc1992@gmail.com>
|
||||
Date: Tue, 31 Mar 2020 00:43:32 -0400
|
||||
Subject: [PATCH] Fix compilation with -fno-common.
|
||||
|
||||
[Khem Raj]
|
||||
Making all other archs consistent with IA64 which should not have this problem.
|
||||
Also move the FIXME to the correct place.
|
||||
|
||||
Also add some minimum comments about this...
|
||||
|
||||
[Philippe Coval]
|
||||
|
||||
Patch ported to v1.3-stable branch,
|
||||
patch to be used used in openembedded-core dunfell branch (on v1.3.1)
|
||||
for oniro project.
|
||||
|
||||
Upstream-Status: Backport [https://github.com/libunwind/libunwind/pull/166]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
Thanks-to: Yichao Yu <yyc1992@gmail.com>
|
||||
Origin: https://github.com/libunwind/libunwind/commit/29e17d8d2ccbca07c423e3089a6d5ae8a1c9cb6e
|
||||
Relate-to: https://booting.oniroproject.org/distro/oniro/-/issues/191
|
||||
Forwarded: https://github.com/libunwind/libunwind/pull/312
|
||||
Last-Update: 2021-11-25
|
||||
Signed-off-by: Philippe Coval <philippe.coval@huawei.com>
|
||||
---
|
||||
src/aarch64/Ginit.c | 15 +++++++--------
|
||||
src/arm/Ginit.c | 15 +++++++--------
|
||||
src/coredump/_UPT_get_dyn_info_list_addr.c | 5 +++++
|
||||
src/hppa/Ginit.c | 15 +++++++--------
|
||||
src/ia64/Ginit.c | 1 +
|
||||
src/mi/Gfind_dynamic_proc_info.c | 1 +
|
||||
src/mips/Ginit.c | 15 +++++++--------
|
||||
src/ppc32/Ginit.c | 11 +++++++----
|
||||
src/ppc64/Ginit.c | 11 +++++++----
|
||||
src/ptrace/_UPT_get_dyn_info_list_addr.c | 5 +++++
|
||||
src/sh/Ginit.c | 15 +++++++--------
|
||||
src/tilegx/Ginit.c | 15 +++++++--------
|
||||
src/x86/Ginit.c | 15 +++++++--------
|
||||
src/x86_64/Ginit.c | 15 +++++++--------
|
||||
14 files changed, 82 insertions(+), 72 deletions(-)
|
||||
|
||||
diff --git a/src/aarch64/Ginit.c b/src/aarch64/Ginit.c
|
||||
index 9c4eae82..cb954b15 100644
|
||||
--- a/src/aarch64/Ginit.c
|
||||
+++ b/src/aarch64/Ginit.c
|
||||
@@ -61,13 +61,6 @@ tdep_uc_addr (ucontext_t *uc, int reg)
|
||||
|
||||
# endif /* UNW_LOCAL_ONLY */
|
||||
|
||||
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
|
||||
-
|
||||
-/* XXX fix me: there is currently no way to locate the dyn-info list
|
||||
- by a remote unwinder. On ia64, this is done via a special
|
||||
- unwind-table entry. Perhaps something similar can be done with
|
||||
- DWARF2 unwind info. */
|
||||
-
|
||||
static void
|
||||
put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
|
||||
{
|
||||
@@ -78,7 +71,13 @@ static int
|
||||
get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
|
||||
void *arg)
|
||||
{
|
||||
- *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
|
||||
+#ifndef UNW_LOCAL_ONLY
|
||||
+# pragma weak _U_dyn_info_list_addr
|
||||
+ if (!_U_dyn_info_list_addr)
|
||||
+ return -UNW_ENOINFO;
|
||||
+#endif
|
||||
+ // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
|
||||
+ *dyn_info_list_addr = _U_dyn_info_list_addr ();
|
||||
return 0;
|
||||
}
|
||||
|
||||
diff --git a/src/arm/Ginit.c b/src/arm/Ginit.c
|
||||
index 2720d063..0bac0d72 100644
|
||||
--- a/src/arm/Ginit.c
|
||||
+++ b/src/arm/Ginit.c
|
||||
@@ -57,18 +57,17 @@ tdep_uc_addr (unw_tdep_context_t *uc, int reg)
|
||||
|
||||
# endif /* UNW_LOCAL_ONLY */
|
||||
|
||||
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
|
||||
-
|
||||
-/* XXX fix me: there is currently no way to locate the dyn-info list
|
||||
- by a remote unwinder. On ia64, this is done via a special
|
||||
- unwind-table entry. Perhaps something similar can be done with
|
||||
- DWARF2 unwind info. */
|
||||
-
|
||||
static int
|
||||
get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
|
||||
void *arg)
|
||||
{
|
||||
- *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
|
||||
+#ifndef UNW_LOCAL_ONLY
|
||||
+# pragma weak _U_dyn_info_list_addr
|
||||
+ if (!_U_dyn_info_list_addr)
|
||||
+ return -UNW_ENOINFO;
|
||||
+#endif
|
||||
+ // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
|
||||
+ *dyn_info_list_addr = _U_dyn_info_list_addr ();
|
||||
return 0;
|
||||
}
|
||||
|
||||
diff --git a/src/coredump/_UPT_get_dyn_info_list_addr.c b/src/coredump/_UPT_get_dyn_info_list_addr.c
|
||||
index 0d119055..739ed056 100644
|
||||
--- a/src/coredump/_UPT_get_dyn_info_list_addr.c
|
||||
+++ b/src/coredump/_UPT_get_dyn_info_list_addr.c
|
||||
@@ -74,6 +74,11 @@ get_list_addr (unw_addr_space_t as, unw_word_t *dil_addr, void *arg,
|
||||
|
||||
#else
|
||||
|
||||
+/* XXX fix me: there is currently no way to locate the dyn-info list
|
||||
+ by a remote unwinder. On ia64, this is done via a special
|
||||
+ unwind-table entry. Perhaps something similar can be done with
|
||||
+ DWARF2 unwind info. */
|
||||
+
|
||||
static inline int
|
||||
get_list_addr (unw_addr_space_t as, unw_word_t *dil_addr, void *arg,
|
||||
int *countp)
|
||||
diff --git a/src/hppa/Ginit.c b/src/hppa/Ginit.c
|
||||
index 461e4b93..265455a6 100644
|
||||
--- a/src/hppa/Ginit.c
|
||||
+++ b/src/hppa/Ginit.c
|
||||
@@ -64,13 +64,6 @@ _Uhppa_uc_addr (ucontext_t *uc, int reg)
|
||||
|
||||
# endif /* UNW_LOCAL_ONLY */
|
||||
|
||||
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
|
||||
-
|
||||
-/* XXX fix me: there is currently no way to locate the dyn-info list
|
||||
- by a remote unwinder. On ia64, this is done via a special
|
||||
- unwind-table entry. Perhaps something similar can be done with
|
||||
- DWARF2 unwind info. */
|
||||
-
|
||||
static void
|
||||
put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
|
||||
{
|
||||
@@ -81,7 +74,13 @@ static int
|
||||
get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
|
||||
void *arg)
|
||||
{
|
||||
- *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
|
||||
+#ifndef UNW_LOCAL_ONLY
|
||||
+# pragma weak _U_dyn_info_list_addr
|
||||
+ if (!_U_dyn_info_list_addr)
|
||||
+ return -UNW_ENOINFO;
|
||||
+#endif
|
||||
+ // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
|
||||
+ *dyn_info_list_addr = _U_dyn_info_list_addr ();
|
||||
return 0;
|
||||
}
|
||||
|
||||
diff --git a/src/ia64/Ginit.c b/src/ia64/Ginit.c
|
||||
index b09a2ad5..8601bb3c 100644
|
||||
--- a/src/ia64/Ginit.c
|
||||
+++ b/src/ia64/Ginit.c
|
||||
@@ -68,6 +68,7 @@ get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
|
||||
if (!_U_dyn_info_list_addr)
|
||||
return -UNW_ENOINFO;
|
||||
#endif
|
||||
+ // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
|
||||
*dyn_info_list_addr = _U_dyn_info_list_addr ();
|
||||
return 0;
|
||||
}
|
||||
diff --git a/src/mi/Gfind_dynamic_proc_info.c b/src/mi/Gfind_dynamic_proc_info.c
|
||||
index 98d35012..2e7c62e5 100644
|
||||
--- a/src/mi/Gfind_dynamic_proc_info.c
|
||||
+++ b/src/mi/Gfind_dynamic_proc_info.c
|
||||
@@ -49,6 +49,7 @@ local_find_proc_info (unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi,
|
||||
return -UNW_ENOINFO;
|
||||
#endif
|
||||
|
||||
+ // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
|
||||
list = (unw_dyn_info_list_t *) (uintptr_t) _U_dyn_info_list_addr ();
|
||||
for (di = list->first; di; di = di->next)
|
||||
if (ip >= di->start_ip && ip < di->end_ip)
|
||||
diff --git a/src/mips/Ginit.c b/src/mips/Ginit.c
|
||||
index 3df170c7..bf7a8f5a 100644
|
||||
--- a/src/mips/Ginit.c
|
||||
+++ b/src/mips/Ginit.c
|
||||
@@ -69,13 +69,6 @@ tdep_uc_addr (ucontext_t *uc, int reg)
|
||||
|
||||
# endif /* UNW_LOCAL_ONLY */
|
||||
|
||||
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
|
||||
-
|
||||
-/* XXX fix me: there is currently no way to locate the dyn-info list
|
||||
- by a remote unwinder. On ia64, this is done via a special
|
||||
- unwind-table entry. Perhaps something similar can be done with
|
||||
- DWARF2 unwind info. */
|
||||
-
|
||||
static void
|
||||
put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
|
||||
{
|
||||
@@ -86,7 +79,13 @@ static int
|
||||
get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
|
||||
void *arg)
|
||||
{
|
||||
- *dyn_info_list_addr = (unw_word_t) (intptr_t) &_U_dyn_info_list;
|
||||
+#ifndef UNW_LOCAL_ONLY
|
||||
+# pragma weak _U_dyn_info_list_addr
|
||||
+ if (!_U_dyn_info_list_addr)
|
||||
+ return -UNW_ENOINFO;
|
||||
+#endif
|
||||
+ // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
|
||||
+ *dyn_info_list_addr = _U_dyn_info_list_addr ();
|
||||
return 0;
|
||||
}
|
||||
|
||||
diff --git a/src/ppc32/Ginit.c b/src/ppc32/Ginit.c
|
||||
index ba302448..7b454558 100644
|
||||
--- a/src/ppc32/Ginit.c
|
||||
+++ b/src/ppc32/Ginit.c
|
||||
@@ -91,9 +91,6 @@ tdep_uc_addr (ucontext_t *uc, int reg)
|
||||
|
||||
# endif /* UNW_LOCAL_ONLY */
|
||||
|
||||
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
|
||||
-
|
||||
-
|
||||
static void
|
||||
put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
|
||||
{
|
||||
@@ -104,7 +101,13 @@ static int
|
||||
get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
|
||||
void *arg)
|
||||
{
|
||||
- *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
|
||||
+#ifndef UNW_LOCAL_ONLY
|
||||
+# pragma weak _U_dyn_info_list_addr
|
||||
+ if (!_U_dyn_info_list_addr)
|
||||
+ return -UNW_ENOINFO;
|
||||
+#endif
|
||||
+ // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
|
||||
+ *dyn_info_list_addr = _U_dyn_info_list_addr ();
|
||||
return 0;
|
||||
}
|
||||
|
||||
diff --git a/src/ppc64/Ginit.c b/src/ppc64/Ginit.c
|
||||
index 4c88cd6e..7bfb395a 100644
|
||||
--- a/src/ppc64/Ginit.c
|
||||
+++ b/src/ppc64/Ginit.c
|
||||
@@ -95,9 +95,6 @@ tdep_uc_addr (ucontext_t *uc, int reg)
|
||||
|
||||
# endif /* UNW_LOCAL_ONLY */
|
||||
|
||||
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
|
||||
-
|
||||
-
|
||||
static void
|
||||
put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
|
||||
{
|
||||
@@ -108,7 +105,13 @@ static int
|
||||
get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
|
||||
void *arg)
|
||||
{
|
||||
- *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
|
||||
+#ifndef UNW_LOCAL_ONLY
|
||||
+# pragma weak _U_dyn_info_list_addr
|
||||
+ if (!_U_dyn_info_list_addr)
|
||||
+ return -UNW_ENOINFO;
|
||||
+#endif
|
||||
+ // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
|
||||
+ *dyn_info_list_addr = _U_dyn_info_list_addr ();
|
||||
return 0;
|
||||
}
|
||||
|
||||
diff --git a/src/ptrace/_UPT_get_dyn_info_list_addr.c b/src/ptrace/_UPT_get_dyn_info_list_addr.c
|
||||
index cc5ed044..16671d45 100644
|
||||
--- a/src/ptrace/_UPT_get_dyn_info_list_addr.c
|
||||
+++ b/src/ptrace/_UPT_get_dyn_info_list_addr.c
|
||||
@@ -71,6 +71,11 @@ get_list_addr (unw_addr_space_t as, unw_word_t *dil_addr, void *arg,
|
||||
|
||||
#else
|
||||
|
||||
+/* XXX fix me: there is currently no way to locate the dyn-info list
|
||||
+ by a remote unwinder. On ia64, this is done via a special
|
||||
+ unwind-table entry. Perhaps something similar can be done with
|
||||
+ DWARF2 unwind info. */
|
||||
+
|
||||
static inline int
|
||||
get_list_addr (unw_addr_space_t as, unw_word_t *dil_addr, void *arg,
|
||||
int *countp)
|
||||
diff --git a/src/sh/Ginit.c b/src/sh/Ginit.c
|
||||
index 52988a72..9fe96d2b 100644
|
||||
--- a/src/sh/Ginit.c
|
||||
+++ b/src/sh/Ginit.c
|
||||
@@ -58,13 +58,6 @@ tdep_uc_addr (ucontext_t *uc, int reg)
|
||||
|
||||
# endif /* UNW_LOCAL_ONLY */
|
||||
|
||||
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
|
||||
-
|
||||
-/* XXX fix me: there is currently no way to locate the dyn-info list
|
||||
- by a remote unwinder. On ia64, this is done via a special
|
||||
- unwind-table entry. Perhaps something similar can be done with
|
||||
- DWARF2 unwind info. */
|
||||
-
|
||||
static void
|
||||
put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
|
||||
{
|
||||
@@ -75,7 +68,13 @@ static int
|
||||
get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
|
||||
void *arg)
|
||||
{
|
||||
- *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
|
||||
+#ifndef UNW_LOCAL_ONLY
|
||||
+# pragma weak _U_dyn_info_list_addr
|
||||
+ if (!_U_dyn_info_list_addr)
|
||||
+ return -UNW_ENOINFO;
|
||||
+#endif
|
||||
+ // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
|
||||
+ *dyn_info_list_addr = _U_dyn_info_list_addr ();
|
||||
return 0;
|
||||
}
|
||||
|
||||
diff --git a/src/tilegx/Ginit.c b/src/tilegx/Ginit.c
|
||||
index 7564a558..925e6413 100644
|
||||
--- a/src/tilegx/Ginit.c
|
||||
+++ b/src/tilegx/Ginit.c
|
||||
@@ -64,13 +64,6 @@ tdep_uc_addr (ucontext_t *uc, int reg)
|
||||
|
||||
# endif /* UNW_LOCAL_ONLY */
|
||||
|
||||
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
|
||||
-
|
||||
-/* XXX fix me: there is currently no way to locate the dyn-info list
|
||||
- by a remote unwinder. On ia64, this is done via a special
|
||||
- unwind-table entry. Perhaps something similar can be done with
|
||||
- DWARF2 unwind info. */
|
||||
-
|
||||
static void
|
||||
put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
|
||||
{
|
||||
@@ -81,7 +74,13 @@ static int
|
||||
get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
|
||||
void *arg)
|
||||
{
|
||||
- *dyn_info_list_addr = (unw_word_t) (intptr_t) &_U_dyn_info_list;
|
||||
+#ifndef UNW_LOCAL_ONLY
|
||||
+# pragma weak _U_dyn_info_list_addr
|
||||
+ if (!_U_dyn_info_list_addr)
|
||||
+ return -UNW_ENOINFO;
|
||||
+#endif
|
||||
+ // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
|
||||
+ *dyn_info_list_addr = _U_dyn_info_list_addr ();
|
||||
return 0;
|
||||
}
|
||||
|
||||
diff --git a/src/x86/Ginit.c b/src/x86/Ginit.c
|
||||
index f6b8dc27..3cec74a2 100644
|
||||
--- a/src/x86/Ginit.c
|
||||
+++ b/src/x86/Ginit.c
|
||||
@@ -54,13 +54,6 @@ tdep_uc_addr (ucontext_t *uc, int reg)
|
||||
|
||||
# endif /* UNW_LOCAL_ONLY */
|
||||
|
||||
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
|
||||
-
|
||||
-/* XXX fix me: there is currently no way to locate the dyn-info list
|
||||
- by a remote unwinder. On ia64, this is done via a special
|
||||
- unwind-table entry. Perhaps something similar can be done with
|
||||
- DWARF2 unwind info. */
|
||||
-
|
||||
static void
|
||||
put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
|
||||
{
|
||||
@@ -71,7 +64,13 @@ static int
|
||||
get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
|
||||
void *arg)
|
||||
{
|
||||
- *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
|
||||
+#ifndef UNW_LOCAL_ONLY
|
||||
+# pragma weak _U_dyn_info_list_addr
|
||||
+ if (!_U_dyn_info_list_addr)
|
||||
+ return -UNW_ENOINFO;
|
||||
+#endif
|
||||
+ // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
|
||||
+ *dyn_info_list_addr = _U_dyn_info_list_addr ();
|
||||
return 0;
|
||||
}
|
||||
|
||||
diff --git a/src/x86_64/Ginit.c b/src/x86_64/Ginit.c
|
||||
index b7e8e462..fe6bcc33 100644
|
||||
--- a/src/x86_64/Ginit.c
|
||||
+++ b/src/x86_64/Ginit.c
|
||||
@@ -49,13 +49,6 @@ static struct unw_addr_space local_addr_space;
|
||||
|
||||
unw_addr_space_t unw_local_addr_space = &local_addr_space;
|
||||
|
||||
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
|
||||
-
|
||||
-/* XXX fix me: there is currently no way to locate the dyn-info list
|
||||
- by a remote unwinder. On ia64, this is done via a special
|
||||
- unwind-table entry. Perhaps something similar can be done with
|
||||
- DWARF2 unwind info. */
|
||||
-
|
||||
static void
|
||||
put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
|
||||
{
|
||||
@@ -66,7 +59,13 @@ static int
|
||||
get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
|
||||
void *arg)
|
||||
{
|
||||
- *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
|
||||
+#ifndef UNW_LOCAL_ONLY
|
||||
+# pragma weak _U_dyn_info_list_addr
|
||||
+ if (!_U_dyn_info_list_addr)
|
||||
+ return -UNW_ENOINFO;
|
||||
+#endif
|
||||
+ // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
|
||||
+ *dyn_info_list_addr = _U_dyn_info_list_addr ();
|
||||
return 0;
|
||||
}
|
||||
|
||||
--
|
||||
2.32.0
|
||||
|
||||
@@ -7,6 +7,7 @@ SRC_URI = "http://download.savannah.nongnu.org/releases/libunwind/libunwind-${PV
|
||||
file://0004-Fix-build-on-mips-musl.patch \
|
||||
file://0005-ppc32-Consider-ucontext-mismatches-between-glibc-and.patch \
|
||||
file://0006-Fix-for-X32.patch \
|
||||
file://0001-Fix-compilation-with-fno-common.patch \
|
||||
"
|
||||
SRC_URI_append_libc-musl = " file://musl-header-conflict.patch"
|
||||
|
||||
|
||||
@@ -0,0 +1,62 @@
|
||||
CVE: CVE-2021-3927
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
||||
|
||||
From 93b427c6e729260d0700c3b2804ec153bc8284fa Mon Sep 17 00:00:00 2001
|
||||
From: Bram Moolenaar <Bram@vim.org>
|
||||
Date: Thu, 4 Nov 2021 15:10:11 +0000
|
||||
Subject: [PATCH] patch 8.2.3581: reading character past end of line
|
||||
|
||||
Problem: Reading character past end of line.
|
||||
Solution: Correct the cursor column.
|
||||
---
|
||||
src/ex_docmd.c | 1 +
|
||||
src/testdir/test_put.vim | 12 ++++++++++++
|
||||
src/version.c | 2 ++
|
||||
3 files changed, 15 insertions(+)
|
||||
|
||||
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
|
||||
index fde726477..59e245bee 100644
|
||||
--- a/src/ex_docmd.c
|
||||
+++ b/src/ex_docmd.c
|
||||
@@ -6905,6 +6905,7 @@ ex_put(exarg_T *eap)
|
||||
eap->forceit = TRUE;
|
||||
}
|
||||
curwin->w_cursor.lnum = eap->line2;
|
||||
+ check_cursor_col();
|
||||
do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
|
||||
PUT_LINE|PUT_CURSLINE);
|
||||
}
|
||||
diff --git a/src/testdir/test_put.vim b/src/testdir/test_put.vim
|
||||
index 225ebd1f3..922e5b269 100644
|
||||
--- a/src/testdir/test_put.vim
|
||||
+++ b/src/testdir/test_put.vim
|
||||
@@ -113,3 +113,15 @@ func Test_put_p_indent_visual()
|
||||
call assert_equal('select that text', getline(2))
|
||||
bwipe!
|
||||
endfunc
|
||||
+
|
||||
+func Test_put_above_first_line()
|
||||
+ new
|
||||
+ let @" = 'text'
|
||||
+ silent! normal 0o00
|
||||
+ 0put
|
||||
+ call assert_equal('text', getline(1))
|
||||
+ bwipe!
|
||||
+endfunc
|
||||
+
|
||||
+
|
||||
+" vim: shiftwidth=2 sts=2 expandtab
|
||||
diff --git a/src/version.c b/src/version.c
|
||||
index a9e8be0e7..df4ec9a47 100644
|
||||
--- a/src/version.c
|
||||
+++ b/src/version.c
|
||||
@@ -742,6 +742,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
+/**/
|
||||
+ 3581,
|
||||
/**/
|
||||
3564,
|
||||
/**/
|
||||
@@ -0,0 +1,83 @@
|
||||
CVE: CVE-2021-3796
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
||||
|
||||
From 1160e5f74b229336502fc376416f21108d36cfc2 Mon Sep 17 00:00:00 2001
|
||||
From: Bram Moolenaar <Bram@vim.org>
|
||||
Date: Sat, 11 Sep 2021 21:14:20 +0200
|
||||
Subject: [PATCH] patch 8.2.3428: using freed memory when replacing
|
||||
|
||||
Problem: Using freed memory when replacing. (Dhiraj Mishra)
|
||||
Solution: Get the line pointer after calling ins_copychar().
|
||||
---
|
||||
src/normal.c | 10 +++++++---
|
||||
src/testdir/test_edit.vim | 14 ++++++++++++++
|
||||
src/version.c | 2 ++
|
||||
3 files changed, 23 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/src/normal.c b/src/normal.c
|
||||
index c4963e621..d6333b948 100644
|
||||
--- a/src/normal.c
|
||||
+++ b/src/normal.c
|
||||
@@ -5009,19 +5009,23 @@ nv_replace(cmdarg_T *cap)
|
||||
{
|
||||
/*
|
||||
* Get ptr again, because u_save and/or showmatch() will have
|
||||
- * released the line. At the same time we let know that the
|
||||
- * line will be changed.
|
||||
+ * released the line. This may also happen in ins_copychar().
|
||||
+ * At the same time we let know that the line will be changed.
|
||||
*/
|
||||
- ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
|
||||
if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
|
||||
{
|
||||
int c = ins_copychar(curwin->w_cursor.lnum
|
||||
+ (cap->nchar == Ctrl_Y ? -1 : 1));
|
||||
+
|
||||
+ ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
|
||||
if (c != NUL)
|
||||
ptr[curwin->w_cursor.col] = c;
|
||||
}
|
||||
else
|
||||
+ {
|
||||
+ ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
|
||||
ptr[curwin->w_cursor.col] = cap->nchar;
|
||||
+ }
|
||||
if (p_sm && msg_silent == 0)
|
||||
showmatch(cap->nchar);
|
||||
++curwin->w_cursor.col;
|
||||
diff --git a/src/testdir/test_edit.vim b/src/testdir/test_edit.vim
|
||||
index 4e29e7fe1..f94e6c181 100644
|
||||
--- a/src/testdir/test_edit.vim
|
||||
+++ b/src/testdir/test_edit.vim
|
||||
@@ -1519,3 +1519,17 @@ func Test_edit_noesckeys()
|
||||
bwipe!
|
||||
set esckeys
|
||||
endfunc
|
||||
+
|
||||
+" Test for getting the character of the line below after "p"
|
||||
+func Test_edit_put_CTRL_E()
|
||||
+ set encoding=latin1
|
||||
+ new
|
||||
+ let @" = ''
|
||||
+ sil! norm orggRx
|
||||
+ sil! norm pr
|
||||
+ call assert_equal(['r', 'r'], getline(1, 2))
|
||||
+ bwipe!
|
||||
+ set encoding=utf-8
|
||||
+endfunc
|
||||
+
|
||||
+" vim: shiftwidth=2 sts=2 expandtab
|
||||
diff --git a/src/version.c b/src/version.c
|
||||
index 85bdfc601..1046993d6 100644
|
||||
--- a/src/version.c
|
||||
+++ b/src/version.c
|
||||
@@ -742,6 +742,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
+/**/
|
||||
+ 3428,
|
||||
/**/
|
||||
3409,
|
||||
/**/
|
||||
@@ -0,0 +1,63 @@
|
||||
CVE: CVE-2021-3928
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
||||
|
||||
From ade0f0481969f1453c60e7c8354b00dfe4238739 Mon Sep 17 00:00:00 2001
|
||||
From: Bram Moolenaar <Bram@vim.org>
|
||||
Date: Thu, 4 Nov 2021 15:46:05 +0000
|
||||
Subject: [PATCH] patch 8.2.3582: reading uninitialized memory when giving
|
||||
spell suggestions
|
||||
|
||||
Problem: Reading uninitialized memory when giving spell suggestions.
|
||||
Solution: Check that preword is not empty.
|
||||
---
|
||||
src/spellsuggest.c | 2 +-
|
||||
src/testdir/test_spell.vim | 8 ++++++++
|
||||
src/version.c | 2 ++
|
||||
3 files changed, 11 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/spellsuggest.c b/src/spellsuggest.c
|
||||
index 9d6df7930..8615d5280 100644
|
||||
--- a/src/spellsuggest.c
|
||||
+++ b/src/spellsuggest.c
|
||||
@@ -1600,7 +1600,7 @@ suggest_trie_walk(
|
||||
// char, e.g., "thes," -> "these".
|
||||
p = fword + sp->ts_fidx;
|
||||
MB_PTR_BACK(fword, p);
|
||||
- if (!spell_iswordp(p, curwin))
|
||||
+ if (!spell_iswordp(p, curwin) && *preword != NUL)
|
||||
{
|
||||
p = preword + STRLEN(preword);
|
||||
MB_PTR_BACK(preword, p);
|
||||
diff --git a/src/testdir/test_spell.vim b/src/testdir/test_spell.vim
|
||||
index 79fb8927c..e435e9172 100644
|
||||
--- a/src/testdir/test_spell.vim
|
||||
+++ b/src/testdir/test_spell.vim
|
||||
@@ -498,6 +498,14 @@ func Test_spell_screendump()
|
||||
call delete('XtestSpell')
|
||||
endfunc
|
||||
|
||||
+func Test_spell_single_word()
|
||||
+ new
|
||||
+ silent! norm 0R00
|
||||
+ spell! ßÂ
|
||||
+ silent 0norm 0r$ Dvz=
|
||||
+ bwipe!
|
||||
+endfunc
|
||||
+
|
||||
let g:test_data_aff1 = [
|
||||
\"SET ISO8859-1",
|
||||
\"TRY esianrtolcdugmphbyfvkwjkqxz-\xEB\xE9\xE8\xEA\xEF\xEE\xE4\xE0\xE2\xF6\xFC\xFB'ESIANRTOLCDUGMPHBYFVKWJKQXZ",
|
||||
diff --git a/src/version.c b/src/version.c
|
||||
index df4ec9a47..e1bc0d09b 100644
|
||||
--- a/src/version.c
|
||||
+++ b/src/version.c
|
||||
@@ -742,6 +742,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
+/**/
|
||||
+ 3582,
|
||||
/**/
|
||||
3581,
|
||||
/**/
|
||||
@@ -0,0 +1,92 @@
|
||||
CVE: CVE-2021-3973
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
||||
|
||||
From b6154e9f530544ddc3130d981caae0dabc053757 Mon Sep 17 00:00:00 2001
|
||||
From: Bram Moolenaar <Bram@vim.org>
|
||||
Date: Wed, 17 Nov 2021 18:00:31 +0000
|
||||
Subject: [PATCH] patch 8.2.3611: crash when using CTRL-W f without finding a
|
||||
file name Problem: Crash when using CTRL-W f without finding
|
||||
a file name. Solution: Bail out when the file name length is zero.
|
||||
|
||||
---
|
||||
src/findfile.c | 8 ++++++++
|
||||
src/normal.c | 6 ++++--
|
||||
src/testdir/test_visual.vim | 8 ++++++++
|
||||
src/version.c | 2 ++
|
||||
4 files changed, 22 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/findfile.c b/src/findfile.c
|
||||
index dba547da1..5764fd7b8 100644
|
||||
--- a/src/findfile.c
|
||||
+++ b/src/findfile.c
|
||||
@@ -1727,6 +1727,9 @@ find_file_in_path_option(
|
||||
proc->pr_WindowPtr = (APTR)-1L;
|
||||
# endif
|
||||
|
||||
+ if (len == 0)
|
||||
+ return NULL;
|
||||
+
|
||||
if (first == TRUE)
|
||||
{
|
||||
// copy file name into NameBuff, expanding environment variables
|
||||
@@ -2094,7 +2097,12 @@ find_file_name_in_path(
|
||||
int c;
|
||||
# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
|
||||
char_u *tofree = NULL;
|
||||
+# endif
|
||||
|
||||
+ if (len == 0)
|
||||
+ return NULL;
|
||||
+
|
||||
+# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
|
||||
if ((options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
|
||||
{
|
||||
tofree = eval_includeexpr(ptr, len);
|
||||
diff --git a/src/normal.c b/src/normal.c
|
||||
index 7cb959257..f0084f2ac 100644
|
||||
--- a/src/normal.c
|
||||
+++ b/src/normal.c
|
||||
@@ -3778,8 +3778,10 @@ get_visual_text(
|
||||
*pp = ml_get_pos(&VIsual);
|
||||
*lenp = curwin->w_cursor.col - VIsual.col + 1;
|
||||
}
|
||||
- if (has_mbyte)
|
||||
- // Correct the length to include the whole last character.
|
||||
+ if (**pp == NUL)
|
||||
+ *lenp = 0;
|
||||
+ if (has_mbyte && *lenp > 0)
|
||||
+ // Correct the length to include all bytes of the last character.
|
||||
*lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1;
|
||||
}
|
||||
reset_VIsual_and_resel();
|
||||
diff --git a/src/testdir/test_visual.vim b/src/testdir/test_visual.vim
|
||||
index ae281238e..0705fdb57 100644
|
||||
--- a/src/testdir/test_visual.vim
|
||||
+++ b/src/testdir/test_visual.vim
|
||||
@@ -894,4 +894,12 @@ func Test_block_insert_replace_tabs()
|
||||
bwipe!
|
||||
endfunc
|
||||
|
||||
+func Test_visual_block_ctrl_w_f()
|
||||
+ " Emtpy block selected in new buffer should not result in an error.
|
||||
+ au! BufNew foo sil norm f
|
||||
+ edit foo
|
||||
+
|
||||
+ au! BufNew
|
||||
+endfunc
|
||||
+
|
||||
" vim: shiftwidth=2 sts=2 expandtab
|
||||
diff --git a/src/version.c b/src/version.c
|
||||
index 52be3c39d..59a314b3a 100644
|
||||
--- a/src/version.c
|
||||
+++ b/src/version.c
|
||||
@@ -742,6 +742,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
+/**/
|
||||
+ 3611,
|
||||
/**/
|
||||
3582,
|
||||
/**/
|
||||
@@ -0,0 +1,86 @@
|
||||
CVE: CVE-2021-3872
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
||||
|
||||
From 61629ea24a2fff1f89c37479d3fb52f17c3480fc Mon Sep 17 00:00:00 2001
|
||||
From: Bram Moolenaar <Bram@vim.org>
|
||||
Date: Fri, 8 Oct 2021 18:39:28 +0100
|
||||
Subject: [PATCH] patch 8.2.3487: illegal memory access if buffer name is very
|
||||
long
|
||||
|
||||
Problem: Illegal memory access if buffer name is very long.
|
||||
Solution: Make sure not to go over the end of the buffer.
|
||||
---
|
||||
src/drawscreen.c | 10 +++++-----
|
||||
src/testdir/test_statusline.vim | 11 +++++++++++
|
||||
src/version.c | 2 ++
|
||||
3 files changed, 18 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/src/drawscreen.c b/src/drawscreen.c
|
||||
index 3a88ee979..9acb70552 100644
|
||||
--- a/src/drawscreen.c
|
||||
+++ b/src/drawscreen.c
|
||||
@@ -446,13 +446,13 @@ win_redr_status(win_T *wp, int ignore_pum UNUSED)
|
||||
*(p + len++) = ' ';
|
||||
if (bt_help(wp->w_buffer))
|
||||
{
|
||||
- STRCPY(p + len, _("[Help]"));
|
||||
+ vim_snprintf((char *)p + len, MAXPATHL - len, "%s", _("[Help]"));
|
||||
len += (int)STRLEN(p + len);
|
||||
}
|
||||
#ifdef FEAT_QUICKFIX
|
||||
if (wp->w_p_pvw)
|
||||
{
|
||||
- STRCPY(p + len, _("[Preview]"));
|
||||
+ vim_snprintf((char *)p + len, MAXPATHL - len, "%s", _("[Preview]"));
|
||||
len += (int)STRLEN(p + len);
|
||||
}
|
||||
#endif
|
||||
@@ -462,12 +462,12 @@ win_redr_status(win_T *wp, int ignore_pum UNUSED)
|
||||
#endif
|
||||
)
|
||||
{
|
||||
- STRCPY(p + len, "[+]");
|
||||
- len += 3;
|
||||
+ vim_snprintf((char *)p + len, MAXPATHL - len, "%s", "[+]");
|
||||
+ len += (int)STRLEN(p + len);
|
||||
}
|
||||
if (wp->w_buffer->b_p_ro)
|
||||
{
|
||||
- STRCPY(p + len, _("[RO]"));
|
||||
+ vim_snprintf((char *)p + len, MAXPATHL - len, "%s", _("[RO]"));
|
||||
len += (int)STRLEN(p + len);
|
||||
}
|
||||
|
||||
diff --git a/src/testdir/test_statusline.vim b/src/testdir/test_statusline.vim
|
||||
index 1f705b847..91bce1407 100644
|
||||
--- a/src/testdir/test_statusline.vim
|
||||
+++ b/src/testdir/test_statusline.vim
|
||||
@@ -393,3 +393,14 @@ func Test_statusline_visual()
|
||||
bwipe! x1
|
||||
bwipe! x2
|
||||
endfunc
|
||||
+" Used to write beyond allocated memory. This assumes MAXPATHL is 4096 bytes.
|
||||
+func Test_statusline_verylong_filename()
|
||||
+ let fname = repeat('x', 4090)
|
||||
+ exe "new " .. fname
|
||||
+ set buftype=help
|
||||
+ set previewwindow
|
||||
+ redraw
|
||||
+ bwipe!
|
||||
+endfunc
|
||||
+
|
||||
+" vim: shiftwidth=2 sts=2 expandtab
|
||||
diff --git a/src/version.c b/src/version.c
|
||||
index 1046993d6..2b5de5ccf 100644
|
||||
--- a/src/version.c
|
||||
+++ b/src/version.c
|
||||
@@ -742,6 +742,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
+/**/
|
||||
+ 3487,
|
||||
/**/
|
||||
3428,
|
||||
/**/
|
||||
@@ -0,0 +1,72 @@
|
||||
CVE: CVE-2021-3875
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
||||
|
||||
From b8968e26d7508e7d64bfc86808142818b0a9288c Mon Sep 17 00:00:00 2001
|
||||
From: Bram Moolenaar <Bram@vim.org>
|
||||
Date: Sat, 9 Oct 2021 13:58:55 +0100
|
||||
Subject: [PATCH] patch 8.2.3489: ml_get error after search with range
|
||||
|
||||
Problem: ml_get error after search with range.
|
||||
Solution: Limit the line number to the buffer line count.
|
||||
---
|
||||
src/ex_docmd.c | 6 ++++--
|
||||
src/testdir/test_search.vim | 17 +++++++++++++++++
|
||||
src/version.c | 2 ++
|
||||
3 files changed, 23 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
|
||||
index fb07450f8..fde726477 100644
|
||||
--- a/src/ex_docmd.c
|
||||
+++ b/src/ex_docmd.c
|
||||
@@ -3586,8 +3586,10 @@ get_address(
|
||||
|
||||
// When '/' or '?' follows another address, start from
|
||||
// there.
|
||||
- if (lnum != MAXLNUM)
|
||||
- curwin->w_cursor.lnum = lnum;
|
||||
+ if (lnum > 0 && lnum != MAXLNUM)
|
||||
+ curwin->w_cursor.lnum =
|
||||
+ lnum > curbuf->b_ml.ml_line_count
|
||||
+ ? curbuf->b_ml.ml_line_count : lnum;
|
||||
|
||||
// Start a forward search at the end of the line (unless
|
||||
// before the first line).
|
||||
diff --git a/src/testdir/test_search.vim b/src/testdir/test_search.vim
|
||||
index 187671305..e142c3547 100644
|
||||
--- a/src/testdir/test_search.vim
|
||||
+++ b/src/testdir/test_search.vim
|
||||
@@ -1366,3 +1366,20 @@ func Test_searchdecl()
|
||||
|
||||
bwipe!
|
||||
endfunc
|
||||
+
|
||||
+func Test_search_with_invalid_range()
|
||||
+ new
|
||||
+ let lines =<< trim END
|
||||
+ /\%.v
|
||||
+ 5/
|
||||
+ c
|
||||
+ END
|
||||
+ call writefile(lines, 'Xrangesearch')
|
||||
+ source Xrangesearch
|
||||
+
|
||||
+ bwipe!
|
||||
+ call delete('Xrangesearch')
|
||||
+endfunc
|
||||
+
|
||||
+
|
||||
+" vim: shiftwidth=2 sts=2 expandtab
|
||||
diff --git a/src/version.c b/src/version.c
|
||||
index 2b5de5ccf..092864bbb 100644
|
||||
--- a/src/version.c
|
||||
+++ b/src/version.c
|
||||
@@ -742,6 +742,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
+/**/
|
||||
+ 3489,
|
||||
/**/
|
||||
3487,
|
||||
/**/
|
||||
@@ -0,0 +1,97 @@
|
||||
CVE: CVE-2021-3903
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
||||
|
||||
From b15919c1fe0f7fc3d98ff5207ed2feb43c59009d Mon Sep 17 00:00:00 2001
|
||||
From: Bram Moolenaar <Bram@vim.org>
|
||||
Date: Mon, 25 Oct 2021 17:07:04 +0100
|
||||
Subject: [PATCH] patch 8.2.3564: invalid memory access when scrolling without
|
||||
valid screen
|
||||
|
||||
Problem: Invalid memory access when scrolling without a valid screen.
|
||||
Solution: Do not set VALID_BOTLINE in w_valid.
|
||||
---
|
||||
src/move.c | 1 -
|
||||
src/testdir/test_normal.vim | 23 ++++++++++++++++++++---
|
||||
src/version.c | 2 ++
|
||||
3 files changed, 22 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/src/move.c b/src/move.c
|
||||
index 8e53d8bcb..10165ef4d 100644
|
||||
--- a/src/move.c
|
||||
+++ b/src/move.c
|
||||
@@ -198,7 +198,6 @@ update_topline(void)
|
||||
{
|
||||
curwin->w_topline = curwin->w_cursor.lnum;
|
||||
curwin->w_botline = curwin->w_topline;
|
||||
- curwin->w_valid |= VALID_BOTLINE|VALID_BOTLINE_AP;
|
||||
curwin->w_scbind_pos = 1;
|
||||
return;
|
||||
}
|
||||
diff --git a/src/testdir/test_normal.vim b/src/testdir/test_normal.vim
|
||||
index d45cf4159..ca87928f5 100644
|
||||
--- a/src/testdir/test_normal.vim
|
||||
+++ b/src/testdir/test_normal.vim
|
||||
@@ -33,14 +33,14 @@ func CountSpaces(type, ...)
|
||||
else
|
||||
silent exe "normal! `[v`]y"
|
||||
endif
|
||||
- let g:a=strlen(substitute(@@, '[^ ]', '', 'g'))
|
||||
+ let g:a = strlen(substitute(@@, '[^ ]', '', 'g'))
|
||||
let &selection = sel_save
|
||||
let @@ = reg_save
|
||||
endfunc
|
||||
|
||||
func OpfuncDummy(type, ...)
|
||||
" for testing operatorfunc
|
||||
- let g:opt=&linebreak
|
||||
+ let g:opt = &linebreak
|
||||
|
||||
if a:0 " Invoked from Visual mode, use gv command.
|
||||
silent exe "normal! gvy"
|
||||
@@ -51,7 +51,7 @@ func OpfuncDummy(type, ...)
|
||||
endif
|
||||
" Create a new dummy window
|
||||
new
|
||||
- let g:bufnr=bufnr('%')
|
||||
+ let g:bufnr = bufnr('%')
|
||||
endfunc
|
||||
|
||||
fun! Test_normal00_optrans()
|
||||
@@ -718,6 +718,23 @@ func Test_normal17_z_scroll_hor2()
|
||||
bw!
|
||||
endfunc
|
||||
|
||||
+
|
||||
+func Test_scroll_in_ex_mode()
|
||||
+ " This was using invalid memory because w_botline was invalid.
|
||||
+ let lines =<< trim END
|
||||
+ diffsplit
|
||||
+ norm os00(
|
||||
+ call writefile(['done'], 'Xdone')
|
||||
+ qa!
|
||||
+ END
|
||||
+ call writefile(lines, 'Xscript')
|
||||
+ call assert_equal(1, RunVim([], [], '--clean -X -Z -e -s -S Xscript'))
|
||||
+ call assert_equal(['done'], readfile('Xdone'))
|
||||
+
|
||||
+ call delete('Xscript')
|
||||
+ call delete('Xdone')
|
||||
+endfunc
|
||||
+
|
||||
func Test_normal18_z_fold()
|
||||
" basic tests for foldopen/folddelete
|
||||
if !has("folding")
|
||||
diff --git a/src/version.c b/src/version.c
|
||||
index 092864bbb..a9e8be0e7 100644
|
||||
--- a/src/version.c
|
||||
+++ b/src/version.c
|
||||
@@ -742,6 +742,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
+/**/
|
||||
+ 3564,
|
||||
/**/
|
||||
3489,
|
||||
/**/
|
||||
@@ -1,4 +1,4 @@
|
||||
From eb41373c8c88b0789e5cf04669d6116f9a199264 Mon Sep 17 00:00:00 2001
|
||||
From 6d351cec5b97cb72b226d03bd727e453a235ed8d Mon Sep 17 00:00:00 2001
|
||||
From: Minjae Kim <flowergom@gmail.com>
|
||||
Date: Sun, 26 Sep 2021 23:48:00 +0000
|
||||
Subject: [PATCH] patch 8.2.3409: reading beyond end of line with invalid utf-8
|
||||
@@ -10,13 +10,15 @@ Solution: Check for NUL when advancing.
|
||||
Upstream-Status: Accepted [https://github.com/vim/vim/commit/65b605665997fad54ef39a93199e305af2fe4d7f]
|
||||
CVE: CVE-2021-3778
|
||||
Signed-off-by: Minjae Kim <flowergom@gmail.com>
|
||||
|
||||
---
|
||||
src/regexp_nfa.c | 3 ++-
|
||||
src/testdir/test_regexp_utf8.vim | 7 +++++++
|
||||
2 files changed, 9 insertions(+), 1 deletion(-)
|
||||
src/version.c | 2 ++
|
||||
3 files changed, 11 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c
|
||||
index fb512f961..4d337f1f1 100644
|
||||
index fb512f961..ace83a1a3 100644
|
||||
--- a/src/regexp_nfa.c
|
||||
+++ b/src/regexp_nfa.c
|
||||
@@ -5455,7 +5455,8 @@ find_match_text(colnr_T startcol, int regstart, char_u *match_text)
|
||||
@@ -44,6 +46,16 @@ index 19ff882be..e0665818b 100644
|
||||
+ bwipe!
|
||||
+ call delete('Xinvalid')
|
||||
+endfunc
|
||||
--
|
||||
2.17.1
|
||||
|
||||
diff --git a/src/version.c b/src/version.c
|
||||
index 8912f6215..85bdfc601 100644
|
||||
--- a/src/version.c
|
||||
+++ b/src/version.c
|
||||
@@ -742,6 +742,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
+/**/
|
||||
+ 3409,
|
||||
/**/
|
||||
3402,
|
||||
/**/
|
||||
|
||||
@@ -1,50 +0,0 @@
|
||||
From 6d02e1429771c00046b48f26e53ca4123c3ce4e1 Mon Sep 17 00:00:00 2001
|
||||
From: Bram Moolenaar <Bram@vim.org>
|
||||
Date: Fri, 24 Sep 2021 16:01:09 +0800
|
||||
Subject: [PATCH] patch 8.2.3428: using freed memory when replacing
|
||||
|
||||
Problem: Using freed memory when replacing. (Dhiraj Mishra)
|
||||
Solution: Get the line pointer after calling ins_copychar().
|
||||
|
||||
Upstream-Status: Backport [https://github.com/vim/vim/commit/35a9a00afcb20897d462a766793ff45534810dc3]
|
||||
CVE: CVE-2021-3796
|
||||
|
||||
Signed-off-by: Minjae Kim <flowergom@gmail.com>
|
||||
---
|
||||
src/normal.c | 10 +++++++---
|
||||
1 file changed, 7 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/src/normal.c b/src/normal.c
|
||||
index c4963e621..305b514bc 100644
|
||||
--- a/src/normal.c
|
||||
+++ b/src/normal.c
|
||||
@@ -5009,19 +5009,23 @@ nv_replace(cmdarg_T *cap)
|
||||
{
|
||||
/*
|
||||
* Get ptr again, because u_save and/or showmatch() will have
|
||||
- * released the line. At the same time we let know that the
|
||||
- * line will be changed.
|
||||
+ * released the line. This may also happen in ins_copychar().
|
||||
+ * At the same time we let know that the line will be changed.
|
||||
*/
|
||||
- ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
|
||||
if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
|
||||
{
|
||||
int c = ins_copychar(curwin->w_cursor.lnum
|
||||
+ (cap->nchar == Ctrl_Y ? -1 : 1));
|
||||
+
|
||||
+ ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
|
||||
if (c != NUL)
|
||||
ptr[curwin->w_cursor.col] = c;
|
||||
}
|
||||
else
|
||||
+ {
|
||||
+ ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
|
||||
ptr[curwin->w_cursor.col] = cap->nchar;
|
||||
+ }
|
||||
if (p_sm && msg_silent == 0)
|
||||
showmatch(cap->nchar);
|
||||
++curwin->w_cursor.col;
|
||||
--
|
||||
2.17.1
|
||||
|
||||
@@ -18,14 +18,24 @@ SRC_URI = "git://github.com/vim/vim.git;branch=master;protocol=https \
|
||||
file://no-path-adjust.patch \
|
||||
file://racefix.patch \
|
||||
file://b7081e135a16091c93f6f5f7525a5c58fb7ca9f9.patch \
|
||||
file://CVE-2021-3778.patch \
|
||||
"
|
||||
file://CVE-2021-3778.patch \
|
||||
file://0002-patch-8.2.3428-using-freed-memory-when-replacing.patch \
|
||||
file://0003-patch-8.2.3487-illegal-memory-access-if-buffer-name-.patch \
|
||||
file://0004-patch-8.2.3489-ml_get-error-after-search-with-range.patch \
|
||||
file://0005-patch-8.2.3564-invalid-memory-access-when-scrolling-.patch \
|
||||
file://0001-patch-8.2.3581-reading-character-past-end-of-line.patch \
|
||||
file://0002-patch-8.2.3582-reading-uninitialized-memory-when-giv.patch \
|
||||
file://0002-patch-8.2.3611-crash-when-using-CTRL-W-f-without-fin.patch \
|
||||
"
|
||||
|
||||
SRCREV = "98056533b96b6b5d8849641de93185dd7bcadc44"
|
||||
|
||||
# Do not consider .z in x.y.z, as that is updated with every commit
|
||||
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+\.\d+)\.0"
|
||||
|
||||
# CVE-2021-3968 is related to an issue which was introduced after 8.2, this can be removed after 8.3.
|
||||
CVE_CHECK_WHITELIST += "CVE-2021-3968"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
VIMDIR = "vim${@d.getVar('PV').split('.')[0]}${@d.getVar('PV').split('.')[1]}"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user