1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
/*
* Copyright (C) 2003-2005 Pontus Fuchs, Giridhar Pemmasani
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#include "ndis.h"
#include "iw_ndis.h"
#include "loader.h"
#include "pnp.h"
#include "wrapper.h"
char *if_name = "wlan%d";
int proc_uid, proc_gid;
int hangcheck_interval;
static char *utils_version = UTILS_VERSION;
#if defined(DEBUG) && (DEBUG > 0)
int debug = DEBUG;
#else
int debug = 0;
#endif
WRAP_MODULE_PARM_STRING(if_name, 0400);
MODULE_PARM_DESC(if_name, "Network interface name or template "
"(default: wlan%d)");
WRAP_MODULE_PARM_INT(proc_uid, 0600);
MODULE_PARM_DESC(proc_uid, "The uid of the files created in /proc "
"(default: 0).");
WRAP_MODULE_PARM_INT(proc_gid, 0600);
MODULE_PARM_DESC(proc_gid, "The gid of the files created in /proc "
"(default: 0).");
WRAP_MODULE_PARM_INT(debug, 0600);
MODULE_PARM_DESC(debug, "debug level");
/* 0 - default value provided by NDIS driver,
* positive value - force hangcheck interval to that many seconds
* negative value - disable hangcheck
*/
WRAP_MODULE_PARM_INT(hangcheck_interval, 0600);
MODULE_PARM_DESC(hangcheck_interval, "The interval, in seconds, for checking"
" if driver is hung. (default: 0)");
WRAP_MODULE_PARM_STRING(utils_version, 0400);
MODULE_PARM_DESC(utils_version, "Compatible version of utils "
"(read only: " UTILS_VERSION ")");
MODULE_AUTHOR("ndiswrapper team <ndiswrapper-general@lists.sourceforge.net>");
#ifdef MODULE_DESCRIPTION
MODULE_DESCRIPTION("NDIS wrapper driver");
#endif
#ifdef MODULE_VERSION
MODULE_VERSION(DRIVER_VERSION);
#endif
MODULE_LICENSE("GPL");
static void module_cleanup(void)
{
loader_exit();
#ifdef ENABLE_USB
usb_exit();
#endif
wrap_procfs_remove();
wrapndis_exit();
ndis_exit();
rtl_exit();
crt_exit();
ntoskernel_exit();
wrapmem_exit();
}
static int __init wrapper_init(void)
{
printk(KERN_INFO "%s version %s loaded (smp=%s, preempt=%s)\n",
DRIVER_NAME, DRIVER_VERSION,
#ifdef CONFIG_SMP
"yes"
#else
"no"
#endif
,
#ifdef CONFIG_PREEMPT_RT
"rt"
#elif defined(CONFIG_PREEMPT)
"yes"
#else
"no"
#endif
);
if (wrapmem_init() || ntoskernel_init() || crt_init() ||
rtl_init() || ndis_init() || wrapndis_init() ||
#ifdef ENABLE_USB
usb_init() ||
#endif
wrap_procfs_init() || loader_init()) {
module_cleanup();
ERROR("%s: initialization failed", DRIVER_NAME);
return -EINVAL;
}
EXIT1(return 0);
}
static void __exit wrapper_exit(void)
{
ENTER1("");
module_cleanup();
}
module_init(wrapper_init);
module_exit(wrapper_exit);
|