forked from syscl/Fix-usb-sleep
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfixUSB.sh
More file actions
executable file
·458 lines (402 loc) · 19.3 KB
/
fixUSB.sh
File metadata and controls
executable file
·458 lines (402 loc) · 19.3 KB
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
#!/bin/sh
# fixUSB.sh
#
#
# Created by syscl/lighting/Yating Zhou on 16/3/18.
#
#
# This script aims to unmount all external devices automatically before sleep.
#
# Without this procedure, various computers with OS X/Mac OS X(even on a real Mac) suffer from "Disk not ejected properly"
# issue when there're external devices plugged-in. That's the reason why I created this script to fix this issue. (syscl/lighting/Yating Zhou)
#
# All credit to Bernhard Baehr (bernhard.baehr@gmx.de), without his great sleepwatcher dameon, this fix will not be created.
#
#================================= GLOBAL VARS ==================================
#
# The script expects '0.5' but non-US localizations use '0,5' so we export
# LC_NUMERIC here (for the duration of the fixUSB.sh) to prevent errors.
#
export LC_NUMERIC="en_US.UTF-8"
#
# Get user id.
#
let gID=$(id -u)
#
# Prevent non-printable/control characters.
#
unset GREP_OPTIONS
unset GREP_COLORS
unset GREP_COLOR
#
# Display style setting.
#
BOLD="\033[1m"
RED="\033[1;31m"
GREEN="\033[1;32m"
BLUE="\033[1;34m"
OFF="\033[m"
#
# Located repository.
#
REPO=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
#
# Define vars.
#
gArgv=""
gDebug=1
#
# Path and filename setup.
#
gInstall_Repo="/usr/local/sbin/"
gFrom="${REPO}/tools"
gConfig="/tmp/com.syscl.externalfix.sleepwatcher.plist"
gUSBSleepScript="/tmp/sysclusbfix.sleep"
gUSBWakeScript="/tmp/sysclusbfix.wake"
gRTWlan_kext=$(ls /Library/Extensions | grep -i "Rtw" | sed 's/.kext//')
gRTWlan_Repo="/Library/Extensions"
to_Plist="/Library/LaunchDaemons/com.syscl.externalfix.sleepwatcher.plist"
to_shell_sleep="/etc/sysclusbfix.sleep"
to_shell_wake="/etc/sysclusbfix.wake"
gRT_Config="/Applications/Wireless Network Utility.app"/${gMAC_adr}rfoff.rtl
gGitHubContentURL="https://raw.githubusercontent.com/syscl/Fix-usb-sleep/master"
#
#--------------------------------------------------------------------------------
#
function _PRINT_MSG()
{
local message=$1
case "$message" in
OK* ) local message=$(echo $message | sed -e 's/.*OK://')
echo "[ ${GREEN}OK${OFF} ] ${message}."
;;
FAILED*) local message=$(echo $message | sed -e 's/.*://')
echo "[${RED}FAILED${OFF}] ${message}."
;;
---* ) local message=$(echo $message | sed -e 's/.*--->://')
echo "[ ${GREEN}--->${OFF} ] ${message}"
;;
NOTE* ) local message=$(echo $message | sed -e 's/.*NOTE://')
echo "[ ${RED}Note${OFF} ] ${message}."
;;
esac
}
#
#--------------------------------------------------------------------------------
#
function _tidy_exec()
{
if [ $gDebug -eq 0 ];
then
#
# Using debug mode to output all the details.
#
_PRINT_MSG "DEBUG: $2"
$1
else
#
# Make the output clear.
#
$1 >/tmp/report 2>&1 && RETURN_VAL=0 || RETURN_VAL=1
if [ "${RETURN_VAL}" == 0 ];
then
_PRINT_MSG "OK: $2"
else
_PRINT_MSG "FAILED: $2"
cat /tmp/report
fi
rm /tmp/report &> /dev/null
fi
}
#
#--------------------------------------------------------------------------------
#
function _checkForExecutableFile()
{
if [ ! -f ${gFrom}/sleepwatcher ];
then
_touch "${gFrom}/tools"
_tidy_exec "sudo curl -o ${gFrom}/sleepwatcher --silent "${gGitHubContentURL}/tools/sleepwatcher"" "Download sleepwatcher"
fi
}
#
#--------------------------------------------------------------------------------
#
function _printConfig()
{
_del ${gConfig}
echo '<?xml version="1.0" encoding="UTF-8"?>' > "$gConfig"
echo '<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">' >> "$gConfig"
echo '<plist version="1.0">' >> "$gConfig"
echo '<dict>' >> "$gConfig"
echo ' <key>KeepAlive</key>' >> "$gConfig"
echo ' <true/>' >> "$gConfig"
echo ' <key>Label</key>' >> "$gConfig"
echo ' <string>com.syscl.externalfix.sleepwatcher</string>' >> "$gConfig"
echo ' <key>ProgramArguments</key>' >> "$gConfig"
echo ' <array>' >> "$gConfig"
echo ' <string>/usr/local/sbin/sleepwatcher</string>' >> "$gConfig"
echo ' <string>-V</string>' >> "$gConfig"
echo ' <string>-s /etc/sysclusbfix.sleep</string>' >> "$gConfig"
echo ' <string>-w /etc/sysclusbfix.wake</string>' >> "$gConfig"
echo ' </array>' >> "$gConfig"
echo ' <key>RunAtLoad</key>' >> "$gConfig"
echo ' <true/>' >> "$gConfig"
echo '</dict>' >> "$gConfig"
echo '</plist>' >> "$gConfig"
}
#
#--------------------------------------------------------------------------------
#
function _createUSB_Sleep_Script()
{
echo '#!/bin/sh'
echo '#'
echo '# This script aims to unmount all external devices automatically before sleep.'
echo '#'
echo '# Without this procedure, various computers with OS X/Mac OS X(even on a real Mac) suffer from "Disk not ejected properly"'
echo '# issue when there're external devices plugged-in. That's the reason why I created this script to fix this issue. (syscl/lighting/Yating Zhou)'
echo '#'
echo '# All credit to Bernhard Baehr (bernhard.baehr@gmx.de), without his great sleepwatcher dameon, this fix will not be created.'
echo '#'
echo ''
echo '#'
echo '# Added unmount Disk for "OS X" (c) syscl/lighting/Yating Zhou.'
echo '#'
echo 'gMountPartition="/tmp/com.syscl.externalfix"'
echo 'gDisk=($(diskutil list |grep -i -i "dev" |grep -i -o "disk[0-9]"))'
echo 'gUSBDisk=""'
echo ''
echo 'for ((i=0; i<${#gDisk[@]}; ++i))'
echo 'do'
echo ' gProtocol=$(diskutil info ${gDisk[i]} |grep -i "Protocol" |sed -e "s|Protocol:||" -e "s| ||g")'
echo ' is_SDCard=$(diskutil info ${gDisk[i]} |grep -i "Device / Media Name" |grep -i "SD Card")'
echo ' if [[ ${gProtocol} == *"USB"* ]];'
echo ' then'
echo ' gCurrent_Partitions=($(diskutil list ${gDisk[i]} |grep -o "disk[0-9]s[0-9]"))'
echo ' for ((k=0; k<${#gCurrent_Partitions[@]}; ++k))'
echo ' do'
echo ' gConfirm_Mounted=$(diskutil info ${gCurrent_Partitions[k]} |grep -i 'Mounted' |sed -e "s| Mounted:||" -e "s| ||g")'
echo ' if [[ ${gConfirm_Mounted} == *"Yes"* ]];'
echo ' then'
echo ' echo ${gCurrent_Partitions[k]} >> ${gMountPartition}'
echo ' fi'
echo ' done'
echo ' if [ -z ${is_SDCard} ]; then'
echo ' diskutil eject ${gDisk[i]}'
echo ' else'
echo ' gUSBDisk="${gUSBDisk}\n${gDisk[i]}"'
echo ' fi'
echo ' fi'
echo 'done'
echo 'echo -e "${gUSBDisk}\n" | xargs -I {} diskutil eject {}'
echo ''
# no wlan kext found
if [ -z $gRTWlan_kext ]; then
return
fi
echo ''
echo '#'
echo '# Fix RTLWlanUSB sleep problem credit B1anker & syscl/lighting/Yating Zhou. @PCBeta.'
echo '#'
echo ''
echo "gRTWlan_kext=$(echo $gRTWlan_kext)"
echo 'gMAC_adr=$(ioreg -rc $gRTWlan_kext | sed -n "/IOMACAddress/ s/.*= <\(.*\)>.*/\1/ p")'
echo ''
echo 'if [[ "$gMAC_adr" != 0 ]];'
echo ' then'
echo ' gRT_Config="/Applications/Wireless Network Utility.app"/${gMAC_adr}rfoff.rtl'
echo ''
echo ' if [ ! -f $gRT_Config ];'
echo ' then'
echo ' gRT_Config=$(ls "/Applications/Wireless Network Utility.app"/*rfoff.rtl)'
echo ' fi'
echo ''
echo " osascript -e 'quit app \"Wireless Network Utility\"'"
echo ' echo "1" > "$gRT_Config"'
echo ' open "/Applications/Wireless Network Utility.app"'
echo 'fi'
}
#
#--------------------------------------------------------------------------------
#
function _RTLWlanU()
{
_del ${gUSBWakeScript}
_del "/etc/syscl.usbfix.wake"
echo '#!/bin/sh' > "$gUSBWakeScript"
echo '#' >> "$gUSBWakeScript"
echo '# Added mount Disk for "OS X" (c) syscl/lighting/Yating Zhou.' >> "$gUSBWakeScript"
echo '#' >> "$gUSBWakeScript"
echo '' >> "$gUSBWakeScript"
echo 'gMountPartition="/tmp/com.syscl.externalfix"' >> "$gUSBWakeScript"
echo '' >> "$gUSBWakeScript"
echo 'cat ${gMountPartition} |xargs -I {} diskutil mount {}' >> "$gUSBWakeScript"
echo 'rm ${gMountPartition}' >> "$gUSBWakeScript"
# echo 'diskutil list | grep -i "External" | sed -e "s| (external, physical):||" | xargs -I {} diskutil mountDisk {}' >> "$gUSBWakeScript"
echo '' >> "$gUSBWakeScript"
echo '#' >> "$gUSBWakeScript"
echo '# Fix RTLWlanUSB sleep problem credit B1anker & syscl/lighting/Yating Zhou. @PCBeta.' >> "$gUSBWakeScript"
echo '#' >> "$gUSBWakeScript"
echo '' >> "$gUSBWakeScript"
echo "gRTWlan_kext=$(echo $gRTWlan_kext)" >> "$gUSBWakeScript"
echo 'gMAC_adr=$(ioreg -rc $gRTWlan_kext | sed -n "/IOMACAddress/ s/.*= <\(.*\)>.*/\1/ p")' >> "$gUSBWakeScript"
echo '' >> "$gUSBWakeScript"
echo 'if [[ "$gMAC_adr" != 0 ]];' >> "$gUSBWakeScript"
echo ' then' >> "$gUSBWakeScript"
echo ' gRT_Config="/Applications/Wireless Network Utility.app"/${gMAC_adr}rfoff.rtl' >> "$gUSBWakeScript"
echo '' >> "$gUSBWakeScript"
echo ' if [ ! -f $gRT_Config ];' >> "$gUSBWakeScript"
echo ' then' >> "$gUSBWakeScript"
echo ' gRT_Config=$(ls "/Applications/Wireless Network Utility.app"/*rfoff.rtl)' >> "$gUSBWakeScript"
echo ' fi' >> "$gUSBWakeScript"
echo '' >> "$gUSBWakeScript"
echo " osascript -e 'quit app \"Wireless Network Utility\"'" >> "$gUSBWakeScript"
echo ' echo "0" > "$gRT_Config"' >> "$gUSBWakeScript"
echo ' open "/Applications/Wireless Network Utility.app"' >> "$gUSBWakeScript"
echo 'fi' >> "$gUSBWakeScript"
}
#
#--------------------------------------------------------------------------------
#
function _fnd_RTW_Repo()
{
if [ -z $gRTWlan_kext ];
then
#
# RTWlan_kext is not in /Library/Extensions. Check /S*/L*/E*.
#
gRTWlan_kext=$(ls /System/Library/Extensions | grep -i "Rtw" | sed 's/.kext//')
gRTWlan_Repo="/System/Library/Extensions"
fi
}
#
#--------------------------------------------------------------------------------
#
function _uinstall()
{
_tidy_exec "sudo launchctl unload ${to_Plist}" "Unload ${to_Plist}"
_del /Library/LaunchDaemons/de.bernhard-baehr.sleepwatcher.plist
_del ${gInstall_Repo}
_del ${to_Plist}
_del ${to_shell_sleep}
_del ${to_shell_wake}
}
#
#--------------------------------------------------------------------------------
#
function _del()
{
local target_file=$1
if [ -d ${target_file} ];
then
_tidy_exec "sudo rm -R ${target_file}" "Remove ${target_file}"
else
if [ -f ${target_file} ];
then
_tidy_exec "sudo rm ${target_file}" "Remove ${target_file}"
fi
fi
}
#
#--------------------------------------------------------------------------------
#
function _touch()
{
local target_file=$1
if [ ! -d ${target_file} ];
then
_tidy_exec "sudo mkdir -p ${target_file}" "Create ${target_file}"
fi
}
#
#--------------------------------------------------------------------------------
#
function _install()
{
#
# Check if sleepwatcher has been downloaded
#
_checkForExecutableFile
#
# Generate configuration file of sleepwatcher launch demon.
#
_tidy_exec "_printConfig" "Generate configuration file of sleepwatcher launch daemon"
#
# Find RTW place.
#
_fnd_RTW_Repo
#
# Generate script to unmount external devices before sleep (c) syscl/lighting/Yating Zhou.
#
_createUSB_Sleep_Script >${gUSBSleepScript}
#
# Generate script to load RTWlanUSB after wake from sleep.
#
if [ -z $gRTWlan_kext ]; then
_tidy_exec "_RTLWlanU" "Generate script to load RTWlanUSB upon sleep"
fi
#
# Install sleepwatcher daemon.
#
_PRINT_MSG "--->: Installing external devices sleep patch..."
_touch "${gInstall_Repo}"
_tidy_exec "sudo cp "${gFrom}/sleepwatcher" "${gInstall_Repo}"" "Install sleepwatcher daemon"
_tidy_exec "sudo cp "${gConfig}" "${to_Plist}"" "Install configuration of sleepwatcher daemon"
_tidy_exec "sudo cp "${gUSBSleepScript}" "${to_shell_sleep}"" "Install sleep script"
_tidy_exec "sudo cp "${gUSBWakeScript}" "${to_shell_wake}"" "Install wake script"
_tidy_exec "sudo chmod 744 ${to_shell_sleep}" "Fix the permissions of ${to_shell_sleep}"
_tidy_exec "sudo chmod 744 ${to_shell_wake}" "Fix the permissions of ${to_shell_wake}"
_tidy_exec "sudo launchctl load ${to_Plist}" "Trigger startup service of syscl.usb.fix"
#
# Clean up.
#
_tidy_exec "rm $gConfig $gUSBSleepScript" "Clean up"
#
# Finish. Request reboot.
#
_PRINT_MSG "NOTE: DONE! Sleep to see change"
_PRINT_MSG "NOTE: Feel free to post issue on https://github.com/syscl/Fix-usb-sleep"
}
#
#--------------------------------------------------------------------------------
#
function main()
{
#
# Get argument.
#
gArgv=$(echo "$@" | tr '[:lower:]' '[:upper:]')
if [[ "$gArgv" == *"-D"* || "$gArgv" == *"-DEBUG"* ]];
then
#
# Yes, we do need debug mode.
#
_PRINT_MSG "NOTE: Use ${BLUE}DEBUG${OFF} mode"
gDebug=0
else
#
# No, we need a clean output style.
#
gDebug=1
fi
#
# Detect which progress to execute.
#
if [[ "$gArgv" == *"-U"* ]];
then
#
# Uninstall.
#
_uinstall
else
#
# Install.
#
_install
fi
}
#==================================== START =====================================
main "$@"
#================================================================================
exit ${RETURN_VAL}