summaryrefslogtreecommitdiff
path: root/sys/src/9/pc/boot.fs
blob: 732e316426e0a697314225ea7974872c200bb986 (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
191
192
193
194
195
196
197
198
199
200
201
202
#!/boot/rc -m /boot/rcmain
# boot script for file servers, including standalone ones
path=(/boot /$cputype/bin /rc/bin .)
fn diskparts {
	# set up any /dev/sd partitions
	for(disk in /dev/sd*) {
		if(test -f $disk/data && test -f $disk/ctl)
			fdisk -p $disk/data >$disk/ctl >[2]/dev/null
		if(test -f $disk/plan9)
			parts=($disk/plan9*)
		if not
			parts=($disk/data)
		for(part in $parts)
			if(test -f $part)
				prep -p $part >$disk/ctl >[2]/dev/null
	}
}

cd /boot
echo -n boot...
if (! test -e /env/vmpc)
	vmpc=23			# % of free memory for venti
cp '#r/rtc' '#c/time'
bind -a '#I0' /net
bind -a '#l0' /net
bind -a '#¤' /dev
bind -a '#S' /dev
bind -a '#k' /dev
bind -a '#æ' /dev
bind -a '#u' /dev
bind '#p' /proc
bind '#d' /fd
bind -c '#s' /srv
# bind -a /boot /

# start usb for keyboard, disks, etc.
if (test -e /dev/usb/ctl) {
	echo -n usb...
	usbd
}
if not if (test -e /dev/usb0) {
	echo -n old usb...
	usbd
	if (test -e '#m/mouse')
		kb -a2
	if not
		kb -k
	disk -l -s usbdisk -m /mnt	# mounts on /mnt/<lun>
}

echo -n disks...
if(! ~ $dmaon no)
	for (ctl in /dev/sd[C-H]?/ctl)
		if (test -e $ctl)
			echo 'dma on' >$ctl

diskparts

# set up any fs(3) partitions (HACK)
# don't match AoE disks, as those may be shared.
if (test ! -e /env/fscfg)
	fscfg=`{ls -d /dev/sd[~e-h]?/fscfg >[2]/dev/null | sed 1q}
if (~ $#fscfg 1 && test -r $fscfg)
	zerotrunc <$fscfg | read -m >/dev/fs/ctl

# figure out which arenas and fossil partitions to use.
# don't match AoE disks, as those may be shared.
if(! test -e /env/arena0){
	if (test -e	/dev/fs/arena0)
		arena0=	/dev/fs/arena0
	if not if (test -e	/dev/sd[~e-h]?/arena0)
		arena0=		/dev/sd[~e-h]?/arena0
	if not
		arena0=/dev/null
}
if (test -e	/dev/fs/fossil)
	fossil=	/dev/fs/fossil
if not if (test -e	/dev/sd[~e-h]?/fossil)
	fossil=		/dev/sd[~e-h]?/fossil
if not
	fossil=/dev/null

#
# the local disks are now sorted out.
# set up the network, auth, venti and fossil.
#

echo -n ip...
if (~ $#ip 1 && ! ~ $ip '') {
	# need to supply ip, ipmask and ipgw in plan9.ini to use this
	ipconfig -g $ipgw ether /net/ether0 $ip $ipmask
	echo 'add 0 0 '^$ipgw >>/net/iproute
}
if not
	ipconfig
switch (`{sed '/\.(0|255)[	 ]/d' /net/ipselftab}) {
case 204.178.31.*
	echo 'add 135.104.9.0 255.255.255.0 204.178.31.10' >>/net/iproute
}
ipconfig loopback /dev/null 127.1

# local hackery: add extra sr luns
if (test -e /dev/aoe/1.1 && ! test -e /dev/sdf0)
	echo config switch on spec f type aoe//dev/aoe/1.1 >/dev/sdctl
if (test -e /dev/aoe/1.2 && ! test -e /dev/sdg0)
	echo config switch on spec g type aoe//dev/aoe/1.2 >/dev/sdctl
diskparts

# so far we're using the default key from $nvram, usually
# for insideout.plan9.bell-labs.com on outside machines,
# and have mounted our root over the net, if running diskless.
# factotum always mounts itself (on /mnt by default).

echo -n factotum...
if(~ $#auth 1){
	echo start factotum on $auth
	factotum -sfactotum -S -a $auth
}
if not
	factotum -sfactotum -S
mount -b /srv/factotum /mnt

# if a keys partition exists, add its contents to factotum's
keys=`{ls -d /dev/sd*/keys >[2]/dev/null | sed 1q}
if (~ $#keys 1 && test -r $keys) {
	echo -n add keys...
	zerotrunc <$keys | aescbc -n -d | read -m >/mnt/factotum/ctl
}

# get root from network if fsaddr set in plan9.ini, and bail out here
if (test -e /env/fs) {
	echo -n fs root...
	if(! srv tcp!$fs!564 boot)
		exec ./rc -m/boot/rcmain -i
	if(! mount -c /srv/boot /root)
		exec ./rc -m/boot/rcmain -i
}

# start venti store
if (! ~ $arena0 /dev/null && test -r $arena0) {
	echo -n start venti on $arena0...
	venti=tcp!127.0.0.1!17034
	vcfg=`{ls -d /dev/sd*/venticfg >[2]/dev/null | sed 1q}
	if (~ $#vcfg 1 && test -r $vcfg)
		venti -m $vmpc -c $vcfg
	if not
		venti -m $vmpc -c $arena0
	sleep 10
}
if not if (! test -e /env/venti)
	venti=tcp!135.104.9.33!17034		# local default

# start root fossil, may serve /srv/boot
if (! ~ $fossil /dev/null && test -r $fossil) {
	echo -n root fossil on $fossil...
	fossil -m 2 -f $fossil
	sleep 3
}

#
# normal start up on local fossil root
#

rootdir=/root
rootspec=main/active

# factotum is now mounted in /mnt; keep it visible.
# newns() needs it, among others.

# mount new root
if (test -e /srv/boot)
	srv=boot
if not if (test -e /srv/fossil)
	srv=fossil
if not if (test -e /srv/fsmain)
	srv=fsmain
if not {
	echo cannot find a root in /srv:
	ls -l /srv
}
echo -n mount -cC /srv/$srv $rootdir...
	mount -cC /srv/$srv $rootdir
bind -a $rootdir /

if (test -d $rootdir/mnt)
	bind -ac $rootdir/mnt /mnt
mount -b /srv/factotum /mnt

# standard bin
if (! test -d /$cputype) {
	echo /$cputype missing!
	exec ./rc -m/boot/rcmain -i
}
bind /$cputype/bin /bin
bind -a /rc/bin /bin

# run cpurc
echo cpurc...
path=(/bin . /boot)
/$cputype/init -c

exec ./rc -m/boot/rcmain -i