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
|
#
# Copyright (c) 2016 Spectra Logic Corp
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# $FreeBSD$
atf_test_case bad_namespace
bad_namespace_head() {
atf_set "descr" "Can't set attributes for nonexistent namespaces"
}
bad_namespace_body() {
check_fs
touch foo
atf_check -s not-exit:0 -e match:"Invalid argument" \
setextattr badnamespace myattr X foo
atf_check -s not-exit:0 -e match:"Invalid argument" \
lsextattr -q badnamespace foo
}
atf_test_case hex
hex_head() {
atf_set "descr" "Set and get attribute values in hexadecimal"
}
hex_body() {
check_fs
touch foo
atf_check -s exit:0 -o empty setextattr user myattr XYZ foo
atf_check -s exit:0 -o inline:"58 59 5a\n" \
getextattr -qx user myattr foo
}
atf_test_case hex_nonascii
hex_nonascii_head() {
atf_set "descr" "Get binary attribute values in hexadecimal"
}
hex_nonascii_body() {
check_fs
touch foo
BINSTUFF=`echo $'\x20\x30\x40\x55\x66\x70\x81\xa2\xb3\xee\xff'`
atf_check -s exit:0 -o empty setextattr user myattr "$BINSTUFF" foo
getextattr user myattr foo
atf_check -s exit:0 -o inline:"20 30 40 55 66 70 81 a2 b3 ee ff\n" \
getextattr -qx user myattr foo
}
atf_test_case long_name
long_name_head() {
atf_set "descr" "A maximum length attribute name"
}
long_name_body() {
check_fs
# https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208965
atf_expect_fail "BUG 208965 extattr(2) doesn't allow maxlen attr names"
ATTRNAME=`jot -b X -s "" 255 0`
touch foo
atf_check -s exit:0 -o empty setextattr user $ATTRNAME myvalue foo
atf_check -s exit:0 -o inline:"${ATTRNAME}\n" lsextattr -q user foo
atf_check -s exit:0 -o inline:"myvalue\n" \
getextattr -q user ${ATTRNAME} foo
atf_check -s exit:0 -o empty rmextattr user ${ATTRNAME} foo
atf_check -s exit:0 -o empty lsextattr -q user foo
}
atf_test_case loud
loud_head() {
atf_set "descr" "Loud (non -q) output for each command"
}
loud_body() {
check_fs
touch foo
# setextattr(8) and friends print hard tabs. Use printf to convert
# them to spaces before checking the output.
atf_check -s exit:0 -o empty setextattr user myattr myvalue foo
atf_check -s exit:0 -o inline:"foo myattr" \
printf "%s %s" $(lsextattr user foo)
atf_check -s exit:0 -o inline:"foo myvalue" \
printf "%s %s" $(getextattr user myattr foo)
atf_check -s exit:0 -o empty rmextattr user myattr foo
atf_check -s exit:0 -o inline:"foo" printf %s $(lsextattr user foo)
}
atf_test_case noattrs
noattrs_head() {
atf_set "descr" "A file with no extended attributes"
}
noattrs_body() {
check_fs
touch foo
atf_check -s exit:0 -o empty lsextattr -q user foo
}
atf_test_case nonexistent_file
nonexistent_file_head() {
atf_set "descr" "A file that does not exist"
}
nonexistent_file_body() {
check_fs
atf_check -s exit:1 -e match:"No such file or directory" \
lsextattr user foo
atf_check -s exit:1 -e match:"No such file or directory" \
setextattr user myattr myvalue foo
atf_check -s exit:1 -e match:"No such file or directory" \
getextattr user myattr foo
atf_check -s exit:1 -e match:"No such file or directory" \
rmextattr user myattr foo
}
atf_test_case null
null_head() {
atf_set "descr" "NUL-terminate an attribute value"
}
null_body() {
check_fs
touch foo
atf_check -s exit:0 -o empty setextattr -n user myattr myvalue foo
atf_check -s exit:0 -o inline:"myvalue\0\n" getextattr -q user myattr foo
}
atf_test_case one_user_attr
one_user_attr_head() {
atf_set "descr" "A file with one extended attribute"
}
one_user_attr_body() {
check_fs
touch foo
atf_check -s exit:0 -o empty setextattr user myattr myvalue foo
atf_check -s exit:0 -o inline:"myattr\n" lsextattr -q user foo
atf_check -s exit:0 -o inline:"myvalue\n" getextattr -q user myattr foo
atf_check -s exit:0 -o empty rmextattr user myattr foo
atf_check -s exit:0 -o empty lsextattr -q user foo
}
atf_test_case one_system_attr
one_system_attr_head() {
atf_set "descr" "A file with one extended attribute"
atf_set "require.user" "root"
}
one_system_attr_body() {
check_fs
touch foo
atf_check -s exit:0 -o empty setextattr system myattr myvalue foo
atf_check -s exit:0 -o inline:"myattr\n" lsextattr -q system foo
atf_check -s exit:0 -o inline:"myvalue\n" getextattr -q system myattr foo
atf_check -s exit:0 -o empty rmextattr system myattr foo
atf_check -s exit:0 -o empty lsextattr -q system foo
}
atf_test_case stdin
stdin_head() {
atf_set "descr" "Set attribute value from stdin"
}
stdin_body() {
check_fs
dd if=/dev/random of=infile bs=1k count=8
touch foo
setextattr -i user myattr foo < infile || atf_fail "setextattr failed"
atf_check -s exit:0 -o inline:"myattr\n" lsextattr -q user foo
getextattr -qq user myattr foo > outfile || atf_fail "getextattr failed"
atf_check -s exit:0 cmp -s infile outfile
}
atf_test_case stringify
stringify_head() {
atf_set "descr" "Stringify the output of getextattr"
}
stringify_body() {
check_fs
touch foo
atf_check -s exit:0 -o empty setextattr user myattr "my value" foo
atf_check -s exit:0 -o inline:"\"my\\\040value\"\n" \
getextattr -qs user myattr foo
}
atf_test_case symlink
symlink_head() {
atf_set "descr" "A symlink to an ordinary file"
}
symlink_body() {
check_fs
touch foo
ln -s foo foolink
atf_check -s exit:0 -o empty setextattr user myattr myvalue foolink
atf_check -s exit:0 -o inline:"myvalue\n" \
getextattr -q user myattr foolink
atf_check -s exit:0 -o inline:"myvalue\n" getextattr -q user myattr foo
}
atf_test_case symlink_nofollow
symlink_nofollow_head() {
atf_set "descr" "Operating directly on a symlink"
}
symlink_nofollow_body() {
check_fs
touch foo
ln -s foo foolink
# Check that with -h we can operate directly on the link
atf_check -s exit:0 -o empty setextattr -h user myattr myvalue foolink
atf_check -s exit:0 -o inline:"myvalue\n" \
getextattr -qh user myattr foolink
atf_check -s exit:1 -e match:"Attribute not found" \
getextattr user myattr foolink
atf_check -s exit:1 -e match:"Attribute not found" \
getextattr user myattr foo
# Check that with -h we cannot operate on the destination file
atf_check -s exit:0 -o empty setextattr user otherattr othervalue foo
atf_check -s exit:1 getextattr -qh user otherattr foolink
}
atf_test_case system_and_user_attrs
system_and_user_attrs_head() {
atf_set "descr" "A file with both system and user extended attributes"
atf_set "require.user" "root"
}
system_and_user_attrs_body() {
check_fs
touch foo
atf_check -s exit:0 -o empty setextattr user userattr userval foo
atf_check -s exit:0 -o empty setextattr system sysattr sysval foo
atf_check -s exit:0 -o inline:"userattr\n" lsextattr -q user foo
atf_check -s exit:0 -o inline:"sysattr\n" lsextattr -q system foo
atf_check -s exit:0 -o inline:"userval\n" getextattr -q user userattr foo
atf_check -s exit:0 -o inline:"sysval\n" getextattr -q system sysattr foo
atf_check -s exit:0 -o empty rmextattr user userattr foo
atf_check -s exit:0 -o empty rmextattr system sysattr foo
atf_check -s exit:0 -o empty lsextattr -q user foo
atf_check -s exit:0 -o empty lsextattr -q system foo
}
atf_test_case two_files
two_files_head() {
atf_set "descr" "Manipulate two files"
}
two_files_body() {
check_fs
touch foo bar
atf_check -s exit:0 -o empty setextattr user myattr myvalue foo bar
atf_check -s exit:0 -o inline:"foo\tmyattr\nbar\tmyattr\n" \
lsextattr user foo bar
atf_check -s exit:0 \
-o inline:"foo\tmyvalue\nbar\tmyvalue\n" \
getextattr user myattr foo bar
atf_check -s exit:0 -o empty rmextattr user myattr foo bar
atf_check -s exit:0 -o empty lsextattr -q user foo bar
}
atf_test_case two_files_force
two_files_force_head() {
atf_set "descr" "Manipulate two files. The first does not exist"
}
two_files_force_body() {
check_fs
touch bar
atf_check -s exit:1 -e match:"No such file or directory" \
setextattr user myattr myvalue foo bar
atf_check -s exit:0 -e ignore setextattr -f user myattr myvalue foo bar
atf_check -s exit:1 -e match:"No such file or directory" \
lsextattr user foo bar
atf_check -s exit:0 -e ignore -o inline:"bar\tmyattr\n" \
lsextattr -f user foo bar
atf_check -s exit:1 -e match:"No such file or directory" \
getextattr user myattr foo bar
atf_check -s exit:0 -e ignore \
-o inline:"bar\tmyvalue\n" \
getextattr -f user myattr foo bar
atf_check -s exit:1 -e match:"No such file or directory" \
rmextattr user myattr foo bar
atf_check -s exit:0 -e ignore \
rmextattr -f user myattr foo bar
atf_check -s exit:0 -o empty lsextattr -q user bar
}
atf_test_case two_user_attrs
two_user_attrs_head() {
atf_set "descr" "A file with two extended attributes"
}
two_user_attrs_body() {
check_fs
touch foo
atf_check -s exit:0 -o empty setextattr user myattr1 myvalue1 foo
atf_check -s exit:0 -o empty setextattr user myattr2 myvalue2 foo
# lsextattr could return the attributes in any order, so we must be
# careful how we compare them.
raw_output=`lsextattr -q user foo` || atf_fail "lsextattr failed"
tabless_output=`printf "%s %s" ${raw_output}`
if [ "myattr1 myattr2" != "${tabless_output}" -a \
"myattr2 myattr1" != "${tabless_output}" ]; then
atf_fail "lsextattr printed ${tabless_output}"
fi
atf_check -s exit:0 -o inline:"myvalue1\n" getextattr -q user myattr1 foo
atf_check -s exit:0 -o inline:"myvalue2\n" getextattr -q user myattr2 foo
atf_check -s exit:0 -o empty rmextattr user myattr2 foo
atf_check -s exit:0 -o empty rmextattr user myattr1 foo
atf_check -s exit:0 -o empty lsextattr -q user foo
}
atf_test_case unprivileged_user_cannot_set_system_attr
unprivileged_user_cannot_set_system_attr_head() {
atf_set "descr" "Unprivileged users can't set system attributes"
atf_set "require.user" "unprivileged"
}
unprivileged_user_cannot_set_system_attr_body() {
check_fs
touch foo
atf_check -s exit:1 -e match:"Operation not permitted" \
setextattr system myattr myvalue foo
}
atf_init_test_cases() {
atf_add_test_case bad_namespace
atf_add_test_case hex
atf_add_test_case hex_nonascii
atf_add_test_case long_name
atf_add_test_case loud
atf_add_test_case noattrs
atf_add_test_case nonexistent_file
atf_add_test_case null
atf_add_test_case symlink_nofollow
atf_add_test_case one_user_attr
atf_add_test_case one_system_attr
atf_add_test_case stdin
atf_add_test_case stringify
atf_add_test_case symlink
atf_add_test_case symlink_nofollow
atf_add_test_case system_and_user_attrs
atf_add_test_case two_files
atf_add_test_case two_files_force
atf_add_test_case two_user_attrs
atf_add_test_case unprivileged_user_cannot_set_system_attr
}
check_fs() {
case `df -T . | tail -n 1 | cut -wf 2` in
"ufs") ;; # UFS is fine
"zfs") ;; # ZFS is fine
"tmpfs") atf_skip "tmpfs does not support extended attributes";;
esac
}
|