2 ** Copyright (c) 1995 Michael Smith, All rights reserved.
4 ** Redistribution and use in source and binary forms, with or without
5 ** modification, are permitted provided that the following conditions
7 ** 1. Redistributions of source code must retain the above copyright
8 ** notice, this list of conditions and the following disclaimer as
9 ** the first lines of this file unmodified.
10 ** 2. Redistributions in binary form must reproduce the above copyright
11 ** notice, this list of conditions and the following disclaimer in the
12 ** documentation and/or other materials provided with the distribution.
13 ** 3. All advertising materials mentioning features or use of this software
14 ** must display the following acknowledgment:
15 ** This product includes software developed by Michael Smith.
16 ** 4. The name of the author may not be used to endorse or promote products
17 ** derived from this software without specific prior written permission.
20 ** THIS SOFTWARE IS PROVIDED BY Michael Smith ``AS IS'' AND ANY
21 ** EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 ** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 ** PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Michael Smith BE LIABLE FOR
24 ** ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 ** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 ** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
27 ** BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28 ** WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
29 ** OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30 ** EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 ** Mouse daemon : listens to a serial port, the bus mouse interface, or
38 ** the PS/2 mouse port for mouse data stream, interprets data and passes
39 ** ioctls off to the console driver.
41 ** The mouse interface functions are derived closely from the mouse
42 ** handler in the XFree86 X server. Many thanks to the XFree86 people
43 ** for their great work!
48 * $FreeBSD: src/usr.sbin/moused/moused.c,v 1.69 2005/01/06 08:38:29 philip Exp $
51 #include <machine/console.h>
52 #include <sys/mouse.h>
53 #include <sys/param.h>
54 #include <sys/consio.h>
55 #include <sys/linker.h>
56 #include <sys/module.h>
57 #include <sys/socket.h>
77 #define MAX_CLICKTHRESHOLD 2000 /* 2 seconds */
78 #define MAX_BUTTON2TIMEOUT 2000 /* 2 seconds */
79 #define DFLT_CLICKTHRESHOLD 500 /* 0.5 second */
80 #define DFLT_BUTTON2TIMEOUT 100 /* 0.1 second */
81 #define DFLT_SCROLLTHRESHOLD 3 /* 3 pixels */
83 /* Abort 3-button emulation delay after this many movement events. */
84 #define BUTTON2_MAXMOVE 3
89 #define MOUSE_XAXIS (-1)
90 #define MOUSE_YAXIS (-2)
92 /* Logitech PS2++ protocol */
93 #define MOUSE_PS2PLUS_CHECKBITS(b) \
94 ((((b[2] & 0x03) << 2) | 0x02) == (b[1] & 0x0f))
95 #define MOUSE_PS2PLUS_PACKET_TYPE(b) \
96 (((b[0] & 0x30) >> 2) | ((b[1] & 0x30) >> 4))
98 #define ChordMiddle 0x0001
99 #define Emulate3Button 0x0002
100 #define ClearDTR 0x0004
101 #define ClearRTS 0x0008
103 #define VirtualScroll 0x0020
110 #define ID_ALL (ID_PORT | ID_IF | ID_TYPE | ID_MODEL)
112 #define debug(fmt, args...) do { \
113 if (debug && nodaemon) \
114 warnx(fmt, ##args); \
117 #define logerr(e, fmt, args...) do { \
118 log_or_warn(LOG_DAEMON | LOG_ERR, errno, fmt, ##args); \
122 #define logerrx(e, fmt, args...) do { \
123 log_or_warn(LOG_DAEMON | LOG_ERR, 0, fmt, ##args); \
127 #define logwarn(fmt, args...) \
128 log_or_warn(LOG_DAEMON | LOG_WARNING, errno, fmt, ##args)
130 #define logwarnx(fmt, args...) \
131 log_or_warn(LOG_DAEMON | LOG_WARNING, 0, fmt, ##args)
135 /* symbol table entry */
142 /* serial PnP ID string */
144 int revision
; /* PnP revision, 100 for 1.00 */
145 char *eisaid
; /* EISA ID including mfr ID and product ID */
146 char *serial
; /* serial No, optional */
147 char *class; /* device class, optional */
148 char *compat
; /* list of compatible drivers, optional */
149 char *description
; /* product description, optional */
150 int neisaid
; /* length of the above fields... */
157 /* global variables */
160 int nodaemon
= FALSE
;
161 int background
= FALSE
;
162 int identify
= ID_NONE
;
163 int extioctl
= FALSE
;
164 char *pidfile
= "/var/run/moused.pid";
166 #define SCROLL_NOTSCROLLING 0
167 #define SCROLL_PREPARE 1
168 #define SCROLL_SCROLLING 2
170 static int scroll_state
;
171 static int scroll_movement
;
173 /* local variables */
175 /* interface (the table must be ordered by MOUSE_IF_XXX in mouse.h) */
176 static symtab_t rifs
[] = {
177 { "serial", MOUSE_IF_SERIAL
},
178 { "bus", MOUSE_IF_BUS
},
179 { "inport", MOUSE_IF_INPORT
},
180 { "ps/2", MOUSE_IF_PS2
},
181 { "sysmouse", MOUSE_IF_SYSMOUSE
},
182 { "usb", MOUSE_IF_USB
},
183 { NULL
, MOUSE_IF_UNKNOWN
},
186 /* types (the table must be ordered by MOUSE_PROTO_XXX in mouse.h) */
187 static char *rnames
[] = {
212 static symtab_t rmodels
[] = {
213 { "NetScroll", MOUSE_MODEL_NETSCROLL
},
214 { "NetMouse/NetScroll Optical", MOUSE_MODEL_NET
},
215 { "GlidePoint", MOUSE_MODEL_GLIDEPOINT
},
216 { "ThinkingMouse", MOUSE_MODEL_THINK
},
217 { "IntelliMouse", MOUSE_MODEL_INTELLI
},
218 { "EasyScroll/SmartScroll", MOUSE_MODEL_EASYSCROLL
},
219 { "MouseMan+", MOUSE_MODEL_MOUSEMANPLUS
},
220 { "Kidspad", MOUSE_MODEL_KIDSPAD
},
221 { "VersaPad", MOUSE_MODEL_VERSAPAD
},
222 { "IntelliMouse Explorer", MOUSE_MODEL_EXPLORER
},
223 { "4D Mouse", MOUSE_MODEL_4D
},
224 { "4D+ Mouse", MOUSE_MODEL_4DPLUS
},
225 { "Synaptics Touchpad", MOUSE_MODEL_SYNAPTICS
},
226 { "generic", MOUSE_MODEL_GENERIC
},
227 { NULL
, MOUSE_MODEL_UNKNOWN
},
230 /* PnP EISA/product IDs */
231 static symtab_t pnpprod
[] = {
232 /* Kensignton ThinkingMouse */
233 { "KML0001", MOUSE_PROTO_THINK
, MOUSE_MODEL_THINK
},
234 /* MS IntelliMouse */
235 { "MSH0001", MOUSE_PROTO_INTELLI
, MOUSE_MODEL_INTELLI
},
236 /* MS IntelliMouse TrackBall */
237 { "MSH0004", MOUSE_PROTO_INTELLI
, MOUSE_MODEL_INTELLI
},
238 /* Tremon Wheel Mouse MUSD */
239 { "HTK0001", MOUSE_PROTO_INTELLI
, MOUSE_MODEL_INTELLI
},
240 /* Genius PnP Mouse */
241 { "KYE0001", MOUSE_PROTO_MS
, MOUSE_MODEL_GENERIC
},
242 /* MouseSystems SmartScroll Mouse (OEM from Genius?) */
243 { "KYE0002", MOUSE_PROTO_MS
, MOUSE_MODEL_EASYSCROLL
},
244 /* Genius NetMouse */
245 { "KYE0003", MOUSE_PROTO_INTELLI
, MOUSE_MODEL_NET
},
246 /* Genius Kidspad, Easypad and other tablets */
247 { "KYE0005", MOUSE_PROTO_KIDSPAD
, MOUSE_MODEL_KIDSPAD
},
248 /* Genius EZScroll */
249 { "KYEEZ00", MOUSE_PROTO_MS
, MOUSE_MODEL_EASYSCROLL
},
250 /* Logitech Cordless MouseMan Wheel */
251 { "LGI8033", MOUSE_PROTO_INTELLI
, MOUSE_MODEL_MOUSEMANPLUS
},
252 /* Logitech MouseMan (new 4 button model) */
253 { "LGI800C", MOUSE_PROTO_INTELLI
, MOUSE_MODEL_MOUSEMANPLUS
},
254 /* Logitech MouseMan+ */
255 { "LGI8050", MOUSE_PROTO_INTELLI
, MOUSE_MODEL_MOUSEMANPLUS
},
256 /* Logitech FirstMouse+ */
257 { "LGI8051", MOUSE_PROTO_INTELLI
, MOUSE_MODEL_MOUSEMANPLUS
},
258 /* Logitech serial */
259 { "LGI8001", MOUSE_PROTO_LOGIMOUSEMAN
, MOUSE_MODEL_GENERIC
},
260 /* A4 Tech 4D/4D+ Mouse */
261 { "A4W0005", MOUSE_PROTO_INTELLI
, MOUSE_MODEL_4D
},
262 /* 8D Scroll Mouse */
263 { "PEC9802", MOUSE_PROTO_INTELLI
, MOUSE_MODEL_INTELLI
},
264 /* Mitsumi Wireless Scroll Mouse */
265 { "MTM6401", MOUSE_PROTO_INTELLI
, MOUSE_MODEL_INTELLI
},
268 { "PNP0F00", MOUSE_PROTO_BUS
, MOUSE_MODEL_GENERIC
},
270 { "PNP0F01", MOUSE_PROTO_MS
, MOUSE_MODEL_GENERIC
},
272 { "PNP0F02", MOUSE_PROTO_INPORT
, MOUSE_MODEL_GENERIC
},
274 { "PNP0F03", MOUSE_PROTO_PS2
, MOUSE_MODEL_GENERIC
},
276 * EzScroll returns PNP0F04 in the compatible device field; but it
277 * doesn't look compatible... XXX
280 { "PNP0F04", MOUSE_PROTO_MSC
, MOUSE_MODEL_GENERIC
},
282 { "PNP0F05", MOUSE_PROTO_MSC
, MOUSE_MODEL_GENERIC
},
285 { "PNP0F06", MOUSE_PROTO_XXX
, MOUSE_MODEL_GENERIC
},
287 { "PNP0F07", MOUSE_PROTO_XXX
, MOUSE_MODEL_GENERIC
},
289 /* Logitech serial */
290 { "PNP0F08", MOUSE_PROTO_LOGIMOUSEMAN
, MOUSE_MODEL_GENERIC
},
291 /* MS BallPoint serial */
292 { "PNP0F09", MOUSE_PROTO_MS
, MOUSE_MODEL_GENERIC
},
294 { "PNP0F0A", MOUSE_PROTO_MS
, MOUSE_MODEL_GENERIC
},
295 /* MS PnP BallPoint serial */
296 { "PNP0F0B", MOUSE_PROTO_MS
, MOUSE_MODEL_GENERIC
},
297 /* MS serial comatible */
298 { "PNP0F0C", MOUSE_PROTO_MS
, MOUSE_MODEL_GENERIC
},
299 /* MS InPort comatible */
300 { "PNP0F0D", MOUSE_PROTO_INPORT
, MOUSE_MODEL_GENERIC
},
301 /* MS PS/2 comatible */
302 { "PNP0F0E", MOUSE_PROTO_PS2
, MOUSE_MODEL_GENERIC
},
303 /* MS BallPoint comatible */
304 { "PNP0F0F", MOUSE_PROTO_MS
, MOUSE_MODEL_GENERIC
},
307 { "PNP0F10", MOUSE_PROTO_XXX
, MOUSE_MODEL_GENERIC
},
309 /* MS bus comatible */
310 { "PNP0F11", MOUSE_PROTO_BUS
, MOUSE_MODEL_GENERIC
},
312 { "PNP0F12", MOUSE_PROTO_PS2
, MOUSE_MODEL_GENERIC
},
314 { "PNP0F13", MOUSE_PROTO_PS2
, MOUSE_MODEL_GENERIC
},
317 { "PNP0F14", MOUSE_PROTO_XXX
, MOUSE_MODEL_GENERIC
},
320 { "PNP0F15", MOUSE_PROTO_BUS
, MOUSE_MODEL_GENERIC
},
323 { "PNP0F16", MOUSE_PROTO_XXX
, MOUSE_MODEL_GENERIC
},
325 /* Logitech serial compat */
326 { "PNP0F17", MOUSE_PROTO_LOGIMOUSEMAN
, MOUSE_MODEL_GENERIC
},
327 /* Logitech bus compatible */
328 { "PNP0F18", MOUSE_PROTO_BUS
, MOUSE_MODEL_GENERIC
},
329 /* Logitech PS/2 compatible */
330 { "PNP0F19", MOUSE_PROTO_PS2
, MOUSE_MODEL_GENERIC
},
332 /* Logitech SWIFT compatible */
333 { "PNP0F1A", MOUSE_PROTO_XXX
, MOUSE_MODEL_GENERIC
},
335 { "PNP0F1B", MOUSE_PROTO_XXX
, MOUSE_MODEL_GENERIC
},
336 /* Compaq LTE TrackBall PS/2 */
337 { "PNP0F1C", MOUSE_PROTO_XXX
, MOUSE_MODEL_GENERIC
},
338 /* Compaq LTE TrackBall serial */
339 { "PNP0F1D", MOUSE_PROTO_XXX
, MOUSE_MODEL_GENERIC
},
340 /* MS Kidts Trackball */
341 { "PNP0F1E", MOUSE_PROTO_XXX
, MOUSE_MODEL_GENERIC
},
343 /* Interlink VersaPad */
344 { "LNK0001", MOUSE_PROTO_VERSAPAD
, MOUSE_MODEL_VERSAPAD
},
346 { NULL
, MOUSE_PROTO_UNKNOWN
, MOUSE_MODEL_GENERIC
},
349 /* the table must be ordered by MOUSE_PROTO_XXX in mouse.h */
350 static unsigned short rodentcflags
[] =
352 (CS7
| CREAD
| CLOCAL
| HUPCL
), /* MicroSoft */
353 (CS8
| CSTOPB
| CREAD
| CLOCAL
| HUPCL
), /* MouseSystems */
354 (CS8
| CSTOPB
| CREAD
| CLOCAL
| HUPCL
), /* Logitech */
355 (CS8
| PARENB
| PARODD
| CREAD
| CLOCAL
| HUPCL
), /* MMSeries */
356 (CS7
| CREAD
| CLOCAL
| HUPCL
), /* MouseMan */
360 (CS8
| CREAD
| CLOCAL
| HUPCL
), /* MM HitTablet */
361 (CS7
| CREAD
| CLOCAL
| HUPCL
), /* GlidePoint */
362 (CS7
| CREAD
| CLOCAL
| HUPCL
), /* IntelliMouse */
363 (CS7
| CREAD
| CLOCAL
| HUPCL
), /* Thinking Mouse */
364 (CS8
| CSTOPB
| CREAD
| CLOCAL
| HUPCL
), /* sysmouse */
365 (CS7
| CREAD
| CLOCAL
| HUPCL
), /* X10 MouseRemote */
366 (CS8
| PARENB
| PARODD
| CREAD
| CLOCAL
| HUPCL
), /* kidspad etc. */
367 (CS8
| CREAD
| CLOCAL
| HUPCL
), /* VersaPad */
370 (CS8
| CSTOPB
| CREAD
| CLOCAL
| HUPCL
), /* Mariqua */
374 static struct rodentparam
{
376 char *portname
; /* /dev/XXX */
377 int rtype
; /* MOUSE_PROTO_XXX */
378 int level
; /* operation level: 0 or greater */
380 int rate
; /* report rate */
381 int resolution
; /* MOUSE_RES_XXX or a positive number */
382 int zmap
[4]; /* MOUSE_{X|Y}AXIS or a button number */
383 int wmode
; /* wheel mode button number */
384 int mfd
; /* mouse file descriptor */
385 int cfd
; /* /dev/consolectl file descriptor */
386 int mremsfd
; /* mouse remote server file descriptor */
387 int mremcfd
; /* mouse remote client file descriptor */
388 long clickthreshold
; /* double click speed in msec */
389 long button2timeout
; /* 3 button emulation timeout */
390 mousehw_t hw
; /* mouse device hardware information */
391 mousemode_t mode
; /* protocol information */
392 float accelx
; /* Acceleration in the X axis */
393 float accely
; /* Acceleration in the Y axis */
394 int scrollthreshold
; /* Movement distance before virtual scrolling */
398 .rtype
= MOUSE_PROTO_UNKNOWN
,
402 .resolution
= MOUSE_RES_UNKNOWN
,
403 .zmap
= { 0, 0, 0, 0 },
409 .clickthreshold
= DFLT_CLICKTHRESHOLD
,
410 .button2timeout
= DFLT_BUTTON2TIMEOUT
,
413 .scrollthreshold
= DFLT_SCROLLTHRESHOLD
,
417 struct button_state
{
418 int count
; /* 0: up, 1: single click, 2: double click,... */
419 struct timeval tv
; /* timestamp on the last button event */
421 static struct button_state bstate
[MOUSE_MAXBUTTON
]; /* button state */
422 static struct button_state
*mstate
[MOUSE_MAXBUTTON
];/* mapped button st.*/
423 static struct button_state zstate
[4]; /* Z/W axis state */
425 /* state machine for 3 button emulation */
427 #define S0 0 /* start */
428 #define S1 1 /* button 1 delayed down */
429 #define S2 2 /* button 3 delayed down */
430 #define S3 3 /* both buttons down -> button 2 down */
431 #define S4 4 /* button 1 delayed up */
432 #define S5 5 /* button 1 down */
433 #define S6 6 /* button 3 down */
434 #define S7 7 /* both buttons down */
435 #define S8 8 /* button 3 delayed up */
436 #define S9 9 /* button 1 or 3 up after S3 */
438 #define A(b1, b3) (((b1) ? 2 : 0) | ((b3) ? 1 : 0))
440 #define S_DELAYED(st) (states[st].s[A_TIMEOUT] != (st))
443 int s
[A_TIMEOUT
+ 1];
449 { { S0
, S2
, S1
, S3
, S0
}, 0, ~(MOUSE_BUTTON1DOWN
| MOUSE_BUTTON3DOWN
), FALSE
},
451 { { S4
, S2
, S1
, S3
, S5
}, 0, ~MOUSE_BUTTON1DOWN
, FALSE
},
453 { { S8
, S2
, S1
, S3
, S6
}, 0, ~MOUSE_BUTTON3DOWN
, FALSE
},
455 { { S0
, S9
, S9
, S3
, S3
}, MOUSE_BUTTON2DOWN
, ~0, FALSE
},
457 { { S0
, S2
, S1
, S3
, S0
}, MOUSE_BUTTON1DOWN
, ~0, TRUE
},
459 { { S0
, S2
, S5
, S7
, S5
}, MOUSE_BUTTON1DOWN
, ~0, FALSE
},
461 { { S0
, S6
, S1
, S7
, S6
}, MOUSE_BUTTON3DOWN
, ~0, FALSE
},
463 { { S0
, S6
, S5
, S7
, S7
}, MOUSE_BUTTON1DOWN
| MOUSE_BUTTON3DOWN
, ~0, FALSE
},
465 { { S0
, S2
, S1
, S3
, S0
}, MOUSE_BUTTON3DOWN
, ~0, TRUE
},
467 { { S0
, S9
, S9
, S3
, S9
}, 0, ~(MOUSE_BUTTON1DOWN
| MOUSE_BUTTON3DOWN
), FALSE
},
469 static int mouse_button_state
;
470 static struct timeval mouse_button_state_tv
;
471 static int mouse_move_delayed
;
475 /* function prototypes */
477 static void moused(void);
478 static void hup(int sig
);
479 static void cleanup(int sig
);
480 static void usage(void);
481 static void log_or_warn(int log_pri
, int errnum
, const char *fmt
, ...)
484 static int r_identify(void);
485 static char *r_if(int type
);
486 static char *r_name(int type
);
487 static char *r_model(int model
);
488 static void r_init(void);
489 static int r_protocol(u_char b
, mousestatus_t
*act
);
490 static int r_statetrans(mousestatus_t
*a1
, mousestatus_t
*a2
, int trans
);
491 static int r_installmap(char *arg
);
492 static void r_map(mousestatus_t
*act1
, mousestatus_t
*act2
);
493 static void r_timestamp(mousestatus_t
*act
);
494 static int r_timeout(void);
495 static void r_click(mousestatus_t
*act
);
496 static void setmousespeed(int old
, int new, unsigned cflag
);
498 static int pnpwakeup1(void);
499 static int pnpwakeup2(void);
500 static int pnpgets(char *buf
);
501 static int pnpparse(pnpid_t
*id
, char *buf
, int len
);
502 static symtab_t
*pnpproto(pnpid_t
*id
);
504 static symtab_t
*gettoken(symtab_t
*tab
, char *s
, int len
);
505 static char *gettokenname(symtab_t
*tab
, int val
);
507 static void mremote_serversetup();
508 static void mremote_clientchg(int add
);
510 static int kidspad(u_char rxc
, mousestatus_t
*act
);
512 static int usbmodule(void);
515 main(int argc
, char *argv
[])
522 for (i
= 0; i
< MOUSE_MAXBUTTON
; ++i
)
523 mstate
[i
] = &bstate
[i
];
525 while ((c
= getopt(argc
, argv
, "3C:DE:F:I:PRS:VU:a:cdfhi:l:m:p:r:st:w:z:")) != -1)
529 rodent
.flags
|= Emulate3Button
;
533 rodent
.button2timeout
= atoi(optarg
);
534 if ((rodent
.button2timeout
< 0) ||
535 (rodent
.button2timeout
> MAX_BUTTON2TIMEOUT
)) {
536 warnx("invalid argument `%s'", optarg
);
542 i
= sscanf(optarg
, "%f,%f", &rodent
.accelx
, &rodent
.accely
);
544 warnx("invalid acceleration argument '%s'", optarg
);
549 rodent
.accely
= rodent
.accelx
;
554 rodent
.flags
|= ChordMiddle
;
566 if (strcmp(optarg
, "all") == 0)
568 else if (strcmp(optarg
, "port") == 0)
570 else if (strcmp(optarg
, "if") == 0)
572 else if (strcmp(optarg
, "type") == 0)
574 else if (strcmp(optarg
, "model") == 0)
577 warnx("invalid argument `%s'", optarg
);
584 rodent
.level
= atoi(optarg
);
585 if ((rodent
.level
< 0) || (rodent
.level
> 4)) {
586 warnx("invalid argument `%s'", optarg
);
592 if (!r_installmap(optarg
)) {
593 warnx("invalid argument `%s'", optarg
);
599 rodent
.portname
= optarg
;
603 if (strcmp(optarg
, "high") == 0)
604 rodent
.resolution
= MOUSE_RES_HIGH
;
605 else if (strcmp(optarg
, "medium-high") == 0)
606 rodent
.resolution
= MOUSE_RES_HIGH
;
607 else if (strcmp(optarg
, "medium-low") == 0)
608 rodent
.resolution
= MOUSE_RES_MEDIUMLOW
;
609 else if (strcmp(optarg
, "low") == 0)
610 rodent
.resolution
= MOUSE_RES_LOW
;
611 else if (strcmp(optarg
, "default") == 0)
612 rodent
.resolution
= MOUSE_RES_DEFAULT
;
614 rodent
.resolution
= atoi(optarg
);
615 if (rodent
.resolution
<= 0) {
616 warnx("invalid argument `%s'", optarg
);
623 rodent
.baudrate
= 9600;
628 if ((i
<= 0) || (i
> MOUSE_MAXBUTTON
)) {
629 warnx("invalid argument `%s'", optarg
);
632 rodent
.wmode
= 1 << (i
- 1);
636 if (strcmp(optarg
, "x") == 0)
637 rodent
.zmap
[0] = MOUSE_XAXIS
;
638 else if (strcmp(optarg
, "y") == 0)
639 rodent
.zmap
[0] = MOUSE_YAXIS
;
643 * Use button i for negative Z axis movement and
644 * button (i + 1) for positive Z axis movement.
646 if ((i
<= 0) || (i
> MOUSE_MAXBUTTON
- 1)) {
647 warnx("invalid argument `%s'", optarg
);
651 rodent
.zmap
[1] = i
+ 1;
652 debug("optind: %d, optarg: '%s'", optind
, optarg
);
653 for (j
= 1; j
< 4; ++j
) {
654 if ((optind
>= argc
) || !isdigit(*argv
[optind
]))
656 i
= atoi(argv
[optind
]);
657 if ((i
<= 0) || (i
> MOUSE_MAXBUTTON
- 1)) {
658 warnx("invalid argument `%s'", argv
[optind
]);
664 if ((rodent
.zmap
[2] != 0) && (rodent
.zmap
[3] == 0))
665 rodent
.zmap
[3] = rodent
.zmap
[2] + 1;
670 rodent
.clickthreshold
= atoi(optarg
);
671 if ((rodent
.clickthreshold
< 0) ||
672 (rodent
.clickthreshold
> MAX_CLICKTHRESHOLD
)) {
673 warnx("invalid argument `%s'", optarg
);
679 rodent
.flags
|= ClearDTR
;
683 rodent
.rate
= atoi(optarg
);
684 if (rodent
.rate
<= 0) {
685 warnx("invalid argument `%s'", optarg
);
695 rodent
.flags
|= NoPnP
;
699 rodent
.flags
|= ClearRTS
;
703 rodent
.baudrate
= atoi(optarg
);
704 if (rodent
.baudrate
<= 0) {
705 warnx("invalid argument `%s'", optarg
);
708 debug("rodent baudrate %d", rodent
.baudrate
);
712 if (strcmp(optarg
, "auto") == 0) {
713 rodent
.rtype
= MOUSE_PROTO_UNKNOWN
;
714 rodent
.flags
&= ~NoPnP
;
718 for (i
= 0; rnames
[i
]; i
++)
719 if (strcmp(optarg
, rnames
[i
]) == 0) {
721 rodent
.flags
|= NoPnP
;
722 rodent
.level
= (i
== MOUSE_PROTO_SYSMOUSE
) ? 1 : 0;
727 warnx("no such mouse type `%s'", optarg
);
731 rodent
.flags
|= VirtualScroll
;
734 rodent
.scrollthreshold
= atoi(optarg
);
735 if (rodent
.scrollthreshold
< 0) {
736 warnx("invalid argument `%s'", optarg
);
747 /* fix Z axis mapping */
748 for (i
= 0; i
< 4; ++i
) {
749 if (rodent
.zmap
[i
] > 0) {
750 for (j
= 0; j
< MOUSE_MAXBUTTON
; ++j
) {
751 if (mstate
[j
] == &bstate
[rodent
.zmap
[i
] - 1])
752 mstate
[j
] = &zstate
[i
];
754 rodent
.zmap
[i
] = 1 << (rodent
.zmap
[i
] - 1);
758 /* the default port name */
759 switch(rodent
.rtype
) {
761 case MOUSE_PROTO_PS2
:
762 if (!rodent
.portname
)
763 rodent
.portname
= "/dev/psm0";
769 warnx("no port name specified");
774 if (strncmp(rodent
.portname
, "/dev/ums", 8) == 0) {
775 if (usbmodule() != 0)
780 if (setjmp(env
) == 0) {
782 signal(SIGINT
, cleanup
);
783 signal(SIGQUIT
, cleanup
);
784 signal(SIGTERM
, cleanup
);
785 for (i
= 0; i
< retry
; ++i
) {
788 rodent
.mfd
= open(rodent
.portname
, O_RDWR
| O_NONBLOCK
);
789 if (rodent
.mfd
!= -1 || errno
!= ENOENT
)
792 if (rodent
.mfd
== -1)
793 logerr(1, "unable to open %s", rodent
.portname
);
794 if (r_identify() == MOUSE_PROTO_UNKNOWN
) {
795 logwarnx("cannot determine mouse type on %s", rodent
.portname
);
800 /* print some information */
801 if (identify
!= ID_NONE
) {
802 if (identify
== ID_ALL
)
803 printf("%s %s %s %s\n",
804 rodent
.portname
, r_if(rodent
.hw
.iftype
),
805 r_name(rodent
.rtype
), r_model(rodent
.hw
.model
));
806 else if (identify
& ID_PORT
)
807 printf("%s\n", rodent
.portname
);
808 else if (identify
& ID_IF
)
809 printf("%s\n", r_if(rodent
.hw
.iftype
));
810 else if (identify
& ID_TYPE
)
811 printf("%s\n", r_name(rodent
.rtype
));
812 else if (identify
& ID_MODEL
)
813 printf("%s\n", r_model(rodent
.hw
.model
));
816 debug("port: %s interface: %s type: %s model: %s",
817 rodent
.portname
, r_if(rodent
.hw
.iftype
),
818 r_name(rodent
.rtype
), r_model(rodent
.hw
.model
));
821 if (rodent
.mfd
== -1) {
823 * We cannot continue because of error. Exit if the
824 * program has not become a daemon. Otherwise, block
825 * until the the user corrects the problem and issues SIGHUP.
832 r_init(); /* call init function */
836 if (rodent
.mfd
!= -1)
838 if (rodent
.cfd
!= -1)
840 rodent
.mfd
= rodent
.cfd
= -1;
850 struct kld_file_stat fstat
;
851 struct module_stat mstat
;
855 for (loaded
= 0, fileid
= kldnext(0); !loaded
&& fileid
> 0;
856 fileid
= kldnext(fileid
)) {
857 fstat
.version
= sizeof(fstat
);
858 if (kldstat(fileid
, &fstat
) < 0)
860 if (strncmp(fstat
.name
, "uhub/ums", 8) == 0) {
864 for (modid
= kldfirstmod(fileid
); modid
> 0;
865 modid
= modfnext(modid
)) {
866 mstat
.version
= sizeof(mstat
);
867 if (modstat(modid
, &mstat
) < 0)
869 if (strncmp(mstat
.name
, "uhub/ums", 8) == 0) {
876 if (kldload("ums") != -1)
879 logerr(1, "unable to load USB mouse driver");
887 struct mouse_info mouse
;
888 mousestatus_t action0
; /* original mouse action */
889 mousestatus_t action
; /* interrim buffer */
890 mousestatus_t action2
; /* mapped action */
891 struct timeval timeout
;
901 if ((rodent
.cfd
= open("/dev/consolectl", O_RDWR
, 0)) == -1)
902 logerr(1, "cannot open /dev/consolectl");
904 if (!nodaemon
&& !background
) {
906 logerr(1, "failed to become a daemon");
909 fp
= fopen(pidfile
, "w");
911 fprintf(fp
, "%d\n", getpid());
917 /* clear mouse data */
918 bzero(&action0
, sizeof(action0
));
919 bzero(&action
, sizeof(action
));
920 bzero(&action2
, sizeof(action2
));
921 bzero(&mouse
, sizeof(mouse
));
922 mouse_button_state
= S0
;
923 gettimeofday(&mouse_button_state_tv
, NULL
);
924 mouse_move_delayed
= 0;
925 for (i
= 0; i
< MOUSE_MAXBUTTON
; ++i
) {
927 bstate
[i
].tv
= mouse_button_state_tv
;
929 for (i
= 0; i
< sizeof(zstate
)/sizeof(zstate
[0]); ++i
) {
931 zstate
[i
].tv
= mouse_button_state_tv
;
934 /* choose which ioctl command to use */
935 mouse
.operation
= MOUSE_MOTION_EVENT
;
936 extioctl
= (ioctl(rodent
.cfd
, CONS_MOUSECTL
, &mouse
) == 0);
938 /* process mouse data */
940 timeout
.tv_usec
= 20000; /* 20 msec */
947 FD_SET(rodent
.mfd
, &fds
);
948 if (rodent
.mremsfd
>= 0)
949 FD_SET(rodent
.mremsfd
, &fds
);
950 if (rodent
.mremcfd
>= 0)
951 FD_SET(rodent
.mremcfd
, &fds
);
953 c
= select(FD_SETSIZE
, &fds
, NULL
, NULL
,
954 (rodent
.flags
& Emulate3Button
) ? &timeout
: NULL
);
955 if (c
< 0) { /* error */
956 logwarn("failed to read from mouse");
958 } else if (c
== 0) { /* timeout */
959 /* assert(rodent.flags & Emulate3Button) */
960 action0
.button
= action0
.obutton
;
961 action0
.dx
= action0
.dy
= action0
.dz
= 0;
962 action0
.flags
= flags
= 0;
963 if (r_timeout() && r_statetrans(&action0
, &action
, A_TIMEOUT
)) {
965 debug("flags:%08x buttons:%08x obuttons:%08x",
966 action
.flags
, action
.button
, action
.obutton
);
968 action0
.obutton
= action0
.button
;
972 /* MouseRemote client connect/disconnect */
973 if ((rodent
.mremsfd
>= 0) && FD_ISSET(rodent
.mremsfd
, &fds
)) {
974 mremote_clientchg(TRUE
);
977 if ((rodent
.mremcfd
>= 0) && FD_ISSET(rodent
.mremcfd
, &fds
)) {
978 mremote_clientchg(FALSE
);
982 if ((fill
= read(rodent
.mfd
, buf
, sizeof(buf
))) == -1) {
983 if (errno
== EWOULDBLOCK
)
990 if ((flags
= r_protocol(buf
[pos
++], &action0
)) == 0)
993 if (rodent
.flags
& VirtualScroll
) {
994 /* Allow middle button drags to scroll up and down */
995 if (action0
.button
== MOUSE_BUTTON2DOWN
) {
996 if (scroll_state
== SCROLL_NOTSCROLLING
) {
997 scroll_state
= SCROLL_PREPARE
;
998 debug("PREPARING TO SCROLL");
1000 debug("[BUTTON2] flags:%08x buttons:%08x obuttons:%08x",
1001 action
.flags
, action
.button
, action
.obutton
);
1003 debug("[NOTBUTTON2] flags:%08x buttons:%08x obuttons:%08x",
1004 action
.flags
, action
.button
, action
.obutton
);
1006 /* This isn't a middle button down... move along... */
1007 if (scroll_state
== SCROLL_SCROLLING
) {
1009 * We were scrolling, someone let go of button 2.
1010 * Now turn autoscroll off.
1012 scroll_state
= SCROLL_NOTSCROLLING
;
1013 debug("DONE WITH SCROLLING / %d", scroll_state
);
1014 } else if (scroll_state
== SCROLL_PREPARE
) {
1015 mousestatus_t newaction
= action0
;
1017 /* We were preparing to scroll, but we never moved... */
1018 r_timestamp(&action0
);
1019 r_statetrans(&action0
, &newaction
,
1020 A(newaction
.button
& MOUSE_BUTTON1DOWN
,
1021 action0
.button
& MOUSE_BUTTON3DOWN
));
1023 /* Send middle down */
1024 newaction
.button
= MOUSE_BUTTON2DOWN
;
1025 r_click(&newaction
);
1027 /* Send middle up */
1028 r_timestamp(&newaction
);
1029 newaction
.obutton
= newaction
.button
;
1030 newaction
.button
= action0
.button
;
1031 r_click(&newaction
);
1036 r_timestamp(&action0
);
1037 r_statetrans(&action0
, &action
,
1038 A(action0
.button
& MOUSE_BUTTON1DOWN
,
1039 action0
.button
& MOUSE_BUTTON3DOWN
));
1040 debug("flags:%08x buttons:%08x obuttons:%08x", action
.flags
,
1041 action
.button
, action
.obutton
);
1043 action0
.obutton
= action0
.button
;
1044 flags
&= MOUSE_POSCHANGED
;
1045 flags
|= action
.obutton
^ action
.button
;
1046 action
.flags
= flags
;
1048 if (flags
) { /* handler detected action */
1049 r_map(&action
, &action2
);
1050 debug("activity : buttons 0x%08x dx %d dy %d dz %d",
1051 action2
.button
, action2
.dx
, action2
.dy
, action2
.dz
);
1053 if (rodent
.flags
& VirtualScroll
) {
1055 * If *only* the middle button is pressed AND we are moving
1056 * the stick/trackpoint/nipple, scroll!
1058 if (scroll_state
== SCROLL_PREPARE
) {
1059 /* Ok, Set we're really scrolling now.... */
1060 if (action2
.dy
|| action2
.dx
)
1061 scroll_state
= SCROLL_SCROLLING
;
1063 if (scroll_state
== SCROLL_SCROLLING
) {
1064 scroll_movement
+= action2
.dy
;
1065 debug("SCROLL: %d", scroll_movement
);
1067 if (scroll_movement
< -rodent
.scrollthreshold
) {
1070 scroll_movement
= 0;
1072 else if (scroll_movement
> rodent
.scrollthreshold
) {
1075 scroll_movement
= 0;
1078 /* Don't move while scrolling */
1079 action2
.dx
= action2
.dy
= 0;
1084 /* Defer clicks until we aren't VirtualScroll'ing. */
1085 if (scroll_state
== SCROLL_NOTSCROLLING
)
1088 if (action2
.flags
& MOUSE_POSCHANGED
) {
1089 mouse
.operation
= MOUSE_MOTION_EVENT
;
1090 mouse
.u
.data
.buttons
= action2
.button
;
1091 mouse
.u
.data
.x
= action2
.dx
* rodent
.accelx
;
1092 mouse
.u
.data
.y
= action2
.dy
* rodent
.accely
;
1093 mouse
.u
.data
.z
= action2
.dz
;
1095 ioctl(rodent
.cfd
, CONS_MOUSECTL
, &mouse
);
1098 mouse
.operation
= MOUSE_ACTION
;
1099 mouse
.u
.data
.buttons
= action2
.button
;
1100 mouse
.u
.data
.x
= action2
.dx
* rodent
.accelx
;
1101 mouse
.u
.data
.y
= action2
.dy
* rodent
.accely
;
1102 mouse
.u
.data
.z
= action2
.dz
;
1104 ioctl(rodent
.cfd
, CONS_MOUSECTL
, &mouse
);
1108 * If the Z axis movement is mapped to an imaginary physical
1109 * button, we need to cook up a corresponding button `up' event
1110 * after sending a button `down' event.
1112 if ((rodent
.zmap
[0] > 0) && (action
.dz
!= 0)) {
1113 action
.obutton
= action
.button
;
1114 action
.dx
= action
.dy
= action
.dz
= 0;
1115 r_map(&action
, &action2
);
1116 debug("activity : buttons 0x%08x dx %d dy %d dz %d",
1117 action2
.button
, action2
.dx
, action2
.dy
, action2
.dz
);
1122 mouse
.operation
= MOUSE_ACTION
;
1123 mouse
.u
.data
.buttons
= action2
.button
;
1124 mouse
.u
.data
.x
= mouse
.u
.data
.y
= mouse
.u
.data
.z
= 0;
1126 ioctl(rodent
.cfd
, CONS_MOUSECTL
, &mouse
);
1143 if (rodent
.rtype
== MOUSE_PROTO_X10MOUSEREM
)
1144 unlink(_PATH_MOUSEREMOTE
);
1151 ** Complain, and free the CPU for more worthy tasks
1156 fprintf(stderr
, "%s\n%s\n%s\n%s\n",
1157 "usage: moused [-DRcdfs] [-I file] [-F rate] [-r resolution] [-S baudrate]",
1158 " [-V [-U threshold]] [-a X [,Y]] [-C threshold] [-m N=M] [-w N]",
1159 " [-z N] [-t <mousetype>] [-l level] [-3 [-E timeout]] -p <port>",
1160 " moused [-d] -i <port|if|type|model|all> -p <port>");
1165 * Output an error message to syslog or stderr as appropriate. If
1166 * `errnum' is non-zero, append its string form to the message.
1169 log_or_warn(int log_pri
, int errnum
, const char *fmt
, ...)
1175 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
1178 strlcat(buf
, ": ", sizeof(buf
));
1179 strlcat(buf
, strerror(errnum
), sizeof(buf
));
1183 syslog(log_pri
, "%s", buf
);
1189 ** Mouse interface code, courtesy of XFree86 3.1.2.
1191 ** Note: Various bits have been trimmed, and in my shortsighted enthusiasm
1192 ** to clean, reformat and rationalise naming, it's quite possible that
1193 ** some things in here have been broken.
1197 ** The following code is derived from a module marked :
1200 /* $XConsortium: xf86_Mouse.c,v 1.2 94/10/12 20:33:21 kaleb Exp $ */
1201 /* $XFree86: xc/programs/Xserver/hw/xfree86/common/xf86_Mouse.c,v 3.2 1995/01/28
1202 17:03:40 dawes Exp $ */
1205 * Copyright 1990,91 by Thomas Roell, Dinkelscherben, Germany.
1206 * Copyright 1993 by David Dawes <dawes@physics.su.oz.au>
1208 * Permission to use, copy, modify, distribute, and sell this software and its
1209 * documentation for any purpose is hereby granted without fee, provided that
1210 * the above copyright notice appear in all copies and that both that
1211 * copyright notice and this permission notice appear in supporting
1212 * documentation, and that the names of Thomas Roell and David Dawes not be
1213 * used in advertising or publicity pertaining to distribution of the
1214 * software without specific, written prior permission. Thomas Roell
1215 * and David Dawes makes no representations about the suitability of this
1216 * software for any purpose. It is provided "as is" without express or
1219 * THOMAS ROELL AND DAVID DAWES DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
1220 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
1221 * FITNESS, IN NO EVENT SHALL THOMAS ROELL OR DAVID DAWES BE LIABLE FOR ANY
1222 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
1223 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
1224 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
1225 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1230 ** GlidePoint support from XFree86 3.2.
1231 ** Derived from the module:
1234 /* $XFree86: xc/programs/Xserver/hw/xfree86/common/xf86_Mouse.c,v 3.19 1996/10/16 14:40:51 dawes Exp $ */
1235 /* $XConsortium: xf86_Mouse.c /main/10 1996/01/30 15:16:12 kaleb $ */
1237 /* the following table must be ordered by MOUSE_PROTO_XXX in mouse.h */
1238 static unsigned char proto
[][7] = {
1239 /* hd_mask hd_id dp_mask dp_id bytes b4_mask b4_id */
1240 { 0x40, 0x40, 0x40, 0x00, 3, ~0x23, 0x00 }, /* MicroSoft */
1241 { 0xf8, 0x80, 0x00, 0x00, 5, 0x00, 0xff }, /* MouseSystems */
1242 { 0xe0, 0x80, 0x80, 0x00, 3, 0x00, 0xff }, /* Logitech */
1243 { 0xe0, 0x80, 0x80, 0x00, 3, 0x00, 0xff }, /* MMSeries */
1244 { 0x40, 0x40, 0x40, 0x00, 3, ~0x33, 0x00 }, /* MouseMan */
1245 { 0xf8, 0x80, 0x00, 0x00, 5, 0x00, 0xff }, /* Bus */
1246 { 0xf8, 0x80, 0x00, 0x00, 5, 0x00, 0xff }, /* InPort */
1247 { 0xc0, 0x00, 0x00, 0x00, 3, 0x00, 0xff }, /* PS/2 mouse */
1248 { 0xe0, 0x80, 0x80, 0x00, 3, 0x00, 0xff }, /* MM HitTablet */
1249 { 0x40, 0x40, 0x40, 0x00, 3, ~0x33, 0x00 }, /* GlidePoint */
1250 { 0x40, 0x40, 0x40, 0x00, 3, ~0x3f, 0x00 }, /* IntelliMouse */
1251 { 0x40, 0x40, 0x40, 0x00, 3, ~0x33, 0x00 }, /* ThinkingMouse */
1252 { 0xf8, 0x80, 0x00, 0x00, 5, 0x00, 0xff }, /* sysmouse */
1253 { 0x40, 0x40, 0x40, 0x00, 3, ~0x23, 0x00 }, /* X10 MouseRem */
1254 { 0x80, 0x80, 0x00, 0x00, 5, 0x00, 0xff }, /* KIDSPAD */
1255 { 0xc3, 0xc0, 0x00, 0x00, 6, 0x00, 0xff }, /* VersaPad */
1256 { 0x00, 0x00, 0x00, 0x00, 1, 0x00, 0xff }, /* JogDial */
1258 { 0xf8, 0x80, 0x00, 0x00, 5, ~0x2f, 0x10 }, /* Mariqua */
1261 static unsigned char cur_proto
[7];
1266 char pnpbuf
[256]; /* PnP identifier string may be up to 256 bytes long */
1272 /* set the driver operation level, if applicable */
1273 if (rodent
.level
< 0)
1275 ioctl(rodent
.mfd
, MOUSE_SETLEVEL
, &rodent
.level
);
1276 rodent
.level
= (ioctl(rodent
.mfd
, MOUSE_GETLEVEL
, &level
) == 0) ? level
: 0;
1279 * Interrogate the driver and get some intelligence on the device...
1280 * The following ioctl functions are not always supported by device
1281 * drivers. When the driver doesn't support them, we just trust the
1282 * user to supply valid information.
1284 rodent
.hw
.iftype
= MOUSE_IF_UNKNOWN
;
1285 rodent
.hw
.model
= MOUSE_MODEL_GENERIC
;
1286 ioctl(rodent
.mfd
, MOUSE_GETHWINFO
, &rodent
.hw
);
1288 if (rodent
.rtype
!= MOUSE_PROTO_UNKNOWN
)
1289 bcopy(proto
[rodent
.rtype
], cur_proto
, sizeof(cur_proto
));
1290 rodent
.mode
.protocol
= MOUSE_PROTO_UNKNOWN
;
1291 rodent
.mode
.rate
= -1;
1292 rodent
.mode
.resolution
= MOUSE_RES_UNKNOWN
;
1293 rodent
.mode
.accelfactor
= 0;
1294 rodent
.mode
.level
= 0;
1295 if (ioctl(rodent
.mfd
, MOUSE_GETMODE
, &rodent
.mode
) == 0) {
1296 if ((rodent
.mode
.protocol
== MOUSE_PROTO_UNKNOWN
)
1297 || (rodent
.mode
.protocol
>= sizeof(proto
)/sizeof(proto
[0]))) {
1298 logwarnx("unknown mouse protocol (%d)", rodent
.mode
.protocol
);
1299 return MOUSE_PROTO_UNKNOWN
;
1301 /* INPORT and BUS are the same... */
1302 if (rodent
.mode
.protocol
== MOUSE_PROTO_INPORT
)
1303 rodent
.mode
.protocol
= MOUSE_PROTO_BUS
;
1304 if (rodent
.mode
.protocol
!= rodent
.rtype
) {
1305 /* Hmm, the driver doesn't agree with the user... */
1306 if (rodent
.rtype
!= MOUSE_PROTO_UNKNOWN
)
1307 logwarnx("mouse type mismatch (%s != %s), %s is assumed",
1308 r_name(rodent
.mode
.protocol
), r_name(rodent
.rtype
),
1309 r_name(rodent
.mode
.protocol
));
1310 rodent
.rtype
= rodent
.mode
.protocol
;
1311 bcopy(proto
[rodent
.rtype
], cur_proto
, sizeof(cur_proto
));
1314 cur_proto
[4] = rodent
.mode
.packetsize
;
1315 cur_proto
[0] = rodent
.mode
.syncmask
[0]; /* header byte bit mask */
1316 cur_proto
[1] = rodent
.mode
.syncmask
[1]; /* header bit pattern */
1319 /* maybe this is a PnP mouse... */
1320 if (rodent
.mode
.protocol
== MOUSE_PROTO_UNKNOWN
) {
1322 if (rodent
.flags
& NoPnP
)
1323 return rodent
.rtype
;
1324 if (((len
= pnpgets(pnpbuf
)) <= 0) || !pnpparse(&pnpid
, pnpbuf
, len
))
1325 return rodent
.rtype
;
1327 debug("PnP serial mouse: '%*.*s' '%*.*s' '%*.*s'",
1328 pnpid
.neisaid
, pnpid
.neisaid
, pnpid
.eisaid
,
1329 pnpid
.ncompat
, pnpid
.ncompat
, pnpid
.compat
,
1330 pnpid
.ndescription
, pnpid
.ndescription
, pnpid
.description
);
1332 /* we have a valid PnP serial device ID */
1333 rodent
.hw
.iftype
= MOUSE_IF_SERIAL
;
1334 t
= pnpproto(&pnpid
);
1336 rodent
.mode
.protocol
= t
->val
;
1337 rodent
.hw
.model
= t
->val2
;
1339 rodent
.mode
.protocol
= MOUSE_PROTO_UNKNOWN
;
1341 if (rodent
.mode
.protocol
== MOUSE_PROTO_INPORT
)
1342 rodent
.mode
.protocol
= MOUSE_PROTO_BUS
;
1344 /* make final adjustment */
1345 if (rodent
.mode
.protocol
!= MOUSE_PROTO_UNKNOWN
) {
1346 if (rodent
.mode
.protocol
!= rodent
.rtype
) {
1347 /* Hmm, the device doesn't agree with the user... */
1348 if (rodent
.rtype
!= MOUSE_PROTO_UNKNOWN
)
1349 logwarnx("mouse type mismatch (%s != %s), %s is assumed",
1350 r_name(rodent
.mode
.protocol
), r_name(rodent
.rtype
),
1351 r_name(rodent
.mode
.protocol
));
1352 rodent
.rtype
= rodent
.mode
.protocol
;
1353 bcopy(proto
[rodent
.rtype
], cur_proto
, sizeof(cur_proto
));
1358 debug("proto params: %02x %02x %02x %02x %d %02x %02x",
1359 cur_proto
[0], cur_proto
[1], cur_proto
[2], cur_proto
[3],
1360 cur_proto
[4], cur_proto
[5], cur_proto
[6]);
1362 return rodent
.rtype
;
1370 s
= gettokenname(rifs
, iftype
);
1371 return (s
== NULL
) ? "unknown" : s
;
1377 return ((type
== MOUSE_PROTO_UNKNOWN
)
1378 || (type
> sizeof(rnames
)/sizeof(rnames
[0]) - 1))
1379 ? "unknown" : rnames
[type
];
1387 s
= gettokenname(rmodels
, model
);
1388 return (s
== NULL
) ? "unknown" : s
;
1394 unsigned char buf
[16]; /* scrach buffer */
1401 ** This comment is a little out of context here, but it contains
1402 ** some useful information...
1403 ********************************************************************
1405 ** The following lines take care of the Logitech MouseMan protocols.
1407 ** NOTE: There are different versions of both MouseMan and TrackMan!
1408 ** Hence I add another protocol P_LOGIMAN, which the user can
1409 ** specify as MouseMan in his XF86Config file. This entry was
1410 ** formerly handled as a special case of P_MS. However, people
1411 ** who don't have the middle button problem, can still specify
1412 ** Microsoft and use P_MS.
1414 ** By default, these mice should use a 3 byte Microsoft protocol
1415 ** plus a 4th byte for the middle button. However, the mouse might
1416 ** have switched to a different protocol before we use it, so I send
1417 ** the proper sequence just in case.
1419 ** NOTE: - all commands to (at least the European) MouseMan have to
1420 ** be sent at 1200 Baud.
1421 ** - each command starts with a '*'.
1422 ** - whenever the MouseMan receives a '*', it will switch back
1423 ** to 1200 Baud. Hence I have to select the desired protocol
1424 ** first, then select the baud rate.
1426 ** The protocols supported by the (European) MouseMan are:
1427 ** - 5 byte packed binary protocol, as with the Mouse Systems
1428 ** mouse. Selected by sequence "*U".
1429 ** - 2 button 3 byte MicroSoft compatible protocol. Selected
1430 ** by sequence "*V".
1431 ** - 3 button 3+1 byte MicroSoft compatible protocol (default).
1432 ** Selected by sequence "*X".
1434 ** The following baud rates are supported:
1435 ** - 1200 Baud (default). Selected by sequence "*n".
1436 ** - 9600 Baud. Selected by sequence "*q".
1438 ** Selecting a sample rate is no longer supported with the MouseMan!
1439 ** Some additional lines in xf86Config.c take care of ill configured
1440 ** baud rates and sample rates. (The user will get an error.)
1443 switch (rodent
.rtype
) {
1445 case MOUSE_PROTO_LOGI
:
1447 * The baud rate selection command must be sent at the current
1448 * baud rate; try all likely settings
1450 setmousespeed(9600, rodent
.baudrate
, rodentcflags
[rodent
.rtype
]);
1451 setmousespeed(4800, rodent
.baudrate
, rodentcflags
[rodent
.rtype
]);
1452 setmousespeed(2400, rodent
.baudrate
, rodentcflags
[rodent
.rtype
]);
1453 setmousespeed(1200, rodent
.baudrate
, rodentcflags
[rodent
.rtype
]);
1454 /* select MM series data format */
1455 write(rodent
.mfd
, "S", 1);
1456 setmousespeed(rodent
.baudrate
, rodent
.baudrate
,
1457 rodentcflags
[MOUSE_PROTO_MM
]);
1458 /* select report rate/frequency */
1459 if (rodent
.rate
<= 0) write(rodent
.mfd
, "O", 1);
1460 else if (rodent
.rate
<= 15) write(rodent
.mfd
, "J", 1);
1461 else if (rodent
.rate
<= 27) write(rodent
.mfd
, "K", 1);
1462 else if (rodent
.rate
<= 42) write(rodent
.mfd
, "L", 1);
1463 else if (rodent
.rate
<= 60) write(rodent
.mfd
, "R", 1);
1464 else if (rodent
.rate
<= 85) write(rodent
.mfd
, "M", 1);
1465 else if (rodent
.rate
<= 125) write(rodent
.mfd
, "Q", 1);
1466 else write(rodent
.mfd
, "N", 1);
1469 case MOUSE_PROTO_LOGIMOUSEMAN
:
1470 /* The command must always be sent at 1200 baud */
1471 setmousespeed(1200, 1200, rodentcflags
[rodent
.rtype
]);
1472 write(rodent
.mfd
, "*X", 2);
1473 setmousespeed(1200, rodent
.baudrate
, rodentcflags
[rodent
.rtype
]);
1476 case MOUSE_PROTO_HITTAB
:
1477 setmousespeed(1200, rodent
.baudrate
, rodentcflags
[rodent
.rtype
]);
1480 * Initialize Hitachi PUMA Plus - Model 1212E to desired settings.
1481 * The tablet must be configured to be in MM mode, NO parity,
1482 * Binary Format. xf86Info.sampleRate controls the sensativity
1483 * of the tablet. We only use this tablet for it's 4-button puck
1484 * so we don't run in "Absolute Mode"
1486 write(rodent
.mfd
, "z8", 2); /* Set Parity = "NONE" */
1488 write(rodent
.mfd
, "zb", 2); /* Set Format = "Binary" */
1490 write(rodent
.mfd
, "@", 1); /* Set Report Mode = "Stream" */
1492 write(rodent
.mfd
, "R", 1); /* Set Output Rate = "45 rps" */
1494 write(rodent
.mfd
, "I\x20", 2); /* Set Incrememtal Mode "20" */
1496 write(rodent
.mfd
, "E", 1); /* Set Data Type = "Relative */
1499 /* Resolution is in 'lines per inch' on the Hitachi tablet */
1500 if (rodent
.resolution
== MOUSE_RES_LOW
) c
= 'g';
1501 else if (rodent
.resolution
== MOUSE_RES_MEDIUMLOW
) c
= 'e';
1502 else if (rodent
.resolution
== MOUSE_RES_MEDIUMHIGH
) c
= 'h';
1503 else if (rodent
.resolution
== MOUSE_RES_HIGH
) c
= 'd';
1504 else if (rodent
.resolution
<= 40) c
= 'g';
1505 else if (rodent
.resolution
<= 100) c
= 'd';
1506 else if (rodent
.resolution
<= 200) c
= 'e';
1507 else if (rodent
.resolution
<= 500) c
= 'h';
1508 else if (rodent
.resolution
<= 1000) c
= 'j';
1510 write(rodent
.mfd
, &c
, 1);
1513 write(rodent
.mfd
, "\021", 1); /* Resume DATA output */
1516 case MOUSE_PROTO_THINK
:
1517 setmousespeed(1200, rodent
.baudrate
, rodentcflags
[rodent
.rtype
]);
1518 /* the PnP ID string may be sent again, discard it */
1521 ioctl(rodent
.mfd
, TIOCFLUSH
, &i
);
1522 /* send the command to initialize the beast */
1523 for (s
= "E5E5"; *s
; ++s
) {
1524 write(rodent
.mfd
, s
, 1);
1526 FD_SET(rodent
.mfd
, &fds
);
1527 if (select(FD_SETSIZE
, &fds
, NULL
, NULL
, NULL
) <= 0)
1529 read(rodent
.mfd
, &c
, 1);
1536 case MOUSE_PROTO_JOGDIAL
:
1538 case MOUSE_PROTO_MSC
:
1539 setmousespeed(1200, rodent
.baudrate
, rodentcflags
[rodent
.rtype
]);
1540 if (rodent
.flags
& ClearDTR
) {
1542 ioctl(rodent
.mfd
, TIOCMBIC
, &i
);
1544 if (rodent
.flags
& ClearRTS
) {
1546 ioctl(rodent
.mfd
, TIOCMBIC
, &i
);
1550 case MOUSE_PROTO_SYSMOUSE
:
1551 if (rodent
.hw
.iftype
== MOUSE_IF_SYSMOUSE
)
1552 setmousespeed(1200, rodent
.baudrate
, rodentcflags
[rodent
.rtype
]);
1555 case MOUSE_PROTO_BUS
:
1556 case MOUSE_PROTO_INPORT
:
1557 case MOUSE_PROTO_PS2
:
1558 if (rodent
.rate
>= 0)
1559 rodent
.mode
.rate
= rodent
.rate
;
1560 if (rodent
.resolution
!= MOUSE_RES_UNKNOWN
)
1561 rodent
.mode
.resolution
= rodent
.resolution
;
1562 ioctl(rodent
.mfd
, MOUSE_SETMODE
, &rodent
.mode
);
1565 case MOUSE_PROTO_X10MOUSEREM
:
1566 mremote_serversetup();
1567 setmousespeed(1200, rodent
.baudrate
, rodentcflags
[rodent
.rtype
]);
1571 case MOUSE_PROTO_VERSAPAD
:
1572 tcsendbreak(rodent
.mfd
, 0); /* send break for 400 msec */
1574 ioctl(rodent
.mfd
, TIOCFLUSH
, &i
);
1575 for (i
= 0; i
< 7; ++i
) {
1577 FD_SET(rodent
.mfd
, &fds
);
1578 if (select(FD_SETSIZE
, &fds
, NULL
, NULL
, NULL
) <= 0)
1580 read(rodent
.mfd
, &c
, 1);
1584 if ((buf
[0] != 'V') || (buf
[1] != 'P')|| (buf
[7] != '\r'))
1586 setmousespeed(9600, rodent
.baudrate
, rodentcflags
[rodent
.rtype
]);
1587 tcsendbreak(rodent
.mfd
, 0); /* send break for 400 msec again */
1588 for (i
= 0; i
< 7; ++i
) {
1590 FD_SET(rodent
.mfd
, &fds
);
1591 if (select(FD_SETSIZE
, &fds
, NULL
, NULL
, NULL
) <= 0)
1593 read(rodent
.mfd
, &c
, 1);
1599 ioctl(rodent
.mfd
, TIOCFLUSH
, &i
);
1603 setmousespeed(1200, rodent
.baudrate
, rodentcflags
[rodent
.rtype
]);
1609 r_protocol(u_char rBuf
, mousestatus_t
*act
)
1611 /* MOUSE_MSS_BUTTON?DOWN -> MOUSE_BUTTON?DOWN */
1612 static int butmapmss
[4] = { /* Microsoft, MouseMan, GlidePoint,
1613 IntelliMouse, Thinking Mouse */
1617 MOUSE_BUTTON1DOWN
| MOUSE_BUTTON3DOWN
,
1619 static int butmapmss2
[4] = { /* Microsoft, MouseMan, GlidePoint,
1624 MOUSE_BUTTON2DOWN
| MOUSE_BUTTON4DOWN
,
1626 /* MOUSE_INTELLI_BUTTON?DOWN -> MOUSE_BUTTON?DOWN */
1627 static int butmapintelli
[4] = { /* IntelliMouse, NetMouse, Mie Mouse,
1632 MOUSE_BUTTON2DOWN
| MOUSE_BUTTON4DOWN
,
1634 /* MOUSE_MSC_BUTTON?UP -> MOUSE_BUTTON?DOWN */
1635 static int butmapmsc
[8] = { /* MouseSystems, MMSeries, Logitech,
1640 MOUSE_BUTTON2DOWN
| MOUSE_BUTTON3DOWN
,
1642 MOUSE_BUTTON1DOWN
| MOUSE_BUTTON3DOWN
,
1643 MOUSE_BUTTON1DOWN
| MOUSE_BUTTON2DOWN
,
1644 MOUSE_BUTTON1DOWN
| MOUSE_BUTTON2DOWN
| MOUSE_BUTTON3DOWN
1646 /* MOUSE_PS2_BUTTON?DOWN -> MOUSE_BUTTON?DOWN */
1647 static int butmapps2
[8] = { /* PS/2 */
1651 MOUSE_BUTTON1DOWN
| MOUSE_BUTTON3DOWN
,
1653 MOUSE_BUTTON1DOWN
| MOUSE_BUTTON2DOWN
,
1654 MOUSE_BUTTON2DOWN
| MOUSE_BUTTON3DOWN
,
1655 MOUSE_BUTTON1DOWN
| MOUSE_BUTTON2DOWN
| MOUSE_BUTTON3DOWN
1657 /* for Hitachi tablet */
1658 static int butmaphit
[8] = { /* MM HitTablet */
1668 /* for serial VersaPad */
1669 static int butmapversa
[8] = { /* VersaPad */
1676 MOUSE_BUTTON1DOWN
| MOUSE_BUTTON3DOWN
,
1677 MOUSE_BUTTON1DOWN
| MOUSE_BUTTON3DOWN
,
1679 /* for PS/2 VersaPad */
1680 static int butmapversaps2
[8] = { /* VersaPad */
1686 MOUSE_BUTTON1DOWN
| MOUSE_BUTTON3DOWN
,
1688 MOUSE_BUTTON1DOWN
| MOUSE_BUTTON3DOWN
,
1690 static int pBufP
= 0;
1691 static unsigned char pBuf
[8];
1692 static int prev_x
, prev_y
;
1693 static int on
= FALSE
;
1696 debug("received char 0x%x",(int)rBuf
);
1697 if (rodent
.rtype
== MOUSE_PROTO_KIDSPAD
)
1698 return kidspad(rBuf
, act
) ;
1701 * Hack for resyncing: We check here for a package that is:
1702 * a) illegal (detected by wrong data-package header)
1703 * b) invalid (0x80 == -128 and that might be wrong for MouseSystems)
1704 * c) bad header-package
1706 * NOTE: b) is a voilation of the MouseSystems-Protocol, since values of
1707 * -128 are allowed, but since they are very seldom we can easily
1708 * use them as package-header with no button pressed.
1709 * NOTE/2: On a PS/2 mouse any byte is valid as a data byte. Furthermore,
1710 * 0x80 is not valid as a header byte. For a PS/2 mouse we skip
1711 * checking data bytes.
1712 * For resyncing a PS/2 mouse we require the two most significant
1713 * bits in the header byte to be 0. These are the overflow bits,
1714 * and in case of an overflow we actually lose sync. Overflows
1715 * are very rare, however, and we quickly gain sync again after
1716 * an overflow condition. This is the best we can do. (Actually,
1717 * we could use bit 0x08 in the header byte for resyncing, since
1718 * that bit is supposed to be always on, but nobody told
1722 if (pBufP
!= 0 && rodent
.rtype
!= MOUSE_PROTO_PS2
&&
1723 ((rBuf
& cur_proto
[2]) != cur_proto
[3] || rBuf
== 0x80))
1725 pBufP
= 0; /* skip package */
1728 if (pBufP
== 0 && (rBuf
& cur_proto
[0]) != cur_proto
[1])
1731 /* is there an extra data byte? */
1732 if (pBufP
>= cur_proto
[4] && (rBuf
& cur_proto
[0]) != cur_proto
[1])
1735 * Hack for Logitech MouseMan Mouse - Middle button
1737 * Unfortunately this mouse has variable length packets: the standard
1738 * Microsoft 3 byte packet plus an optional 4th byte whenever the
1739 * middle button status changes.
1741 * We have already processed the standard packet with the movement
1742 * and button info. Now post an event message with the old status
1743 * of the left and right buttons and the updated middle button.
1747 * Even worse, different MouseMen and TrackMen differ in the 4th
1748 * byte: some will send 0x00/0x20, others 0x01/0x21, or even
1749 * 0x02/0x22, so I have to strip off the lower bits.
1752 * HACK for ALPS "fourth button". (It's bit 0x10 of the "fourth byte"
1753 * and it is activated by tapping the glidepad with the finger! 8^)
1754 * We map it to bit bit3, and the reverse map in xf86Events just has
1755 * to be extended so that it is identified as Button 4. The lower
1756 * half of the reverse-map may remain unchanged.
1761 * Receive the fourth byte only when preceding three bytes have
1762 * been detected (pBufP >= cur_proto[4]). In the previous
1763 * versions, the test was pBufP == 0; thus, we may have mistakingly
1764 * received a byte even if we didn't see anything preceding
1768 if ((rBuf
& cur_proto
[5]) != cur_proto
[6]) {
1773 switch (rodent
.rtype
) {
1775 case MOUSE_PROTO_MARIQUA
:
1777 * This mouse has 16! buttons in addition to the standard
1778 * three of them. They return 0x10 though 0x1f in the
1779 * so-called `ten key' mode and 0x30 though 0x3f in the
1780 * `function key' mode. As there are only 31 bits for
1781 * button state (including the standard three), we ignore
1782 * the bit 0x20 and don't distinguish the two modes.
1784 act
->dx
= act
->dy
= act
->dz
= 0;
1785 act
->obutton
= act
->button
;
1787 act
->button
= (1 << (rBuf
- 13))
1788 | (act
->obutton
& (MOUSE_BUTTON1DOWN
| MOUSE_BUTTON3DOWN
));
1790 * FIXME: this is a button "down" event. There needs to be
1791 * a corresponding button "up" event... XXX
1795 case MOUSE_PROTO_JOGDIAL
:
1799 * IntelliMouse, NetMouse (including NetMouse Pro) and Mie Mouse
1800 * always send the fourth byte, whereas the fourth byte is
1801 * optional for GlidePoint and ThinkingMouse. The fourth byte
1802 * is also optional for MouseMan+ and FirstMouse+ in their
1803 * native mode. It is always sent if they are in the IntelliMouse
1806 case MOUSE_PROTO_INTELLI
: /* IntelliMouse, NetMouse, Mie Mouse,
1808 act
->dx
= act
->dy
= 0;
1809 act
->dz
= (rBuf
& 0x08) ? (rBuf
& 0x0f) - 16 : (rBuf
& 0x0f);
1810 if ((act
->dz
>= 7) || (act
->dz
<= -7))
1812 act
->obutton
= act
->button
;
1813 act
->button
= butmapintelli
[(rBuf
& MOUSE_MSS_BUTTONS
) >> 4]
1814 | (act
->obutton
& (MOUSE_BUTTON1DOWN
| MOUSE_BUTTON3DOWN
));
1818 act
->dx
= act
->dy
= act
->dz
= 0;
1819 act
->obutton
= act
->button
;
1820 act
->button
= butmapmss2
[(rBuf
& MOUSE_MSS_BUTTONS
) >> 4]
1821 | (act
->obutton
& (MOUSE_BUTTON1DOWN
| MOUSE_BUTTON3DOWN
));
1825 act
->flags
= ((act
->dx
|| act
->dy
|| act
->dz
) ? MOUSE_POSCHANGED
: 0)
1826 | (act
->obutton
^ act
->button
);
1831 if (pBufP
>= cur_proto
[4])
1833 pBuf
[pBufP
++] = rBuf
;
1834 if (pBufP
!= cur_proto
[4])
1838 * assembly full package
1841 debug("assembled full packet (len %d) %x,%x,%x,%x,%x,%x,%x,%x",
1843 pBuf
[0], pBuf
[1], pBuf
[2], pBuf
[3],
1844 pBuf
[4], pBuf
[5], pBuf
[6], pBuf
[7]);
1847 act
->obutton
= act
->button
;
1848 switch (rodent
.rtype
)
1850 case MOUSE_PROTO_MS
: /* Microsoft */
1851 case MOUSE_PROTO_LOGIMOUSEMAN
: /* MouseMan/TrackMan */
1852 case MOUSE_PROTO_X10MOUSEREM
: /* X10 MouseRemote */
1853 act
->button
= act
->obutton
& MOUSE_BUTTON4DOWN
;
1854 if (rodent
.flags
& ChordMiddle
)
1855 act
->button
|= ((pBuf
[0] & MOUSE_MSS_BUTTONS
) == MOUSE_MSS_BUTTONS
)
1857 : butmapmss
[(pBuf
[0] & MOUSE_MSS_BUTTONS
) >> 4];
1859 act
->button
|= (act
->obutton
& MOUSE_BUTTON2DOWN
)
1860 | butmapmss
[(pBuf
[0] & MOUSE_MSS_BUTTONS
) >> 4];
1862 /* Send X10 btn events to remote client (ensure -128-+127 range) */
1863 if ((rodent
.rtype
== MOUSE_PROTO_X10MOUSEREM
) &&
1864 ((pBuf
[0] & 0xFC) == 0x44) && (pBuf
[2] == 0x3F)) {
1865 if (rodent
.mremcfd
>= 0) {
1866 unsigned char key
= (signed char)(((pBuf
[0] & 0x03) << 6) |
1868 write(rodent
.mremcfd
, &key
, 1);
1873 act
->dx
= (signed char)(((pBuf
[0] & 0x03) << 6) | (pBuf
[1] & 0x3F));
1874 act
->dy
= (signed char)(((pBuf
[0] & 0x0C) << 4) | (pBuf
[2] & 0x3F));
1877 case MOUSE_PROTO_GLIDEPOINT
: /* GlidePoint */
1878 case MOUSE_PROTO_THINK
: /* ThinkingMouse */
1879 case MOUSE_PROTO_INTELLI
: /* IntelliMouse, NetMouse, Mie Mouse,
1881 act
->button
= (act
->obutton
& (MOUSE_BUTTON2DOWN
| MOUSE_BUTTON4DOWN
))
1882 | butmapmss
[(pBuf
[0] & MOUSE_MSS_BUTTONS
) >> 4];
1883 act
->dx
= (signed char)(((pBuf
[0] & 0x03) << 6) | (pBuf
[1] & 0x3F));
1884 act
->dy
= (signed char)(((pBuf
[0] & 0x0C) << 4) | (pBuf
[2] & 0x3F));
1887 case MOUSE_PROTO_MSC
: /* MouseSystems Corp */
1889 case MOUSE_PROTO_MARIQUA
: /* Mariqua */
1891 act
->button
= butmapmsc
[(~pBuf
[0]) & MOUSE_MSC_BUTTONS
];
1892 act
->dx
= (signed char)(pBuf
[1]) + (signed char)(pBuf
[3]);
1893 act
->dy
= - ((signed char)(pBuf
[2]) + (signed char)(pBuf
[4]));
1896 case MOUSE_PROTO_JOGDIAL
: /* JogDial */
1902 act
->button
= MOUSE_BUTTON1DOWN
;
1907 case MOUSE_PROTO_HITTAB
: /* MM HitTablet */
1908 act
->button
= butmaphit
[pBuf
[0] & 0x07];
1909 act
->dx
= (pBuf
[0] & MOUSE_MM_XPOSITIVE
) ? pBuf
[1] : - pBuf
[1];
1910 act
->dy
= (pBuf
[0] & MOUSE_MM_YPOSITIVE
) ? - pBuf
[2] : pBuf
[2];
1913 case MOUSE_PROTO_MM
: /* MM Series */
1914 case MOUSE_PROTO_LOGI
: /* Logitech Mice */
1915 act
->button
= butmapmsc
[pBuf
[0] & MOUSE_MSC_BUTTONS
];
1916 act
->dx
= (pBuf
[0] & MOUSE_MM_XPOSITIVE
) ? pBuf
[1] : - pBuf
[1];
1917 act
->dy
= (pBuf
[0] & MOUSE_MM_YPOSITIVE
) ? - pBuf
[2] : pBuf
[2];
1920 case MOUSE_PROTO_VERSAPAD
: /* VersaPad */
1921 act
->button
= butmapversa
[(pBuf
[0] & MOUSE_VERSA_BUTTONS
) >> 3];
1922 act
->button
|= (pBuf
[0] & MOUSE_VERSA_TAP
) ? MOUSE_BUTTON4DOWN
: 0;
1923 act
->dx
= act
->dy
= 0;
1924 if (!(pBuf
[0] & MOUSE_VERSA_IN_USE
)) {
1928 x
= (pBuf
[2] << 6) | pBuf
[1];
1931 y
= (pBuf
[4] << 6) | pBuf
[3];
1935 act
->dx
= prev_x
- x
;
1936 act
->dy
= prev_y
- y
;
1944 case MOUSE_PROTO_BUS
: /* Bus */
1945 case MOUSE_PROTO_INPORT
: /* InPort */
1946 act
->button
= butmapmsc
[(~pBuf
[0]) & MOUSE_MSC_BUTTONS
];
1947 act
->dx
= (signed char)pBuf
[1];
1948 act
->dy
= - (signed char)pBuf
[2];
1951 case MOUSE_PROTO_PS2
: /* PS/2 */
1952 act
->button
= butmapps2
[pBuf
[0] & MOUSE_PS2_BUTTONS
];
1953 act
->dx
= (pBuf
[0] & MOUSE_PS2_XNEG
) ? pBuf
[1] - 256 : pBuf
[1];
1954 act
->dy
= (pBuf
[0] & MOUSE_PS2_YNEG
) ? -(pBuf
[2] - 256) : -pBuf
[2];
1956 * Moused usually operates the psm driver at the operation level 1
1957 * which sends mouse data in MOUSE_PROTO_SYSMOUSE protocol.
1958 * The following code takes effect only when the user explicitly
1959 * requets the level 2 at which wheel movement and additional button
1960 * actions are encoded in model-dependent formats. At the level 0
1961 * the following code is no-op because the psm driver says the model
1962 * is MOUSE_MODEL_GENERIC.
1964 switch (rodent
.hw
.model
) {
1965 case MOUSE_MODEL_EXPLORER
:
1966 /* wheel and additional button data is in the fourth byte */
1967 act
->dz
= (pBuf
[3] & MOUSE_EXPLORER_ZNEG
)
1968 ? (pBuf
[3] & 0x0f) - 16 : (pBuf
[3] & 0x0f);
1969 act
->button
|= (pBuf
[3] & MOUSE_EXPLORER_BUTTON4DOWN
)
1970 ? MOUSE_BUTTON4DOWN
: 0;
1971 act
->button
|= (pBuf
[3] & MOUSE_EXPLORER_BUTTON5DOWN
)
1972 ? MOUSE_BUTTON5DOWN
: 0;
1974 case MOUSE_MODEL_INTELLI
:
1975 case MOUSE_MODEL_NET
:
1976 /* wheel data is in the fourth byte */
1977 act
->dz
= (signed char)pBuf
[3];
1978 if ((act
->dz
>= 7) || (act
->dz
<= -7))
1980 /* some compatible mice may have additional buttons */
1981 act
->button
|= (pBuf
[0] & MOUSE_PS2INTELLI_BUTTON4DOWN
)
1982 ? MOUSE_BUTTON4DOWN
: 0;
1983 act
->button
|= (pBuf
[0] & MOUSE_PS2INTELLI_BUTTON5DOWN
)
1984 ? MOUSE_BUTTON5DOWN
: 0;
1986 case MOUSE_MODEL_MOUSEMANPLUS
:
1987 if (((pBuf
[0] & MOUSE_PS2PLUS_SYNCMASK
) == MOUSE_PS2PLUS_SYNC
)
1988 && (abs(act
->dx
) > 191)
1989 && MOUSE_PS2PLUS_CHECKBITS(pBuf
)) {
1990 /* the extended data packet encodes button and wheel events */
1991 switch (MOUSE_PS2PLUS_PACKET_TYPE(pBuf
)) {
1993 /* wheel data packet */
1994 act
->dx
= act
->dy
= 0;
1995 if (pBuf
[2] & 0x80) {
1996 /* horizontal roller count - ignore it XXX*/
1998 /* vertical roller count */
1999 act
->dz
= (pBuf
[2] & MOUSE_PS2PLUS_ZNEG
)
2000 ? (pBuf
[2] & 0x0f) - 16 : (pBuf
[2] & 0x0f);
2002 act
->button
|= (pBuf
[2] & MOUSE_PS2PLUS_BUTTON4DOWN
)
2003 ? MOUSE_BUTTON4DOWN
: 0;
2004 act
->button
|= (pBuf
[2] & MOUSE_PS2PLUS_BUTTON5DOWN
)
2005 ? MOUSE_BUTTON5DOWN
: 0;
2008 /* this packet type is reserved by Logitech */
2010 * IBM ScrollPoint Mouse uses this packet type to
2011 * encode both vertical and horizontal scroll movement.
2013 act
->dx
= act
->dy
= 0;
2014 /* horizontal roller count */
2016 act
->dz
= (pBuf
[2] & MOUSE_SPOINT_WNEG
) ? -2 : 2;
2017 /* vertical roller count */
2019 act
->dz
= (pBuf
[2] & MOUSE_SPOINT_ZNEG
) ? -1 : 1;
2021 /* vertical roller count */
2022 act
->dz
= (pBuf
[2] & MOUSE_SPOINT_ZNEG
)
2023 ? ((pBuf
[2] >> 4) & 0x0f) - 16
2024 : ((pBuf
[2] >> 4) & 0x0f);
2025 /* horizontal roller count */
2026 act
->dw
= (pBuf
[2] & MOUSE_SPOINT_WNEG
)
2027 ? (pBuf
[2] & 0x0f) - 16 : (pBuf
[2] & 0x0f);
2031 /* device type packet - shouldn't happen */
2034 act
->dx
= act
->dy
= 0;
2035 act
->button
= act
->obutton
;
2036 debug("unknown PS2++ packet type %d: 0x%02x 0x%02x 0x%02x\n",
2037 MOUSE_PS2PLUS_PACKET_TYPE(pBuf
),
2038 pBuf
[0], pBuf
[1], pBuf
[2]);
2042 /* preserve button states */
2043 act
->button
|= act
->obutton
& MOUSE_EXTBUTTONS
;
2046 case MOUSE_MODEL_GLIDEPOINT
:
2047 /* `tapping' action */
2048 act
->button
|= ((pBuf
[0] & MOUSE_PS2_TAP
)) ? 0 : MOUSE_BUTTON4DOWN
;
2050 case MOUSE_MODEL_NETSCROLL
:
2051 /* three addtional bytes encode buttons and wheel events */
2052 act
->button
|= (pBuf
[3] & MOUSE_PS2_BUTTON3DOWN
)
2053 ? MOUSE_BUTTON4DOWN
: 0;
2054 act
->button
|= (pBuf
[3] & MOUSE_PS2_BUTTON1DOWN
)
2055 ? MOUSE_BUTTON5DOWN
: 0;
2056 act
->dz
= (pBuf
[3] & MOUSE_PS2_XNEG
) ? pBuf
[4] - 256 : pBuf
[4];
2058 case MOUSE_MODEL_THINK
:
2059 /* the fourth button state in the first byte */
2060 act
->button
|= (pBuf
[0] & MOUSE_PS2_TAP
) ? MOUSE_BUTTON4DOWN
: 0;
2062 case MOUSE_MODEL_VERSAPAD
:
2063 act
->button
= butmapversaps2
[pBuf
[0] & MOUSE_PS2VERSA_BUTTONS
];
2065 (pBuf
[0] & MOUSE_PS2VERSA_TAP
) ? MOUSE_BUTTON4DOWN
: 0;
2066 act
->dx
= act
->dy
= 0;
2067 if (!(pBuf
[0] & MOUSE_PS2VERSA_IN_USE
)) {
2071 x
= ((pBuf
[4] << 8) & 0xf00) | pBuf
[1];
2074 y
= ((pBuf
[4] << 4) & 0xf00) | pBuf
[2];
2078 act
->dx
= prev_x
- x
;
2079 act
->dy
= prev_y
- y
;
2086 case MOUSE_MODEL_4D
:
2087 act
->dx
= (pBuf
[1] & 0x80) ? pBuf
[1] - 256 : pBuf
[1];
2088 act
->dy
= (pBuf
[2] & 0x80) ? -(pBuf
[2] - 256) : -pBuf
[2];
2089 switch (pBuf
[0] & MOUSE_4D_WHEELBITS
) {
2096 case 0x40: /* 2nd wheel rolling right XXX */
2099 case 0xc0: /* 2nd wheel rolling left XXX */
2104 case MOUSE_MODEL_4DPLUS
:
2105 if ((act
->dx
< 16 - 256) && (act
->dy
> 256 - 16)) {
2106 act
->dx
= act
->dy
= 0;
2107 if (pBuf
[2] & MOUSE_4DPLUS_BUTTON4DOWN
)
2108 act
->button
|= MOUSE_BUTTON4DOWN
;
2109 act
->dz
= (pBuf
[2] & MOUSE_4DPLUS_ZNEG
)
2110 ? ((pBuf
[2] & 0x07) - 8) : (pBuf
[2] & 0x07);
2112 /* preserve previous button states */
2113 act
->button
|= act
->obutton
& MOUSE_EXTBUTTONS
;
2116 case MOUSE_MODEL_GENERIC
:
2122 case MOUSE_PROTO_SYSMOUSE
: /* sysmouse */
2123 act
->button
= butmapmsc
[(~pBuf
[0]) & MOUSE_SYS_STDBUTTONS
];
2124 act
->dx
= (signed char)(pBuf
[1]) + (signed char)(pBuf
[3]);
2125 act
->dy
= - ((signed char)(pBuf
[2]) + (signed char)(pBuf
[4]));
2126 if (rodent
.level
== 1) {
2127 act
->dz
= ((signed char)(pBuf
[5] << 1) + (signed char)(pBuf
[6] << 1)) >> 1;
2128 act
->button
|= ((~pBuf
[7] & MOUSE_SYS_EXTBUTTONS
) << 3);
2136 * We don't reset pBufP here yet, as there may be an additional data
2137 * byte in some protocols. See above.
2140 /* has something changed? */
2141 act
->flags
= ((act
->dx
|| act
->dy
|| act
->dz
) ? MOUSE_POSCHANGED
: 0)
2142 | (act
->obutton
^ act
->button
);
2148 r_statetrans(mousestatus_t
*a1
, mousestatus_t
*a2
, int trans
)
2156 a2
->obutton
= a2
->button
;
2157 a2
->button
= a1
->button
;
2158 a2
->flags
= a1
->flags
;
2161 if (rodent
.flags
& Emulate3Button
) {
2163 debug("state:%d, trans:%d -> state:%d",
2164 mouse_button_state
, trans
,
2165 states
[mouse_button_state
].s
[trans
]);
2167 * Avoid re-ordering button and movement events. While a button
2168 * event is deferred, throw away up to BUTTON2_MAXMOVE movement
2169 * events to allow for mouse jitter. If more movement events
2170 * occur, then complete the deferred button events immediately.
2172 if ((a2
->dx
!= 0 || a2
->dy
!= 0) &&
2173 S_DELAYED(states
[mouse_button_state
].s
[trans
])) {
2174 if (++mouse_move_delayed
> BUTTON2_MAXMOVE
) {
2175 mouse_move_delayed
= 0;
2176 mouse_button_state
=
2177 states
[mouse_button_state
].s
[A_TIMEOUT
];
2180 a2
->dx
= a2
->dy
= 0;
2182 mouse_move_delayed
= 0;
2183 if (mouse_button_state
!= states
[mouse_button_state
].s
[trans
])
2186 gettimeofday(&mouse_button_state_tv
, NULL
);
2187 mouse_button_state
= states
[mouse_button_state
].s
[trans
];
2189 ~(MOUSE_BUTTON1DOWN
| MOUSE_BUTTON2DOWN
| MOUSE_BUTTON3DOWN
);
2190 a2
->button
&= states
[mouse_button_state
].mask
;
2191 a2
->button
|= states
[mouse_button_state
].buttons
;
2192 flags
= a2
->flags
& MOUSE_POSCHANGED
;
2193 flags
|= a2
->obutton
^ a2
->button
;
2194 if (flags
& MOUSE_BUTTON2DOWN
) {
2195 a2
->flags
= flags
& MOUSE_BUTTON2DOWN
;
2203 /* phisical to logical button mapping */
2204 static int p2l
[MOUSE_MAXBUTTON
] = {
2205 MOUSE_BUTTON1DOWN
, MOUSE_BUTTON2DOWN
, MOUSE_BUTTON3DOWN
, MOUSE_BUTTON4DOWN
,
2206 MOUSE_BUTTON5DOWN
, MOUSE_BUTTON6DOWN
, MOUSE_BUTTON7DOWN
, MOUSE_BUTTON8DOWN
,
2207 0x00000100, 0x00000200, 0x00000400, 0x00000800,
2208 0x00001000, 0x00002000, 0x00004000, 0x00008000,
2209 0x00010000, 0x00020000, 0x00040000, 0x00080000,
2210 0x00100000, 0x00200000, 0x00400000, 0x00800000,
2211 0x01000000, 0x02000000, 0x04000000, 0x08000000,
2212 0x10000000, 0x20000000, 0x40000000,
2224 r_installmap(char *arg
)
2231 arg
= skipspace(arg
);
2233 while (isdigit(*arg
))
2235 arg
= skipspace(arg
);
2236 if ((arg
<= s
) || (*arg
!= '='))
2240 arg
= skipspace(++arg
);
2242 while (isdigit(*arg
))
2244 if ((arg
<= s
) || (!isspace(*arg
) && (*arg
!= '\0')))
2248 if ((lbutton
<= 0) || (lbutton
> MOUSE_MAXBUTTON
))
2250 if ((pbutton
<= 0) || (pbutton
> MOUSE_MAXBUTTON
))
2252 p2l
[pbutton
- 1] = 1 << (lbutton
- 1);
2253 mstate
[lbutton
- 1] = &bstate
[pbutton
- 1];
2260 r_map(mousestatus_t
*act1
, mousestatus_t
*act2
)
2263 register int pbuttons
;
2266 pbuttons
= act1
->button
;
2269 act2
->obutton
= act2
->button
;
2270 if (pbuttons
& rodent
.wmode
) {
2271 pbuttons
&= ~rodent
.wmode
;
2272 act1
->dz
= act1
->dy
;
2276 act2
->dx
= act1
->dx
;
2277 act2
->dy
= act1
->dy
;
2278 act2
->dz
= act1
->dz
;
2280 switch (rodent
.zmap
[0]) {
2281 case 0: /* do nothing */
2284 if (act1
->dz
!= 0) {
2285 act2
->dx
= act1
->dz
;
2290 if (act1
->dz
!= 0) {
2291 act2
->dy
= act1
->dz
;
2295 default: /* buttons */
2296 pbuttons
&= ~(rodent
.zmap
[0] | rodent
.zmap
[1]
2297 | rodent
.zmap
[2] | rodent
.zmap
[3]);
2298 if ((act1
->dz
< -1) && rodent
.zmap
[2]) {
2299 pbuttons
|= rodent
.zmap
[2];
2300 zstate
[2].count
= 1;
2301 } else if (act1
->dz
< 0) {
2302 pbuttons
|= rodent
.zmap
[0];
2303 zstate
[0].count
= 1;
2304 } else if ((act1
->dz
> 1) && rodent
.zmap
[3]) {
2305 pbuttons
|= rodent
.zmap
[3];
2306 zstate
[3].count
= 1;
2307 } else if (act1
->dz
> 0) {
2308 pbuttons
|= rodent
.zmap
[1];
2309 zstate
[1].count
= 1;
2315 for (pb
= 0; (pb
< MOUSE_MAXBUTTON
) && (pbuttons
!= 0); ++pb
) {
2316 lbuttons
|= (pbuttons
& 1) ? p2l
[pb
] : 0;
2319 act2
->button
= lbuttons
;
2321 act2
->flags
= ((act2
->dx
|| act2
->dy
|| act2
->dz
) ? MOUSE_POSCHANGED
: 0)
2322 | (act2
->obutton
^ act2
->button
);
2326 r_timestamp(mousestatus_t
*act
)
2336 mask
= act
->flags
& MOUSE_BUTTONS
;
2340 gettimeofday(&tv1
, NULL
);
2342 /* double click threshold */
2343 tv2
.tv_sec
= rodent
.clickthreshold
/1000;
2344 tv2
.tv_usec
= (rodent
.clickthreshold
%1000)*1000;
2345 timersub(&tv1
, &tv2
, &tv
);
2346 debug("tv: %ld %ld", tv
.tv_sec
, tv
.tv_usec
);
2348 /* 3 button emulation timeout */
2349 tv2
.tv_sec
= rodent
.button2timeout
/1000;
2350 tv2
.tv_usec
= (rodent
.button2timeout
%1000)*1000;
2351 timersub(&tv1
, &tv2
, &tv3
);
2353 button
= MOUSE_BUTTON1DOWN
;
2354 for (i
= 0; (i
< MOUSE_MAXBUTTON
) && (mask
!= 0); ++i
) {
2356 if (act
->button
& button
) {
2357 /* the button is down */
2359 bstate
[i
].tv
.tv_sec
, bstate
[i
].tv
.tv_usec
);
2360 if (timercmp(&tv
, &bstate
[i
].tv
, >)) {
2361 bstate
[i
].count
= 1;
2367 /* the button is up */
2371 if (act
->button
& button
) {
2372 /* the button has been down */
2373 if (timercmp(&tv3
, &bstate
[i
].tv
, >)) {
2374 bstate
[i
].count
= 1;
2376 act
->flags
|= button
;
2377 debug("button %d timeout", i
+ 1);
2380 /* the button has been up */
2395 if (states
[mouse_button_state
].timeout
)
2397 gettimeofday(&tv1
, NULL
);
2398 tv2
.tv_sec
= rodent
.button2timeout
/1000;
2399 tv2
.tv_usec
= (rodent
.button2timeout
%1000)*1000;
2400 timersub(&tv1
, &tv2
, &tv
);
2401 return timercmp(&tv
, &mouse_button_state_tv
, >);
2405 r_click(mousestatus_t
*act
)
2407 struct mouse_info mouse
;
2412 mask
= act
->flags
& MOUSE_BUTTONS
;
2416 button
= MOUSE_BUTTON1DOWN
;
2417 for (i
= 0; (i
< MOUSE_MAXBUTTON
) && (mask
!= 0); ++i
) {
2419 debug("mstate[%d]->count:%d", i
, mstate
[i
]->count
);
2420 if (act
->button
& button
) {
2421 /* the button is down */
2422 mouse
.u
.event
.value
= mstate
[i
]->count
;
2424 /* the button is up */
2425 mouse
.u
.event
.value
= 0;
2427 mouse
.operation
= MOUSE_BUTTON_EVENT
;
2428 mouse
.u
.event
.id
= button
;
2430 ioctl(rodent
.cfd
, CONS_MOUSECTL
, &mouse
);
2431 debug("button %d count %d", i
+ 1, mouse
.u
.event
.value
);
2438 /* $XConsortium: posix_tty.c,v 1.3 95/01/05 20:42:55 kaleb Exp $ */
2439 /* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/shared/posix_tty.c,v 3.4 1995/01/28 17:05:03 dawes Exp $ */
2441 * Copyright 1993 by David Dawes <dawes@physics.su.oz.au>
2443 * Permission to use, copy, modify, distribute, and sell this software and its
2444 * documentation for any purpose is hereby granted without fee, provided that
2445 * the above copyright notice appear in all copies and that both that
2446 * copyright notice and this permission notice appear in supporting
2447 * documentation, and that the name of David Dawes
2448 * not be used in advertising or publicity pertaining to distribution of
2449 * the software without specific, written prior permission.
2450 * David Dawes makes no representations about the suitability of this
2451 * software for any purpose. It is provided "as is" without express or
2454 * DAVID DAWES DISCLAIMS ALL WARRANTIES WITH REGARD TO
2455 * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
2456 * FITNESS, IN NO EVENT SHALL DAVID DAWES BE LIABLE FOR
2457 * ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
2458 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
2459 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
2460 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2466 setmousespeed(int old
, int new, unsigned cflag
)
2471 if (tcgetattr(rodent
.mfd
, &tty
) < 0)
2473 logwarn("unable to get status of mouse fd");
2477 tty
.c_iflag
= IGNBRK
| IGNPAR
;
2480 tty
.c_cflag
= (tcflag_t
)cflag
;
2481 tty
.c_cc
[VTIME
] = 0;
2487 cfsetispeed(&tty
, B9600
);
2488 cfsetospeed(&tty
, B9600
);
2491 cfsetispeed(&tty
, B4800
);
2492 cfsetospeed(&tty
, B4800
);
2495 cfsetispeed(&tty
, B2400
);
2496 cfsetospeed(&tty
, B2400
);
2500 cfsetispeed(&tty
, B1200
);
2501 cfsetospeed(&tty
, B1200
);
2504 if (tcsetattr(rodent
.mfd
, TCSADRAIN
, &tty
) < 0)
2506 logwarn("unable to set status of mouse fd");
2514 cfsetispeed(&tty
, B9600
);
2515 cfsetospeed(&tty
, B9600
);
2519 cfsetispeed(&tty
, B4800
);
2520 cfsetospeed(&tty
, B4800
);
2524 cfsetispeed(&tty
, B2400
);
2525 cfsetospeed(&tty
, B2400
);
2530 cfsetispeed(&tty
, B1200
);
2531 cfsetospeed(&tty
, B1200
);
2534 if (rodent
.rtype
== MOUSE_PROTO_LOGIMOUSEMAN
2535 || rodent
.rtype
== MOUSE_PROTO_LOGI
)
2537 if (write(rodent
.mfd
, c
, 2) != 2)
2539 logwarn("unable to write to mouse fd");
2545 if (tcsetattr(rodent
.mfd
, TCSADRAIN
, &tty
) < 0)
2546 logwarn("unable to set status of mouse fd");
2550 * PnP COM device support
2552 * It's a simplistic implementation, but it works :-)
2557 * Try to elicit a PnP ID as described in
2558 * Microsoft, Hayes: "Plug and Play External COM Device Specification,
2561 * The routine does not fully implement the COM Enumerator as par Section
2562 * 2.1 of the document. In particular, we don't have idle state in which
2563 * the driver software monitors the com port for dynamic connection or
2564 * removal of a device at the port, because `moused' simply quits if no
2567 * In addition, as PnP COM device enumeration procedure slightly has
2568 * changed since its first publication, devices which follow earlier
2569 * revisions of the above spec. may fail to respond if the rev 1.0
2570 * procedure is used. XXX
2575 struct timeval timeout
;
2580 * This is the procedure described in rev 1.0 of PnP COM device spec.
2581 * Unfortunately, some devices which comform to earlier revisions of
2582 * the spec gets confused and do not return the ID string...
2584 debug("PnP COM device rev 1.0 probe...");
2586 /* port initialization (2.1.2) */
2587 ioctl(rodent
.mfd
, TIOCMGET
, &i
);
2588 i
|= TIOCM_DTR
; /* DTR = 1 */
2589 i
&= ~TIOCM_RTS
; /* RTS = 0 */
2590 ioctl(rodent
.mfd
, TIOCMSET
, &i
);
2594 * The PnP COM device spec. dictates that the mouse must set DSR
2595 * in response to DTR (by hardware or by software) and that if DSR is
2596 * not asserted, the host computer should think that there is no device
2597 * at this serial port. But some mice just don't do that...
2599 ioctl(rodent
.mfd
, TIOCMGET
, &i
);
2600 debug("modem status 0%o", i
);
2601 if ((i
& TIOCM_DSR
) == 0)
2604 /* port setup, 1st phase (2.1.3) */
2605 setmousespeed(1200, 1200, (CS7
| CREAD
| CLOCAL
| HUPCL
));
2606 i
= TIOCM_DTR
| TIOCM_RTS
; /* DTR = 0, RTS = 0 */
2607 ioctl(rodent
.mfd
, TIOCMBIC
, &i
);
2609 i
= TIOCM_DTR
; /* DTR = 1, RTS = 0 */
2610 ioctl(rodent
.mfd
, TIOCMBIS
, &i
);
2613 /* wait for response, 1st phase (2.1.4) */
2615 ioctl(rodent
.mfd
, TIOCFLUSH
, &i
);
2616 i
= TIOCM_RTS
; /* DTR = 1, RTS = 1 */
2617 ioctl(rodent
.mfd
, TIOCMBIS
, &i
);
2619 /* try to read something */
2621 FD_SET(rodent
.mfd
, &fds
);
2623 timeout
.tv_usec
= 240000;
2624 if (select(FD_SETSIZE
, &fds
, NULL
, NULL
, &timeout
) > 0) {
2625 debug("pnpwakeup1(): valid response in first phase.");
2629 /* port setup, 2nd phase (2.1.5) */
2630 i
= TIOCM_DTR
| TIOCM_RTS
; /* DTR = 0, RTS = 0 */
2631 ioctl(rodent
.mfd
, TIOCMBIC
, &i
);
2634 /* wait for respose, 2nd phase (2.1.6) */
2636 ioctl(rodent
.mfd
, TIOCFLUSH
, &i
);
2637 i
= TIOCM_DTR
| TIOCM_RTS
; /* DTR = 1, RTS = 1 */
2638 ioctl(rodent
.mfd
, TIOCMBIS
, &i
);
2640 /* try to read something */
2642 FD_SET(rodent
.mfd
, &fds
);
2644 timeout
.tv_usec
= 240000;
2645 if (select(FD_SETSIZE
, &fds
, NULL
, NULL
, &timeout
) > 0) {
2646 debug("pnpwakeup1(): valid response in second phase.");
2656 struct timeval timeout
;
2661 * This is a simplified procedure; it simply toggles RTS.
2663 debug("alternate probe...");
2665 ioctl(rodent
.mfd
, TIOCMGET
, &i
);
2666 i
|= TIOCM_DTR
; /* DTR = 1 */
2667 i
&= ~TIOCM_RTS
; /* RTS = 0 */
2668 ioctl(rodent
.mfd
, TIOCMSET
, &i
);
2671 setmousespeed(1200, 1200, (CS7
| CREAD
| CLOCAL
| HUPCL
));
2673 /* wait for respose */
2675 ioctl(rodent
.mfd
, TIOCFLUSH
, &i
);
2676 i
= TIOCM_DTR
| TIOCM_RTS
; /* DTR = 1, RTS = 1 */
2677 ioctl(rodent
.mfd
, TIOCMBIS
, &i
);
2679 /* try to read something */
2681 FD_SET(rodent
.mfd
, &fds
);
2683 timeout
.tv_usec
= 240000;
2684 if (select(FD_SETSIZE
, &fds
, NULL
, NULL
, &timeout
) > 0) {
2685 debug("pnpwakeup2(): valid response.");
2695 struct timeval timeout
;
2701 if (!pnpwakeup1() && !pnpwakeup2()) {
2703 * According to PnP spec, we should set DTR = 1 and RTS = 0 while
2704 * in idle state. But, `moused' shall set DTR = RTS = 1 and proceed,
2705 * assuming there is something at the port even if it didn't
2706 * respond to the PnP enumeration procedure.
2708 i
= TIOCM_DTR
| TIOCM_RTS
; /* DTR = 1, RTS = 1 */
2709 ioctl(rodent
.mfd
, TIOCMBIS
, &i
);
2713 /* collect PnP COM device ID (2.1.7) */
2716 usleep(240000); /* the mouse must send `Begin ID' within 200msec */
2717 while (read(rodent
.mfd
, &c
, 1) == 1) {
2718 /* we may see "M", or "M3..." before `Begin ID' */
2720 if ((c
== 0x08) || (c
== 0x28)) { /* Begin ID */
2721 debug("begin-id %02x", c
);
2725 debug("%c %02x", c
, c
);
2730 /* we haven't seen `Begin ID' in time... */
2734 ++c
; /* make it `End ID' */
2737 FD_SET(rodent
.mfd
, &fds
);
2739 timeout
.tv_usec
= 240000;
2740 if (select(FD_SETSIZE
, &fds
, NULL
, NULL
, &timeout
) <= 0)
2743 read(rodent
.mfd
, &buf
[i
], 1);
2744 if (buf
[i
++] == c
) /* End ID */
2751 bcopy(&buf
[begin
], &buf
[0], i
);
2753 /* string may not be human readable... */
2754 debug("len:%d, '%-*.*s'", i
, i
, i
, buf
);
2756 if (buf
[i
- 1] == c
)
2757 return i
; /* a valid PnP string */
2760 * According to PnP spec, we should set DTR = 1 and RTS = 0 while
2761 * in idle state. But, `moused' shall leave the modem control lines
2762 * as they are. See above.
2766 /* we may still have something in the buffer */
2767 return ((i
> 0) ? i
: 0);
2771 pnpparse(pnpid_t
*id
, char *buf
, int len
)
2783 id
->description
= NULL
;
2788 id
->ndescription
= 0;
2790 if ((buf
[0] != 0x28) && (buf
[0] != 0x08)) {
2795 case 'M': /* Microsoft */
2796 id
->eisaid
= "PNP0F01";
2798 case 'H': /* MouseSystems */
2799 id
->eisaid
= "PNP0F04";
2802 id
->neisaid
= strlen(id
->eisaid
);
2803 id
->class = "MOUSE";
2804 id
->nclass
= strlen(id
->class);
2805 debug("non-PnP mouse '%c'", buf
[0]);
2810 offset
= 0x28 - buf
[0];
2812 /* calculate checksum */
2813 for (i
= 0; i
< len
- 3; ++i
) {
2817 sum
+= buf
[len
- 1];
2818 for (; i
< len
; ++i
)
2820 debug("PnP ID string: '%*.*s'", len
, len
, buf
);
2825 id
->revision
= ((buf
[1] & 0x3f) << 6) | (buf
[2] & 0x3f);
2826 debug("PnP rev %d.%02d", id
->revision
/ 100, id
->revision
% 100);
2828 /* EISA vender and product ID */
2829 id
->eisaid
= &buf
[3];
2832 /* option strings */
2834 if (buf
[i
] == '\\') {
2835 /* device serial # */
2836 for (j
= ++i
; i
< len
; ++i
) {
2843 id
->serial
= &buf
[j
];
2847 if (buf
[i
] == '\\') {
2849 for (j
= ++i
; i
< len
; ++i
) {
2856 id
->class = &buf
[j
];
2860 if (buf
[i
] == '\\') {
2861 /* compatible driver */
2862 for (j
= ++i
; i
< len
; ++i
) {
2867 * PnP COM spec prior to v0.96 allowed '*' in this field,
2868 * it's not allowed now; just igore it.
2875 id
->compat
= &buf
[j
];
2876 id
->ncompat
= i
- j
;
2879 if (buf
[i
] == '\\') {
2880 /* product description */
2881 for (j
= ++i
; i
< len
; ++i
) {
2888 id
->description
= &buf
[j
];
2889 id
->ndescription
= i
- j
;
2893 /* checksum exists if there are any optional fields */
2894 if ((id
->nserial
> 0) || (id
->nclass
> 0)
2895 || (id
->ncompat
> 0) || (id
->ndescription
> 0)) {
2896 debug("PnP checksum: 0x%X", sum
);
2897 sprintf(s
, "%02X", sum
& 0x0ff);
2898 if (strncmp(s
, &buf
[len
- 3], 2) != 0) {
2901 * I found some mice do not comply with the PnP COM device
2902 * spec regarding checksum... XXX
2904 logwarnx("PnP checksum error", 0);
2914 pnpproto(pnpid_t
*id
)
2920 if (strncmp(id
->class, "MOUSE", id
->nclass
) != 0 &&
2921 strncmp(id
->class, "TABLET", id
->nclass
) != 0)
2922 /* this is not a mouse! */
2925 if (id
->neisaid
> 0) {
2926 t
= gettoken(pnpprod
, id
->eisaid
, id
->neisaid
);
2927 if (t
->val
!= MOUSE_PROTO_UNKNOWN
)
2932 * The 'Compatible drivers' field may contain more than one
2933 * ID separated by ','.
2935 if (id
->ncompat
<= 0)
2937 for (i
= 0; i
< id
->ncompat
; ++i
) {
2938 for (j
= i
; id
->compat
[i
] != ','; ++i
)
2939 if (i
>= id
->ncompat
)
2942 t
= gettoken(pnpprod
, id
->compat
+ j
, i
- j
);
2943 if (t
->val
!= MOUSE_PROTO_UNKNOWN
)
2951 /* name/val mapping */
2954 gettoken(symtab_t
*tab
, char *s
, int len
)
2958 for (i
= 0; tab
[i
].name
!= NULL
; ++i
) {
2959 if (strncmp(tab
[i
].name
, s
, len
) == 0)
2966 gettokenname(symtab_t
*tab
, int val
)
2970 for (i
= 0; tab
[i
].name
!= NULL
; ++i
) {
2971 if (tab
[i
].val
== val
)
2979 * code to read from the Genius Kidspad tablet.
2981 The tablet responds to the COM PnP protocol 1.0 with EISA-ID KYE0005,
2982 and to pre-pnp probes (RTS toggle) with 'T' (tablet ?)
2983 9600, 8 bit, parity odd.
2985 The tablet puts out 5 bytes. b0 (mask 0xb8, value 0xb8) contains
2986 the proximity, tip and button info:
2987 (byte0 & 0x1) true = tip pressed
2988 (byte0 & 0x2) true = button pressed
2989 (byte0 & 0x40) false = pen in proximity of tablet.
2991 The next 4 bytes are used for coordinates xl, xh, yl, yh (7 bits valid).
2993 Only absolute coordinates are returned, so we use the following approach:
2994 we store the last coordinates sent when the pen went out of the tablet,
3001 S_IDLE
, S_PROXY
, S_FIRST
, S_DOWN
, S_UP
3005 kidspad(u_char rxc
, mousestatus_t
*act
)
3008 static int buflen
= 0, b_prev
= 0 , x_prev
= -1, y_prev
= -1 ;
3009 static k_status status
= S_IDLE
;
3010 static struct timeval now
;
3014 if (buflen
> 0 && (rxc
& 0x80)) {
3015 fprintf(stderr
, "invalid code %d 0x%x\n", buflen
, rxc
);
3018 if (buflen
== 0 && (rxc
& 0xb8) != 0xb8) {
3019 fprintf(stderr
, "invalid code 0 0x%x\n", rxc
);
3020 return 0 ; /* invalid code, no action */
3022 buf
[buflen
++] = rxc
;
3026 buflen
= 0 ; /* for next time... */
3028 x
= buf
[1]+128*(buf
[2] - 7) ;
3030 y
= 28*128 - (buf
[3] + 128* (buf
[4] - 7)) ;
3037 act
->obutton
= act
->button
;
3038 act
->dx
= act
->dy
= act
->dz
= 0 ;
3039 gettimeofday(&now
, NULL
);
3040 if (buf
[0] & 0x40) /* pen went out of reach */
3042 else if (status
== S_IDLE
) { /* pen is newly near the tablet */
3043 act
->flags
|= MOUSE_POSCHANGED
; /* force update */
3048 act
->dx
= x
- x_prev
;
3049 act
->dy
= y
- y_prev
;
3050 if (act
->dx
|| act
->dy
)
3051 act
->flags
|= MOUSE_POSCHANGED
;
3054 if (b_prev
!= 0 && b_prev
!= buf
[0]) { /* possibly record button change */
3056 if (buf
[0] & 0x01) /* tip pressed */
3057 act
->button
|= MOUSE_BUTTON1DOWN
;
3058 if (buf
[0] & 0x02) /* button pressed */
3059 act
->button
|= MOUSE_BUTTON2DOWN
;
3060 act
->flags
|= MOUSE_BUTTONSCHANGED
;
3067 mremote_serversetup(void)
3069 struct sockaddr_un ad
;
3071 /* Open a UNIX domain stream socket to listen for mouse remote clients */
3072 unlink(_PATH_MOUSEREMOTE
);
3074 if ((rodent
.mremsfd
= socket(AF_UNIX
, SOCK_STREAM
, 0)) < 0)
3075 logerrx(1, "unable to create unix domain socket %s",_PATH_MOUSEREMOTE
);
3079 bzero(&ad
, sizeof(ad
));
3080 ad
.sun_family
= AF_UNIX
;
3081 strcpy(ad
.sun_path
, _PATH_MOUSEREMOTE
);
3083 #define SUN_LEN(unp) (((char *)(unp)->sun_path - (char *)(unp)) + \
3084 strlen((unp)->path))
3086 if (bind(rodent
.mremsfd
, (struct sockaddr
*) &ad
, SUN_LEN(&ad
)) < 0)
3087 logerrx(1, "unable to bind unix domain socket %s", _PATH_MOUSEREMOTE
);
3089 listen(rodent
.mremsfd
, 1);
3093 mremote_clientchg(int add
)
3095 struct sockaddr_un ad
;
3098 if (rodent
.rtype
!= MOUSE_PROTO_X10MOUSEREM
)
3102 /* Accept client connection, if we don't already have one */
3103 ad_len
= sizeof(ad
);
3104 fd
= accept(rodent
.mremsfd
, (struct sockaddr
*) &ad
, &ad_len
);
3106 logwarnx("failed accept on mouse remote socket");
3108 if (rodent
.mremcfd
< 0) {
3109 rodent
.mremcfd
= fd
;
3110 debug("remote client connect...accepted");
3114 debug("another remote client connect...disconnected");
3118 /* Client disconnected */
3119 debug("remote client disconnected");
3120 close(rodent
.mremcfd
);
3121 rodent
.mremcfd
= -1;