File: test-data-7E.sh

package info (click to toggle)
nbdkit 1.46.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 15,504 kB
  • sloc: ansic: 63,658; sh: 18,717; makefile: 6,814; python: 1,848; cpp: 1,143; perl: 504; ml: 504; tcl: 62
file content (108 lines) | stat: -rwxr-xr-x 3,960 bytes parent folder | download
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
#!/usr/bin/env bash
# nbdkit
# Copyright Red Hat
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# * 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.
#
# * Neither the name of Red Hat nor the names of its contributors may be
# used to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY RED HAT 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 RED HAT 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.

# Test the data plugin creating a 7 EB partitioned disk, and
# the partition filter on top.

source ./functions.sh
set -e
set -x
set -u

requires_filter partition
requires_nbdsh_uri
requires_run

define data <<'EOF'
# Protective MBR.
@0x1c0 2 0 0xee 0xfe 0xff 0xff 0x01 0  0 0 0xff 0xff 0xff 0xff
@0x1fe 0x55 0xaa

# GPT primary partition table.
@0x200
       0x45 0x46 0x49 0x20 0x50 0x41 0x52 0x54
              0 0 1 0 0x5c 0 0 0
       0x9b 0xe5 0x6a 0xc5 0 0 0 0  1 0 0 0 0 0 0 0
       0xff 0xff 0xff 0xff 0xff 0xff 0x37 0  0x22 0 0 0 0 0 0 0
       0xde 0xff 0xff 0xff 0xff 0xff 0x37 0
              0x72 0xb6 0x9e 0x0c 0x6b 0x76 0xb0 0x4f
       0xb3 0x94 0xb2 0xf1 0x61 0xec 0xdd 0x3c  2 0 0 0 0 0 0 0
       0x80 0 0 0 0x80 0 0 0  0x79 0x8a 0xd0 0x7e 0 0 0 0
@0x400
       0xaf 0x3d 0xc6 0x0f 0x83 0x84 0x72 0x47
              0x8e 0x79 0x3d 0x69 0xd8 0x47 0x7d 0xe4
       0xd5 0x19 0x46 0x95 0xe3 0x82 0xa8 0x4c
              0x95 0x82 0x7a 0xbe 0x1c 0xfc 0x62 0x90
       0x80 0 0 0 0 0 0 0  0x80 0xff 0xff 0xff 0xff 0xff 0x37 0
       0 0 0 0 0 0 0 0  0x70 0 0x31 0 0 0 0 0

# GPT backup partition table.
@0x6fffffffffffbe00
       0xaf 0x3d 0xc6 0x0f 0x83 0x84 0x72 0x47
              0x8e 0x79 0x3d 0x69 0xd8 0x47 0x7d 0xe4
       0xd5 0x19 0x46 0x95 0xe3 0x82 0xa8 0x4c
              0x95 0x82 0x7a 0xbe 0x1c 0xfc 0x62 0x90
       0x80 0 0 0 0 0 0 0  0x80 0xff 0xff 0xff 0xff 0xff 0x37 0
       0 0 0 0 0 0 0 0  0x70 0 0x31 0 0 0 0 0
@0x6ffffffffffffe00
       0x45 0x46 0x49 0x20 0x50 0x41 0x52 0x54
              0 0 1 0 0x5c 0 0 0
       0x6c 0x76 0xa1 0xa0 0 0 0 0
              0xff 0xff 0xff 0xff 0xff 0xff 0x37 0
       1 0 0 0 0 0 0 0  0x22 0 0 0 0 0 0 0
       0xde 0xff 0xff 0xff 0xff 0xff 0x37 0
              0x72 0xb6 0x9e 0x0c 0x6b 0x76 0xb0 0x4f
       0xb3 0x94 0xb2 0xf1 0x61 0xec 0xdd 0x3c
              0xdf 0xff 0xff 0xff 0xff 0xff 0x37 0
       0x80 0 0 0 0x80 0 0 0  0x79 0x8a 0xd0 0x7e 0 0 0 0
EOF

define script <<'EOF'
# Check the partition size.
expected_size = 8070450532247798272
assert h.get_size() == expected_size

# Since we're reading the empty first partition, any read returns zeroes.
buf = h.pread(16, 498)
assert buf == bytearray(16)

buf = h.pread(512, expected_size-512)
assert buf == bytearray(512)

EOF
export script

# Run nbdkit with the partition filter to select the first partition.
nbdkit --filter=partition \
       data size=7E partition=1 \
       "$data" \
       --run ' nbdsh -u "$uri" -c "$script" '