3 efivarfs_mount
=/sys
/firmware
/efi
/efivars
4 test_guid
=210be57c-9849-4fc7-a635-e6382d1aec27
8 local msg
="skip all tests:"
10 if [ $UID != 0 ]; then
11 echo $msg must be run as root
>&2
15 if ! grep -q "^\S\+ $efivarfs_mount efivarfs" /proc
/mounts
; then
16 echo $msg efivarfs is not mounted on
$efivarfs_mount >&2
25 echo "--------------------"
27 echo "--------------------"
29 if [ "$(type -t $test)" = 'function' ]; then
45 local attrs
='\x07\x00\x00\x00'
46 local file=$efivarfs_mount/$FUNCNAME-$test_guid
48 printf "$attrs\x00" > $file
50 if [ ! -e $file ]; then
51 echo "$file couldn't be created" >&2
55 if [ $
(stat
-c %s
$file) -ne 5 ]; then
56 echo "$file has invalid size" >&2
63 local file=$efivarfs_mount/$FUNCNAME-$test_guid
67 if [ ! -e $file ]; then
68 echo "$file can not be created without writing" >&2
75 local file=$efivarfs_mount/$FUNCNAME-$test_guid
81 local attrs
='\x07\x00\x00\x00'
82 local file=$efivarfs_mount/$FUNCNAME-$test_guid
84 printf "$attrs\x00" > $file
86 if [ ! -e $file ]; then
87 echo "$file couldn't be created" >&2
94 echo "$file couldn't be deleted" >&2
100 # test that we can remove a variable by issuing a write with only
101 # attributes specified
102 test_zero_size_delete
()
104 local attrs
='\x07\x00\x00\x00'
105 local file=$efivarfs_mount/$FUNCNAME-$test_guid
107 printf "$attrs\x00" > $file
109 if [ ! -e $file ]; then
110 echo "$file does not exist" >&2
114 printf "$attrs" > $file
116 if [ -e $file ]; then
117 echo "$file should have been deleted" >&2
124 local file=$efivarfs_mount/$FUNCNAME-$test_guid
128 # test that we can create a range of filenames
129 test_valid_filenames
()
131 local attrs
='\x07\x00\x00\x00'
134 local file_list
="abc dump-type0-11-1-1362436005 1234 -"
135 for f
in $file_list; do
136 local file=$efivarfs_mount/$f-$test_guid
138 printf "$attrs\x00" > $file
140 if [ ! -e $file ]; then
141 echo "$file could not be created" >&2
151 test_invalid_filenames
()
153 local attrs
='\x07\x00\x00\x00'
157 -1234-1234-1234-123456789abc
161 foo-barbazba-foob-foob-foob-foobarbazfoo
162 foo-------------------------------------
163 -12345678-1234-1234-1234-123456789abc
164 a-12345678=1234-1234-1234-123456789abc
165 a-12345678-1234=1234-1234-123456789abc
166 a-12345678-1234-1234=1234-123456789abc
167 a-12345678-1234-1234-1234=123456789abc
168 1112345678-1234-1234-1234-123456789abc"
170 for f
in $file_list; do
171 local file=$efivarfs_mount/$f
173 printf "$attrs\x00" 2>/dev
/null
> $file
175 if [ -e $file ]; then
176 echo "Creating $file should have failed" >&2
190 run_test test_create_empty
191 run_test test_create_read
193 run_test test_zero_size_delete
194 run_test test_open_unlink
195 run_test test_valid_filenames
196 run_test test_invalid_filenames