-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathfpart.sh
executable file
·406 lines (337 loc) · 9.77 KB
/
fpart.sh
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
#!/bin/bash
# IBM_PROLOG_BEGIN_TAG
# This is an automatically generated prolog.
#
# $Source: fpart/fpart.sh $
#
# OpenPOWER FFS Project
#
# Contributors Listed Below - COPYRIGHT 2014,2015
# [+] International Business Machines Corp.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied. See the License for the specific language governing
# permissions and limitations under the License.
#
# IBM_PROLOG_END_TAG
#
# File: ffs cmdline test script
# Author: Shaun wetzstein <[email protected]>
# Date: 02/06/13
#
# Todo:
# 1) function to check syntax of each command
CP=cp
RM=rm
FPART=fpart
MKDIR=mkdir
GREP=grep
HEAD=head
HEX=hexdump
CRC=sha1sum
DD=dd
DIFF=diff
IMG=sunray2_nor64M_flash.mif
TMP=/tmp/ffs.$$
ORIG=${TMP}/nor.orig
URANDOM=/dev/urandom
FAIL=1
PASS=0
KB=$((1*1024))
MB=$(($KB*1024))
function expect()
{
local expect=${1}
shift
local command=${*}
eval $command
local actual=${?}
if [[ ${expect} -eq ${actual} ]]; then
echo "[PASSED] rc: '${command}' ===> expect=${expect}, actual=${actual}" >&2
else
echo "[FAILED] rc: '${command}' ===> expect=${expect}, actual=${actual}" >&2
exit 1
fi
}
function pass()
{
expect ${PASS} ${*}
}
function fail()
{
expect ${FAIL} ${*}
}
function size()
{
local size=$(stat -L -c %s ${2})
if [[ ${1} == ${size} ]]; then
echo "[PASSED] size: '${2}' ===> expect=${1}, actual=${size}"
else
echo "[FAILED] size: '${2}' ===> expect=${1}, actual=${size}"
exit 1
fi
}
function crc()
{
local crc=$(${CRC} ${2}|cut -f 1 -d ' ')
if [[ ${1} == ${crc} ]]; then
echo "[PASSED] crc: '${2}' ===> expect=${1}, actual=${crc}"
else
echo "[FAILED] crc: '${2}' ===> expect=${1}, actual=${crc}"
exit 1
fi
}
function setup()
{
pass ${RM} -rf ${TMP}
pass ${MKDIR} -p ${TMP}
}
function cleanup()
{
pass ${RM} -rf ${TMP}
}
function create()
{
local target=${TMP}/create.nor
pass ${RM} -f ${target}
pass ${FPART} -t ${target} -s 64M -b 64K -p 0x3f0000 -C
pass ${FPART} --target ${target} --size 64MiB --block 64kb \
--partition-offset 0x7f0000 --create
local output=${TMP}/create.txt
pass ${FPART} -t ${target} -L > ${output}
pass ${GREP} \'0x3f0000\' ${output} > /dev/null
pass ${GREP} \'0x7f0000\' ${output} > /dev/null
pass ${GREP} \'blk:010000\' ${output} > /dev/null
pass ${GREP} \'blk\(s\):000400\' ${output} > /dev/null
pass ${GREP} \'entsz:000080\' ${output} > /dev/null
pass ${GREP} \'ent\(s\):000001\' ${output} > /dev/null
pass ${RM} -f ${output}
pass ${RM} -f ${target}
}
function add()
{
local target=${TMP}/add.nor
pass ${RM} -f ${target}
pass ${FPART} -t ${target} -s 64M -b 64K --partition-offset 0x3f0000 -C
pass ${FPART} --target ${target} --size 64MiB --block 64kb -p 0x7f0000 --create
local output=${TMP}/add.txt
local name="logical"
pass ${FPART} -t ${target} -l -n ${name} -g 0 -A
pass ${FPART} -t ${target} -n ${name} -L > ${output}
pass ${GREP} ${name} ${output} > /dev/null
pass ${GREP} "l-----" ${output} > /dev/null
for ((i=0; i<9; i++)); do
local full="${name}/test${i}"
local offset=$((${i}*$MB))
local output=${TMP}/add.txt
# avoid clobbering 'part'
if [[ ${i} -eq 4 ]]; then
local size=$MB
else
local size=$(($MB-64*KB))
fi
pass ${FPART} -t ${target} -o ${offset} -s ${size} -g 0 -n ${full} -a ${i} -A
pass ${FPART} -t ${target} -n ${full} -T
pass ${FPART} -t ${target} -n ${full} -L > ${output}
pass ${GREP} ${full} ${output} > /dev/null
pass ${GREP} "d-----" ${output} > /dev/null
local range=$(printf "%.8x-%.8x" ${offset} $((${offset}+${size}-1)))
pass ${GREP} ${range} ${output} > /dev/null
pass ${GREP} $(printf "%x" ${size}) ${output} > /dev/null
pass ${RM} -f ${output}
done
pass ${RM} -f ${target}
}
function delete()
{
local target=${TMP}/delete.nor
pass ${RM} -f ${target}
pass ${FPART} -t ${target} -s 64M -b 64K --partition-offset 0x3f0000 -C
pass ${FPART} --target ${target} --size 64MiB --block 64kb -p 0x7f0000 --create
local output=${TMP}/delete.txt
for ((i=0; i<9; i++)); do
local full="test${i}"
local offset=$((${i}*$MB))
local output=${TMP}/add.txt
# avoid clobbering 'part'
if [[ ${i} -eq 4 ]]; then
local size=$MB
else
local size=$(($MB-64*KB))
fi
pass ${FPART} -t ${target} -o ${offset} -s ${size} -g 0 -n ${full} -a ${i} -A
pass ${FPART} -t ${target} -n ${full} -T
pass ${FPART} -t ${target} -n ${full} -L > ${output}
pass ${GREP} ${full} ${output} > /dev/null
pass ${FPART} -t ${target} -n ${full} -D
pass ${FPART} -t ${target} -n ${full} -L > ${output}
fail ${GREP} ${full} ${output} > /dev/null
pass ${RM} -f ${output}
done
pass ${RM} -f ${target}
}
function hex()
{
local target=${TMP}/hexdump.nor
pass ${RM} -f ${target}
pass ${FPART} -t ${target} -s 64M -b 64K --partition-offset 0x3f0000 -C
pass ${FPART} --target ${target} --size 64MiB --block 64kb -p 0x7f0000 --create
local name="logical"
pass ${FPART} -t ${target} -l -n ${name} -g 0 -A
for ((i=0; i<9; i++)); do
local full="${name}/test${i}"
local offset=$((${i}*$MB))
local output=${TMP}/hexdump.txt
# avoid clobbering 'part'
if [[ ${i} -eq 4 ]]; then
local size=$MB
else
local size=$(($MB-64*KB))
fi
pass ${FPART} -t ${target} -o ${offset} -s ${size} -g 0 -n ${full} -a ${i} -A
pass ${FPART} -t ${target} -n ${full} -T
pass ${FPART} -t ${target} -n ${full} -H > ${output}
local p=$(printf "%2.2x%2.2x%2.2x%2.2x" $i $i $i $i)
pass ${GREP} \'$p $p $p $p\' ${output} > /dev/null
pass ${RM} -f ${output}
done
pass ${RM} -f ${target}
}
function read()
{
local target=${TMP}/read.nor
pass ${RM} -f ${target}
pass ${FPART} -t ${target} -s 64M -b 64K --partition-offset 0x3f0000 -C
pass ${FPART} --target ${target} --size 64MiB --block 64kb -p 0x7f0000 --create
local name="logical"
pass ${FPART} -t ${target} -l -n ${name} -g 0 -A
for ((i=0; i<9; i++)); do
local full="${name}/test${i}"
local offset=$((${i}*$MB))
local output=${TMP}/${i}.bin
# avoid clobbering 'part'
if [[ ${i} -eq 4 ]]; then
local size=$MB
else
local size=$(($MB-64*KB))
fi
pass ${FPART} -t ${target} -o ${offset} -s ${size} -g 0 -n ${full} -a ${i} -A
pass ${FPART} -t ${target} -n ${full} -T
pass ${FPART} -t ${target} -n ${full} -R ${output}
pass ${HEX} -C ${output} > ${output}.hex
local p=$(printf "%2.2x %2.2x %2.2x %2.2x" $i $i $i $i)
pass ${GREP} \"${p} ${p}\" ${output}.hex
pass ${RM} -f ${output} ${output}.hex
done
pass ${RM} -f ${target}
}
function write()
{
local target=${TMP}/write.nor
pass ${RM} -f ${target}
pass ${FPART} -t ${target} -s 64M -b 64K --partition-offset 0x3f0000 -C
pass ${FPART} --target ${target} --size 64MiB --block 64kb -p 0x7f0000 --create
local name="write"
local input=${TMP}/write.in
local output=${TMP}/write.out
local block=${1}
local count=$(($MB/$block))
pass ${FPART} -t ${target} -o 1M -s 1M -g 0 -n ${name} -a 0xFF -A
for ((i=1; i<${count}; i++)); do
pass ${DD} if=${URANDOM} of=${input} bs=${block} count=${i} 2> /dev/null
local crc=$(${CRC} ${input})
pass ${FPART} -t ${target} -n ${name} -E -a 0xFF
pass ${FPART} -t ${target} -n ${name} -W ${input}
pass ${FPART} -t ${target} -n ${name} -U 0 -u ${crc}
pass ${FPART} -t ${target} -n ${name} -R ${output}
size $((${i}*${block})) ${output}
crc ${crc} ${output}
local crc=$(printf "%x" ${crc})
pass "${FPART} -t ${target} -n ${name} -U 0 | ${GREP} ${crc}" > /dev/null
pass ${RM} -f ${input} ${output}
done
pass ${FPART} -t ${target} -n ${name} -D
pass ${RM} -f ${target}
}
function copy()
{
local src=${TMP}/copy.src
local dst=${TMP}/copy.dst
pass ${RM} -f ${src} ${dst}
local part="0x0,0x20000"
pass ${FPART} -t ${src} -s 64M -b 64K -p ${part} -C
pass ${FPART} -t ${dst} -s 64M -b 64K -p ${part} -C
local name="copy"
pass ${FPART} -t ${src} -o 1M -s 1M -g 0 -n ${name} -a 0xFF -p ${part} -A
pass ${FPART} -t ${dst} -o 1M -s 1M -g 0 -n ${name} -a 0x00 -p ${part} -A
local input=${TMP}/copy.in
local output=${TMP}/copy.out
if [[ -z "${1}" ]]; then
local block=64
else
local block=${1}
fi
local count=$(($MB/$block))
for ((i=1; i<${count}; i++)); do
pass ${DD} if=${URANDOM} of=${input} bs=${block} count=${i} 2> /dev/null
local crc=$(${CRC} ${input})
pass ${FPART} -t ${src} -n ${name} -p ${part} -E -a 0xFF
pass ${FPART} -t ${src} -n ${name} -p ${part} -W ${input}
pass ${FPART} -t ${src} -n ${name} -p ${part} -R ${output}.src
pass ${FPART} -t ${src} -n ${name} -p ${part} -U 0 -u ${crc}
pass ${FPART} -t ${dst} -n ${name} -p ${part} -O ${src}
pass ${FPART} -t ${dst} -n ${name} -p ${part} -M ${src}
pass ${FPART} -t ${src} -n ${name} -p ${part} -R ${output}.dst
size $((${i}*${block})) ${output}.src
size $((${i}*${block})) ${output}.dst
crc ${crc} ${output}.src
crc ${crc} ${output}.dst
pass ${DIFF} ${output}.src ${output}.dst
local crc=$(printf "%x" ${crc})
pass "${FPART} -t ${src} -n ${name} -p ${part} -U 0 | ${GREP} ${crc}" > /dev/null
pass "${FPART} -t ${dst} -n ${name} -p ${part} -U 0 | ${GREP} ${crc}" > /dev/null
pass ${RM} -f ${input} ${output}.*
done
expect 2 ${DIFF} ${src} ${dst}
pass ${RM} -f ${src} ${dst}
}
function main()
{
create
add
delete
# hex
# read
# copy $((15*$KB))
# copy $((21*$KB))
# copy $((64*$KB))
# write $((15*$KB))
# write $((21*$KB))
# write $((64*$KB))
}
setup
if [[ -z "${1:-}" ]]; then
main
else
case "$1" in
create ) create ;;
add ) add ;;
delete ) delete ;;
# hex ) hex ;;
# read ) read ;;
# copy ) copy $((${2}*$KB)) ;;
# write ) write $((${2}*$KB)) ;;
* ) echo "$1 not implemented"; exit 1 ;;
esac
exit 0;
fi
cleanup