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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
|
\
\ CDDL HEADER START
\
\ The contents of this file are subject to the terms of the
\ Common Development and Distribution License (the "License").
\ You may not use this file except in compliance with the License.
\
\ You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
\ or http://www.opensolaris.org/os/licensing.
\ See the License for the specific language governing permissions
\ and limitations under the License.
\
\ When distributing Covered Code, include this CDDL HEADER in each
\ file and include the License file at usr/src/OPENSOLARIS.LICENSE.
\ If applicable, add the following below this CDDL HEADER, with the
\ fields enclosed by brackets "[]" replaced with your own identifying
\ information: Portions Copyright [yyyy] [name of copyright owner]
\
\ CDDL HEADER END
\
\
\ Copyright 2009 Sun Microsystems, Inc. All rights reserved.
\ Use is subject to license terms.
\
purpose: boot block for OBP systems
copyright: Copyright 2009 Sun Microsystems, Inc. All Rights Reserved
headerless
d# 1024 dup * constant 1meg
d# 4 1meg * constant 4meg
d# 32 1meg * constant 32meg
headers
" /" get-package constant root-ph
0 value fs-ih
false value nested?
0 value file-sz
/buf-len buffer: boot-dev
: boot-dev$ ( -- dev$ ) boot-dev cscount ;
: loader-base ( -- base )
nested? if
h# 5000.0000
else
h# 5100.0000
then
;
\
\ methods we expect of fs reader packages
\
headerless
: fs-open ( file$ -- fd true | false )
" open-file" fs-ih $call-method
;
: fs-close ( fd -- )
" close-file" fs-ih $call-method
;
: fs-size ( fd -- size )
" size-file" fs-ih $call-method
;
: fs-read ( adr len fd -- #read )
" read-file" fs-ih $call-method
;
: fs-getrd ( adr len -- )
" get-rd" fs-ih $call-method
;
: fs-bootprop ( -- propval propname true | false )
" bootprop" fs-ih $call-method
;
headers
: check-elf ( base -- is-elf? )
l@ h# 7f454c46 ( \x7fELF ) =
;
: check-fcode ( base -- is-fcode? )
c@ dup h# f0 h# f3 between swap h# fd = or
;
\ zfs bootblks with all headers exceeds 7.5k
\ 'bigbootblk' allows us to load the fs reader from elsewhere
[ifdef] bigbootblk
: load-pkg ( -- )
boot-dev$ ( dev$ )
2dup dev-open ?dup 0= if
open-abort
then >r 2drop ( r: ih )
/fs-fcode mem-alloc ( adr r: ih )
dup /fs-fcode fs-offset r@ read-disk
dup check-fcode invert if
" No fs fcode found" die
then
dup 1 byte-load
/fs-fcode mem-free ( r: ih )
r> dev-close
;
[else]
: load-pkg ( -- ) ;
[then]
: get-bootdev ( -- )
\ first try boot archive (nested boot from ramdisk)
\ then try boot device (direct boot from disk)
" bootarchive" chosen-ph get-package-property if
" bootpath" chosen-ph get-string-prop ( bootpath$ )
else ( archiveprop$ )
decode-string 2swap 2drop ( archivepath$ )
true to nested?
then ( bootpath$ )
boot-dev swap move ( )
;
: mount-root ( -- )
boot-dev$ fs-pkg$ $open-package to fs-ih
fs-ih 0= if
" Can't mount root" die
then
;
\
\ cheap entertainment for those watching
\ boot progress
\
headerless
create spin-data
ascii | c, ascii / c, ascii - c, ascii \ c,
variable spindex
headers
: spinner ( -- )
spindex @ 3 and spin-data + ( c-adr )
c@ emit (cr
1 spindex +!
;
\ allocate and return physical allocation size
: vmem-alloc-prop ( size virt -- alloc-size virt )
2dup ['] vmem-alloc catch if ( size virt ??? ??? )
2drop ( size virt )
2dup begin ( size virt len adr )
over 32meg min >r ( size virt len adr r: alloc-sz )
r@ over vmem-alloc ( size virt len adr adr r: alloc-sz )
nip r@ + ( size virt len adr' r: alloc-sz )
swap r> - ( size virt adr len' )
swap over 0= ( size virt len' adr done? )
until ( size virt len' adr )
2drop nip 32meg ( virt 32meg )
else ( size virt virt )
nip nip 0 ( virt 0 )
then ( virt alloc-sz )
swap
;
\ read file in chunks so we can toggle the spinner
: read-file ( virt size fd -- failed? )
>r ( virt sz-left r: fd )
begin dup while
spinner
dup 4meg min ( virt sz-left read-sz r: fd )
3dup nip r@ fs-read ( virt sz-left read-sz size-read r: fd )
over <> if ( virt sz-left read-sz r: fd )
r> 2drop 2drop ( )
true exit ( failed )
then
rot over + ( sz-left read-sz virt' r: fd )
-rot - ( virt' sz-left' r: fd )
repeat
r> 3drop ( )
false ( succeeded )
;
\ read in file and return buffer
\ if base==0, vmem-alloc will allocate virt
\ NB returned size is 8k rounded since the
\ memory allocator rounded it for us
: get-file ( base fd -- [ alloc-sz virt size ] failed? )
dup >r fs-size ( base size r: fd )
dup rot vmem-alloc-prop ( size alloc-sz virt r: fd )
rot 2dup ( alloc-sz virt size virt size r: fd )
r> read-file if ( alloc-sz virt size )
3drop true exit ( failed )
then
h# 2000 roundup ( alloc-sz virt size' )
false ( alloc-sz virt size' succeeded )
;
false value is-elf?
false value is-archive?
: >bootblk ( adr -- adr' ) d# 512 + ;
\ figure out what we just loaded
: get-type ( adr -- )
dup check-elf to is-elf?
\ if not nested, check for boot archive (executable after label)
nested? invert if
>bootblk
dup check-fcode ( adr is-fcode? )
over check-elf ( adr is-fcode? is-elf? )
or to is-archive?
then
drop
;
\
\ file name routines
\
\ boot file (-F name or boot archive)
false value fflag?
/buf-len buffer: boot-file
: boot-file$ ( -- file$ ) boot-file cscount ;
\ kernel name (final name or unix)
false value kern?
/buf-len buffer: kern-file
: kern-file$ ( -- file$ ) kern-file cscount ;
\ platform name
/buf-len buffer: plat-name
: plat-name$ ( -- plat$ ) plat-name cscount ;
\ arch name
/buf-len buffer: arch-name
: arch-name$ ( -- arch$ ) arch-name cscount ;
\ final name after /platform massaging
/buf-len buffer: targ-file
: targ-file$ ( -- file$ ) targ-file cscount ;
: init-targ ( -- )
targ-file /buf-len erase
" /platform/" targ-file swap move
;
\ remove illegal file name chars (e.g., '/')
: munge-name ( name$ -- name$' )
2dup ( name$ name$ )
begin dup while
over c@ ascii / = if
over ascii _ swap c! ( name$ name$' )
then str++
repeat 2drop ( name$ )
;
\ does /platform/<name> exist?
: try-platname ( name$ -- name$ true | false )
munge-name ( name$' )
init-targ 2dup targ-file$ $append
targ-file$ fs-open if ( name$ fd )
fs-close true ( name$ true )
else ( name$ )
2drop false ( false )
then ( name$ true | false )
;
\ setup arch-name
\ sun4v -or- sun4u
: get-def-arch ( -- )
" device_type" root-ph get-package-property if
\ some older sunfires don't have device_type set
false ( sun4u )
else ( devtype-prop$ )
decode-string 2swap 2drop ( devtype$ )
" sun4v" $= ( sun4v? )
then ( sun4v? )
if " sun4v" else " sun4u" then ( arch$ )
arch-name swap move
;
\ setup plat-name
\ platform name -or-
\ compatible name -or-
\ default name
: get-arch ( -- )
get-def-arch
\ first try "name" in root
" name" root-ph get-string-prop ( name$ )
try-platname if
plat-name swap move exit ( )
then ( )
\ next try "compatible"
" compatible" root-ph ( prop$ ph )
get-package-property invert if ( compat$ )
begin decode-string dup while ( compat$ name$ )
try-platname if
plat-name swap move 2drop exit ( )
then ( compat$ )
repeat 2drop 2drop ( )
then ( )
\ else use default name
arch-name$ plat-name swap move
;
\ make <pre> <file> into /platform/<pre>/<file>
: $plat-prepend ( file$ pre$ -- file$' )
init-targ
targ-file$ $append ( file$ )
" /" targ-file$ $append
targ-file$ $append ( )
targ-file$ ( new$ )
;
: get-boot ( -- file$ )
fflag? if
boot-file$
else
" boot_archive"
then
;
: get-kern ( -- file$ )
kern? if
kern-file$
else
" kernel/sparcv9/unix"
then
;
\ if we're nested, load the kernel, else load the bootarchive
: get-targ ( -- file$ )
nested? if
get-kern
else
get-boot
then
;
: try-file ( file$ -- [ fd ] error? )
diagnostic-mode? if
2dup ." Loading: " type cr
then
fs-open invert ( fd false | true )
;
\ try "/platform/<plat-name>/<file>" e.g., SUNW,Sun-Blade-1000
\ then "/platform/<arch-name>/<file>" e.g., sun4u
: open-path ( file$ - fd )
over c@ ascii / <> if
2dup plat-name$ $plat-prepend ( file$ file$' )
try-file if ( file$ )
2dup arch-name$ $plat-prepend ( file$ file$' )
try-file if ( file$ )
open-abort
then ( file$ fd )
then ( file$ fd )
else ( file$ )
\ copy to targ-file for 'whoami' prop
targ-file /buf-len erase
2dup targ-file swap move
2dup try-file if ( file$ )
open-abort
then ( file$ fd )
then ( file$ fd )
-rot 2drop ( fd )
;
false value lflag?
\ ZFS support
\ -Z fsname opens specified filesystem in disk pool
false value zflag?
/buf-len buffer: fs-name
: fs-name$ ( -- fs$ ) fs-name cscount ;
[ifdef] zfs
: open-zfs-fs ( fs$ -- )
2dup " open-fs" fs-ih $call-method 0= if
open-abort
then
2drop ( )
;
[else]
: open-zfs-fs ( fs$ -- )
\ ignore on -L
lflag? invert if
" -Z not supported on non-zfs root" die
then
;
[then]
\
\ arg parsing
\
headerless
: printable? ( n -- flag ) \ true if n is a printable ascii character
dup bl th 7f within swap th 80 th ff between or
;
: white-space? ( n -- flag ) \ true is n is non-printable? or a blank
dup printable? 0= swap bl = or
;
: skip-blanks ( adr len -- adr' len' )
begin dup while ( adr' len' )
over c@ white-space? 0= if exit then
str++
repeat
;
: skip-non-blanks ( adr len -- adr' len' )
begin dup while ( adr' len' )
over c@ white-space? if exit then
str++
repeat
;
headers
\ left-parse-string w/ any white space as delimeter
: next-str ( adr len -- adr' len' s-adr s-len )
2dup skip-non-blanks ( s-adr len adr' len' )
dup >r 2swap r> - ( adr' len' s-adr s-len )
;
\ next char or 0 if eol
: next-c ( adr len -- adr' len' c )
dup if over c@ >r str++ r> else 0 then
;
false value halt?
: parse-bootargs ( -- )
" bootargs" chosen-ph get-string-prop ( arg$ )
\ check for explicit kernel name
skip-blanks dup if
over c@ ascii - <> if
next-str ( arg$ kern$ )
\ use default kernel if user specific a debugger
2dup " kadb" $= >r ( arg$ kern$ r: kadb? )
2dup " kmdb" $= r> or ( arg$ kern$ debugger? )
invert if ( arg$ kern$ )
kern-file swap move ( arg$ )
true to kern?
else 2drop then ( arg$ )
then
then
\ process args
begin
skip-blanks dup ( arg$ len )
while
next-c ascii - = if
next-c case
ascii D of
\ for "boot kadb -D kernel.foo/unix"
skip-blanks next-str ( arg$ file$ )
kern? invert if
?dup if
kern-file swap move ( arg$ )
true to kern?
else drop then ( arg$ )
else 2drop then ( arg$ )
endof
ascii F of
skip-blanks next-str ( arg$ file$ )
?dup if
boot-file swap move ( arg$ )
true to fflag?
else drop then ( arg$ )
endof
ascii H of
true to halt?
endof
ascii L of
" /" fs-name swap move
true to zflag?
" bootlst" boot-file swap move
true to fflag?
true to lflag?
endof
ascii Z of
skip-blanks next-str ( arg$ fs-name$ )
?dup if
fs-name swap move ( arg$ )
true to zflag?
else drop then ( arg$ )
endof
endcase
then
repeat
2drop ( )
;
0 value rd-alloc-sz
: "ramdisk" ( -- dev$ ) " /ramdisk-root" ;
: setup-bootprops ( -- )
chosen-ph push-package
nested? invert if
fs-type$ encode-string " fstype" property
fs-ih encode-int " bootfs" property
fs-bootprop if property then
else
fs-type$ encode-string " archive-fstype" property
fs-ih encode-int " archfs" property
then
is-archive? if
"ramdisk" encode-string " bootarchive" property
else
loader-base encode-int " elfheader-address" property
file-sz encode-int " elfheader-length" property
plat-name$ encode-string " impl-arch-name" property
targ-file$ encode-string " whoami" property
fs-pkg$ encode-string " fs-package" property
then
pop-package
;
\ load ramdisk fcode and tell the driver where
\ we put the ramdisk data
: setup-ramdisk ( base size -- )
/rd-fcode mem-alloc ( base size adr )
dup /rd-fcode fs-getrd
root-ph push-package
new-device
"ramdisk" str++ device-name
dup 1 byte-load
finish-device
pop-package
/rd-fcode mem-free ( base size )
"ramdisk" dev-open dup 0= if
"ramdisk" open-abort
then >r ( base size r: ih )
rd-alloc-sz ( base size alloc-sz r: ih )
" create" r@ $call-method ( r: ih )
r> dev-close ( )
;
\
\ ELF parsing
\
headerless
0 value elfhdr
0 value phdr
: +elfhdr ( index -- value ) elfhdr swap ca+ ;
: e_machine ( -- n ) h# 12 +elfhdr w@ ;
: e_entry ( -- n ) h# 18 +elfhdr x@ ;
: e_phoff ( -- n ) h# 20 +elfhdr x@ ;
: e_phentsize ( -- n ) h# 36 +elfhdr w@ ;
: e_phnum ( -- n ) h# 38 +elfhdr w@ ;
1 constant pt_load
: +phdr ( index -- value ) phdr swap ca+ ;
: p_type ( -- n ) h# 0 +phdr l@ ;
: p_vaddr ( -- n ) h# 10 +phdr x@ ;
: p_memsz ( -- n ) h# 28 +phdr x@ ;
: get-phdr ( filebase index -- phdr )
e_phentsize * e_phoff + + ( phdr )
;
\ alloc 4MB pages for kernel text/data
: vmem-alloc-4mb ( size virt -- base )
swap 4meg roundup swap
4meg (mem-alloc)
;
headers
\ OBP doesn't allocate memory for elf
\ programs, it assumes they'll fit
\ under the default 10MB limit
: fix-elf-mem ( base -- )
dup to elfhdr
e_machine d# 43 <> if drop exit then \ 64b only
e_phnum 0 ?do
dup i get-phdr to phdr
p_type pt_load = p_vaddr h# a0.0000 > and if
\ allocate 4MB segs for text & data
p_vaddr 4meg 1- and if
p_memsz p_vaddr vmem-alloc drop
else
p_memsz p_vaddr vmem-alloc-4mb drop
then
then
loop drop ( )
;
: load-file ( -- virt )
get-arch
get-targ open-path ( fd )
loader-base over get-file if ( fd alloc-sz virt size )
" Boot load failed" die
then
to file-sz ( fd alloc-sz virt )
swap to rd-alloc-sz ( fd virt )
swap fs-close ( virt )
;
: setup-props ( virt -- virt )
dup get-type
setup-bootprops
is-archive? if
dup file-sz setup-ramdisk
then
;
: exec-file ( virt -- )
is-elf? if
dup fix-elf-mem
then
is-archive? if >bootblk then ( virt' )
" to load-base init-program" evaluate
;
: do-boot ( -- )
parse-bootargs
halt? if
." Halted with -H flag. " cr
exit
then
get-bootdev
load-pkg
mount-root
zflag? nested? invert and if
fs-name$ open-zfs-fs
then
load-file ( virt )
setup-props
exec-file ( )
;
\ Tadpole proms don't initialize my-self
0 to my-self
do-boot
|