]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/sysinstall/modules.c
This commit was generated by cvs2svn to compensate for changes in r82819,
[FreeBSD/FreeBSD.git] / usr.sbin / sysinstall / modules.c
1 /*-
2  * Copyright (c) 2000  "HOSOKAWA, Tatsumi" <hosokawa@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28
29 #include "sysinstall.h"
30 #include <stdio.h>
31 #include <string.h>
32 #include <sys/types.h>
33 #include <sys/param.h>
34 #include <sys/linker.h>
35 #include <fcntl.h>
36 #include <dirent.h>
37
38 #define MODULESDIR "/stand/modules"
39
40 void
41 moduleInitialize(void)
42 {
43     int fd, len;
44     DIR *dirp;
45     struct dirent *dp;
46     char module[MAXPATHLEN], desc[MAXPATHLEN];
47     char desc_str[BUFSIZ];
48
49     if (!RunningAsInit && !Fake) {
50         /* It's not my job... */
51         return;
52     }
53
54     dirp = opendir(MODULESDIR);
55     if (dirp) {
56         while ((dp = readdir(dirp))) {
57             if (dp->d_namlen < (sizeof(".ko") - 1)) continue;
58             if (strcmp(dp->d_name + dp->d_namlen - (sizeof(".ko") - 1), ".ko") == 0) {
59                 strcpy(module, MODULESDIR);
60                 strcat(module, "/");
61                 strcat(module, dp->d_name);
62                 strcpy(desc, module);
63                 len = strlen(desc);
64                 strcpy(desc + (len - (sizeof(".ko") - 1)), ".dsc");
65                 fd = open(module, O_RDONLY);
66                 if (fd < 0) continue;
67                 close(fd);
68                 fd = open(desc, O_RDONLY);
69                 if (fd < 0) {
70                     desc_str[0] = 0;
71                 }
72                 else {
73                     len = read(fd, desc_str, BUFSIZ);
74                     close(fd);
75                     if (len < BUFSIZ) desc_str[len] = 0;
76                 }
77                 if (desc_str[0])
78                     msgDebug("Loading module %s (%s)\n", dp->d_name, desc_str);
79                 else
80                     msgDebug("Loading module %s\n", dp->d_name);
81                 if (kldload(module) < 0) {
82                     if (desc_str[0])
83                         msgConfirm("Loading module %s failed\n%s", dp->d_name, desc_str);
84                     else
85                         msgConfirm("Loading module %s failed", dp->d_name);
86                 }
87             }
88         }
89         closedir(dirp);
90     }
91 }