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
108
109
110
111
112
113
114
115
116
117
|
/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License ("CDDL"), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
* http://www.illumos.org/license/CDDL.
*/
/*
* Copyright 2020 Oxide Computer Company
*/
/*
* Describe the purpose of this file.
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
#include <err.h>
#include <sys/sensors.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/sysmacros.h>
static const char *error_sensor = "/dev/sensors/test/test.eio.0";
static int error_exit;
static void
error_kind(int fd, int exp)
{
sensor_ioctl_kind_t kind, alt_kind;
arc4random_buf(&alt_kind, sizeof (alt_kind));
(void) memcpy(&kind, &alt_kind, sizeof (alt_kind));
if (ioctl(fd, SENSOR_IOCTL_KIND, &kind) == 0) {
warnx("TEST FAILED: SENSOR_IOCTL_KIND succeeded on EIO "
"sensor");
error_exit = EXIT_FAILURE;
}
if (errno != exp) {
warnx("TEST FAILED: SENSOR_IOCTL_KIND got errno %d, "
"expected %d", errno, exp);
error_exit = EXIT_FAILURE;
}
if (memcmp(&kind, &alt_kind, sizeof (alt_kind)) != 0) {
warnx("TEST FAILED: SENSOR_IOCTL_KIND modified data on error");
error_exit = EXIT_FAILURE;
}
}
static void
error_temp(int fd, int exp)
{
sensor_ioctl_scalar_t scalar, alt_scalar;
arc4random_buf(&alt_scalar, sizeof (alt_scalar));
(void) memcpy(&scalar, &alt_scalar, sizeof (alt_scalar));
if (ioctl(fd, SENSOR_IOCTL_SCALAR, &scalar) == 0) {
warnx("TEST FAILED: SENSIOR_IOCTL_SCALAR suceeded on "
"EIO sensor");
error_exit = EXIT_FAILURE;
}
if (errno != exp) {
warnx("TEST FAILED: SENSIOR_IOCTL_SCALAR got errno %d, "
"expected %d", errno, EIO);
error_exit = EXIT_FAILURE;
}
if (memcmp(&scalar, &alt_scalar, sizeof (alt_scalar)) != 0) {
warnx("TEST FAILED: SENSIOR_IOCTL_SCALAR modified "
"data on error");
error_exit = EXIT_FAILURE;
}
}
int
main(void)
{
int i;
int flags[] = { O_RDWR, O_WRONLY, O_RDONLY | O_NDELAY,
O_RDONLY | O_NONBLOCK };
int fd = open(error_sensor, O_RDONLY);
if (fd < 0) {
err(EXIT_FAILURE, "TEST FAILED: failed to open %s",
error_sensor);
}
error_kind(fd, EIO);
error_temp(fd, EIO);
(void) close(fd);
/*
* Check for illegal open combinations.
*/
for (i = 0; i < ARRAY_SIZE(flags); i++) {
fd = open(error_sensor, flags[i]);
if (fd >= 0) {
printf("i is %d\n", i);
warnx("TEST FAILED: opened a sensor with flags 0x%x, "
"but expected failure", flags[i]);
error_exit = EXIT_FAILURE;
}
}
return (error_exit);
}
|