]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/boot/common/loader.8
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sys / boot / common / loader.8
1 .\" Copyright (c) 1999 Daniel C. Sobral
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd February 15, 2009
28 .Dt LOADER 8
29 .Os
30 .Sh NAME
31 .Nm loader
32 .Nd kernel bootstrapping final stage
33 .Sh DESCRIPTION
34 The program called
35 .Nm
36 is the final stage of
37 .Fx Ns 's
38 kernel bootstrapping process.
39 On IA32 (i386) architectures, it is a
40 .Pa BTX
41 client.
42 It is linked statically to
43 .Xr libstand 3
44 and usually located in the directory
45 .Pa /boot .
46 .Pp
47 It provides a scripting language that can be used to
48 automate tasks, do pre-configuration or assist in recovery
49 procedures.
50 This scripting language is roughly divided in
51 two main components.
52 The smaller one is a set of commands
53 designed for direct use by the casual user, called "builtin
54 commands" for historical reasons.
55 The main drive behind these commands is user-friendliness.
56 The bigger component is an
57 .Tn ANS
58 Forth compatible Forth interpreter based on FICL, by
59 .An John Sadler .
60 .Pp
61 During initialization,
62 .Nm
63 will probe for a console and set the
64 .Va console
65 variable, or set it to serial console
66 .Pq Dq Li comconsole
67 if the previous boot stage used that.
68 If multiple consoles are selected, they will be listed separated by spaces.
69 Then, devices are probed,
70 .Va currdev
71 and
72 .Va loaddev
73 are set, and
74 .Va LINES
75 is set to 24.
76 Next,
77 .Tn FICL
78 is initialized, the builtin words are added to its vocabulary, and
79 .Pa /boot/boot.4th
80 is processed if it exists.
81 No disk switching is possible while that file is being read.
82 The inner interpreter
83 .Nm
84 will use with
85 .Tn FICL
86 is then set to
87 .Ic interpret ,
88 which is
89 .Tn FICL Ns 's
90 default.
91 After that,
92 .Pa /boot/loader.rc
93 is processed if available, and, failing that,
94 .Pa /boot/boot.conf
95 is read for historical reasons.
96 These files are processed through the
97 .Ic include
98 command, which reads all of them into memory before processing them,
99 making disk changes possible.
100 .Pp
101 At this point, if an
102 .Ic autoboot
103 has not been tried, and if
104 .Va autoboot_delay
105 is not set to
106 .Dq Li NO
107 (not case sensitive), then an
108 .Ic autoboot
109 will be tried.
110 If the system gets past this point,
111 .Va prompt
112 will be set and
113 .Nm
114 will engage interactive mode.
115 Please note that historically even when
116 .Va autoboot_delay
117 is set to
118 .Dq Li 0
119 user will be able to interrupt autoboot process by pressing some key
120 on the console while kernel and modules are being loaded.
121 In some
122 cases such behaviour may be undesirable, to prevent it set
123 .Va autoboot_delay
124 to
125 .Dq Li -1 ,
126 in this case
127 .Nm
128 will engage interactive mode only if
129 .Ic autoboot
130 has failed.
131 .Sh BUILTIN COMMANDS
132 In
133 .Nm ,
134 builtin commands take parameters from the command line.
135 Presently,
136 the only way to call them from a script is by using
137 .Pa evaluate
138 on a string.
139 If an error condition occurs, an exception will be generated,
140 which can be intercepted using
141 .Tn ANS
142 Forth exception handling
143 words.
144 If not intercepted, an error message will be displayed and
145 the interpreter's state will be reset, emptying the stack and restoring
146 interpreting mode.
147 .Pp
148 The builtin commands available are:
149 .Pp
150 .Bl -tag -width Ds -compact
151 .It Ic autoboot Op Ar seconds Op Ar prompt
152 Proceeds to bootstrap the system after a number of seconds, if not
153 interrupted by the user.
154 Displays a countdown prompt
155 warning the user the system is about to be booted,
156 unless interrupted by a key press.
157 The kernel will be loaded first if necessary.
158 Defaults to 10 seconds.
159 .Pp
160 .It Ic bcachestat
161 Displays statistics about disk cache usage.
162 For debugging only.
163 .Pp
164 .It Ic boot
165 .It Ic boot Ar kernelname Op Cm ...
166 .It Ic boot Fl flag Cm ...
167 Immediately proceeds to bootstrap the system, loading the kernel
168 if necessary.
169 Any flags or arguments are passed to the kernel, but they
170 must precede the kernel name, if a kernel name is provided.
171 .Pp
172 .Em WARNING :
173 The behavior of this builtin is changed if
174 .Xr loader.4th 8
175 is loaded.
176 .Pp
177 .It Ic echo Xo
178 .Op Fl n
179 .Op Aq message
180 .Xc
181 Displays text on the screen.
182 A new line will be printed unless
183 .Fl n
184 is specified.
185 .Pp
186 .It Ic heap
187 Displays memory usage statistics.
188 For debugging purposes only.
189 .Pp
190 .It Ic help Op topic Op subtopic
191 Shows help messages read from
192 .Pa /boot/loader.help .
193 The special topic
194 .Em index
195 will list the topics available.
196 .Pp
197 .It Ic include Ar file Op Ar
198 Process script files.
199 Each file, in turn, is completely read into memory,
200 and then each of its lines is passed to the command line interpreter.
201 If any error is returned by the interpreter, the include
202 command aborts immediately, without reading any other files, and
203 returns an error itself (see
204 .Sx ERRORS ) .
205 .Pp
206 .It Ic load Xo
207 .Op Fl t Ar type
208 .Ar file Cm ...
209 .Xc
210 Loads a kernel, kernel loadable module (kld), or file of opaque
211 contents tagged as being of the type
212 .Ar type .
213 Kernel and modules can be either in a.out or ELF format.
214 Any arguments passed after the name of the file to be loaded
215 will be passed as arguments to that file.
216 Currently, argument passing does not work for the kernel.
217 .Pp
218 .It Ic load_geli Xo
219 .Op Fl n Ar keyno
220 .Ar prov Ar file
221 .Xc
222 Loads a
223 .Xr geli 8
224 encryption keyfile for the given provider name.
225 The key index can be specified via
226 .Ar keyno 
227 or will default to zero.
228 .Pp
229 .It Ic ls Xo
230 .Op Fl l
231 .Op Ar path
232 .Xc
233 Displays a listing of files in the directory
234 .Ar path ,
235 or the root directory if
236 .Ar path
237 is not specified.
238 If
239 .Fl l
240 is specified, file sizes will be shown too.
241 .Pp
242 .It Ic lsdev Op Fl v
243 Lists all of the devices from which it may be possible to load modules.
244 If
245 .Fl v
246 is specified, more details are printed.
247 .Pp
248 .It Ic lsmod Op Fl v
249 Displays loaded modules.
250 If
251 .Fl v
252 is specified, more details are shown.
253 .Pp
254 .It Ic more Ar file Op Ar
255 Display the files specified, with a pause at each
256 .Va LINES
257 displayed.
258 .Pp
259 .It Ic pnpscan Op Fl v
260 Scans for Plug-and-Play devices.
261 This is not functional at present.
262 .Pp
263 .It Ic read Xo
264 .Op Fl t Ar seconds
265 .Op Fl p Ar prompt
266 .Op Va variable
267 .Xc
268 Reads a line of input from the terminal, storing it in
269 .Va variable
270 if specified.
271 A timeout can be specified with
272 .Fl t ,
273 though it will be canceled at the first key pressed.
274 A prompt may also be displayed through the
275 .Fl p
276 flag.
277 .Pp
278 .It Ic reboot
279 Immediately reboots the system.
280 .Pp
281 .It Ic set Ar variable
282 .It Ic set Ar variable Ns = Ns Ar value
283 Set loader's environment variables.
284 .Pp
285 .It Ic show Op Va variable
286 Displays the specified variable's value, or all variables and their
287 values if
288 .Va variable
289 is not specified.
290 .Pp
291 .It Ic unload
292 Remove all modules from memory.
293 .Pp
294 .It Ic unset Va variable
295 Removes
296 .Va variable
297 from the environment.
298 .Pp
299 .It Ic \&?
300 Lists available commands.
301 .El
302 .Ss BUILTIN ENVIRONMENT VARIABLES
303 The
304 .Nm
305 has actually two different kinds of
306 .Sq environment
307 variables.
308 There are ANS Forth's
309 .Em environmental queries ,
310 and a separate space of environment variables used by builtins, which
311 are not directly available to Forth words.
312 It is the latter type that this section covers.
313 .Pp
314 Environment variables can be set and unset through the
315 .Ic set
316 and
317 .Ic unset
318 builtins, and can have their values interactively examined through the
319 use of the
320 .Ic show
321 builtin.
322 Their values can also be accessed as described in
323 .Sx BUILTIN PARSER .
324 .Pp
325 Notice that these environment variables are not inherited by any shell
326 after the system has been booted.
327 .Pp
328 A few variables are set automatically by
329 .Nm .
330 Others can affect the behavior of either
331 .Nm
332 or the kernel at boot.
333 Some options may require a value,
334 while others define behavior just by being set.
335 Both types of builtin variables are described below.
336 .Bl -tag -width bootfile
337 .It Va acpi_load
338 Unset this to disable automatic loading of the ACPI module.
339 See also
340 .Va hint.acpi.0.disabled
341 in
342 .Xr device.hints 5 .
343 .It Va autoboot_delay
344 Number of seconds
345 .Ic autoboot
346 will wait before booting.
347 If this variable is not defined,
348 .Ic autoboot
349 will default to 10 seconds.
350 .Pp
351 If set to
352 .Dq Li NO ,
353 no
354 .Ic autoboot
355 will be automatically attempted after processing
356 .Pa /boot/loader.rc ,
357 though explicit
358 .Ic autoboot Ns 's
359 will be processed normally, defaulting to 10 seconds delay.
360 .Pp
361 If set to
362 .Dq Li 0 ,
363 no delay will be inserted, but user still will be able to interrupt
364 .Ic autoboot
365 process and escape into the interactive mode by pressing some key
366 on the console while kernel and
367 modules are being loaded.
368 .Pp
369 If set to
370 .Dq Li -1 ,
371 no delay will be inserted and
372 .Nm
373 will engage interactive mode only if
374 .Ic autoboot
375 has failed for some reason.
376 .It Va boot_askname
377 Instructs the kernel to prompt the user for the name of the root device
378 when the kernel is booted.
379 .It Va boot_cdrom
380 Instructs the kernel to try to mount the root file system from CD-ROM.
381 .It Va boot_ddb
382 Instructs the kernel to start in the DDB debugger, rather than
383 proceeding to initialize when booted.
384 .It Va boot_dfltroot
385 Instructs the kernel to mount the statically compiled-in root file system.
386 .It Va boot_gdb
387 Selects gdb-remote mode for the kernel debugger by default.
388 .It Va boot_multicons
389 Enables multiple console support in the kernel early on boot.
390 In a running system, console configuration can be manipulated
391 by the
392 .Xr conscontrol 8
393 utility.
394 .It Va boot_mute
395 All console output is suppressed when console is muted.
396 In a running system, the state of console muting can be manipulated by the
397 .Xr conscontrol 8
398 utility.
399 .It Va boot_pause
400 During the device probe, pause after each line is printed.
401 .It Va boot_serial
402 Force the use of a serial console even when an internal console
403 is present.
404 .It Va boot_single
405 Prevents the kernel from initiating a multi-user startup; instead,
406 a single-user mode will be entered when the kernel has finished
407 device probing.
408 .It Va boot_verbose
409 Setting this variable causes extra debugging information to be printed
410 by the kernel during the boot phase.
411 .It Va bootfile
412 List of semicolon-separated search path for bootable kernels.
413 The default is
414 .Dq Li kernel .
415 .It Va comconsole_speed
416 Defines the speed of the serial console (i386 and amd64 only).
417 If the previous boot stage indicated that a serial console is in use
418 then this variable is initialized to the current speed of the console
419 serial port.
420 Otherwise it is set to 9600 unless this was overridden using the
421 .Va BOOT_COMCONSOLE_SPEED
422 variable when
423 .Nm
424 was compiled.
425 Changes to the
426 .Va comconsole_speed
427 variable take effect immediately.
428 .It Va console
429 Defines the current console or consoles.
430 Multiple consoles may be specified.
431 In that case, the first listed console will become the default console for
432 userland output (e.g.\& from
433 .Xr init 8 ) .
434 .It Va currdev
435 Selects the default device.
436 Syntax for devices is odd.
437 .It Va init_chroot
438 If set to a valid directory in the root file system, it causes
439 .Xr init 8
440 to perform a
441 .Xr chroot 2
442 operation on that directory, making it the new root directory.
443 That happens before entering single-user mode or multi-user
444 mode (but after executing the
445 .Va init_script
446 if enabled).
447 .It Va init_path
448 Sets the list of binaries which the kernel will try to run as the initial
449 process.
450 The first matching binary is used.
451 The default list is
452 .Dq Li /sbin/init:/sbin/oinit:/sbin/init.bak:\:/rescue/init:/stand/sysinstall .
453 .It Va init_script
454 If set to a valid file name in the root file system,
455 instructs
456 .Xr init 8
457 to run that script as the very first action,
458 before doing anything else.
459 Signal handling and exit code interpretation is similar to
460 running the
461 .Pa /etc/rc
462 script.
463 In particular, single-user operation is enforced
464 if the script terminates with a non-zero exit code,
465 or if a SIGTERM is delivered to the
466 .Xr init 8
467 process (PID 1).
468 .It Va init_shell
469 Defines the shell binary to be used for executing the various shell scripts.
470 The default is
471 .Dq Li /bin/sh .
472 It is used for running the
473 .Va init_script
474 if set, as well as for the
475 .Pa /etc/rc
476 and
477 .Pa /etc/rc.shutdown
478 scripts.
479 The value of the corresponding
480 .Xr kenv 2
481 variable is evaluated every time
482 .Xr init 8
483 calls a shell script, so it can be changed later on using the
484 .Xr kenv 1
485 utility.
486 In particular, if a non-default shell is used for running an
487 .Va init_script ,
488 it might be desirable to have that script reset the value of
489 .Va init_shell
490 back to the default, so that the
491 .Pa /etc/rc
492 script is executed with the standard shell
493 .Pa /bin/sh .
494 .It Va interpret
495 Has the value
496 .Dq Li OK
497 if the Forth's current state is interpreting.
498 .It Va LINES
499 Define the number of lines on the screen, to be used by the pager.
500 .It Va module_path
501 Sets the list of directories which will be searched for modules
502 named in a load command or implicitly required by a dependency.
503 The default value for this variable is
504 .Dq Li /boot/kernel;/boot/modules .
505 .It Va num_ide_disks
506 Sets the number of IDE disks as a workaround for some problems in
507 finding the root disk at boot.
508 This has been deprecated in favor of
509 .Va root_disk_unit .
510 .It Va prompt
511 Value of
512 .Nm Ns 's
513 prompt.
514 Defaults to
515 .Dq Li "${interpret}" .
516 If variable
517 .Va prompt
518 is unset, the default prompt is
519 .Ql > .
520 .It Va root_disk_unit
521 If the code which detects the disk unit number for the root disk is
522 confused, e.g.\& by a mix of SCSI and IDE disks, or IDE disks with
523 gaps in the sequence (e.g.\& no primary slave), the unit number can
524 be forced by setting this variable.
525 .It Va rootdev
526 By default the value of
527 .Va currdev
528 is used to set the root file system
529 when the kernel is booted.
530 This can be overridden by setting
531 .Va rootdev
532 explicitly.
533 .El
534 .Pp
535 Other variables are used to override kernel tunable parameters.
536 The following tunables are available:
537 .Bl -tag -width Va
538 .It Va hw.physmem
539 Limit the amount of physical memory the system will use.
540 By default the size is in bytes, but the
541 .Cm k , K , m , M , g
542 and
543 .Cm G
544 suffixes
545 are also accepted and indicate kilobytes, megabytes and gigabytes
546 respectively.
547 An invalid suffix will result in the variable being ignored by the
548 kernel.
549 .It Va hw.pci.host_start_mem , hw.acpi.host_start_mem
550 When not otherwise constrained, this limits the memory start
551 address.
552 The default is 0x80000000 and should be set to at least size of the
553 memory and not conflict with other resources.
554 Typically, only systems without PCI bridges need to set this variable
555 since PCI bridges typically constrain the memory starting address
556 (and the variable is only used when bridges do not constrain this
557 address).
558 .It Va hw.pci.enable_io_modes
559 Enable PCI resources which are left off by some BIOSes or are not
560 enabled correctly by the device driver.
561 Tunable value set to ON (1) by default, but this may cause problems
562 with some peripherals.
563 .It Va kern.maxusers
564 Set the size of a number of statically allocated system tables; see
565 .Xr tuning 7
566 for a description of how to select an appropriate value for this
567 tunable.
568 When set, this tunable replaces the value declared in the kernel
569 compile-time configuration file.
570 .It Va kern.ipc.nmbclusters
571 Set the number of mbuf clusters to be allocated.
572 The value cannot be set below the default
573 determined when the kernel was compiled.
574 .It Va kern.ipc.nsfbufs
575 Set the number of
576 .Xr sendfile 2
577 buffers to be allocated.
578 Overrides
579 .Dv NSFBUFS .
580 Not all architectures use such buffers; see
581 .Xr sendfile 2
582 for details.
583 .It Va kern.maxswzone
584 Limits the amount of KVM to be used to hold swap
585 meta information, which directly governs the
586 maximum amount of swap the system can support.
587 This value is specified in bytes of KVA space
588 and defaults to 32MBytes on i386 and amd64.
589 Care should be taken
590 to not reduce this value such that the actual
591 amount of configured swap exceeds 1/2 the
592 kernel-supported swap.
593 The default of 32MB allows
594 the kernel to support a maximum of ~7GB of swap.
595 Only change
596 this parameter if you need to greatly extend the
597 KVM reservation for other resources such as the
598 buffer cache or
599 .Va kern.ipc.nmbclusters .
600 Modifies kernel option
601 .Dv VM_SWZONE_SIZE_MAX .
602 .It Va kern.maxbcache
603 Limits the amount of KVM reserved for use by the
604 buffer cache, specified in bytes.
605 The default maximum is 200MB on i386,
606 and 400MB on amd64, sparc64, and sun4v.
607 This parameter is used to
608 prevent the buffer cache from eating too much
609 KVM in large-memory machine configurations.
610 Only mess around with this parameter if you need to
611 greatly extend the KVM reservation for other resources
612 such as the swap zone or
613 .Va kern.ipc.nmbclusters .
614 Note that
615 the NBUF parameter will override this limit.
616 Modifies
617 .Dv VM_BCACHE_SIZE_MAX .
618 .It Va machdep.disable_mtrrs
619 Disable the use of i686 MTRRs (x86 only).
620 .It Va net.inet.tcp.tcbhashsize
621 Overrides the compile-time set value of
622 .Dv TCBHASHSIZE
623 or the preset default of 512.
624 Must be a power of 2.
625 .It Va vm.kmem_size
626 Sets the size of kernel memory (bytes).
627 This overrides the value determined when the kernel was compiled.
628 Modifies
629 .Dv VM_KMEM_SIZE .
630 .It Va vm.kmem_size_min
631 .It Va vm.kmem_size_max
632 Sets the minimum and maximum (respectively) amount of kernel memory
633 that will be automatically allocated by the kernel.
634 These override the values determined when the kernel was compiled.
635 Modifies
636 .Dv VM_KMEM_SIZE_MIN
637 and
638 .Dv VM_KMEM_SIZE_MAX .
639 .El
640 .Ss BUILTIN PARSER
641 When a builtin command is executed, the rest of the line is taken
642 by it as arguments, and it is processed by a special parser which
643 is not used for regular Forth commands.
644 .Pp
645 This special parser applies the following rules to the parsed text:
646 .Pp
647 .Bl -enum
648 .It
649 All backslash characters are preprocessed.
650 .Bl -bullet
651 .It
652 \eb , \ef , \er , \en and \et are processed as in C.
653 .It
654 \es is converted to a space.
655 .It
656 \ev is converted to
657 .Tn ASCII
658 11.
659 .It
660 \ez is just skipped.
661 Useful for things like
662 .Dq \e0xf\ez\e0xf .
663 .It
664 \e0xN and \e0xNN are replaced by the hex N or NN.
665 .It
666 \eNNN is replaced by the octal NNN
667 .Tn ASCII
668 character.
669 .It
670 \e" , \e' and \e$ will escape these characters, preventing them from
671 receiving special treatment in Step 2, described below.
672 .It
673 \e\e will be replaced with a single \e .
674 .It
675 In any other occurrence, backslash will just be removed.
676 .El
677 .It
678 Every string between non-escaped quotes or double-quotes will be treated
679 as a single word for the purposes of the remaining steps.
680 .It
681 Replace any
682 .Li $VARIABLE
683 or
684 .Li ${VARIABLE}
685 with the value of the environment variable
686 .Va VARIABLE .
687 .It
688 Space-delimited arguments are passed to the called builtin command.
689 Spaces can also be escaped through the use of \e\e .
690 .El
691 .Pp
692 An exception to this parsing rule exists, and is described in
693 .Sx BUILTINS AND FORTH .
694 .Ss BUILTINS AND FORTH
695 All builtin words are state-smart, immediate words.
696 If interpreted, they behave exactly as described previously.
697 If they are compiled, though,
698 they extract their arguments from the stack instead of the command line.
699 .Pp
700 If compiled, the builtin words expect to find, at execution time, the
701 following parameters on the stack:
702 .D1 Ar addrN lenN ... addr2 len2 addr1 len1 N
703 where
704 .Ar addrX lenX
705 are strings which will compose the command line that will be parsed
706 into the builtin's arguments.
707 Internally, these strings are concatenated in from 1 to N,
708 with a space put between each one.
709 .Pp
710 If no arguments are passed, a 0
711 .Em must
712 be passed, even if the builtin accepts no arguments.
713 .Pp
714 While this behavior has benefits, it has its trade-offs.
715 If the execution token of a builtin is acquired (through
716 .Ic '
717 or
718 .Ic ['] ) ,
719 and then passed to
720 .Ic catch
721 or
722 .Ic execute ,
723 the builtin behavior will depend on the system state
724 .Bf Em
725 at the time
726 .Ic catch
727 or
728 .Ic execute
729 is processed!
730 .Ef
731 This is particularly annoying for programs that want or need to
732 handle exceptions.
733 In this case, the use of a proxy is recommended.
734 For example:
735 .Dl : (boot) boot ;
736 .Sh FICL
737 .Tn FICL
738 is a Forth interpreter written in C, in the form of a forth
739 virtual machine library that can be called by C functions and vice
740 versa.
741 .Pp
742 In
743 .Nm ,
744 each line read interactively is then fed to
745 .Tn FICL ,
746 which may call
747 .Nm
748 back to execute the builtin words.
749 The builtin
750 .Ic include
751 will also feed
752 .Tn FICL ,
753 one line at a time.
754 .Pp
755 The words available to
756 .Tn FICL
757 can be classified into four groups.
758 The
759 .Tn ANS
760 Forth standard words, extra
761 .Tn FICL
762 words, extra
763 .Fx
764 words, and the builtin commands;
765 the latter were already described.
766 The
767 .Tn ANS
768 Forth standard words are listed in the
769 .Sx STANDARDS
770 section.
771 The words falling in the two other groups are described in the
772 following subsections.
773 .Ss FICL EXTRA WORDS
774 .Bl -tag -width wid-set-super
775 .It Ic .env
776 .It Ic .ver
777 .It Ic -roll
778 .It Ic 2constant
779 .It Ic >name
780 .It Ic body>
781 .It Ic compare
782 This is the STRING word set's
783 .Ic compare .
784 .It Ic compile-only
785 .It Ic endif
786 .It Ic forget-wid
787 .It Ic parse-word
788 .It Ic sliteral
789 This is the STRING word set's
790 .Ic sliteral .
791 .It Ic wid-set-super
792 .It Ic w@
793 .It Ic w!
794 .It Ic x.
795 .It Ic empty
796 .It Ic cell-
797 .It Ic -rot
798 .El
799 .Ss FREEBSD EXTRA WORDS
800 .Bl -tag -width XXXXXXXX
801 .It Ic \&$ Pq --
802 Evaluates the remainder of the input buffer, after having printed it first.
803 .It Ic \&% Pq --
804 Evaluates the remainder of the input buffer under a
805 .Ic catch
806 exception guard.
807 .It Ic .#
808 Works like
809 .Ic .
810 but without outputting a trailing space.
811 .It Ic fclose Pq Ar fd --
812 Closes a file.
813 .It Ic fkey Pq Ar fd -- char
814 Reads a single character from a file.
815 .It Ic fload Pq Ar fd --
816 Processes a file
817 .Em fd .
818 .It Ic fopen Pq Ar addr len mode Li -- Ar fd
819 Opens a file.
820 Returns a file descriptor, or \-1 in case of failure.
821 The
822 .Ar mode
823 parameter selects whether the file is to be opened for read access, write
824 access, or both.
825 The constants
826 .Dv O_RDONLY , O_WRONLY ,
827 and
828 .Dv O_RDWR
829 are defined in
830 .Pa /boot/support.4th ,
831 indicating read only, write only, and read-write access, respectively.
832 .It Xo
833 .Ic fread
834 .Pq Ar fd addr len -- len'
835 .Xc
836 Tries to read
837 .Em len
838 bytes from file
839 .Em fd
840 into buffer
841 .Em addr .
842 Returns the actual number of bytes read, or -1 in case of error or end of
843 file.
844 .It Ic heap? Pq -- Ar cells
845 Return the space remaining in the dictionary heap, in cells.
846 This is not related to the heap used by dynamic memory allocation words.
847 .It Ic inb Pq Ar port -- char
848 Reads a byte from a port.
849 .It Ic key Pq -- Ar char
850 Reads a single character from the console.
851 .It Ic key? Pq -- Ar flag
852 Returns
853 .Ic true
854 if there is a character available to be read from the console.
855 .It Ic ms Pq Ar u --
856 Waits
857 .Em u
858 microseconds.
859 .It Ic outb Pq Ar port char --
860 Writes a byte to a port.
861 .It Ic seconds Pq -- Ar u
862 Returns the number of seconds since midnight.
863 .It Ic tib> Pq -- Ar addr len
864 Returns the remainder of the input buffer as a string on the stack.
865 .It Ic trace! Pq Ar flag --
866 Activates or deactivates tracing.
867 Does not work with
868 .Ic catch .
869 .El
870 .Ss FREEBSD DEFINED ENVIRONMENTAL QUERIES
871 .Bl -tag -width Ds
872 .It arch-i386
873 .Ic TRUE
874 if the architecture is IA32.
875 .It FreeBSD_version
876 .Fx
877 version at compile time.
878 .It loader_version
879 .Nm
880 version.
881 .El
882 .Ss SYSTEM DOCUMENTATION
883 .Sh FILES
884 .Bl -tag -width /boot/defaults/loader.conf -compact
885 .It Pa /boot/loader
886 .Nm
887 itself.
888 .It Pa /boot/boot.4th
889 Additional
890 .Tn FICL
891 initialization.
892 .It Pa /boot/boot.conf
893 .Nm
894 bootstrapping script.
895 Deprecated.
896 .It Pa /boot/defaults/loader.conf
897 .It Pa /boot/loader.conf
898 .It Pa /boot/loader.conf.local
899 .Nm
900 configuration files, as described in
901 .Xr loader.conf 5 .
902 .It Pa /boot/loader.rc
903 .Nm
904 bootstrapping script.
905 .It Pa /boot/loader.help
906 Loaded by
907 .Ic help .
908 Contains the help messages.
909 .El
910 .Sh EXAMPLES
911 Boot in single user mode:
912 .Pp
913 .Dl boot -s
914 .Pp
915 Load the kernel, a splash screen, and then autoboot in five seconds.
916 Notice that a kernel must be loaded before any other
917 .Ic load
918 command is attempted.
919 .Bd -literal -offset indent
920 load kernel
921 load splash_bmp
922 load -t splash_image_data /boot/chuckrulez.bmp
923 autoboot 5
924 .Ed
925 .Pp
926 Set the disk unit of the root device to 2, and then boot.
927 This would be needed in a system with two IDE disks,
928 with the second IDE disk hardwired to wd2 instead of wd1.
929 .Bd -literal -offset indent
930 set root_disk_unit=2
931 boot /kernel
932 .Ed
933 .Pp
934 See also:
935 .Bl -tag -width /usr/share/examples/bootforth/X
936 .It Pa /boot/loader.4th
937 Extra builtin-like words.
938 .It Pa /boot/support.4th
939 .Pa loader.conf
940 processing words.
941 .It Pa /usr/share/examples/bootforth/
942 Assorted examples.
943 .El
944 .Sh ERRORS
945 The following values are thrown by
946 .Nm :
947 .Bl -tag -width XXXXX -offset indent
948 .It 100
949 Any type of error in the processing of a builtin.
950 .It -1
951 .Ic Abort
952 executed.
953 .It -2
954 .Ic Abort"
955 executed.
956 .It -56
957 .Ic Quit
958 executed.
959 .It -256
960 Out of interpreting text.
961 .It -257
962 Need more text to succeed -- will finish on next run.
963 .It -258
964 .Ic Bye
965 executed.
966 .It -259
967 Unspecified error.
968 .El
969 .Sh SEE ALSO
970 .Xr libstand 3 ,
971 .Xr loader.conf 5 ,
972 .Xr tuning 7 ,
973 .Xr boot 8 ,
974 .Xr btxld 8
975 .Sh STANDARDS
976 For the purposes of ANS Forth compliance, loader is an
977 .Bf Em
978 ANS Forth System with Environmental Restrictions, Providing
979 .Ef
980 .Bf Li
981 .No .( ,
982 .No :noname ,
983 .No ?do ,
984 parse, pick, roll, refill, to, value, \e, false, true,
985 .No <> ,
986 .No 0<> ,
987 compile\&, , erase, nip, tuck
988 .Ef
989 .Em and
990 .Li marker
991 .Bf Em
992 from the Core Extensions word set, Providing the Exception Extensions
993 word set, Providing the Locals Extensions word set, Providing the
994 Memory-Allocation Extensions word set, Providing
995 .Ef
996 .Bf Li
997 \&.s,
998 bye, forget, see, words,
999 \&[if],
1000 \&[else]
1001 .Ef
1002 .Em and
1003 .Li [then]
1004 .Bf Em
1005 from the Programming-Tools extension word set, Providing the
1006 Search-Order extensions word set.
1007 .Ef
1008 .Sh HISTORY
1009 The
1010 .Nm
1011 first appeared in
1012 .Fx 3.1 .
1013 .Sh AUTHORS
1014 .An -nosplit
1015 The
1016 .Nm
1017 was written by
1018 .An Michael Smith Aq msmith@FreeBSD.org .
1019 .Pp
1020 .Tn FICL
1021 was written by
1022 .An John Sadler Aq john_sadler@alum.mit.edu .
1023 .Sh BUGS
1024 The
1025 .Ic expect
1026 and
1027 .Ic accept
1028 words will read from the input buffer instead of the console.
1029 The latter will be fixed, but the former will not.