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