Functions | |
NTSTATUS | DriverEntry (IN PDRIVER_OBJECT DriverObject, IN PUNICODE_STRING RegistryPath) |
The initialization routine of the driver. | |
PWCHAR | getAdaptersList (VOID) |
Returns the list of the MACs available on the system. | |
PKEY_VALUE_PARTIAL_INFORMATION | getTcpBindings (VOID) |
Returns the MACs that bind to TCP/IP. | |
BOOLEAN | NPF_CreateDevice (IN OUT PDRIVER_OBJECT adriverObjectP, IN PUNICODE_STRING amacNameP) |
Creates a device for a given MAC. | |
NTSTATUS | NPF_Open (IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp) |
Opens a new instance of the driver. | |
VOID | NPF_OpenAdapterComplete (IN NDIS_HANDLE ProtocolBindingContext, IN NDIS_STATUS Status, IN NDIS_STATUS OpenErrorStatus) |
Ends the opening of an adapter. | |
NTSTATUS | NPF_Cleanup (IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp) |
Closes an instance of the driver. | |
NTSTATUS | NPF_Close (IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp) |
VOID | NPF_CloseAdapterComplete (IN NDIS_HANDLE ProtocolBindingContext, IN NDIS_STATUS Status) |
Ends the closing of an adapter. | |
NDIS_STATUS | NPF_tap (IN NDIS_HANDLE ProtocolBindingContext, IN NDIS_HANDLE MacReceiveContext, IN PVOID HeaderBuffer, IN UINT HeaderBufferSize, IN PVOID LookAheadBuffer, IN UINT LookaheadBufferSize, IN UINT PacketSize) |
Callback invoked by NDIS when a packet arrives from the network. | |
VOID | NPF_TransferDataComplete (IN NDIS_HANDLE ProtocolBindingContext, IN PNDIS_PACKET Packet, IN NDIS_STATUS Status, IN UINT BytesTransferred) |
Ends the transfer of a packet. | |
VOID | NPF_ReceiveComplete (IN NDIS_HANDLE ProtocolBindingContext) |
Callback function that signals the end of a packet reception. | |
NTSTATUS | NPF_IoControl (IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp) |
Handles the IOCTL calls. | |
VOID | NPF_RequestComplete (IN NDIS_HANDLE ProtocolBindingContext, IN PNDIS_REQUEST pRequest, IN NDIS_STATUS Status) |
Ends an OID request. | |
NTSTATUS | NPF_Write (IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp) |
Writes a raw packet to the network. | |
INT | NPF_BufferedWrite (IN PIRP Irp, IN PCHAR UserBuff, IN ULONG UserBuffSize, BOOLEAN sync) |
Writes a buffer of raw packets to the network. | |
VOID | NPF_WaitEndOfBufferedWrite (POPEN_INSTANCE Open) |
Waits the completion of all the sends performed by NPF_BufferedWrite. | |
VOID | NPF_SendComplete (IN NDIS_HANDLE ProtocolBindingContext, IN PNDIS_PACKET pPacket, IN NDIS_STATUS Status) |
Ends a send operation. | |
VOID | NPF_ResetComplete (IN NDIS_HANDLE ProtocolBindingContext, IN NDIS_STATUS Status) |
Ends a reset of the adapter. | |
VOID | NPF_Status (IN NDIS_HANDLE ProtocolBindingContext, IN NDIS_STATUS Status, IN PVOID StatusBuffer, IN UINT StatusBufferSize) |
Callback for NDIS StatusHandler. Not used by NPF. | |
VOID | NPF_StatusComplete (IN NDIS_HANDLE ProtocolBindingContext) |
Callback for NDIS StatusCompleteHandler. Not used by NPF. | |
VOID | NPF_Unload (IN PDRIVER_OBJECT DriverObject) |
Function called by the OS when NPF is unloaded. | |
NTSTATUS | NPF_Read (IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp) |
Function that serves the user's reads. | |
NTSTATUS | NPF_ReadRegistry (IN PWSTR *MacDriverName, IN PWSTR *PacketDriverName, IN PUNICODE_STRING RegistryPath) |
Reads the registry keys associated woth NPF if the driver is manually installed via the control panel. | |
NTSTATUS | NPF_QueryRegistryRoutine (IN PWSTR ValueName, IN ULONG ValueType, IN PVOID ValueData, IN ULONG ValueLength, IN PVOID Context, IN PVOID EntryContext) |
Function used by NPF_ReadRegistry() to quesry the registry keys associated woth NPF if the driver is manually installed via the control panel. | |
VOID | NPF_BindAdapter (OUT PNDIS_STATUS Status, IN NDIS_HANDLE BindContext, IN PNDIS_STRING DeviceName, IN PVOID SystemSpecific1, IN PVOID SystemSpecific2) |
Callback for NDIS BindAdapterHandler. Not used by NPF. | |
VOID | NPF_UnbindAdapter (OUT PNDIS_STATUS Status, IN NDIS_HANDLE ProtocolBindingContext, IN NDIS_HANDLE UnbindContext) |
Callback for NDIS UnbindAdapterHandler. | |
NTSTATUS | NPF_OpenDumpFile (POPEN_INSTANCE Open, PUNICODE_STRING fileName, BOOLEAN append) |
Creates the file that will receive the packets when the driver is in dump mode. | |
NTSTATUS | NPF_StartDump (POPEN_INSTANCE Open) |
Starts dump to file. | |
VOID | NPF_DumpThread (PVOID Open) |
The dump thread. | |
NTSTATUS | NPF_SaveCurrentBuffer (POPEN_INSTANCE Open) |
Saves the content of the packet buffer to the file associated with current instance. | |
VOID | NPF_WriteDumpFile (PFILE_OBJECT FileObject, PLARGE_INTEGER Offset, ULONG Length, PMDL Mdl, PIO_STATUS_BLOCK IoStatusBlock) |
Writes a block of packets on the dump file. | |
NTSTATUS | NPF_CloseDumpFile (POPEN_INSTANCE Open) |
Closes the dump file associated with an instance of the driver. | |
VOID | NPF_CloseOpenInstance (POPEN_INSTANCE pOpen) |
BOOLEAN | NPF_StartUsingBinding (IN POPEN_INSTANCE pOpen) |
VOID | NPF_StopUsingBinding (IN POPEN_INSTANCE pOpen) |
VOID | NPF_CloseBinding (IN POPEN_INSTANCE pOpen) |
NTSTATUS | NPF_GetDeviceMTU (IN POPEN_INSTANCE pOpen, IN PIRP pIrp, OUT PUINT pMtu) |
UINT | GetBuffOccupation (POPEN_INSTANCE Open) |
Returns the amount of bytes present in the packet buffer. | |
JIT_BPF_Filter * | BPF_jitter (struct bpf_insn *fp, INT nins) |
BPF jitter, builds an x86 function from a BPF program. | |
BPF_filter_function | BPFtoX86 (struct bpf_insn *ins, UINT nins, INT *mem) |
Translates a set of BPF instructions in a set of x86 ones. | |
void | BPF_Destroy_JIT_Filter (JIT_BPF_Filter *Filter) |
Deletes a filtering function that was previously created by BPF_jitter(). |
void BPF_Destroy_JIT_Filter | ( | JIT_BPF_Filter * | Filter | ) |
Deletes a filtering function that was previously created by BPF_jitter().
Filter | The filter to destroy. |
JIT_BPF_Filter* BPF_jitter | ( | struct bpf_insn * | fp, | |
INT | nins | |||
) |
BPF jitter, builds an x86 function from a BPF program.
fp | The BPF pseudo-assembly filter that will be translated into x86 code. | |
nins | Number of instructions of the input filter. |
BPF_filter_function BPFtoX86 | ( | struct bpf_insn * | ins, | |
UINT | nins, | |||
INT * | mem | |||
) |
Translates a set of BPF instructions in a set of x86 ones.
ins | Pointer to the BPF instructions that will be translated into x86 code. | |
nins | Number of instructions to translate. | |
mem | Memory used by the x86 function to emulate the RAM of the BPF pseudo processor. |
NTSTATUS DriverEntry | ( | IN PDRIVER_OBJECT | DriverObject, | |
IN PUNICODE_STRING | RegistryPath | |||
) |
The initialization routine of the driver.
DriverObject | The driver object of NPF created by the system. | |
RegistryPath | The registry path containing the keys related to the driver. |
PWCHAR getAdaptersList | ( | VOID | ) |
Returns the list of the MACs available on the system.
UINT GetBuffOccupation | ( | POPEN_INSTANCE | Open | ) |
Returns the amount of bytes present in the packet buffer.
Open | The NPF instance that closes the file. |
PKEY_VALUE_PARTIAL_INFORMATION getTcpBindings | ( | VOID | ) |
Returns the MACs that bind to TCP/IP.
VOID NPF_BindAdapter | ( | OUT PNDIS_STATUS | Status, | |
IN NDIS_HANDLE | BindContext, | |||
IN PNDIS_STRING | DeviceName, | |||
IN PVOID | SystemSpecific1, | |||
IN PVOID | SystemSpecific2 | |||
) |
Callback for NDIS BindAdapterHandler. Not used by NPF.
Function called by NDIS when a new adapter is installed on the machine With Plug and Play.
INT NPF_BufferedWrite | ( | IN PIRP | Irp, | |
IN PCHAR | UserBuff, | |||
IN ULONG | UserBuffSize, | |||
BOOLEAN | sync | |||
) |
Writes a buffer of raw packets to the network.
Irp | Pointer to the IRP containing the user request. | |
UserBuff | Pointer to the buffer containing the packets to send. | |
UserBuffSize | Size of the buffer with the packets. | |
sync | If set to TRUE, the packets are transmitted respecting their timestamps. |
NTSTATUS NPF_Cleanup | ( | IN PDEVICE_OBJECT | DeviceObject, | |
IN PIRP | Irp | |||
) |
Closes an instance of the driver.
DeviceObject | Pointer to the device object utilized by the user. | |
Irp | Pointer to the IRP containing the user request. |
NTSTATUS NPF_Close | ( | IN PDEVICE_OBJECT | DeviceObject, | |
IN PIRP | Irp | |||
) |
VOID NPF_CloseAdapterComplete | ( | IN NDIS_HANDLE | ProtocolBindingContext, | |
IN NDIS_STATUS | Status | |||
) |
Ends the closing of an adapter.
ProtocolBindingContext | Context of the function. Contains a pointer to the OPEN_INSTANCE structure associated with the current instance. | |
Status | Status of the close operation performed by NDIS. |
VOID NPF_CloseBinding | ( | IN POPEN_INSTANCE | pOpen | ) |
NTSTATUS NPF_CloseDumpFile | ( | POPEN_INSTANCE | Open | ) |
Closes the dump file associated with an instance of the driver.
Open | The NPF instance that closes the file. |
VOID NPF_CloseOpenInstance | ( | POPEN_INSTANCE | pOpen | ) |
BOOLEAN NPF_CreateDevice | ( | IN OUT PDRIVER_OBJECT | adriverObjectP, | |
IN PUNICODE_STRING | amacNameP | |||
) |
Creates a device for a given MAC.
adriverObjectP | The driver object that will be associated with the device, i.e. the one of NPF. | |
amacNameP | The name of the network interface that the device will point. |
VOID NPF_DumpThread | ( | PVOID | Open | ) |
The dump thread.
Open | The NPF instance that creates the thread. |
NTSTATUS NPF_GetDeviceMTU | ( | IN POPEN_INSTANCE | pOpen, | |
IN PIRP | pIrp, | |||
OUT PUINT | pMtu | |||
) |
NTSTATUS NPF_IoControl | ( | IN PDEVICE_OBJECT | DeviceObject, | |
IN PIRP | Irp | |||
) |
Handles the IOCTL calls.
DeviceObject | Pointer to the device object utilized by the user. | |
Irp | Pointer to the IRP containing the user request. |
NTSTATUS NPF_Open | ( | IN PDEVICE_OBJECT | DeviceObject, | |
IN PIRP | Irp | |||
) |
Opens a new instance of the driver.
DeviceObject | Pointer to the device object utilized by the user. | |
Irp | Pointer to the IRP containing the user request. |
VOID NPF_OpenAdapterComplete | ( | IN NDIS_HANDLE | ProtocolBindingContext, | |
IN NDIS_STATUS | Status, | |||
IN NDIS_STATUS | OpenErrorStatus | |||
) |
Ends the opening of an adapter.
ProtocolBindingContext | Context of the function. Contains a pointer to the OPEN_INSTANCE structure associated with the current instance. | |
Status | Status of the opening operation performed by NDIS. | |
OpenErrorStatus | not used by NPF. |
NTSTATUS NPF_OpenDumpFile | ( | POPEN_INSTANCE | Open, | |
PUNICODE_STRING | fileName, | |||
BOOLEAN | append | |||
) |
Creates the file that will receive the packets when the driver is in dump mode.
Open | The NPF instance that opens the file. | |
fileName | Pointer to a UNICODE string containing the name of the file. | |
append | Boolean value that specifies if the data must be appended to the file. |
NTSTATUS NPF_QueryRegistryRoutine | ( | IN PWSTR | ValueName, | |
IN ULONG | ValueType, | |||
IN PVOID | ValueData, | |||
IN ULONG | ValueLength, | |||
IN PVOID | Context, | |||
IN PVOID | EntryContext | |||
) |
Function used by NPF_ReadRegistry() to quesry the registry keys associated woth NPF if the driver is manually installed via the control panel.
Normally not used in recent versions of NPF.
NTSTATUS NPF_Read | ( | IN PDEVICE_OBJECT | DeviceObject, | |
IN PIRP | Irp | |||
) |
Function that serves the user's reads.
DeviceObject | Pointer to the device used by the user. | |
Irp | Pointer to the IRP containing the user request. |
NTSTATUS NPF_ReadRegistry | ( | IN PWSTR * | MacDriverName, | |
IN PWSTR * | PacketDriverName, | |||
IN PUNICODE_STRING | RegistryPath | |||
) |
Reads the registry keys associated woth NPF if the driver is manually installed via the control panel.
Normally not used in recent versions of NPF.
VOID NPF_ReceiveComplete | ( | IN NDIS_HANDLE | ProtocolBindingContext | ) |
Callback function that signals the end of a packet reception.
ProtocolBindingContext | Context of the function. Contains a pointer to the OPEN_INSTANCE structure associated with the current instance. |
VOID NPF_RequestComplete | ( | IN NDIS_HANDLE | ProtocolBindingContext, | |
IN PNDIS_REQUEST | pRequest, | |||
IN NDIS_STATUS | Status | |||
) |
Ends an OID request.
ProtocolBindingContext | Context of the function. Contains a pointer to the OPEN_INSTANCE structure associated with the current instance. | |
pRequest | Pointer to the completed OID request. | |
Status | Status of the operation. |
VOID NPF_ResetComplete | ( | IN NDIS_HANDLE | ProtocolBindingContext, | |
IN NDIS_STATUS | Status | |||
) |
Ends a reset of the adapter.
ProtocolBindingContext | Context of the function. Contains a pointer to the OPEN_INSTANCE structure associated with the current instance. | |
Status | Status of the operation. |
NTSTATUS NPF_SaveCurrentBuffer | ( | POPEN_INSTANCE | Open | ) |
Saves the content of the packet buffer to the file associated with current instance.
Open | The NPF instance that creates the thread. |
VOID NPF_SendComplete | ( | IN NDIS_HANDLE | ProtocolBindingContext, | |
IN PNDIS_PACKET | pPacket, | |||
IN NDIS_STATUS | Status | |||
) |
Ends a send operation.
ProtocolBindingContext | Context of the function. Contains a pointer to the OPEN_INSTANCE structure associated with the current instance. | |
pPacket | Pointer to the NDIS PACKET structure used by NPF_Write() to send the packet. | |
Status | Status of the operation. |
NTSTATUS NPF_StartDump | ( | POPEN_INSTANCE | Open | ) |
Starts dump to file.
Open | The NPF instance that opens the file. |
BOOLEAN NPF_StartUsingBinding | ( | IN POPEN_INSTANCE | pOpen | ) |
VOID NPF_Status | ( | IN NDIS_HANDLE | ProtocolBindingContext, | |
IN NDIS_STATUS | Status, | |||
IN PVOID | StatusBuffer, | |||
IN UINT | StatusBufferSize | |||
) |
Callback for NDIS StatusHandler. Not used by NPF.
VOID NPF_StatusComplete | ( | IN NDIS_HANDLE | ProtocolBindingContext | ) |
Callback for NDIS StatusCompleteHandler. Not used by NPF.
VOID NPF_StopUsingBinding | ( | IN POPEN_INSTANCE | pOpen | ) |
NDIS_STATUS NPF_tap | ( | IN NDIS_HANDLE | ProtocolBindingContext, | |
IN NDIS_HANDLE | MacReceiveContext, | |||
IN PVOID | HeaderBuffer, | |||
IN UINT | HeaderBufferSize, | |||
IN PVOID | LookAheadBuffer, | |||
IN UINT | LookaheadBufferSize, | |||
IN UINT | PacketSize | |||
) |
Callback invoked by NDIS when a packet arrives from the network.
ProtocolBindingContext | Context of the function. Points to a OPEN_INSTANCE structure that identifies the NPF instance to which the packets are destined. | |
MacReceiveContext | Handle that identifies the underlying NIC driver that generated the request. This value must be used when the packet is transferred from the NIC driver with NdisTransferData(). | |
HeaderBuffer | Pointer to the buffer in the NIC driver memory that contains the header of the packet. | |
HeaderBufferSize | Size in bytes of the header. | |
LookAheadBuffer | Pointer to the buffer in the NIC driver's memory that contains the incoming packet's data available to NPF. This value does not necessarily coincide with the actual size of the packet, since only a portion can be available at this time. The remaining portion can be obtained with the NdisTransferData() NDIS function. | |
LookaheadBufferSize | Size in bytes of the lookahead buffer. | |
PacketSize | Total size of the incoming packet, excluded the header. |
VOID NPF_TransferDataComplete | ( | IN NDIS_HANDLE | ProtocolBindingContext, | |
IN PNDIS_PACKET | Packet, | |||
IN NDIS_STATUS | Status, | |||
IN UINT | BytesTransferred | |||
) |
Ends the transfer of a packet.
ProtocolBindingContext | Context of the function. Contains a pointer to the OPEN_INSTANCE structure associated with the current instance. | |
Packet | Pointer to the NDIS_PACKET structure that received the packet data. | |
Status | Status of the transfer operation. | |
BytesTransferred | Amount of bytes transferred. |
VOID NPF_UnbindAdapter | ( | OUT PNDIS_STATUS | Status, | |
IN NDIS_HANDLE | ProtocolBindingContext, | |||
IN NDIS_HANDLE | UnbindContext | |||
) |
Callback for NDIS UnbindAdapterHandler.
Status | out variable filled by NPF_UnbindAdapter with the status of the unbind operation. | |
ProtocolBindingContext | Context of the function. Contains a pointer to the OPEN_INSTANCE structure associated with current instance. | |
UnbindContext | Specifies a handle, supplied by NDIS, that NPF can use to complete the opration. |
VOID NPF_Unload | ( | IN PDRIVER_OBJECT | DriverObject | ) |
Function called by the OS when NPF is unloaded.
DriverObject | The driver object of NPF created by the system. |
VOID NPF_WaitEndOfBufferedWrite | ( | POPEN_INSTANCE | Open | ) |
Waits the completion of all the sends performed by NPF_BufferedWrite.
Open | Pointer to open context structure |
NTSTATUS NPF_Write | ( | IN PDEVICE_OBJECT | DeviceObject, | |
IN PIRP | Irp | |||
) |
Writes a raw packet to the network.
DeviceObject | Pointer to the device object on which the user wrote the packet. | |
Irp | Pointer to the IRP containing the user request. |
VOID NPF_WriteDumpFile | ( | PFILE_OBJECT | FileObject, | |
PLARGE_INTEGER | Offset, | |||
ULONG | Length, | |||
PMDL | Mdl, | |||
PIO_STATUS_BLOCK | IoStatusBlock | |||
) |
Writes a block of packets on the dump file.
FileObject | The file object that will receive the packets. | |
Offset | The offset in the file where the packets will be put. | |
Length | The amount of bytes to write. | |
Mdl | MDL mapping the memory buffer that will be written to disk. | |
IoStatusBlock | Used by the function to return the status of the operation. |
documentation. Copyright (c) 2002-2005 Politecnico di Torino. Copyright (c) 2005-2008 CACE Technologies. All rights reserved.