]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/boot/common/loader.8
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.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 January 7, 2012
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 autoboot_delay
338 Number of seconds
339 .Ic autoboot
340 will wait before booting.
341 If this variable is not defined,
342 .Ic autoboot
343 will default to 10 seconds.
344 .Pp
345 If set to
346 .Dq Li NO ,
347 no
348 .Ic autoboot
349 will be automatically attempted after processing
350 .Pa /boot/loader.rc ,
351 though explicit
352 .Ic autoboot Ns 's
353 will be processed normally, defaulting to 10 seconds delay.
354 .Pp
355 If set to
356 .Dq Li 0 ,
357 no delay will be inserted, but user still will be able to interrupt
358 .Ic autoboot
359 process and escape into the interactive mode by pressing some key
360 on the console while kernel and
361 modules are being loaded.
362 .Pp
363 If set to
364 .Dq Li -1 ,
365 no delay will be inserted and
366 .Nm
367 will engage interactive mode only if
368 .Ic autoboot
369 has failed for some reason.
370 .It Va boot_askname
371 Instructs the kernel to prompt the user for the name of the root device
372 when the kernel is booted.
373 .It Va boot_cdrom
374 Instructs the kernel to try to mount the root file system from CD-ROM.
375 .It Va boot_ddb
376 Instructs the kernel to start in the DDB debugger, rather than
377 proceeding to initialize when booted.
378 .It Va boot_dfltroot
379 Instructs the kernel to mount the statically compiled-in root file system.
380 .It Va boot_gdb
381 Selects gdb-remote mode for the kernel debugger by default.
382 .It Va boot_multicons
383 Enables multiple console support in the kernel early on boot.
384 In a running system, console configuration can be manipulated
385 by the
386 .Xr conscontrol 8
387 utility.
388 .It Va boot_mute
389 All console output is suppressed when console is muted.
390 In a running system, the state of console muting can be manipulated by the
391 .Xr conscontrol 8
392 utility.
393 .It Va boot_pause
394 During the device probe, pause after each line is printed.
395 .It Va boot_serial
396 Force the use of a serial console even when an internal console
397 is present.
398 .It Va boot_single
399 Prevents the kernel from initiating a multi-user startup; instead,
400 a single-user mode will be entered when the kernel has finished
401 device probing.
402 .It Va boot_verbose
403 Setting this variable causes extra debugging information to be printed
404 by the kernel during the boot phase.
405 .It Va bootfile
406 List of semicolon-separated search path for bootable kernels.
407 The default is
408 .Dq Li kernel .
409 .It Va comconsole_speed
410 Defines the speed of the serial console (i386 and amd64 only).
411 If the previous boot stage indicated that a serial console is in use
412 then this variable is initialized to the current speed of the console
413 serial port.
414 Otherwise it is set to 9600 unless this was overridden using the
415 .Va BOOT_COMCONSOLE_SPEED
416 variable when
417 .Nm
418 was compiled.
419 Changes to the
420 .Va comconsole_speed
421 variable take effect immediately.
422 .It Va comconsole_port
423 Defines the base i/o port used to access console UART
424 (i386 and amd64 only).
425 If the variable is not set, its assumed value is 0x3F8, which
426 corresponds to PC port COM1, unless overridden by
427 .Va BOOT_COMCONSOLE_PORT
428 variable during the compilation of
429 .Nm .
430 Setting the
431 .Va comconsole_port
432 variable automatically set
433 .Va hw.uart.console
434 environment variable to provide a hint to kernel for location of the console.
435 Loader console is changed immediately after variable
436 .Va comconsole_port
437 is set.
438 .It Va comconsole_pcidev
439 Defines the location of a PCI device of the 'simple communication'
440 class to be used as the serial console UART (i386 and amd64 only).
441 The syntax of the variable is
442 .Li 'bus:device:function[:bar]' ,
443 where all members must be numeric, with possible
444 .Li 0x
445 prefix to indicate a hexadecimal value.
446 The
447 .Va bar
448 member is optional and assumed to be 0x10 if omitted.
449 The bar must decode i/o space.
450 Setting the variable
451 .Va comconsole_pcidev
452 automatically sets the variable
453 .Va comconsole_port
454 to the base of the selected bar, and hint
455 .Va hw.uart.console .
456 Loader console is changed immediately after variable
457 .Va comconsole_pcidev
458 is set.
459 .It Va console
460 Defines the current console or consoles.
461 Multiple consoles may be specified.
462 In that case, the first listed console will become the default console for
463 userland output (e.g.\& from
464 .Xr init 8 ) .
465 .It Va currdev
466 Selects the default device.
467 Syntax for devices is odd.
468 .It Va init_chroot
469 If set to a valid directory in the root file system, it causes
470 .Xr init 8
471 to perform a
472 .Xr chroot 2
473 operation on that directory, making it the new root directory.
474 That happens before entering single-user mode or multi-user
475 mode (but after executing the
476 .Va init_script
477 if enabled).
478 .It Va init_path
479 Sets the list of binaries which the kernel will try to run as the initial
480 process.
481 The first matching binary is used.
482 The default list is
483 .Dq Li /sbin/init:/sbin/oinit:/sbin/init.bak:\:/rescue/init:/stand/sysinstall .
484 .It Va init_script
485 If set to a valid file name in the root file system,
486 instructs
487 .Xr init 8
488 to run that script as the very first action,
489 before doing anything else.
490 Signal handling and exit code interpretation is similar to
491 running the
492 .Pa /etc/rc
493 script.
494 In particular, single-user operation is enforced
495 if the script terminates with a non-zero exit code,
496 or if a SIGTERM is delivered to the
497 .Xr init 8
498 process (PID 1).
499 .It Va init_shell
500 Defines the shell binary to be used for executing the various shell scripts.
501 The default is
502 .Dq Li /bin/sh .
503 It is used for running the
504 .Va init_script
505 if set, as well as for the
506 .Pa /etc/rc
507 and
508 .Pa /etc/rc.shutdown
509 scripts.
510 The value of the corresponding
511 .Xr kenv 2
512 variable is evaluated every time
513 .Xr init 8
514 calls a shell script, so it can be changed later on using the
515 .Xr kenv 1
516 utility.
517 In particular, if a non-default shell is used for running an
518 .Va init_script ,
519 it might be desirable to have that script reset the value of
520 .Va init_shell
521 back to the default, so that the
522 .Pa /etc/rc
523 script is executed with the standard shell
524 .Pa /bin/sh .
525 .It Va interpret
526 Has the value
527 .Dq Li OK
528 if the Forth's current state is interpreting.
529 .It Va LINES
530 Define the number of lines on the screen, to be used by the pager.
531 .It Va module_path
532 Sets the list of directories which will be searched for modules
533 named in a load command or implicitly required by a dependency.
534 The default value for this variable is
535 .Dq Li /boot/kernel;/boot/modules .
536 .It Va num_ide_disks
537 Sets the number of IDE disks as a workaround for some problems in
538 finding the root disk at boot.
539 This has been deprecated in favor of
540 .Va root_disk_unit .
541 .It Va prompt
542 Value of
543 .Nm Ns 's
544 prompt.
545 Defaults to
546 .Dq Li "${interpret}" .
547 If variable
548 .Va prompt
549 is unset, the default prompt is
550 .Ql > .
551 .It Va root_disk_unit
552 If the code which detects the disk unit number for the root disk is
553 confused, e.g.\& by a mix of SCSI and IDE disks, or IDE disks with
554 gaps in the sequence (e.g.\& no primary slave), the unit number can
555 be forced by setting this variable.
556 .It Va rootdev
557 By default the value of
558 .Va currdev
559 is used to set the root file system
560 when the kernel is booted.
561 This can be overridden by setting
562 .Va rootdev
563 explicitly.
564 .El
565 .Pp
566 Other variables are used to override kernel tunable parameters.
567 The following tunables are available:
568 .Bl -tag -width Va
569 .It Va hw.physmem
570 Limit the amount of physical memory the system will use.
571 By default the size is in bytes, but the
572 .Cm k , K , m , M , g
573 and
574 .Cm G
575 suffixes
576 are also accepted and indicate kilobytes, megabytes and gigabytes
577 respectively.
578 An invalid suffix will result in the variable being ignored by the
579 kernel.
580 .It Va hw.pci.host_start_mem , hw.acpi.host_start_mem
581 When not otherwise constrained, this limits the memory start
582 address.
583 The default is 0x80000000 and should be set to at least size of the
584 memory and not conflict with other resources.
585 Typically, only systems without PCI bridges need to set this variable
586 since PCI bridges typically constrain the memory starting address
587 (and the variable is only used when bridges do not constrain this
588 address).
589 .It Va hw.pci.enable_io_modes
590 Enable PCI resources which are left off by some BIOSes or are not
591 enabled correctly by the device driver.
592 Tunable value set to ON (1) by default, but this may cause problems
593 with some peripherals.
594 .It Va kern.maxusers
595 Set the size of a number of statically allocated system tables; see
596 .Xr tuning 7
597 for a description of how to select an appropriate value for this
598 tunable.
599 When set, this tunable replaces the value declared in the kernel
600 compile-time configuration file.
601 .It Va kern.ipc.nmbclusters
602 Set the number of mbuf clusters to be allocated.
603 The value cannot be set below the default
604 determined when the kernel was compiled.
605 .It Va kern.ipc.nsfbufs
606 Set the number of
607 .Xr sendfile 2
608 buffers to be allocated.
609 Overrides
610 .Dv NSFBUFS .
611 Not all architectures use such buffers; see
612 .Xr sendfile 2
613 for details.
614 .It Va kern.maxswzone
615 Limits the amount of KVM to be used to hold swap
616 metadata, which directly governs the
617 maximum amount of swap the system can support,
618 at the rate of approximately 200 MB of swap space
619 per 1 MB of metadata.
620 This value is specified in bytes of KVA space.
621 If no value is provided, the system allocates
622 enough memory to handle an amount of swap
623 that corresponds to eight times the amount of
624 physical memory present in the system.
625 .Pp
626 Note that swap metadata can be fragmented,
627 which means that the system can run out of
628 space before it reaches the theoretical limit.
629 Therefore, care should be taken to not configure
630 more swap than approximately half of the
631 theoretical maximum.
632 .Pp
633 Running out of space for swap metadata can leave
634 the system in an unrecoverable state.
635 Therefore, you should only change
636 this parameter if you need to greatly extend the
637 KVM reservation for other resources such as the
638 buffer cache or
639 .Va kern.ipc.nmbclusters .
640 Modifies kernel option
641 .Dv VM_SWZONE_SIZE_MAX .
642 .It Va kern.maxbcache
643 Limits the amount of KVM reserved for use by the
644 buffer cache, specified in bytes.
645 The default maximum is 200MB on i386,
646 and 400MB on amd64 and sparc64.
647 This parameter is used to
648 prevent the buffer cache from eating too much
649 KVM in large-memory machine configurations.
650 Only mess around with this parameter if you need to
651 greatly extend the KVM reservation for other resources
652 such as the swap zone or
653 .Va kern.ipc.nmbclusters .
654 Note that
655 the NBUF parameter will override this limit.
656 Modifies
657 .Dv VM_BCACHE_SIZE_MAX .
658 .It Va kern.msgbufsize
659 Sets the size of the kernel message buffer.
660 The default limit of 64KB is usually sufficient unless
661 large amounts of trace data need to be collected
662 between opportunities to examine the buffer or
663 dump it to a file.
664 Overrides kernel option
665 .Dv MSGBUF_SIZE .
666 .It Va machdep.disable_mtrrs
667 Disable the use of i686 MTRRs (x86 only).
668 .It Va net.inet.tcp.tcbhashsize
669 Overrides the compile-time set value of
670 .Dv TCBHASHSIZE
671 or the preset default of 512.
672 Must be a power of 2.
673 .It Va vm.kmem_size
674 Sets the size of kernel memory (bytes).
675 This overrides the value determined when the kernel was compiled.
676 Modifies
677 .Dv VM_KMEM_SIZE .
678 .It Va vm.kmem_size_min
679 .It Va vm.kmem_size_max
680 Sets the minimum and maximum (respectively) amount of kernel memory
681 that will be automatically allocated by the kernel.
682 These override the values determined when the kernel was compiled.
683 Modifies
684 .Dv VM_KMEM_SIZE_MIN
685 and
686 .Dv VM_KMEM_SIZE_MAX .
687 .El
688 .Ss BUILTIN PARSER
689 When a builtin command is executed, the rest of the line is taken
690 by it as arguments, and it is processed by a special parser which
691 is not used for regular Forth commands.
692 .Pp
693 This special parser applies the following rules to the parsed text:
694 .Bl -enum
695 .It
696 All backslash characters are preprocessed.
697 .Bl -bullet
698 .It
699 \eb , \ef , \er , \en and \et are processed as in C.
700 .It
701 \es is converted to a space.
702 .It
703 \ev is converted to
704 .Tn ASCII
705 11.
706 .It
707 \ez is just skipped.
708 Useful for things like
709 .Dq \e0xf\ez\e0xf .
710 .It
711 \e0xN and \e0xNN are replaced by the hex N or NN.
712 .It
713 \eNNN is replaced by the octal NNN
714 .Tn ASCII
715 character.
716 .It
717 \e" , \e' and \e$ will escape these characters, preventing them from
718 receiving special treatment in Step 2, described below.
719 .It
720 \e\e will be replaced with a single \e .
721 .It
722 In any other occurrence, backslash will just be removed.
723 .El
724 .It
725 Every string between non-escaped quotes or double-quotes will be treated
726 as a single word for the purposes of the remaining steps.
727 .It
728 Replace any
729 .Li $VARIABLE
730 or
731 .Li ${VARIABLE}
732 with the value of the environment variable
733 .Va VARIABLE .
734 .It
735 Space-delimited arguments are passed to the called builtin command.
736 Spaces can also be escaped through the use of \e\e .
737 .El
738 .Pp
739 An exception to this parsing rule exists, and is described in
740 .Sx BUILTINS AND FORTH .
741 .Ss BUILTINS AND FORTH
742 All builtin words are state-smart, immediate words.
743 If interpreted, they behave exactly as described previously.
744 If they are compiled, though,
745 they extract their arguments from the stack instead of the command line.
746 .Pp
747 If compiled, the builtin words expect to find, at execution time, the
748 following parameters on the stack:
749 .D1 Ar addrN lenN ... addr2 len2 addr1 len1 N
750 where
751 .Ar addrX lenX
752 are strings which will compose the command line that will be parsed
753 into the builtin's arguments.
754 Internally, these strings are concatenated in from 1 to N,
755 with a space put between each one.
756 .Pp
757 If no arguments are passed, a 0
758 .Em must
759 be passed, even if the builtin accepts no arguments.
760 .Pp
761 While this behavior has benefits, it has its trade-offs.
762 If the execution token of a builtin is acquired (through
763 .Ic '
764 or
765 .Ic ['] ) ,
766 and then passed to
767 .Ic catch
768 or
769 .Ic execute ,
770 the builtin behavior will depend on the system state
771 .Bf Em
772 at the time
773 .Ic catch
774 or
775 .Ic execute
776 is processed!
777 .Ef
778 This is particularly annoying for programs that want or need to
779 handle exceptions.
780 In this case, the use of a proxy is recommended.
781 For example:
782 .Dl : (boot) boot ;
783 .Sh FICL
784 .Tn FICL
785 is a Forth interpreter written in C, in the form of a forth
786 virtual machine library that can be called by C functions and vice
787 versa.
788 .Pp
789 In
790 .Nm ,
791 each line read interactively is then fed to
792 .Tn FICL ,
793 which may call
794 .Nm
795 back to execute the builtin words.
796 The builtin
797 .Ic include
798 will also feed
799 .Tn FICL ,
800 one line at a time.
801 .Pp
802 The words available to
803 .Tn FICL
804 can be classified into four groups.
805 The
806 .Tn ANS
807 Forth standard words, extra
808 .Tn FICL
809 words, extra
810 .Fx
811 words, and the builtin commands;
812 the latter were already described.
813 The
814 .Tn ANS
815 Forth standard words are listed in the
816 .Sx STANDARDS
817 section.
818 The words falling in the two other groups are described in the
819 following subsections.
820 .Ss FICL EXTRA WORDS
821 .Bl -tag -width wid-set-super
822 .It Ic .env
823 .It Ic .ver
824 .It Ic -roll
825 .It Ic 2constant
826 .It Ic >name
827 .It Ic body>
828 .It Ic compare
829 This is the STRING word set's
830 .Ic compare .
831 .It Ic compile-only
832 .It Ic endif
833 .It Ic forget-wid
834 .It Ic parse-word
835 .It Ic sliteral
836 This is the STRING word set's
837 .Ic sliteral .
838 .It Ic wid-set-super
839 .It Ic w@
840 .It Ic w!
841 .It Ic x.
842 .It Ic empty
843 .It Ic cell-
844 .It Ic -rot
845 .El
846 .Ss FREEBSD EXTRA WORDS
847 .Bl -tag -width XXXXXXXX
848 .It Ic \&$ Pq --
849 Evaluates the remainder of the input buffer, after having printed it first.
850 .It Ic \&% Pq --
851 Evaluates the remainder of the input buffer under a
852 .Ic catch
853 exception guard.
854 .It Ic .#
855 Works like
856 .Ic "."
857 but without outputting a trailing space.
858 .It Ic fclose Pq Ar fd --
859 Closes a file.
860 .It Ic fkey Pq Ar fd -- char
861 Reads a single character from a file.
862 .It Ic fload Pq Ar fd --
863 Processes a file
864 .Em fd .
865 .It Ic fopen Pq Ar addr len mode Li -- Ar fd
866 Opens a file.
867 Returns a file descriptor, or \-1 in case of failure.
868 The
869 .Ar mode
870 parameter selects whether the file is to be opened for read access, write
871 access, or both.
872 The constants
873 .Dv O_RDONLY , O_WRONLY ,
874 and
875 .Dv O_RDWR
876 are defined in
877 .Pa /boot/support.4th ,
878 indicating read only, write only, and read-write access, respectively.
879 .It Xo
880 .Ic fread
881 .Pq Ar fd addr len -- len'
882 .Xc
883 Tries to read
884 .Em len
885 bytes from file
886 .Em fd
887 into buffer
888 .Em addr .
889 Returns the actual number of bytes read, or -1 in case of error or end of
890 file.
891 .It Ic heap? Pq -- Ar cells
892 Return the space remaining in the dictionary heap, in cells.
893 This is not related to the heap used by dynamic memory allocation words.
894 .It Ic inb Pq Ar port -- char
895 Reads a byte from a port.
896 .It Ic key Pq -- Ar char
897 Reads a single character from the console.
898 .It Ic key? Pq -- Ar flag
899 Returns
900 .Ic true
901 if there is a character available to be read from the console.
902 .It Ic ms Pq Ar u --
903 Waits
904 .Em u
905 microseconds.
906 .It Ic outb Pq Ar port char --
907 Writes a byte to a port.
908 .It Ic seconds Pq -- Ar u
909 Returns the number of seconds since midnight.
910 .It Ic tib> Pq -- Ar addr len
911 Returns the remainder of the input buffer as a string on the stack.
912 .It Ic trace! Pq Ar flag --
913 Activates or deactivates tracing.
914 Does not work with
915 .Ic catch .
916 .El
917 .Ss FREEBSD DEFINED ENVIRONMENTAL QUERIES
918 .Bl -tag -width Ds
919 .It arch-i386
920 .Ic TRUE
921 if the architecture is IA32.
922 .It FreeBSD_version
923 .Fx
924 version at compile time.
925 .It loader_version
926 .Nm
927 version.
928 .El
929 .Ss SYSTEM DOCUMENTATION
930 .Sh FILES
931 .Bl -tag -width /boot/defaults/loader.conf -compact
932 .It Pa /boot/loader
933 .Nm
934 itself.
935 .It Pa /boot/boot.4th
936 Additional
937 .Tn FICL
938 initialization.
939 .It Pa /boot/boot.conf
940 .Nm
941 bootstrapping script.
942 Deprecated.
943 .It Pa /boot/defaults/loader.conf
944 .It Pa /boot/loader.conf
945 .It Pa /boot/loader.conf.local
946 .Nm
947 configuration files, as described in
948 .Xr loader.conf 5 .
949 .It Pa /boot/loader.rc
950 .Nm
951 bootstrapping script.
952 .It Pa /boot/loader.help
953 Loaded by
954 .Ic help .
955 Contains the help messages.
956 .El
957 .Sh EXAMPLES
958 Boot in single user mode:
959 .Pp
960 .Dl boot -s
961 .Pp
962 Load the kernel, a splash screen, and then autoboot in five seconds.
963 Notice that a kernel must be loaded before any other
964 .Ic load
965 command is attempted.
966 .Bd -literal -offset indent
967 load kernel
968 load splash_bmp
969 load -t splash_image_data /boot/chuckrulez.bmp
970 autoboot 5
971 .Ed
972 .Pp
973 Set the disk unit of the root device to 2, and then boot.
974 This would be needed in a system with two IDE disks,
975 with the second IDE disk hardwired to ad2 instead of ad1.
976 .Bd -literal -offset indent
977 set root_disk_unit=2
978 boot /boot/kernel/kernel
979 .Ed
980 .Pp
981 See also:
982 .Bl -tag -width /usr/share/examples/bootforth/X
983 .It Pa /boot/loader.4th
984 Extra builtin-like words.
985 .It Pa /boot/support.4th
986 .Pa loader.conf
987 processing words.
988 .It Pa /usr/share/examples/bootforth/
989 Assorted examples.
990 .El
991 .Sh ERRORS
992 The following values are thrown by
993 .Nm :
994 .Bl -tag -width XXXXX -offset indent
995 .It 100
996 Any type of error in the processing of a builtin.
997 .It -1
998 .Ic Abort
999 executed.
1000 .It -2
1001 .Ic Abort"
1002 executed.
1003 .It -56
1004 .Ic Quit
1005 executed.
1006 .It -256
1007 Out of interpreting text.
1008 .It -257
1009 Need more text to succeed -- will finish on next run.
1010 .It -258
1011 .Ic Bye
1012 executed.
1013 .It -259
1014 Unspecified error.
1015 .El
1016 .Sh SEE ALSO
1017 .Xr libstand 3 ,
1018 .Xr loader.conf 5 ,
1019 .Xr tuning 7 ,
1020 .Xr boot 8 ,
1021 .Xr btxld 8
1022 .Sh STANDARDS
1023 For the purposes of ANS Forth compliance, loader is an
1024 .Bf Em
1025 ANS Forth System with Environmental Restrictions, Providing
1026 .Ef
1027 .Bf Li
1028 .No .( ,
1029 .No :noname ,
1030 .No ?do ,
1031 parse, pick, roll, refill, to, value, \e, false, true,
1032 .No <> ,
1033 .No 0<> ,
1034 compile\&, , erase, nip, tuck
1035 .Ef
1036 .Em and
1037 .Li marker
1038 .Bf Em
1039 from the Core Extensions word set, Providing the Exception Extensions
1040 word set, Providing the Locals Extensions word set, Providing the
1041 Memory-Allocation Extensions word set, Providing
1042 .Ef
1043 .Bf Li
1044 \&.s,
1045 bye, forget, see, words,
1046 \&[if],
1047 \&[else]
1048 .Ef
1049 .Em and
1050 .Li [then]
1051 .Bf Em
1052 from the Programming-Tools extension word set, Providing the
1053 Search-Order extensions word set.
1054 .Ef
1055 .Sh HISTORY
1056 The
1057 .Nm
1058 first appeared in
1059 .Fx 3.1 .
1060 .Sh AUTHORS
1061 .An -nosplit
1062 The
1063 .Nm
1064 was written by
1065 .An Michael Smith Aq msmith@FreeBSD.org .
1066 .Pp
1067 .Tn FICL
1068 was written by
1069 .An John Sadler Aq john_sadler@alum.mit.edu .
1070 .Sh BUGS
1071 The
1072 .Ic expect
1073 and
1074 .Ic accept
1075 words will read from the input buffer instead of the console.
1076 The latter will be fixed, but the former will not.