1*4882a593Smuzhiyun /************************************************************
2*4882a593Smuzhiyun
3*4882a593Smuzhiyun Copyright 1989, 1998 The Open Group
4*4882a593Smuzhiyun
5*4882a593Smuzhiyun Permission to use, copy, modify, distribute, and sell this software and its
6*4882a593Smuzhiyun documentation for any purpose is hereby granted without fee, provided that
7*4882a593Smuzhiyun the above copyright notice appear in all copies and that both that
8*4882a593Smuzhiyun copyright notice and this permission notice appear in supporting
9*4882a593Smuzhiyun documentation.
10*4882a593Smuzhiyun
11*4882a593Smuzhiyun The above copyright notice and this permission notice shall be included in
12*4882a593Smuzhiyun all copies or substantial portions of the Software.
13*4882a593Smuzhiyun
14*4882a593Smuzhiyun THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15*4882a593Smuzhiyun IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16*4882a593Smuzhiyun FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17*4882a593Smuzhiyun OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18*4882a593Smuzhiyun AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19*4882a593Smuzhiyun CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20*4882a593Smuzhiyun
21*4882a593Smuzhiyun Except as contained in this notice, the name of The Open Group shall not be
22*4882a593Smuzhiyun used in advertising or otherwise to promote the sale, use or other dealings
23*4882a593Smuzhiyun in this Software without prior written authorization from The Open Group.
24*4882a593Smuzhiyun
25*4882a593Smuzhiyun Copyright 1989 by Hewlett-Packard Company, Palo Alto, California.
26*4882a593Smuzhiyun
27*4882a593Smuzhiyun All Rights Reserved
28*4882a593Smuzhiyun
29*4882a593Smuzhiyun Permission to use, copy, modify, and distribute this software and its
30*4882a593Smuzhiyun documentation for any purpose and without fee is hereby granted,
31*4882a593Smuzhiyun provided that the above copyright notice appear in all copies and that
32*4882a593Smuzhiyun both that copyright notice and this permission notice appear in
33*4882a593Smuzhiyun supporting documentation, and that the name of Hewlett-Packard not be
34*4882a593Smuzhiyun used in advertising or publicity pertaining to distribution of the
35*4882a593Smuzhiyun software without specific, written prior permission.
36*4882a593Smuzhiyun
37*4882a593Smuzhiyun HEWLETT-PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
38*4882a593Smuzhiyun ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
39*4882a593Smuzhiyun HEWLETT-PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
40*4882a593Smuzhiyun ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
41*4882a593Smuzhiyun WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
42*4882a593Smuzhiyun ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
43*4882a593Smuzhiyun SOFTWARE.
44*4882a593Smuzhiyun
45*4882a593Smuzhiyun ********************************************************/
46*4882a593Smuzhiyun
47*4882a593Smuzhiyun /***********************************************************************
48*4882a593Smuzhiyun *
49*4882a593Smuzhiyun * Request to send an extension event.
50*4882a593Smuzhiyun *
51*4882a593Smuzhiyun */
52*4882a593Smuzhiyun
53*4882a593Smuzhiyun #ifdef HAVE_DIX_CONFIG_H
54*4882a593Smuzhiyun #include <dix-config.h>
55*4882a593Smuzhiyun #endif
56*4882a593Smuzhiyun
57*4882a593Smuzhiyun #include "inputstr.h" /* DeviceIntPtr */
58*4882a593Smuzhiyun #include "windowstr.h" /* Window */
59*4882a593Smuzhiyun #include "extnsionst.h" /* EventSwapPtr */
60*4882a593Smuzhiyun #include <X11/extensions/XI.h>
61*4882a593Smuzhiyun #include <X11/extensions/XIproto.h>
62*4882a593Smuzhiyun #include "exevents.h"
63*4882a593Smuzhiyun #include "exglobals.h"
64*4882a593Smuzhiyun
65*4882a593Smuzhiyun #include "grabdev.h"
66*4882a593Smuzhiyun #include "sendexev.h"
67*4882a593Smuzhiyun
68*4882a593Smuzhiyun extern int lastEvent; /* Defined in extension.c */
69*4882a593Smuzhiyun
70*4882a593Smuzhiyun /***********************************************************************
71*4882a593Smuzhiyun *
72*4882a593Smuzhiyun * Handle requests from clients with a different byte order than us.
73*4882a593Smuzhiyun *
74*4882a593Smuzhiyun */
75*4882a593Smuzhiyun
76*4882a593Smuzhiyun int _X_COLD
SProcXSendExtensionEvent(ClientPtr client)77*4882a593Smuzhiyun SProcXSendExtensionEvent(ClientPtr client)
78*4882a593Smuzhiyun {
79*4882a593Smuzhiyun CARD32 *p;
80*4882a593Smuzhiyun int i;
81*4882a593Smuzhiyun xEvent eventT = { .u.u.type = 0 };
82*4882a593Smuzhiyun xEvent *eventP;
83*4882a593Smuzhiyun EventSwapPtr proc;
84*4882a593Smuzhiyun
85*4882a593Smuzhiyun REQUEST(xSendExtensionEventReq);
86*4882a593Smuzhiyun swaps(&stuff->length);
87*4882a593Smuzhiyun REQUEST_AT_LEAST_SIZE(xSendExtensionEventReq);
88*4882a593Smuzhiyun swapl(&stuff->destination);
89*4882a593Smuzhiyun swaps(&stuff->count);
90*4882a593Smuzhiyun
91*4882a593Smuzhiyun if (stuff->length !=
92*4882a593Smuzhiyun bytes_to_int32(sizeof(xSendExtensionEventReq)) + stuff->count +
93*4882a593Smuzhiyun bytes_to_int32(stuff->num_events * sizeof(xEvent)))
94*4882a593Smuzhiyun return BadLength;
95*4882a593Smuzhiyun
96*4882a593Smuzhiyun eventP = (xEvent *) &stuff[1];
97*4882a593Smuzhiyun for (i = 0; i < stuff->num_events; i++, eventP++) {
98*4882a593Smuzhiyun if (eventP->u.u.type == GenericEvent) {
99*4882a593Smuzhiyun client->errorValue = eventP->u.u.type;
100*4882a593Smuzhiyun return BadValue;
101*4882a593Smuzhiyun }
102*4882a593Smuzhiyun
103*4882a593Smuzhiyun proc = EventSwapVector[eventP->u.u.type & 0177];
104*4882a593Smuzhiyun /* no swapping proc; invalid event type? */
105*4882a593Smuzhiyun if (proc == NotImplemented) {
106*4882a593Smuzhiyun client->errorValue = eventP->u.u.type;
107*4882a593Smuzhiyun return BadValue;
108*4882a593Smuzhiyun }
109*4882a593Smuzhiyun (*proc) (eventP, &eventT);
110*4882a593Smuzhiyun *eventP = eventT;
111*4882a593Smuzhiyun }
112*4882a593Smuzhiyun
113*4882a593Smuzhiyun p = (CARD32 *) (((xEvent *) &stuff[1]) + stuff->num_events);
114*4882a593Smuzhiyun SwapLongs(p, stuff->count);
115*4882a593Smuzhiyun return (ProcXSendExtensionEvent(client));
116*4882a593Smuzhiyun }
117*4882a593Smuzhiyun
118*4882a593Smuzhiyun /***********************************************************************
119*4882a593Smuzhiyun *
120*4882a593Smuzhiyun * Send an event to some client, as if it had come from an extension input
121*4882a593Smuzhiyun * device.
122*4882a593Smuzhiyun *
123*4882a593Smuzhiyun */
124*4882a593Smuzhiyun
125*4882a593Smuzhiyun int
ProcXSendExtensionEvent(ClientPtr client)126*4882a593Smuzhiyun ProcXSendExtensionEvent(ClientPtr client)
127*4882a593Smuzhiyun {
128*4882a593Smuzhiyun int ret, i;
129*4882a593Smuzhiyun DeviceIntPtr dev;
130*4882a593Smuzhiyun xEvent *first;
131*4882a593Smuzhiyun XEventClass *list;
132*4882a593Smuzhiyun struct tmask tmp[EMASKSIZE];
133*4882a593Smuzhiyun
134*4882a593Smuzhiyun REQUEST(xSendExtensionEventReq);
135*4882a593Smuzhiyun REQUEST_AT_LEAST_SIZE(xSendExtensionEventReq);
136*4882a593Smuzhiyun
137*4882a593Smuzhiyun if (stuff->length !=
138*4882a593Smuzhiyun bytes_to_int32(sizeof(xSendExtensionEventReq)) + stuff->count +
139*4882a593Smuzhiyun (stuff->num_events * bytes_to_int32(sizeof(xEvent))))
140*4882a593Smuzhiyun return BadLength;
141*4882a593Smuzhiyun
142*4882a593Smuzhiyun ret = dixLookupDevice(&dev, stuff->deviceid, client, DixWriteAccess);
143*4882a593Smuzhiyun if (ret != Success)
144*4882a593Smuzhiyun return ret;
145*4882a593Smuzhiyun
146*4882a593Smuzhiyun if (stuff->num_events == 0)
147*4882a593Smuzhiyun return ret;
148*4882a593Smuzhiyun
149*4882a593Smuzhiyun /* The client's event type must be one defined by an extension. */
150*4882a593Smuzhiyun
151*4882a593Smuzhiyun first = ((xEvent *) &stuff[1]);
152*4882a593Smuzhiyun for (i = 0; i < stuff->num_events; i++) {
153*4882a593Smuzhiyun if (!((EXTENSION_EVENT_BASE <= first[i].u.u.type) &&
154*4882a593Smuzhiyun (first[i].u.u.type < lastEvent))) {
155*4882a593Smuzhiyun client->errorValue = first[i].u.u.type;
156*4882a593Smuzhiyun return BadValue;
157*4882a593Smuzhiyun }
158*4882a593Smuzhiyun }
159*4882a593Smuzhiyun
160*4882a593Smuzhiyun list = (XEventClass *) (first + stuff->num_events);
161*4882a593Smuzhiyun if ((ret = CreateMaskFromList(client, list, stuff->count, tmp, dev,
162*4882a593Smuzhiyun X_SendExtensionEvent)) != Success)
163*4882a593Smuzhiyun return ret;
164*4882a593Smuzhiyun
165*4882a593Smuzhiyun ret = (SendEvent(client, dev, stuff->destination,
166*4882a593Smuzhiyun stuff->propagate, (xEvent *) &stuff[1],
167*4882a593Smuzhiyun tmp[stuff->deviceid].mask, stuff->num_events));
168*4882a593Smuzhiyun
169*4882a593Smuzhiyun return ret;
170*4882a593Smuzhiyun }
171