summaryrefslogtreecommitdiff
path: root/sys/lib/dist/pc/inst/fmtventi
blob: db79440acf2db9f8ee3b17d225a723a28bc00f88 (plain)
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
#!/bin/rc

# desc: initialize disks for a venti server
# prereq: mountdist

switch($1){
case checkready checkdone
	if(! ~ $fstype fossil+venti){
		fmtventi=notdone
		export fmtventi
		exit
	}
	if(! test -e /bin/venti/fmtarenas || ! test -e /bin/venti/fmtisect || ! test -e /bin/venti/fmtindex){
		bind -a /n/dist/386/bin/venti /bin/venti
		if(! test -e /bin/venti/fmtarenas || ! test -e /bin/venti/fmtisect || ! test -e /bin/venti/fmtindex){
			fmtventi=notdone
			export fmtventi
			exit
		}
	}
	ff=`{ls /dev/sd*/arenas* /dev/fs/arenas* >[2]/dev/null}
	if(~ $#ff 0){
		fmtventi=notdone
		export fmtventi
		exit
	}
	gg=()
	for(f in $ff)
		if(isventi $f)
			gg=($gg $f)
	if(~ $#gg 0){
		fmtventi=ready
		export fmtventi
		exit
	}

	ventiarena=$gg(1)
	export ventiarena

	fmtventi=done
	export fmtventi
	exit

case go
	ff=`{ls /dev/sd*/arenas* /dev/fs/arenas* >[2]/dev/null}
	if(~ $#ff 0){
		echo 'You need to create a partition or partitions to hold the Venti arenas.'
		echo 'The arena partition names must begin with "arenas".'
		echo
		fmtventi=notdone
		export fmtventi
		exit
	}
	default=(-d $"ff)
	if(! ~ $#ventiarena 0){
		default=(-d $"ventiarena)
	}
	echo You have the following Venti arena partitions.
	ls -l $ff
	echo

	prompt $default 'Venti arena partitions to use'
	aa=`{echo $rd}
	bad=no
	for(a in $aa){
		if(! ~ $a $ff){
			echo 'Bad venti arena partition' $a
			fmtventi=notdone
			export fmtventi
			exit
		}
	}
	ventiarena=$aa
	export ventiarena

	gg=`{ls /dev/sd*/isect* /dev/fs/isect* >[2]/dev/null}
	if(~ $#gg 0){
		echo 'You need to create a partition or partitions to hold the Venti indices.'
		echo 'The index partition names must begin with "isect".'
		echo
		fmtventi=notdone
		export fmtventi
		exit
	}
	default=(-d $"gg)
	if(! ~ $#ventiindex 0){
		default=(-d $"ventiindex)
	}

	echo You have the following Venti index partitions.
	ls -l $gg
	echo

	prompt $default 'Venti index partitions to use'
	aa=`{echo $rd}
	bad=no
	for(a in $aa){
		if(! ~ $a $gg){
			echo 'Bad venti index partition' $a
			fmtventi=notdone
			export fmtventi
			exit
		}
	}
	ventiindex=$aa
	export ventiindex

	n=-1
	fmta=()
	for(a in $ventiarena){
		do=yes
		n=`{hoc -e 1+$n}
		if(isventiarenas $a){
			echo File $a is already formatted as a Venti arenas partition.
			prompt -d no 'Reformat '$a yes no
			do=$rd
		}
		if(~ $do yes)
			fmta=($fmta arenas$n:$a)
	}

	n=-1
	fmti=()
	for(a in $ventiindex){
		do=yes
		n=`{hoc -e 1+$n}
		if(isventiisect $a){
			echo File $a is already formatted as a Venti index section.
			prompt -d no 'Reformat '$a yes no
			do=$rd
		}
		if(~ $do yes)
			fmti=($fmti isect$n:$a)
	}

	echo Formatting Venti arenas and indices (this takes a while).
	# do each disk in parallel
	echo good >/tmp/fmt
	dd=()
	for(a in $fmta $fmti){
		d=`{echo $a | sed 's!.*:(/.*/).*!\1!'}
		if(! ~ $d $dd)
			dd=($dd $d)
	}
	for(d in $dd){
		{
			for(a in $fmta){
				i=`{echo $a | sed 's!(.*):(/.*/)(.*)!\1 \2 \2\3!'}
				if(~ $i(2) $d){
					echo $i(3) ...
					venti/fmtarenas $i(1) $i(3) || echo bad >/tmp/fmt
					echo done with $i(3)
				}
			}
			for(a in $fmti){
				i=`{echo $a | sed 's!(.*):(/.*/)(.*)!\1 \2 \2\3!'}
				if(~ $i(2) $d){
					echo $i(3) ...
					venti/fmtisect $i(1) $i(3) || echo bad >/tmp/fmt
					echo done with $i(3)
				}
			}
		} &
	}
	wait
	if(~ bad `{cat /tmp/fmt}){
		echo There were errors formatting the indices and arenas.
		fmtventi=ready
		export fmtventi
		exit errors
	}

	echo Done formatting Venti arenas and indices.

	v=$ventiarena(1)
	echo Storing Venti config on $v...
	{
		echo index main
		for(i in $ventiindex)
			echo isect $i
		for(a in $ventiarena)
			echo arenas $a
	} | venti/conf -w $v

	echo Initializing index...
	venti/fmtindex $v

	echo Done with Venti!
}