forked from hreinecke/md_monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dasd_ioctl.c
144 lines (131 loc) · 3.44 KB
/
dasd_ioctl.c
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
* dasd_ioctl.c
*
* Copyright (C) 2013 Hannes Reinecke <[email protected]>
*
* 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 will 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, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <syslog.h>
#include <string.h>
#include <errno.h>
#include "libudev.h"
#include "md_debug.h"
#include "dasd_ioctl.h"
#ifndef DASD_IOCTL_LETTER
#define DASD_IOCTL_LETTER 'D'
#ifndef BIODASDTIMEOUT
/* TIMEOUT IO on device */
#define BIODASDTIMEOUT _IO(DASD_IOCTL_LETTER,240)
#endif
#ifndef BIODASDRESYNC
/* Resume IO on device */
#define BIODASDRESYNC _IO(DASD_IOCTL_LETTER,241)
#endif
#ifndef BIODASDQUIESCE
/* Quiesce IO on device */
#define BIODASDQUIESCE _IO(DASD_IOCTL_LETTER,6)
#endif
#ifndef BIODASDRESUME
/* Resume IO on device */
#define BIODASDRESUME _IO(DASD_IOCTL_LETTER,7)
#endif
#endif
int dasd_timeout_ioctl(struct udev_device *dev, int set)
{
int ioctl_arg = set ? BIODASDTIMEOUT : BIODASDRESYNC;
int ioctl_fd;
const char *devname;
const char *devnode;
char devnode_s[256];
int rc = 0;
if (!dev)
return -EINVAL;
devname = udev_device_get_sysname(dev);
if (!devname)
return -ENXIO;
devnode = udev_device_get_devnode(dev);
if (!devnode) {
sprintf(devnode_s, "/dev/%s", devname);
devnode = devnode_s;
}
dbg("%s: calling DASD ioctl '%s'", devname,
set ? "BIODASDTIMEOUT" : "BIODASDRESYNC");
if (!strlen(devnode)) {
warn("%s: device node not found", devname);
return -ENXIO;
}
ioctl_fd = open(devnode, O_RDONLY);
if (ioctl_fd < 0) {
warn("%s: cannot open %s for DASD ioctl: %m",
devname, devnode);
rc = -errno;
} else {
if (ioctl(ioctl_fd, ioctl_arg) < 0) {
info("%s: cannot %s DASD timeout flag: %m",
devname, set ? "set" : "unset");
rc = -errno;
} else {
dbg("%s: %s DASD timeout flag", devname,
set ? "set" : "unset");
}
close(ioctl_fd);
}
return rc;
}
int dasd_quiesce_ioctl(struct udev_device *dev, int set)
{
int ioctl_arg = set ? BIODASDQUIESCE : BIODASDRESUME;
int ioctl_fd;
const char *devname;
const char *devnode;
char devnode_s[256];
int rc = 0;
if (!dev)
return -EINVAL;
devname = udev_device_get_sysname(dev);
if (!devname)
return -ENXIO;
devnode = udev_device_get_devnode(dev);
if (!devnode) {
sprintf(devnode_s, "/dev/%s", devname);
devnode = devnode_s;
}
dbg("%s: calling DASD ioctl '%s'", devname,
set ? "BIODASDQUIESCE" : "BIODASDRESUME");
if (!strlen(devnode)) {
warn("%s: device removed", devname);
return -ENXIO;
}
ioctl_fd = open(devnode, O_RDONLY);
if (ioctl_fd < 0) {
warn("%s: cannot open %s for DASD ioctl: %m",
devname, devnode);
rc = -errno;
} else {
if (ioctl(ioctl_fd, ioctl_arg) < 0) {
info("%s: cannot %s DASD: %m",
devname, set ? "quiesce" : "resume");
rc = -errno;
} else {
dbg("%s: DASD %s", devname,
set ? "quiesced" : "resumed");
}
close(ioctl_fd);
}
return rc;
}