Update to OpenVPN 2.1rc17
[tomato.git] / release / src / router / openvpn / tap-win32 / prototypes.h
blobc342ad3b014f9130e5ad419e6d257f2244636fc0
1 /*
2 * TAP-Win32/TAP-Win64 -- A kernel driver to provide virtual tap
3 * device functionality on Windows.
5 * This code was inspired by the CIPE-Win32 driver by Damion K. Wilson.
7 * This source code is Copyright (C) 2002-2009 OpenVPN Technologies, Inc.,
8 * and is released under the GPL version 2 (see below), however due
9 * to the extra costs of supporting Windows Vista, OpenVPN Solutions
10 * LLC reserves the right to change the terms of the TAP-Win32/TAP-Win64
11 * license for versions 9.1 and higher prior to the official release of
12 * OpenVPN 2.1.
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2
16 * as published by the Free Software Foundation.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program (see the file COPYING included with this
25 * distribution); if not, write to the Free Software Foundation, Inc.,
26 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #ifndef TAP_PROTOTYPES_DEFINED
30 #define TAP_PROTOTYPES_DEFINED
32 NTSTATUS DriverEntry
34 IN PDRIVER_OBJECT p_DriverObject,
35 IN PUNICODE_STRING p_RegistryPath
38 VOID TapDriverUnload
40 IN PDRIVER_OBJECT p_DriverObject
43 NDIS_STATUS AdapterCreate
45 OUT PNDIS_STATUS p_ErrorStatus,
46 OUT PUINT p_MediaIndex,
47 IN PNDIS_MEDIUM p_Media,
48 IN UINT p_MediaCount,
49 IN NDIS_HANDLE p_AdapterHandle,
50 IN NDIS_HANDLE p_ConfigurationHandle
53 VOID AdapterHalt
55 IN NDIS_HANDLE p_AdapterContext
58 VOID AdapterFreeResources
60 TapAdapterPointer p_Adapter
63 NDIS_STATUS AdapterReset
65 OUT PBOOLEAN p_AddressingReset,
66 IN NDIS_HANDLE p_AdapterContext
69 NDIS_STATUS AdapterQuery
71 IN NDIS_HANDLE p_AdapterContext,
72 IN NDIS_OID p_OID,
73 IN PVOID p_Buffer,
74 IN ULONG p_BufferLength,
75 OUT PULONG p_BytesWritten,
76 OUT PULONG p_BytesNeeded
79 NDIS_STATUS AdapterModify
81 IN NDIS_HANDLE p_AdapterContext,
82 IN NDIS_OID p_OID,
83 IN PVOID p_Buffer,
84 IN ULONG p_BufferLength,
85 OUT PULONG p_BytesRead,
86 OUT PULONG p_BytesNeeded
89 NDIS_STATUS AdapterTransmit
91 IN NDIS_HANDLE p_AdapterContext,
92 IN PNDIS_PACKET p_Packet,
93 IN UINT p_Flags
96 NDIS_STATUS AdapterReceive
98 OUT PNDIS_PACKET p_Packet,
99 OUT PUINT p_Transferred,
100 IN NDIS_HANDLE p_AdapterContext,
101 IN NDIS_HANDLE p_ReceiveContext,
102 IN UINT p_Offset,
103 IN UINT p_ToTransfer
106 NTSTATUS TapDeviceHook
108 IN PDEVICE_OBJECT p_DeviceObject,
109 IN PIRP p_IRP
112 NDIS_STATUS CreateTapDevice
114 TapExtensionPointer p_Extension,
115 const char *p_Name
118 VOID DestroyTapDevice
120 TapExtensionPointer p_Extension
123 VOID TapDeviceFreeResources
125 TapExtensionPointer p_Extension
128 NTSTATUS CompleteIRP
130 IN PIRP p_IRP,
131 IN TapPacketPointer p_PacketBuffer,
132 IN CCHAR PriorityBoost
135 VOID CancelIRPCallback
137 IN PDEVICE_OBJECT p_DeviceObject,
138 IN PIRP p_IRP
141 VOID CancelIRP
143 TapExtensionPointer p_Extension,
144 IN PIRP p_IRP,
145 BOOLEAN callback
148 VOID FlushQueues
150 TapExtensionPointer p_Extension
153 VOID ResetTapAdapterState
155 TapAdapterPointer p_Adapter
158 BOOLEAN ProcessARP
160 TapAdapterPointer p_Adapter,
161 const PARP_PACKET src,
162 const IPADDR adapter_ip,
163 const IPADDR ip_network,
164 const IPADDR ip_netmask,
165 const MACADDR mac
168 VOID SetMediaStatus
170 TapAdapterPointer p_Adapter,
171 BOOLEAN state
174 VOID InjectPacket
176 TapAdapterPointer p_Adapter,
177 UCHAR *packet,
178 const unsigned int len
181 VOID CheckIfDhcpAndTunMode
183 TapAdapterPointer p_Adapter
186 VOID HookDispatchFunctions();
188 #if ENABLE_NONADMIN
190 #if DDKVER_MAJOR < 5600
192 * Better solution for use on Vista DDK, but possibly not compatible with
193 * earlier DDKs:
195 * Eliminate the definition of SECURITY_DESCRIPTOR (and even ZwSetSecurityObject),
196 * and at the top of tapdrv.c change:
198 * #include <ndis.h>
199 * #include <ntstrsafe.h>
200 * #include <ntddk.h>
202 * To
204 * #include <ntifs.h>
205 * #include <ndis.h>
206 * #include <ntstrsafe.h>
208 typedef struct _SECURITY_DESCRIPTOR {
209 unsigned char opaque[64];
210 } SECURITY_DESCRIPTOR;
212 NTSYSAPI
213 NTSTATUS
214 NTAPI
215 ZwSetSecurityObject (
216 IN HANDLE Handle,
217 IN SECURITY_INFORMATION SecurityInformation,
218 IN PSECURITY_DESCRIPTOR SecurityDescriptor);
220 #endif
222 VOID AllowNonAdmin (TapExtensionPointer p_Extension);
224 #endif
226 struct WIN2K_NDIS_MINIPORT_BLOCK
228 unsigned char opaque[16];
229 UNICODE_STRING MiniportName; // how mini-port refers to us
232 #if PACKET_TRUNCATION_CHECK
234 VOID IPv4PacketSizeVerify
236 const UCHAR *data,
237 ULONG length,
238 BOOLEAN tun,
239 const char *prefix,
240 LONG *counter
243 #endif
245 #endif