1a79fe607SDoug Rabson.\" 2a79fe607SDoug Rabson.\" Copyright (c) 1997 Doug Rabson 3a79fe607SDoug Rabson.\" All rights reserved. 4a79fe607SDoug Rabson.\" 5a79fe607SDoug Rabson.\" Redistribution and use in source and binary forms, with or without 6a79fe607SDoug Rabson.\" modification, are permitted provided that the following conditions 7a79fe607SDoug Rabson.\" are met: 8a79fe607SDoug Rabson.\" 1. Redistributions of source code must retain the above copyright 9a79fe607SDoug Rabson.\" notice, this list of conditions and the following disclaimer. 10a79fe607SDoug Rabson.\" 2. Redistributions in binary form must reproduce the above copyright 11a79fe607SDoug Rabson.\" notice, this list of conditions and the following disclaimer in the 12a79fe607SDoug Rabson.\" documentation and/or other materials provided with the distribution. 13a79fe607SDoug Rabson.\" 14a79fe607SDoug Rabson.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15a79fe607SDoug Rabson.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16a79fe607SDoug Rabson.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17a79fe607SDoug Rabson.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18a79fe607SDoug Rabson.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19a79fe607SDoug Rabson.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20a79fe607SDoug Rabson.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21a79fe607SDoug Rabson.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22a79fe607SDoug Rabson.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23a79fe607SDoug Rabson.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24a79fe607SDoug Rabson.\" SUCH DAMAGE. 25a79fe607SDoug Rabson.\" 267f3dea24SPeter Wemm.\" $FreeBSD$ 27a79fe607SDoug Rabson.\" 28effdb43eSBenno Rice.Dd June 5, 2009 29a79fe607SDoug Rabson.Dt KLDLOAD 8 309fe48c6eSRuslan Ermilov.Os 31a79fe607SDoug Rabson.Sh NAME 32a79fe607SDoug Rabson.Nm kldload 33a79fe607SDoug Rabson.Nd load a file into the kernel 34a79fe607SDoug Rabson.Sh SYNOPSIS 357c7fb079SRuslan Ermilov.Nm 36a79fe607SDoug Rabson.Op Fl v 3794c61219SJuli Mallett.Ar 38a79fe607SDoug Rabson.Sh DESCRIPTION 39a79fe607SDoug RabsonThe 40a79fe607SDoug Rabson.Nm 4194c61219SJuli Mallettutility loads 4294c61219SJuli Mallett.Ar file Ns Pa .ko 43a87c2a93SDavid E. O'Brieninto the kernel using the kernel linker. 4494c61219SJuli MallettNote that if multiple modules are specified then an attempt will 4594c61219SJuli Mallettbe made to load them all, even if some fail. 46fc3643bbSGiorgos KeramidasThe 47fc3643bbSGiorgos Keramidas.Pa .ko 48fc3643bbSGiorgos Keramidasextension name is not mandatory when loading a given module 49fc3643bbSGiorgos Keramidasusing 50fc3643bbSGiorgos Keramidas.Nm . 514e9e907dSRuslan ErmilovIt does not hurt to specify it though. 52a79fe607SDoug Rabson.Pp 5302479eadSBenno RiceIf a bare filename is requested it will only be loaded if it is found within 5402479eadSBenno Ricethe module path as defined by the sysctl 5502479eadSBenno Rice.Va kern.module_path . 5602479eadSBenno RiceTo load a module from the current directory it must be specified as a full or 5702479eadSBenno Ricerelative path. 5802479eadSBenno RiceThe 5902479eadSBenno Rice.Nm 6002479eadSBenno Riceutility will warn if a module is requested as a bare filename and is present 6102479eadSBenno Ricein the current directory. 6202479eadSBenno Rice.Pp 6349fea209SPhilippe CharnierThe following option is available: 6449fea209SPhilippe Charnier.Bl -tag -width indent 65a79fe607SDoug Rabson.It Fl v 66a79fe607SDoug RabsonBe more verbose. 6702479eadSBenno Rice.It Fl q 6802479eadSBenno RiceSilence any extraneous warnings. 69a79fe607SDoug Rabson.El 7066a9ad5dSXin LI.Sh NOTES 7166a9ad5dSXin LI.Pp 7266a9ad5dSXin LIThe kernel security level settings may prevent a module from being 7366a9ad5dSXin LIloaded or unloaded by giving 7466a9ad5dSXin LI.Em "Operation not permitted" . 75a87c2a93SDavid E. O'Brien.Sh FILES 76b1d5d887SAndrey A. Chernov.Bl -tag -width /boot/kernel -compact 77b1d5d887SAndrey A. Chernov.It Pa /boot/kernel 785bfebe7bSRuslan Ermilovdirectory containing loadable modules. 795bfebe7bSRuslan ErmilovModules must have an extension of 805bfebe7bSRuslan Ermilov.Pa .ko . 811252c1bbSRuslan Ermilov.El 82a866e170SRuslan Ermilov.Sh EXIT STATUS 831f78c0cbSRuslan Ermilov.Ex -std 8402479eadSBenno Rice.Sh EXAMPLES 8502479eadSBenno RiceTo load by module name: 8602479eadSBenno Rice.Bd -literal -offset indent 8702479eadSBenno Rice\*[Gt] kldload foo 8802479eadSBenno Rice.Ed 8902479eadSBenno Rice.Pp 9002479eadSBenno RiceTo load by file name within the module path: 9102479eadSBenno Rice.Bd -literal -offset indent 9202479eadSBenno Rice\*[Gt] kldload foo.ko 9302479eadSBenno Rice.Ed 9402479eadSBenno Rice.Pp 9502479eadSBenno RiceTo load by relative path: 9602479eadSBenno Rice.Bd -literal -offset indent 9702479eadSBenno Rice\*[Gt] kldload ./foo.ko 9802479eadSBenno Rice.Ed 9902479eadSBenno Rice.Pp 10002479eadSBenno RiceTo load by full path: 10102479eadSBenno Rice.Bd -literal -offset indent 10202479eadSBenno Rice\*[Gt] kldload /boot/kernel/foo.ko 10302479eadSBenno Rice.Ed 10445943e22SMike Silbersack.Sh AUTOMATICALLY LOADING MODULES 10565fe4c0bSTom RhodesSome modules (pf, ipfw, ipf, etc.) may be automatically loaded at boot 106fc3643bbSGiorgos Keramidastime when the corresponding 107fc3643bbSGiorgos Keramidas.Xr rc.conf 5 108fc3643bbSGiorgos Keramidasstatement is used. 10945943e22SMike SilbersackModules may also be auto-loaded through their addition to 11045943e22SMike Silbersack.Xr loader.conf 5 . 111a79fe607SDoug Rabson.Sh SEE ALSO 112fa8b1c61SChris Costello.Xr kldload 2 , 11345943e22SMike Silbersack.Xr loader.conf 5 , 1141f78c0cbSRuslan Ermilov.Xr rc.conf 5 , 11566a9ad5dSXin LI.Xr security 7 , 116bdb963f9SRuslan Ermilov.Xr kldconfig 8 , 1171f78c0cbSRuslan Ermilov.Xr kldstat 8 , 1181f78c0cbSRuslan Ermilov.Xr kldunload 8 1192830148aSJohn-Mark Gurney.Sh HISTORY 1202830148aSJohn-Mark GurneyThe 1212830148aSJohn-Mark Gurney.Nm 122e1205e80SPhilippe Charnierutility first appeared in 123a87c2a93SDavid E. O'Brien.Fx 3.0 , 124a87c2a93SDavid E. O'Brienreplacing the 1255ab2dec3SChristian Brueffer.Nm lkm 126a87c2a93SDavid E. O'Brieninterface. 12768085a0eSPhilippe Charnier.Sh AUTHORS 12868085a0eSPhilippe Charnier.An Doug Rabson Aq dfr@FreeBSD.org 129