aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/uhid.txt
diff options
context:
space:
mode:
authorAndrey Konovalov <andreyknvl@google.com>2019-02-01 01:08:17 +0100
committerAndrey Konovalov <andreyknvl@gmail.com>2019-02-01 14:40:17 +0100
commit9f528bbcc8a3d94c9be27a0eecc12022d4b3bfaa (patch)
tree59bcdb899b42ba9d793d5bbac6cf58a4a9132143 /sys/linux/uhid.txt
parentaa53be276dc84aa8b3825b3416542447ff82b41a (diff)
sys/linux: rename dev descriptions files
Prefix file names of descriptions of /dev/* files with dev_. And give some of them more appropriate names.
Diffstat (limited to 'sys/linux/uhid.txt')
-rw-r--r--sys/linux/uhid.txt81
1 files changed, 0 insertions, 81 deletions
diff --git a/sys/linux/uhid.txt b/sys/linux/uhid.txt
deleted file mode 100644
index 317ee5de6..000000000
--- a/sys/linux/uhid.txt
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 2018 syzkaller project authors. All rights reserved.
-# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
-
-include <uapi/linux/fcntl.h>
-include <uapi/linux/uhid.h>
-
-resource fd_uhid[fd]
-
-openat$uhid(fd const[AT_FDCWD], file ptr[in, string["/dev/uhid"]], flags flags[uhid_open_flags], mode const[0]) fd_uhid
-write$UHID_CREATE(fd fd_uhid, data ptr[in, uhid_create_req], len len[data])
-write$UHID_CREATE2(fd fd_uhid, data ptr[in, uhid_create2_req], len len[data])
-write$UHID_DESTROY(fd fd_uhid, data ptr[in, uhid_destroy_req], len len[data])
-write$UHID_INPUT(fd fd_uhid, data ptr[in, uhid_input_req], len len[data])
-write$UHID_INPUT2(fd fd_uhid, data ptr[in, uhid_input2_req], len len[data])
-write$UHID_GET_REPORT_REPLY(fd fd_uhid, data ptr[in, uhid_get_report_req], len len[data])
-write$UHID_SET_REPORT_REPLY(fd fd_uhid, data ptr[in, uhid_set_report_req], len len[data])
-
-uhid_create_req {
- type const[UHID_CREATE, int32]
- name string[uhid_names, 128]
- phys string[uhid_names, 64]
- uniq string[uhid_names, 64]
- rd_data ptr[out, array[int8]]
- rd_size len[rd_data, int16]
- bus int16
- vendor int32
- product int32
- version int32
- country int32
-} [packed]
-
-uhid_create2_req {
- type const[UHID_CREATE2, int32]
- name string[uhid_names, 128]
- phys string[uhid_names, 64]
- uniq string[uhid_names, 64]
- rd_size len[rd_data, int16]
- bus int16
- vendor int32
- product int32
- version int32
- country int32
- rd_data array[int8]
-} [packed]
-
-uhid_destroy_req {
- type const[UHID_DESTROY, int32]
-} [packed]
-
-uhid_input_req {
- type const[UHID_INPUT, int32]
- data array[int8, UHID_DATA_MAX]
- size len[data, int16]
-} [packed]
-
-uhid_input2_req {
- type const[UHID_INPUT2, int32]
- size len[data, int16]
- data array[int8]
-} [packed]
-
-uhid_get_report_req {
- type const[UHID_GET_REPORT_REPLY, int32]
- id int32[0:10]
- rnum int8
- rtype int8
-} [packed]
-
-uhid_set_report_req {
- type const[UHID_SET_REPORT_REPLY, int32]
- id int32[0:10]
- rnum int8
- rtype int8
- size len[data, int16]
- data array[int8]
-} [packed]
-
-uhid_names = "syz0", "syz1"
-uhid_open_flags = O_RDWR, O_RDWR_NONBLOCK
-
-define O_RDWR_NONBLOCK O_RDWR | O_NONBLOCK