xref: /OK3568_Linux_fs/external/xserver/Xi/grabdev.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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  * Extension function to grab an extension device.
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 structure  */
59*4882a593Smuzhiyun #include <X11/extensions/XI.h>
60*4882a593Smuzhiyun #include <X11/extensions/XIproto.h>
61*4882a593Smuzhiyun #include "exglobals.h"
62*4882a593Smuzhiyun #include "dixevents.h"          /* GrabDevice */
63*4882a593Smuzhiyun 
64*4882a593Smuzhiyun #include "grabdev.h"
65*4882a593Smuzhiyun 
66*4882a593Smuzhiyun extern XExtEventInfo EventInfo[];
67*4882a593Smuzhiyun extern int ExtEventIndex;
68*4882a593Smuzhiyun 
69*4882a593Smuzhiyun /***********************************************************************
70*4882a593Smuzhiyun  *
71*4882a593Smuzhiyun  * Swap the request if the requestor has a different byte order than us.
72*4882a593Smuzhiyun  *
73*4882a593Smuzhiyun  */
74*4882a593Smuzhiyun 
75*4882a593Smuzhiyun int _X_COLD
SProcXGrabDevice(ClientPtr client)76*4882a593Smuzhiyun SProcXGrabDevice(ClientPtr client)
77*4882a593Smuzhiyun {
78*4882a593Smuzhiyun     REQUEST(xGrabDeviceReq);
79*4882a593Smuzhiyun     swaps(&stuff->length);
80*4882a593Smuzhiyun     REQUEST_AT_LEAST_SIZE(xGrabDeviceReq);
81*4882a593Smuzhiyun     swapl(&stuff->grabWindow);
82*4882a593Smuzhiyun     swapl(&stuff->time);
83*4882a593Smuzhiyun     swaps(&stuff->event_count);
84*4882a593Smuzhiyun 
85*4882a593Smuzhiyun     if (stuff->length !=
86*4882a593Smuzhiyun         bytes_to_int32(sizeof(xGrabDeviceReq)) + stuff->event_count)
87*4882a593Smuzhiyun         return BadLength;
88*4882a593Smuzhiyun 
89*4882a593Smuzhiyun     SwapLongs((CARD32 *) (&stuff[1]), stuff->event_count);
90*4882a593Smuzhiyun 
91*4882a593Smuzhiyun     return (ProcXGrabDevice(client));
92*4882a593Smuzhiyun }
93*4882a593Smuzhiyun 
94*4882a593Smuzhiyun /***********************************************************************
95*4882a593Smuzhiyun  *
96*4882a593Smuzhiyun  * Grab an extension device.
97*4882a593Smuzhiyun  *
98*4882a593Smuzhiyun  */
99*4882a593Smuzhiyun 
100*4882a593Smuzhiyun int
ProcXGrabDevice(ClientPtr client)101*4882a593Smuzhiyun ProcXGrabDevice(ClientPtr client)
102*4882a593Smuzhiyun {
103*4882a593Smuzhiyun     int rc;
104*4882a593Smuzhiyun     xGrabDeviceReply rep;
105*4882a593Smuzhiyun     DeviceIntPtr dev;
106*4882a593Smuzhiyun     GrabMask mask;
107*4882a593Smuzhiyun     struct tmask tmp[EMASKSIZE];
108*4882a593Smuzhiyun 
109*4882a593Smuzhiyun     REQUEST(xGrabDeviceReq);
110*4882a593Smuzhiyun     REQUEST_AT_LEAST_SIZE(xGrabDeviceReq);
111*4882a593Smuzhiyun 
112*4882a593Smuzhiyun     if (stuff->length !=
113*4882a593Smuzhiyun         bytes_to_int32(sizeof(xGrabDeviceReq)) + stuff->event_count)
114*4882a593Smuzhiyun         return BadLength;
115*4882a593Smuzhiyun 
116*4882a593Smuzhiyun     rep = (xGrabDeviceReply) {
117*4882a593Smuzhiyun         .repType = X_Reply,
118*4882a593Smuzhiyun         .RepType = X_GrabDevice,
119*4882a593Smuzhiyun         .sequenceNumber = client->sequence,
120*4882a593Smuzhiyun         .length = 0,
121*4882a593Smuzhiyun     };
122*4882a593Smuzhiyun 
123*4882a593Smuzhiyun     rc = dixLookupDevice(&dev, stuff->deviceid, client, DixGrabAccess);
124*4882a593Smuzhiyun     if (rc != Success)
125*4882a593Smuzhiyun         return rc;
126*4882a593Smuzhiyun 
127*4882a593Smuzhiyun     if ((rc = CreateMaskFromList(client, (XEventClass *) &stuff[1],
128*4882a593Smuzhiyun                                  stuff->event_count, tmp, dev,
129*4882a593Smuzhiyun                                  X_GrabDevice)) != Success)
130*4882a593Smuzhiyun         return rc;
131*4882a593Smuzhiyun 
132*4882a593Smuzhiyun     mask.xi = tmp[stuff->deviceid].mask;
133*4882a593Smuzhiyun 
134*4882a593Smuzhiyun     rc = GrabDevice(client, dev, stuff->other_devices_mode,
135*4882a593Smuzhiyun                     stuff->this_device_mode, stuff->grabWindow,
136*4882a593Smuzhiyun                     stuff->ownerEvents, stuff->time,
137*4882a593Smuzhiyun                     &mask, XI, None, None, &rep.status);
138*4882a593Smuzhiyun 
139*4882a593Smuzhiyun     if (rc != Success)
140*4882a593Smuzhiyun         return rc;
141*4882a593Smuzhiyun 
142*4882a593Smuzhiyun     WriteReplyToClient(client, sizeof(xGrabDeviceReply), &rep);
143*4882a593Smuzhiyun     return Success;
144*4882a593Smuzhiyun }
145*4882a593Smuzhiyun 
146*4882a593Smuzhiyun /***********************************************************************
147*4882a593Smuzhiyun  *
148*4882a593Smuzhiyun  * This procedure creates an event mask from a list of XEventClasses.
149*4882a593Smuzhiyun  *
150*4882a593Smuzhiyun  * Procedure is as follows:
151*4882a593Smuzhiyun  * An XEventClass is (deviceid << 8 | eventtype). For each entry in the list,
152*4882a593Smuzhiyun  * get the device. Then run through all available event indices (those are
153*4882a593Smuzhiyun  * set when XI starts up) and binary OR's the device's mask to whatever the
154*4882a593Smuzhiyun  * event mask for the given event type was.
155*4882a593Smuzhiyun  * If an error occurs, it is sent to the client. Errors are generated if
156*4882a593Smuzhiyun  *  - if the device given in the event classs is invalid
157*4882a593Smuzhiyun  *  - if the device in the class list is not the device given as parameter (no
158*4882a593Smuzhiyun  *  error if parameter is NULL)
159*4882a593Smuzhiyun  *
160*4882a593Smuzhiyun  * mask has to be size EMASKSIZE and pre-allocated.
161*4882a593Smuzhiyun  *
162*4882a593Smuzhiyun  * @param client The client to send the error to (if one occurs)
163*4882a593Smuzhiyun  * @param list List of event classes as sent from the client.
164*4882a593Smuzhiyun  * @param count Number of elements in list.
165*4882a593Smuzhiyun  * @param mask Preallocated mask (size EMASKSIZE).
166*4882a593Smuzhiyun  * @param dev The device we're creating masks for.
167*4882a593Smuzhiyun  * @param req The request we're processing. Used to fill in error fields.
168*4882a593Smuzhiyun  */
169*4882a593Smuzhiyun 
170*4882a593Smuzhiyun int
CreateMaskFromList(ClientPtr client,XEventClass * list,int count,struct tmask * mask,DeviceIntPtr dev,int req)171*4882a593Smuzhiyun CreateMaskFromList(ClientPtr client, XEventClass * list, int count,
172*4882a593Smuzhiyun                    struct tmask *mask, DeviceIntPtr dev, int req)
173*4882a593Smuzhiyun {
174*4882a593Smuzhiyun     int rc, i, j;
175*4882a593Smuzhiyun     int device;
176*4882a593Smuzhiyun     DeviceIntPtr tdev;
177*4882a593Smuzhiyun 
178*4882a593Smuzhiyun     memset(mask, 0, EMASKSIZE * sizeof(struct tmask));
179*4882a593Smuzhiyun 
180*4882a593Smuzhiyun     for (i = 0; i < count; i++, list++) {
181*4882a593Smuzhiyun         device = *list >> 8;
182*4882a593Smuzhiyun         if (device > 255)
183*4882a593Smuzhiyun             return BadClass;
184*4882a593Smuzhiyun 
185*4882a593Smuzhiyun         rc = dixLookupDevice(&tdev, device, client, DixUseAccess);
186*4882a593Smuzhiyun         if (rc != BadDevice && rc != Success)
187*4882a593Smuzhiyun             return rc;
188*4882a593Smuzhiyun         if (rc == BadDevice || (dev != NULL && tdev != dev))
189*4882a593Smuzhiyun             return BadClass;
190*4882a593Smuzhiyun 
191*4882a593Smuzhiyun         for (j = 0; j < ExtEventIndex; j++)
192*4882a593Smuzhiyun             if (EventInfo[j].type == (*list & 0xff)) {
193*4882a593Smuzhiyun                 mask[device].mask |= EventInfo[j].mask;
194*4882a593Smuzhiyun                 mask[device].dev = (void *) tdev;
195*4882a593Smuzhiyun                 break;
196*4882a593Smuzhiyun             }
197*4882a593Smuzhiyun     }
198*4882a593Smuzhiyun     return Success;
199*4882a593Smuzhiyun }
200*4882a593Smuzhiyun 
201*4882a593Smuzhiyun /***********************************************************************
202*4882a593Smuzhiyun  *
203*4882a593Smuzhiyun  * This procedure writes the reply for the XGrabDevice function,
204*4882a593Smuzhiyun  * if the client and server have a different byte ordering.
205*4882a593Smuzhiyun  *
206*4882a593Smuzhiyun  */
207*4882a593Smuzhiyun 
208*4882a593Smuzhiyun void _X_COLD
SRepXGrabDevice(ClientPtr client,int size,xGrabDeviceReply * rep)209*4882a593Smuzhiyun SRepXGrabDevice(ClientPtr client, int size, xGrabDeviceReply * rep)
210*4882a593Smuzhiyun {
211*4882a593Smuzhiyun     swaps(&rep->sequenceNumber);
212*4882a593Smuzhiyun     swapl(&rep->length);
213*4882a593Smuzhiyun     WriteToClient(client, size, rep);
214*4882a593Smuzhiyun }
215