]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sys/module.h
This commit was generated by cvs2svn to compensate for changes in r58551,
[FreeBSD/FreeBSD.git] / sys / sys / module.h
1 /*-
2  * Copyright (c) 1997 Doug Rabson
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 #ifndef _SYS_MODULE_H_
30 #define _SYS_MODULE_H_
31
32 typedef enum modeventtype {
33     MOD_LOAD,
34     MOD_UNLOAD,
35     MOD_SHUTDOWN
36 } modeventtype_t;
37
38 typedef struct module *module_t;
39
40 typedef int (*modeventhand_t)(module_t mod, int /*modeventtype_t*/ what,
41                               void *arg);
42
43 /*
44  * Struct for registering modules statically via SYSINIT.
45  */
46 typedef struct moduledata {
47         char            *name;  /* module name */
48         modeventhand_t  evhand; /* event handler */
49         void            *priv;  /* extra data */
50 } moduledata_t;
51
52 /*
53  * A module can use this to report module specific data to
54  * the user via kldstat(2).
55  */
56 typedef union modspecific {
57     int         intval;
58     u_int       uintval;
59     long        longval;
60     u_long      ulongval;
61 } modspecific_t;
62
63 #ifdef _KERNEL
64
65 #define DECLARE_MODULE(name, data, sub, order) \
66     SYSINIT(name##module, sub, order, module_register_init, &data) \
67     struct __hack
68
69 void module_register_init(const void *data);
70 struct linker_file;
71 int module_register(const struct moduledata *data, struct linker_file *lf);
72 module_t module_lookupbyname(const char *name);
73 module_t module_lookupbyid(int modid);
74 void module_reference(module_t mod);
75 void module_release(module_t mod);
76 int module_unload(module_t mod);
77 int module_getid(module_t mod);
78 module_t module_getfnext(module_t mod);
79 void module_setspecific(module_t mod, modspecific_t *datap);
80
81 #ifdef MOD_DEBUG
82
83 extern int mod_debug;
84 #define MOD_DEBUG_REFS  1
85
86 #define MOD_DPF(cat, args)                                      \
87         do {                                                    \
88                 if (mod_debug & MOD_DEBUG_##cat) printf args;   \
89         } while (0)
90
91 #else
92
93 #define MOD_DPF(cat, args)
94
95 #endif
96
97 #endif /* _KERNEL */
98
99 #define MAXMODNAME      32
100
101 struct module_stat {
102     int         version;        /* set to sizeof(struct module_stat) */
103     char        name[MAXMODNAME];
104     int         refs;
105     int         id;
106     modspecific_t data;
107 };
108
109 #ifndef _KERNEL
110
111 #include <sys/cdefs.h>
112
113 __BEGIN_DECLS
114 int     modnext(int modid);
115 int     modfnext(int modid);
116 int     modstat(int modid, struct module_stat* stat);
117 int     modfind(const char *name);
118 __END_DECLS
119
120 #endif
121
122 #endif  /* !_SYS_MODULE_H_ */