-
Notifications
You must be signed in to change notification settings - Fork 32
/
main.go
245 lines (219 loc) · 5.58 KB
/
main.go
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
// hd-idle - spin down idle hard disks
// Copyright (C) 2018 Andoni del Olmo
//
// 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 3 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/>.
package main
import (
"fmt"
"github.com/adelolmo/hd-idle/io"
"os"
"strconv"
"time"
)
const (
defaultIdleTime = 600 * time.Second
symlinkResolveOnce = 0
symlinkResolveRetry = 1
)
func main() {
if os.Getenv("START_HD_IDLE") == "false" {
fmt.Println("START_HD_IDLE=false exiting now.")
os.Exit(0)
}
singleDiskMode := false
var disk string
defaultConf := DefaultConf{
Idle: defaultIdleTime,
CommandType: SCSI,
PowerCondition: 0,
Debug: false,
SymlinkPolicy: 0,
}
var config = &Config{
Devices: []DeviceConf{},
Defaults: defaultConf,
NameMap: map[string]string{},
}
var deviceConf *DeviceConf
if len(os.Args) == 0 {
usage()
os.Exit(1)
}
for index, arg := range os.Args[1:] {
switch arg {
case "-t":
var err error
disk, err = argument(index)
if err != nil {
fmt.Println("Missing disk argument after -t. Must be a device (e.g. -t sda).")
os.Exit(1)
}
singleDiskMode = true
case "-s":
s, err := argument(index)
if err != nil {
fmt.Println("Missing symlink_policy. Must be 0 or 1.")
os.Exit(1)
}
switch s {
case "0":
config.Defaults.SymlinkPolicy = symlinkResolveOnce
case "1":
config.Defaults.SymlinkPolicy = symlinkResolveRetry
default:
fmt.Printf("Wrong symlink_policy -s %s. Must be 0 or 1.\n", s)
os.Exit(1)
}
case "-a":
if deviceConf != nil {
config.Devices = append(config.Devices, *deviceConf)
}
name, err := argument(index)
if err != nil {
fmt.Println("Missing disk argument after -a. Must be a device (e.g. -a sda).")
os.Exit(1)
}
deviceRealPath, err := io.RealPath(name)
if err != nil {
deviceRealPath = ""
fmt.Printf("Unable to resolve symlink: %s\n", name)
}
deviceConf = &DeviceConf{
Name: deviceRealPath,
GivenName: name,
Idle: config.Defaults.Idle,
CommandType: config.Defaults.CommandType,
PowerCondition: config.Defaults.PowerCondition,
}
config.NameMap[deviceRealPath] = name
case "-i":
s, err := argument(index)
if err != nil {
fmt.Println("Missing idle_time after -i. Must be a number.")
os.Exit(1)
}
idle, err := strconv.Atoi(s)
if err != nil {
fmt.Printf("Wrong idle_time -i %d. Must be a number.", idle)
os.Exit(1)
}
if deviceConf == nil {
config.Defaults.Idle = time.Duration(idle) * time.Second
break
}
deviceConf.Idle = time.Duration(idle) * time.Second
case "-c":
command, err := argument(index)
if err != nil {
fmt.Println("Missing command_type after -c. Must be one of: scsi, ata.")
os.Exit(1)
}
switch command {
case SCSI, ATA:
if deviceConf == nil {
config.Defaults.CommandType = command
break
}
deviceConf.CommandType = command
default:
fmt.Printf("Wrong command_type -c %s. Must be one of: scsi, ata.", command)
os.Exit(1)
}
case "-p":
s, err := argument(index)
if err != nil {
fmt.Println("Missing power condition after -p. Must be a number from 0-15.")
os.Exit(1)
}
powerCondition, err := strconv.ParseUint(s, 0, 4)
if err != nil {
fmt.Printf("Invalid power condition %s: %s", s, err.Error())
os.Exit(1)
}
if deviceConf == nil {
config.Defaults.PowerCondition = uint8(powerCondition)
break
}
deviceConf.PowerCondition = uint8(powerCondition)
case "-l":
logfile, err := argument(index)
if err != nil {
fmt.Println("Missing logfile after -l.")
os.Exit(1)
}
config.Defaults.LogFile = logfile
case "-d":
config.Defaults.Debug = true
case "-h":
usage()
os.Exit(0)
}
}
if singleDiskMode {
if err := spindownDisk(
disk,
config.Defaults.CommandType,
config.Defaults.PowerCondition,
config.Defaults.Debug,
); err != nil {
fmt.Println(err.Error())
os.Exit(1)
}
os.Exit(0)
}
if deviceConf != nil {
config.Devices = append(config.Devices, *deviceConf)
}
fmt.Println(config.String())
interval := poolInterval(config.Devices)
config.SkewTime = interval * 3
for {
ObserveDiskActivity(config)
time.Sleep(interval)
}
}
func argument(index int) (string, error) {
argIndex := index + 2
if argIndex >= len(os.Args) {
return "", fmt.Errorf("option requires argument")
}
arg := os.Args[argIndex]
if arg[:1] == "-" {
return "", fmt.Errorf("option requires argument")
}
return arg, nil
}
func usage() {
fmt.Println("usage: hd-idle [-t <disk>] [-s <symlink_policy>] [-a <name>] [-i <idle_time>] " +
"[-c <command_type>] [-p power_condition] [-l <logfile>] [-d] [-h]")
}
func poolInterval(deviceConfs []DeviceConf) time.Duration {
if len(deviceConfs) == 0 {
return defaultIdleTime / 10
}
interval := defaultIdleTime
for _, dev := range deviceConfs {
if dev.Idle == 0 {
continue
}
if dev.Idle < interval {
interval = dev.Idle
}
}
sleepTime := interval / 10
if sleepTime == 0 {
return time.Second
}
return sleepTime
}