(1623) xkb: split XkbSendIndicatorMap()

This function is a funny beast: it assembles and writes out an xkbGetIndicatorMapReply,
called in two different cases, ProcXkbGetIndicatorMap() as well as ProcXkbGetKbdByName().
In the latter case the whole reply is contained in another one. That's the reason
why it's payload size is computed separately - the caller must know that in order
to set up the container's reply size correctly.

As preparation for upcoming simplifications of the reply send path, splitting off
this function into pieces: XkbAssembleIndicatorMap() just assembles the reply payload,
while it's callers now responsible for preparing the request header and writing
out both pieces.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2024-07-26 14:30:01 +02:00
parent 8226f51303
commit c340ebb4c8

143
xkb/xkb.c
View File

@ -3170,16 +3170,13 @@ XkbComputeGetIndicatorMapReplySize(XkbIndicatorPtr indicators,
return Success; return Success;
} }
static int static void
XkbSendIndicatorMap(ClientPtr client, XkbAssembleIndicatorMap(ClientPtr client,
XkbIndicatorPtr indicators, xkbGetIndicatorMapReply rep) XkbIndicatorPtr indicators,
xkbGetIndicatorMapReply rep,
char *buf)
{ {
int length = rep.length * 4; CARD8 *map = (CARD8*)buf;
CARD8 *map = calloc(1, length);
if (!map)
return BadAlloc;
register int i; register int i;
register unsigned bit; register unsigned bit;
@ -3204,17 +3201,6 @@ XkbSendIndicatorMap(ClientPtr client,
} }
} }
} }
if (client->swapped) {
swaps(&rep.sequenceNumber);
swapl(&rep.length);
swapl(&rep.which);
swapl(&rep.realIndicators);
}
WriteToClient(client, sizeof(xkbGetIndicatorMapReply), &rep);
WriteToClient(client, length, map);
free(map);
return Success;
} }
int int
@ -3242,7 +3228,25 @@ ProcXkbGetIndicatorMap(ClientPtr client)
.which = stuff->which .which = stuff->which
}; };
XkbComputeGetIndicatorMapReplySize(leds, &rep); XkbComputeGetIndicatorMapReplySize(leds, &rep);
return XkbSendIndicatorMap(client, leds, rep);
int sz = rep.length * sizeof(CARD32);
char *buf = calloc(1, sz);
if (!buf)
return BadAlloc;
XkbAssembleIndicatorMap(client, leds, rep, buf);
if (client->swapped) {
swaps(&rep.sequenceNumber);
swapl(&rep.length);
swapl(&rep.which);
swapl(&rep.realIndicators);
}
WriteToClient(client, sizeof(xkbGetIndicatorMapReply), &rep);
WriteToClient(client, sz, buf);
free(buf);
return Success;
} }
/** /**
@ -3789,26 +3793,14 @@ XkbComputeGetNamesReplySize(XkbDescPtr xkb, xkbGetNamesReply * rep)
desc += sizeof(CARD32); \ desc += sizeof(CARD32); \
} while (0) } while (0)
static int static void
XkbSendNames(ClientPtr client, XkbDescPtr xkb, xkbGetNamesReply rep) XkbAssembleNames(ClientPtr client, XkbDescPtr xkb, xkbGetNamesReply rep, char *buf)
{ {
register unsigned i, length, which; register unsigned i, which;
char *start; char *desc = buf;
char *desc;
length = rep.length * 4;
which = rep.which; which = rep.which;
if (client->swapped) {
swaps(&rep.sequenceNumber);
swapl(&rep.length);
swapl(&rep.which);
swaps(&rep.virtualMods);
swapl(&rep.indicators);
}
start = desc = calloc(1, length);
if (!start)
return BadAlloc;
if (xkb->names) { if (xkb->names) {
if (which & XkbKeycodesNameMask) { if (which & XkbKeycodesNameMask) {
_ADD_CARD32(xkb->names->keycodes); _ADD_CARD32(xkb->names->keycodes);
@ -3883,15 +3875,6 @@ XkbSendNames(ClientPtr client, XkbDescPtr xkb, xkbGetNamesReply rep)
} }
} }
} }
if ((desc - start) != (length)) {
ErrorF("[xkb] BOGUS LENGTH in write names, expected %d, got %ld\n",
length, (unsigned long) (desc - start));
}
WriteToClient(client, sizeof(rep), &rep);
WriteToClient(client, length, start);
free((char *) start);
return Success;
} }
#undef _ADD_CARD32 #undef _ADD_CARD32
@ -3924,7 +3907,26 @@ ProcXkbGetNames(ClientPtr client)
.nRadioGroups = xkb->names ? xkb->names->num_rg : 0 .nRadioGroups = xkb->names ? xkb->names->num_rg : 0
}; };
XkbComputeGetNamesReplySize(xkb, &rep); XkbComputeGetNamesReplySize(xkb, &rep);
return XkbSendNames(client, xkb, rep);
int sz = rep.length * sizeof(CARD32);
char *payload_buf = calloc(1, sz);
if (!payload_buf)
return BadAlloc;
XkbAssembleNames(client, xkb, rep, payload_buf);
if (client->swapped) {
swaps(&rep.sequenceNumber);
swapl(&rep.length);
swapl(&rep.which);
swaps(&rep.virtualMods);
swapl(&rep.indicators);
}
WriteToClient(client, sizeof(rep), &rep);
WriteToClient(client, sz, payload_buf);
free(payload_buf);
return Success;
} }
/***====================================================================***/ /***====================================================================***/
@ -6049,7 +6051,7 @@ ProcXkbGetKbdByName(ClientPtr client)
WriteToClient(client, SIZEOF(xkbGetKbdByNameReply), &rep); WriteToClient(client, SIZEOF(xkbGetKbdByNameReply), &rep);
if (reported & (XkbGBN_SymbolsMask | XkbGBN_TypesMask)) { if (reported & (XkbGBN_SymbolsMask | XkbGBN_TypesMask)) {
int sz = ((mrep.length * sizeof(CARD32)) - (sizeof(mrep) - sizeof(xGenericReply))); int sz = (mrep.length * sizeof(CARD32)) - (sizeof(mrep) - sizeof(xGenericReply));
char *buf = calloc(1, sz); char *buf = calloc(1, sz);
if (!buf) if (!buf)
return BadAlloc; return BadAlloc;
@ -6064,7 +6066,7 @@ ProcXkbGetKbdByName(ClientPtr client)
swaps(&mrep.totalActs); swaps(&mrep.totalActs);
} }
WriteToClient(client, sizeof(mrep), &mrep); WriteToClient(client, sizeof(mrep), &mrep);
WriteToClient(client, sizeof(buf), buf); WriteToClient(client, sz, buf);
free(buf); free(buf);
} }
@ -6089,10 +6091,45 @@ ProcXkbGetKbdByName(ClientPtr client)
free(buf); free(buf);
} }
if (reported & XkbGBN_IndicatorMapMask) if (reported & XkbGBN_IndicatorMapMask) {
XkbSendIndicatorMap(client, new->indicators, irep); int sz = irep.length * sizeof(CARD32);
if (reported & (XkbGBN_KeyNamesMask | XkbGBN_OtherNamesMask)) char *buf = calloc(1, sz);
XkbSendNames(client, new, nrep); if (!buf)
return BadAlloc;
XkbAssembleIndicatorMap(client, new->indicators, irep, buf);
if (client->swapped) {
swaps(&irep.sequenceNumber);
swapl(&irep.length);
swapl(&irep.which);
swapl(&irep.realIndicators);
}
WriteToClient(client, sizeof(irep), &irep);
WriteToClient(client, sz, buf);
free(buf);
}
if (reported & (XkbGBN_KeyNamesMask | XkbGBN_OtherNamesMask)) {
int sz = nrep.length * sizeof(CARD32);
char *buf = calloc(1, sz);
XkbAssembleNames(client, new, nrep, buf);
if (client->swapped) {
swaps(&nrep.sequenceNumber);
swapl(&nrep.length);
swapl(&nrep.which);
swaps(&nrep.virtualMods);
swapl(&nrep.indicators);
}
WriteToClient(client, sizeof(nrep), &nrep);
WriteToClient(client, sz, buf);
free(buf);
}
if (reported & XkbGBN_GeometryMask) if (reported & XkbGBN_GeometryMask)
XkbSendGeometry(client, new->geom, grep); XkbSendGeometry(client, new->geom, grep);