Xi: check for invalid modifiers for XI2 passive grabs
The other values are checked correctly, but if a modifier was outside the allowed range, it would go unnoticed and cause a out-of-bounds read error for any mask equal or larger than 256. The DetailRec where we store the grab masks is only sized to 8 * sizeof(Mask). Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
This commit is contained in:
parent
ec6a446125
commit
0f10cfd4b9
|
@ -2183,7 +2183,8 @@ CheckGrabValues(ClientPtr client, GrabParameters *param)
|
|||
return BadValue;
|
||||
}
|
||||
|
||||
if (param->grabtype != XI2 && (param->modifiers != AnyModifier) &&
|
||||
if (param->modifiers != AnyModifier &&
|
||||
param->modifiers != XIAnyModifier &&
|
||||
(param->modifiers & ~AllModifiersMask)) {
|
||||
client->errorValue = param->modifiers;
|
||||
return BadValue;
|
||||
|
|
|
@ -189,6 +189,10 @@ ProcXIPassiveGrabDevice(ClientPtr client)
|
|||
uint8_t status = Success;
|
||||
|
||||
param.modifiers = *modifiers;
|
||||
ret = CheckGrabValues(client, ¶m);
|
||||
if (ret != Success)
|
||||
goto out;
|
||||
|
||||
switch (stuff->grab_type) {
|
||||
case XIGrabtypeButton:
|
||||
status = GrabButton(client, dev, mod_dev, stuff->detail,
|
||||
|
|
Loading…
Reference in New Issue