mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
Save major/minor opcodes in ClientRec for RecordAReply
The record extension needs the major and minor opcodes in the reply hook, but the request buffer may have been freed by the time the hook is invoked. Saving the request major and minor codes as the request is executed avoids fetching from the defunct request buffer. This patch also eliminates the public MinorOpcodeOfRequest function, inlining it into Dispatch. Usages of that function have been replaced with direct access to the new ClientRec field. Signed-off-by: Keith Packard <keithp@keithp.com> Reviewed-by: Jamey Sharp <jamey@minilop.net>
This commit is contained in:
@@ -337,8 +337,6 @@ DisableLimitedSchedulingLatency(void)
|
||||
SmartScheduleLatencyLimited = 0;
|
||||
}
|
||||
|
||||
#define MAJOROP ((xReq *)client->requestBuffer)->reqType
|
||||
|
||||
void
|
||||
Dispatch(void)
|
||||
{
|
||||
@@ -419,21 +417,28 @@ Dispatch(void)
|
||||
}
|
||||
|
||||
client->sequence++;
|
||||
client->majorOp = ((xReq *)client->requestBuffer)->reqType;
|
||||
client->minorOp = 0;
|
||||
if (client->majorOp >= EXTENSION_BASE) {
|
||||
ExtensionEntry *ext = GetExtensionEntry(client->majorOp);
|
||||
if (ext)
|
||||
client->minorOp = ext->MinorOpcode(client);
|
||||
}
|
||||
#ifdef XSERVER_DTRACE
|
||||
XSERVER_REQUEST_START(LookupMajorName(MAJOROP), MAJOROP,
|
||||
XSERVER_REQUEST_START(LookupMajorName(client->majorOp), client->majorOp,
|
||||
((xReq *)client->requestBuffer)->length,
|
||||
client->index, client->requestBuffer);
|
||||
#endif
|
||||
if (result > (maxBigRequestSize << 2))
|
||||
result = BadLength;
|
||||
else {
|
||||
result = XaceHookDispatch(client, MAJOROP);
|
||||
result = XaceHookDispatch(client, client->majorOp);
|
||||
if (result == Success)
|
||||
result = (* client->requestVector[MAJOROP])(client);
|
||||
result = (* client->requestVector[client->majorOp])(client);
|
||||
XaceHookAuditEnd(client, result);
|
||||
}
|
||||
#ifdef XSERVER_DTRACE
|
||||
XSERVER_REQUEST_DONE(LookupMajorName(MAJOROP), MAJOROP,
|
||||
XSERVER_REQUEST_DONE(LookupMajorName(client->majorOp), client->majorOp,
|
||||
client->sequence, client->index, result);
|
||||
#endif
|
||||
|
||||
@@ -444,8 +449,8 @@ Dispatch(void)
|
||||
}
|
||||
else if (result != Success)
|
||||
{
|
||||
SendErrorToClient(client, MAJOROP,
|
||||
MinorOpcodeOfRequest(client),
|
||||
SendErrorToClient(client, client->majorOp,
|
||||
client->minorOp,
|
||||
client->errorValue, result);
|
||||
break;
|
||||
}
|
||||
@@ -466,8 +471,6 @@ Dispatch(void)
|
||||
SmartScheduleLatencyLimited = 0;
|
||||
}
|
||||
|
||||
#undef MAJOROP
|
||||
|
||||
static int VendorRelease = VENDOR_RELEASE;
|
||||
static char *VendorString = VENDOR_NAME;
|
||||
|
||||
|
||||
@@ -228,20 +228,6 @@ StandardMinorOpcode(ClientPtr client)
|
||||
return ((xReq *)client->requestBuffer)->data;
|
||||
}
|
||||
|
||||
unsigned short
|
||||
MinorOpcodeOfRequest(ClientPtr client)
|
||||
{
|
||||
unsigned char major;
|
||||
|
||||
major = ((xReq *)client->requestBuffer)->reqType;
|
||||
if (major < EXTENSION_BASE)
|
||||
return 0;
|
||||
major -= EXTENSION_BASE;
|
||||
if (major >= NumExtensions)
|
||||
return 0;
|
||||
return (*extensions[major]->MinorOpcode)(client);
|
||||
}
|
||||
|
||||
void
|
||||
CloseDownExtensions(void)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user