Fix "ls: not found" problem during buildworld. mdate.sh script
[dragonfly.git] / sys / kern / kern_module.c
blobbd73858ffcd1d345c93d2464cf0959f8b2ae7f4e
1 /*-
2 * Copyright (c) 1997 Doug Rabson
3 * All rights reserved.
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.
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.
26 * $FreeBSD: src/sys/kern/kern_module.c,v 1.21 1999/11/08 06:53:30 peter Exp $
27 * $DragonFly: src/sys/kern/kern_module.c,v 1.9 2005/03/29 00:35:55 drhodus Exp $
30 #include <sys/param.h>
31 #include <sys/kernel.h>
32 #include <sys/systm.h>
33 #include <sys/eventhandler.h>
34 #include <sys/malloc.h>
35 #include <sys/sysproto.h>
36 #include <sys/sysent.h>
37 #include <sys/module.h>
38 #include <sys/linker.h>
39 #include <sys/proc.h>
41 MALLOC_DEFINE(M_MODULE, "module", "module data structures");
43 typedef TAILQ_HEAD(, module) modulelist_t;
44 struct module {
45 TAILQ_ENTRY(module) link; /* chain together all modules */
46 TAILQ_ENTRY(module) flink; /* all modules in a file */
47 struct linker_file* file; /* file which contains this module */
48 int refs; /* reference count */
49 int id; /* unique id number */
50 char *name; /* module name */
51 modeventhand_t handler; /* event handler */
52 void *arg; /* argument for handler */
53 modspecific_t data; /* module specific data */
56 #define MOD_EVENT(mod, type) (mod)->handler((mod), (type), (mod)->arg)
58 static modulelist_t modules;
59 static int nextid = 1;
61 static void module_shutdown(void*, int);
63 static int
64 modevent_nop(module_t mod, int what, void* arg)
66 return 0;
70 static void
71 module_init(void* arg)
73 TAILQ_INIT(&modules);
74 EVENTHANDLER_REGISTER(shutdown_post_sync, module_shutdown, NULL,
75 SHUTDOWN_PRI_DEFAULT);
78 SYSINIT(module, SI_SUB_KLD, SI_ORDER_FIRST, module_init, 0);
80 static void
81 module_shutdown(void* arg1, int arg2)
83 module_t mod;
85 for (mod = TAILQ_FIRST(&modules); mod; mod = TAILQ_NEXT(mod, link))
86 MOD_EVENT(mod, MOD_SHUTDOWN);
89 void
90 module_register_init(const void *arg)
92 const moduledata_t* data = (const moduledata_t*) arg;
93 int error;
94 module_t mod;
96 mod = module_lookupbyname(data->name);
97 if (mod == NULL) {
98 #if 0
99 panic("module_register_init: module named %s not found", data->name);
100 #else
101 /* temporary kludge until kernel `file' attachment registers modules */
102 error = module_register(data, linker_kernel_file);
103 if (error)
104 panic("module_register_init: register of module failed! %d", error);
105 mod = module_lookupbyname(data->name);
106 if (mod == NULL)
107 panic("module_register_init: module STILL not found!");
108 #endif
110 error = MOD_EVENT(mod, MOD_LOAD);
111 if (error) {
112 MOD_EVENT(mod, MOD_UNLOAD);
113 module_release(mod);
114 printf("module_register_init: MOD_LOAD (%s, %lx, %p) error %d\n",
115 data->name, (u_long)(uintfptr_t)data->evhand, data->priv, error);
120 module_register(const moduledata_t *data, linker_file_t container)
122 size_t namelen;
123 module_t newmod;
125 newmod = module_lookupbyname(data->name);
126 if (newmod != NULL) {
127 printf("module_register: module %s already exists!\n", data->name);
128 return EEXIST;
130 namelen = strlen(data->name) + 1;
131 newmod = (module_t) malloc(sizeof(struct module) + namelen,
132 M_MODULE, M_WAITOK);
133 if (newmod == 0)
134 return ENOMEM;
136 newmod->refs = 1;
137 newmod->id = nextid++;
138 newmod->name = (char *) (newmod + 1);
139 strcpy(newmod->name, data->name);
140 newmod->handler = data->evhand ? data->evhand : modevent_nop;
141 newmod->arg = data->priv;
142 bzero(&newmod->data, sizeof(newmod->data));
143 TAILQ_INSERT_TAIL(&modules, newmod, link);
145 if (container == NULL)
146 container = linker_current_file;
147 if (container)
148 TAILQ_INSERT_TAIL(&container->modules, newmod, flink);
149 newmod->file = container;
151 return 0;
154 void
155 module_reference(module_t mod)
157 MOD_DPF(REFS, ("module_reference: before, refs=%d\n", mod->refs));
159 mod->refs++;
163 * module_release()
165 * Release ref on the module and return the new reference count. If 0
166 * is returned, the module has been removed from its list and freed.
169 module_release(module_t mod)
171 int rc;
173 if (mod->refs <= 0)
174 panic("module_release: bad reference count");
176 MOD_DPF(REFS, ("module_release: before, refs=%d\n", mod->refs));
178 rc = --mod->refs;
179 if (rc == 0) {
180 TAILQ_REMOVE(&modules, mod, link);
181 if (mod->file) {
182 TAILQ_REMOVE(&mod->file->modules, mod, flink);
184 free(mod, M_MODULE);
186 return(rc);
189 module_t
190 module_lookupbyname(const char* name)
192 module_t mod;
194 for (mod = TAILQ_FIRST(&modules); mod; mod = TAILQ_NEXT(mod, link)) {
195 if (!strcmp(mod->name, name))
196 return mod;
199 return 0;
202 module_t
203 module_lookupbyid(int modid)
205 module_t mod;
207 for (mod = TAILQ_FIRST(&modules); mod; mod = TAILQ_NEXT(mod, link)) {
208 if (mod->id == modid)
209 return mod;
212 return 0;
216 module_unload(module_t mod)
218 return MOD_EVENT(mod, MOD_UNLOAD);
222 module_getid(module_t mod)
224 return mod->id;
227 module_t
228 module_getfnext(module_t mod)
230 return TAILQ_NEXT(mod, flink);
233 void
234 module_setspecific(module_t mod, modspecific_t *datap)
236 mod->data = *datap;
240 * Syscalls.
243 modnext(struct modnext_args *uap)
245 module_t mod;
247 uap->sysmsg_result = -1;
248 if (uap->modid == 0) {
249 mod = TAILQ_FIRST(&modules);
250 if (mod) {
251 uap->sysmsg_result = mod->id;
252 return 0;
253 } else
254 return ENOENT;
257 mod = module_lookupbyid(uap->modid);
258 if (!mod)
259 return ENOENT;
261 if (TAILQ_NEXT(mod, link))
262 uap->sysmsg_result = TAILQ_NEXT(mod, link)->id;
263 else
264 uap->sysmsg_result = 0;
265 return 0;
269 modfnext(struct modfnext_args *uap)
271 module_t mod;
273 uap->sysmsg_result = -1;
275 mod = module_lookupbyid(uap->modid);
276 if (!mod)
277 return ENOENT;
279 if (TAILQ_NEXT(mod, flink))
280 uap->sysmsg_result = TAILQ_NEXT(mod, flink)->id;
281 else
282 uap->sysmsg_result = 0;
283 return 0;
286 struct module_stat_v1 {
287 int version; /* set to sizeof(struct module_stat) */
288 char name[MAXMODNAME];
289 int refs;
290 int id;
294 modstat(struct modstat_args *uap)
296 module_t mod;
297 int error = 0;
298 int namelen;
299 int version;
300 struct module_stat* stat;
302 mod = module_lookupbyid(uap->modid);
303 if (!mod)
304 return ENOENT;
306 stat = uap->stat;
309 * Check the version of the user's structure.
311 if ((error = copyin(&stat->version, &version, sizeof(version))) != 0)
312 goto out;
313 if (version != sizeof(struct module_stat_v1)
314 && version != sizeof(struct module_stat)) {
315 error = EINVAL;
316 goto out;
319 namelen = strlen(mod->name) + 1;
320 if (namelen > MAXMODNAME)
321 namelen = MAXMODNAME;
322 if ((error = copyout(mod->name, &stat->name[0], namelen)) != 0)
323 goto out;
325 if ((error = copyout(&mod->refs, &stat->refs, sizeof(int))) != 0)
326 goto out;
327 if ((error = copyout(&mod->id, &stat->id, sizeof(int))) != 0)
328 goto out;
331 * >v1 stat includes module data.
333 if (version == sizeof(struct module_stat)) {
334 if ((error = copyout(&mod->data, &stat->data, sizeof(mod->data))) != 0)
335 goto out;
338 uap->sysmsg_result = 0;
340 out:
341 return error;
345 modfind(struct modfind_args *uap)
347 int error = 0;
348 char name[MAXMODNAME];
349 module_t mod;
351 if ((error = copyinstr(uap->name, name, sizeof name, 0)) != 0)
352 goto out;
354 mod = module_lookupbyname(name);
355 if (!mod)
356 error = ENOENT;
357 else
358 uap->sysmsg_result = mod->id;
360 out:
361 return error;