tzh
2024-08-22 c7d0944258c7d0943aa7b2211498fd612971ce27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
 * Copyright (c) 2015 Cedric Hnyda <chnyda@suse.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it would be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write the Free Software Foundation,
 * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
 
 /*
  *  Create a virtual device (mouse), send events to /dev/uinput
  *  and Check that events not advertised in the input device bits
  *  are filtered.
  */
 
#include <linux/input.h>
#include <linux/uinput.h>
 
#include "test.h"
#include "safe_macros.h"
#include "lapi/fcntl.h"
#include "input_helper.h"
 
#define X_VALUE 10
#define Y_VALUE 10
 
#define NB_TEST 20
 
static void setup(void);
static void send_events(void);
static void cleanup(void);
 
static int fd;
static int fd2;
 
char *TCID = "input05";
 
int main(int ac, char **av)
{
   int lc;
   int pid;
 
   tst_parse_opts(ac, av, NULL, NULL);
 
   setup();
 
   for (lc = 0; TEST_LOOPING(lc); ++lc) {
       pid = tst_fork();
 
       switch (pid) {
       case 0:
           send_events();
           exit(0);
       case -1:
           tst_brkm(TBROK | TERRNO, cleanup, "fork() failed");
       default:
           if (no_events_queued(fd2, 1))
               tst_resm(TPASS, "No data received in eventX");
           else
               tst_resm(TFAIL, "Data received in eventX");
       break;
       }
 
       SAFE_WAITPID(NULL, pid, NULL, 0);
   }
 
   cleanup();
   tst_exit();
}
 
static void setup(void)
{
   tst_require_root();
 
   fd = open_uinput();
 
   SAFE_IOCTL(NULL, fd, UI_SET_EVBIT, EV_KEY);
   SAFE_IOCTL(NULL, fd, UI_SET_KEYBIT, BTN_LEFT);
 
   create_device(fd);
 
   fd2 = open_device();
}
 
static void send_events(void)
{
   int nb;
 
   for (nb = 0; nb < NB_TEST; ++nb) {
       send_rel_move(fd, X_VALUE, Y_VALUE);
       usleep(1000);
   }
}
 
static void cleanup(void)
{
   destroy_device(fd);
}