xref: /OK3568_Linux_fs/external/xserver/Xi/chgdctl.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  *  Change Device control attributes for 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 <X11/extensions/XI.h>
59*4882a593Smuzhiyun #include <X11/extensions/XIproto.h>     /* control constants */
60*4882a593Smuzhiyun #include "XIstubs.h"
61*4882a593Smuzhiyun 
62*4882a593Smuzhiyun #include "exglobals.h"
63*4882a593Smuzhiyun #include "exevents.h"
64*4882a593Smuzhiyun 
65*4882a593Smuzhiyun #include "chgdctl.h"
66*4882a593Smuzhiyun 
67*4882a593Smuzhiyun /***********************************************************************
68*4882a593Smuzhiyun  *
69*4882a593Smuzhiyun  * This procedure changes the control attributes for an extension device,
70*4882a593Smuzhiyun  * for clients on machines with a different byte ordering than the server.
71*4882a593Smuzhiyun  *
72*4882a593Smuzhiyun  */
73*4882a593Smuzhiyun 
74*4882a593Smuzhiyun int _X_COLD
SProcXChangeDeviceControl(ClientPtr client)75*4882a593Smuzhiyun SProcXChangeDeviceControl(ClientPtr client)
76*4882a593Smuzhiyun {
77*4882a593Smuzhiyun     xDeviceCtl *ctl;
78*4882a593Smuzhiyun 
79*4882a593Smuzhiyun     REQUEST(xChangeDeviceControlReq);
80*4882a593Smuzhiyun     swaps(&stuff->length);
81*4882a593Smuzhiyun     REQUEST_AT_LEAST_EXTRA_SIZE(xChangeDeviceControlReq, sizeof(xDeviceCtl));
82*4882a593Smuzhiyun     swaps(&stuff->control);
83*4882a593Smuzhiyun     ctl = (xDeviceCtl *) &stuff[1];
84*4882a593Smuzhiyun     swaps(&ctl->control);
85*4882a593Smuzhiyun     swaps(&ctl->length);
86*4882a593Smuzhiyun     switch (stuff->control) {
87*4882a593Smuzhiyun     case DEVICE_ABS_CALIB:
88*4882a593Smuzhiyun     case DEVICE_ABS_AREA:
89*4882a593Smuzhiyun     case DEVICE_CORE:
90*4882a593Smuzhiyun     case DEVICE_ENABLE:
91*4882a593Smuzhiyun     case DEVICE_RESOLUTION:
92*4882a593Smuzhiyun         /* hmm. beer. *drool* */
93*4882a593Smuzhiyun         break;
94*4882a593Smuzhiyun 
95*4882a593Smuzhiyun     }
96*4882a593Smuzhiyun     return (ProcXChangeDeviceControl(client));
97*4882a593Smuzhiyun }
98*4882a593Smuzhiyun 
99*4882a593Smuzhiyun /***********************************************************************
100*4882a593Smuzhiyun  *
101*4882a593Smuzhiyun  * Change the control attributes.
102*4882a593Smuzhiyun  *
103*4882a593Smuzhiyun  */
104*4882a593Smuzhiyun 
105*4882a593Smuzhiyun int
ProcXChangeDeviceControl(ClientPtr client)106*4882a593Smuzhiyun ProcXChangeDeviceControl(ClientPtr client)
107*4882a593Smuzhiyun {
108*4882a593Smuzhiyun     unsigned len;
109*4882a593Smuzhiyun     int i, status, ret = BadValue;
110*4882a593Smuzhiyun     DeviceIntPtr dev;
111*4882a593Smuzhiyun     xDeviceResolutionCtl *r;
112*4882a593Smuzhiyun     xChangeDeviceControlReply rep;
113*4882a593Smuzhiyun     AxisInfoPtr a;
114*4882a593Smuzhiyun     CARD32 *resolution;
115*4882a593Smuzhiyun     xDeviceEnableCtl *e;
116*4882a593Smuzhiyun 
117*4882a593Smuzhiyun     REQUEST(xChangeDeviceControlReq);
118*4882a593Smuzhiyun     REQUEST_AT_LEAST_EXTRA_SIZE(xChangeDeviceControlReq, sizeof(xDeviceCtl));
119*4882a593Smuzhiyun 
120*4882a593Smuzhiyun     len = stuff->length - bytes_to_int32(sizeof(xChangeDeviceControlReq));
121*4882a593Smuzhiyun     ret = dixLookupDevice(&dev, stuff->deviceid, client, DixManageAccess);
122*4882a593Smuzhiyun     if (ret != Success)
123*4882a593Smuzhiyun         goto out;
124*4882a593Smuzhiyun 
125*4882a593Smuzhiyun     /* XTest devices are special, none of the below apply to them anyway */
126*4882a593Smuzhiyun     if (IsXTestDevice(dev, NULL)) {
127*4882a593Smuzhiyun         ret = BadMatch;
128*4882a593Smuzhiyun         goto out;
129*4882a593Smuzhiyun     }
130*4882a593Smuzhiyun 
131*4882a593Smuzhiyun     rep = (xChangeDeviceControlReply) {
132*4882a593Smuzhiyun         .repType = X_Reply,
133*4882a593Smuzhiyun         .RepType = X_ChangeDeviceControl,
134*4882a593Smuzhiyun         .sequenceNumber = client->sequence,
135*4882a593Smuzhiyun         .length = 0,
136*4882a593Smuzhiyun         .status = Success,
137*4882a593Smuzhiyun     };
138*4882a593Smuzhiyun 
139*4882a593Smuzhiyun     switch (stuff->control) {
140*4882a593Smuzhiyun     case DEVICE_RESOLUTION:
141*4882a593Smuzhiyun         r = (xDeviceResolutionCtl *) &stuff[1];
142*4882a593Smuzhiyun         if ((len < bytes_to_int32(sizeof(xDeviceResolutionCtl))) ||
143*4882a593Smuzhiyun             (len !=
144*4882a593Smuzhiyun              bytes_to_int32(sizeof(xDeviceResolutionCtl)) + r->num_valuators)) {
145*4882a593Smuzhiyun             ret = BadLength;
146*4882a593Smuzhiyun             goto out;
147*4882a593Smuzhiyun         }
148*4882a593Smuzhiyun         if (!dev->valuator) {
149*4882a593Smuzhiyun             ret = BadMatch;
150*4882a593Smuzhiyun             goto out;
151*4882a593Smuzhiyun         }
152*4882a593Smuzhiyun         if ((dev->deviceGrab.grab) && !SameClient(dev->deviceGrab.grab, client)) {
153*4882a593Smuzhiyun             rep.status = AlreadyGrabbed;
154*4882a593Smuzhiyun             ret = Success;
155*4882a593Smuzhiyun             goto out;
156*4882a593Smuzhiyun         }
157*4882a593Smuzhiyun         resolution = (CARD32 *) (r + 1);
158*4882a593Smuzhiyun         if (r->first_valuator + r->num_valuators > dev->valuator->numAxes) {
159*4882a593Smuzhiyun             ret = BadValue;
160*4882a593Smuzhiyun             goto out;
161*4882a593Smuzhiyun         }
162*4882a593Smuzhiyun         status = ChangeDeviceControl(client, dev, (xDeviceCtl *) r);
163*4882a593Smuzhiyun         if (status == Success) {
164*4882a593Smuzhiyun             a = &dev->valuator->axes[r->first_valuator];
165*4882a593Smuzhiyun             for (i = 0; i < r->num_valuators; i++)
166*4882a593Smuzhiyun                 if (*(resolution + i) < (a + i)->min_resolution ||
167*4882a593Smuzhiyun                     *(resolution + i) > (a + i)->max_resolution)
168*4882a593Smuzhiyun                     return BadValue;
169*4882a593Smuzhiyun             for (i = 0; i < r->num_valuators; i++)
170*4882a593Smuzhiyun                 (a++)->resolution = *resolution++;
171*4882a593Smuzhiyun 
172*4882a593Smuzhiyun             ret = Success;
173*4882a593Smuzhiyun         }
174*4882a593Smuzhiyun         else if (status == DeviceBusy) {
175*4882a593Smuzhiyun             rep.status = DeviceBusy;
176*4882a593Smuzhiyun             ret = Success;
177*4882a593Smuzhiyun         }
178*4882a593Smuzhiyun         else {
179*4882a593Smuzhiyun             ret = BadMatch;
180*4882a593Smuzhiyun         }
181*4882a593Smuzhiyun         break;
182*4882a593Smuzhiyun     case DEVICE_ABS_CALIB:
183*4882a593Smuzhiyun     case DEVICE_ABS_AREA:
184*4882a593Smuzhiyun         /* Calibration is now done through properties, and never had any effect
185*4882a593Smuzhiyun          * on anything (in the open-source world). Thus, be honest. */
186*4882a593Smuzhiyun         ret = BadMatch;
187*4882a593Smuzhiyun         break;
188*4882a593Smuzhiyun     case DEVICE_CORE:
189*4882a593Smuzhiyun         /* Sorry, no device core switching no more. If you want a device to
190*4882a593Smuzhiyun          * send core events, attach it to a master device */
191*4882a593Smuzhiyun         ret = BadMatch;
192*4882a593Smuzhiyun         break;
193*4882a593Smuzhiyun     case DEVICE_ENABLE:
194*4882a593Smuzhiyun         e = (xDeviceEnableCtl *) &stuff[1];
195*4882a593Smuzhiyun         if ((len != bytes_to_int32(sizeof(xDeviceEnableCtl)))) {
196*4882a593Smuzhiyun             ret = BadLength;
197*4882a593Smuzhiyun             goto out;
198*4882a593Smuzhiyun         }
199*4882a593Smuzhiyun 
200*4882a593Smuzhiyun         if (IsXTestDevice(dev, NULL))
201*4882a593Smuzhiyun             status = !Success;
202*4882a593Smuzhiyun         else
203*4882a593Smuzhiyun             status = ChangeDeviceControl(client, dev, (xDeviceCtl *) e);
204*4882a593Smuzhiyun 
205*4882a593Smuzhiyun         if (status == Success) {
206*4882a593Smuzhiyun             if (e->enable)
207*4882a593Smuzhiyun                 EnableDevice(dev, TRUE);
208*4882a593Smuzhiyun             else
209*4882a593Smuzhiyun                 DisableDevice(dev, TRUE);
210*4882a593Smuzhiyun             ret = Success;
211*4882a593Smuzhiyun         }
212*4882a593Smuzhiyun         else if (status == DeviceBusy) {
213*4882a593Smuzhiyun             rep.status = DeviceBusy;
214*4882a593Smuzhiyun             ret = Success;
215*4882a593Smuzhiyun         }
216*4882a593Smuzhiyun         else {
217*4882a593Smuzhiyun             ret = BadMatch;
218*4882a593Smuzhiyun         }
219*4882a593Smuzhiyun 
220*4882a593Smuzhiyun         break;
221*4882a593Smuzhiyun     default:
222*4882a593Smuzhiyun         ret = BadValue;
223*4882a593Smuzhiyun     }
224*4882a593Smuzhiyun 
225*4882a593Smuzhiyun  out:
226*4882a593Smuzhiyun     if (ret == Success) {
227*4882a593Smuzhiyun         devicePresenceNotify dpn = {
228*4882a593Smuzhiyun             .type = DevicePresenceNotify,
229*4882a593Smuzhiyun             .time = currentTime.milliseconds,
230*4882a593Smuzhiyun             .devchange = DeviceControlChanged,
231*4882a593Smuzhiyun             .deviceid = dev->id,
232*4882a593Smuzhiyun             .control = stuff->control
233*4882a593Smuzhiyun         };
234*4882a593Smuzhiyun         SendEventToAllWindows(dev, DevicePresenceNotifyMask,
235*4882a593Smuzhiyun                               (xEvent *) &dpn, 1);
236*4882a593Smuzhiyun 
237*4882a593Smuzhiyun         WriteReplyToClient(client, sizeof(xChangeDeviceControlReply), &rep);
238*4882a593Smuzhiyun     }
239*4882a593Smuzhiyun 
240*4882a593Smuzhiyun     return ret;
241*4882a593Smuzhiyun }
242*4882a593Smuzhiyun 
243*4882a593Smuzhiyun /***********************************************************************
244*4882a593Smuzhiyun  *
245*4882a593Smuzhiyun  * This procedure writes the reply for the xChangeDeviceControl function,
246*4882a593Smuzhiyun  * if the client and server have a different byte ordering.
247*4882a593Smuzhiyun  *
248*4882a593Smuzhiyun  */
249*4882a593Smuzhiyun 
250*4882a593Smuzhiyun void _X_COLD
SRepXChangeDeviceControl(ClientPtr client,int size,xChangeDeviceControlReply * rep)251*4882a593Smuzhiyun SRepXChangeDeviceControl(ClientPtr client, int size,
252*4882a593Smuzhiyun                          xChangeDeviceControlReply * rep)
253*4882a593Smuzhiyun {
254*4882a593Smuzhiyun     swaps(&rep->sequenceNumber);
255*4882a593Smuzhiyun     swapl(&rep->length);
256*4882a593Smuzhiyun     WriteToClient(client, size, rep);
257*4882a593Smuzhiyun }
258