2 * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
32 #include <mach/kern_return.h>
34 #include <sys/cdefs.h>
36 #define KMOD_CNTL_START 1 // call kmod's start routine
37 #define KMOD_CNTL_STOP 2 // call kmod's stop routine
38 #define KMOD_CNTL_RETAIN 3 // increase a kmod's reference count
39 #define KMOD_CNTL_RELEASE 4 // decrease a kmod's reference count
40 #define KMOD_CNTL_GET_CMD 5 // get kmod load cmd from kernel
42 #define KMOD_PACK_IDS(from, to) (((unsigned long)from << 16) | (unsigned long)to)
43 #define KMOD_UNPACK_FROM_ID(i) ((unsigned long)i >> 16)
44 #define KMOD_UNPACK_TO_ID(i) ((unsigned long)i & 0xffff)
47 typedef int kmod_control_flavor_t
;
48 typedef void* kmod_args_t
;
50 #define KMOD_MAX_NAME 64
52 #if __DARWIN_ALIGN_POWER
53 #pragma options align=power
56 /* LP64todo - not 64-bit safe */
57 typedef struct kmod_reference
{
58 struct kmod_reference
*next
;
59 struct kmod_info
*info
;
62 #if __DARWIN_ALIGN_POWER
63 #pragma options align=reset
66 /**************************************************************************************/
67 /* warning any changes to this structure affect the following macros. */
68 /**************************************************************************************/
70 #define KMOD_RETURN_SUCCESS KERN_SUCCESS
71 #define KMOD_RETURN_FAILURE KERN_FAILURE
73 typedef kern_return_t
kmod_start_func_t(struct kmod_info
*ki
, void *data
);
74 typedef kern_return_t
kmod_stop_func_t(struct kmod_info
*ki
, void *data
);
76 #if __DARWIN_ALIGN_POWER
77 #pragma options align=power
80 /* LP64todo - not 64-bit safe */
82 typedef struct kmod_info
{
83 struct kmod_info
*next
;
84 int info_version
; // version of this structure
86 char name
[KMOD_MAX_NAME
];
87 char version
[KMOD_MAX_NAME
];
88 int reference_count
; // # refs to this
89 kmod_reference_t
*reference_list
; // who this refs
90 vm_address_t address
; // starting address
91 vm_size_t size
; // total size
92 vm_size_t hdr_size
; // unwired hdr size
93 kmod_start_func_t
*start
;
94 kmod_stop_func_t
*stop
;
97 #if __DARWIN_ALIGN_POWER
98 #pragma options align=reset
101 typedef kmod_info_t
*kmod_info_array_t
;
103 #define KMOD_INFO_NAME kmod_info
104 #define KMOD_INFO_VERSION 1
106 #define KMOD_DECL(name, version) \
107 static kmod_start_func_t name ## _module_start; \
108 static kmod_stop_func_t name ## _module_stop; \
109 kmod_info_t KMOD_INFO_NAME = { 0, KMOD_INFO_VERSION, -1, \
110 { #name }, { version }, -1, 0, 0, 0, 0, \
111 name ## _module_start, \
112 name ## _module_stop };
114 #define KMOD_EXPLICIT_DECL(name, version, start, stop) \
115 kmod_info_t KMOD_INFO_NAME = { 0, KMOD_INFO_VERSION, -1, \
116 { #name }, { version }, -1, 0, 0, 0, 0, \
119 // the following is useful for libaries that don't need their own start and stop functions
120 #define KMOD_LIB_DECL(name, version) \
121 kmod_info_t KMOD_INFO_NAME = { 0, KMOD_INFO_VERSION, -1, \
122 { #name }, { version }, -1, 0, 0, 0, 0, \
123 kmod_default_start, \
127 // *************************************************************************************
128 // kmod kernel to user commands
129 // *************************************************************************************
131 #define KMOD_LOAD_EXTENSION_PACKET 1
132 #define KMOD_LOAD_WITH_DEPENDENCIES_PACKET 2
134 // for generic packets
135 #define KMOD_IOKIT_START_RANGE_PACKET 0x1000
136 #define KMOD_IOKIT_END_RANGE_PACKET 0x1fff
138 typedef struct kmod_load_extension_cmd
{
140 char name
[KMOD_MAX_NAME
];
141 } kmod_load_extension_cmd_t
;
143 typedef struct kmod_load_with_dependencies_cmd
{
145 char name
[KMOD_MAX_NAME
];
146 char dependencies
[1][KMOD_MAX_NAME
];
147 } kmod_load_with_dependencies_cmd_t
;
149 typedef struct kmod_generic_cmd
{
152 } kmod_generic_cmd_t
;
154 #ifdef KERNEL_PRIVATE
156 extern kmod_info_t
*kmod_lookupbyname(const char * name
);
157 extern kmod_info_t
*kmod_lookupbyid(kmod_t id
);
159 extern kmod_info_t
*kmod_lookupbyname_locked(const char * name
);
160 extern kmod_info_t
*kmod_lookupbyid_locked(kmod_t id
);
161 extern kmod_start_func_t kmod_default_start
;
162 extern kmod_stop_func_t kmod_default_stop
;
165 extern void kmod_init(void);
167 extern kern_return_t
kmod_create_fake(const char *name
, const char *version
);
168 extern kern_return_t
kmod_create_fake_with_address(const char *name
, const char *version
,
169 vm_address_t address
, vm_size_t size
,
171 extern kern_return_t
kmod_destroy_fake(kmod_t id
);
173 extern kern_return_t
kmod_load_extension(char *name
);
174 extern kern_return_t
kmod_load_extension_with_dependencies(char *name
, char **dependencies
);
175 extern kern_return_t
kmod_send_generic(int type
, void *data
, int size
);
177 extern kern_return_t
kmod_initialize_cpp(kmod_info_t
*info
);
178 extern kern_return_t
kmod_finalize_cpp(kmod_info_t
*info
);
180 extern void kmod_dump(vm_offset_t
*addr
, unsigned int dump_cnt
);
183 #endif /* KERNEL_PRIVATE */
185 #endif /* _MACH_KMOD_H_ */