Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: xsrc/external/mit/xorg-server.old/dist/dix



Module Name:    xsrc
Committed By:   mrg
Date:           Wed Nov  6 07:14:56 UTC 2024

Modified Files:
        xsrc/external/mit/xorg-server.old/dist/dix: devices.c

Log Message:
port xorg-server change 26769aa71fcbe0a8403b7fb13b7c9010cc07c3a8

there are two chunks in this change, and while they apply fine to the old
xorg-server 1.10 tree (unlike _most_), they do not build due to using new
identifiers.

the first chunk uses a new MASTER_ATTACHED argument to GetMaster(), which
avoids finding paired devices.  the only answer it can give with the setup
of already testing !IsMaster(other) is "other->u.master", so just use that
directly instead if calling GetMaster().

the second chunk uses a new single-line IsFloating() function, and if you
expand it's use here to the full expression, it ends up just being:

        if (!IsMaster(dev) && dev->u.master)

(which just happens to match the same line a few above, for the loop of
not-off "devices".)

testing this code path is a little tricky.

Subject: [PATCH] dix: when disabling a master, float disabled slaved devices
 too

Disabling a master device floats all slave devices but we didn't do this
to already-disabled slave devices. As a result those devices kept their
reference to the master device resulting in access to already freed
memory if the master device was removed before the corresponding slave
device.

And to match this behavior, also forcibly reset that pointer during
CloseDownDevices().

Related to CVE-2024-21886, ZDI-CAN-22840


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/xorg-server.old/dist/dix/devices.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.




Home | Main Index | Thread Index | Old Index