Skip to content

Commit

Permalink
Replace OvpnDelPeer with OvpnStopVPN
Browse files Browse the repository at this point in the history
In preparation for MP support, rename existing OvpnDelPeer()
implementation to OvpnStopVPN() - which deletes all peers and
closes the device socket. This looks more like "stop VPN" behavior
for both P2P and MP modes.

Signed-off-by: Lev Stipakov <[email protected]>
  • Loading branch information
lstipakov committed Sep 11, 2024
1 parent 4690799 commit 92305b4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 48 deletions.
5 changes: 2 additions & 3 deletions Driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ OvpnEvtIoDeviceControl(WDFQUEUE queue, WDFREQUEST request, size_t outputBufferLe
break;

case OVPN_IOCTL_DEL_PEER:
status = OvpnPeerDel(device);
status = OvpnStopVPN(device);
break;

case OVPN_IOCTL_START_VPN:
Expand Down Expand Up @@ -347,8 +347,7 @@ VOID OvpnEvtFileCleanup(WDFFILEOBJECT fileObject) {

POVPN_DEVICE device = OvpnGetDeviceContext(WdfFileObjectGetDevice(fileObject));

// peer might already be deleted
(VOID)OvpnPeerDel(device);
(VOID)OvpnStopVPN(device);

if (device->Adapter != NULL) {
OvpnAdapterSetLinkState(OvpnGetAdapterContext(device->Adapter), MediaConnectStateDisconnected);
Expand Down
40 changes: 0 additions & 40 deletions peer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,46 +161,6 @@ OvpnPeerNew(POVPN_DEVICE device, WDFREQUEST request)
return status;
}

_Use_decl_annotations_
NTSTATUS
OvpnPeerDel(POVPN_DEVICE device)
{
LOG_ENTER();

KIRQL kirql = ExAcquireSpinLockExclusive(&device->SpinLock);

PWSK_SOCKET socket = device->Socket.Socket;

device->Socket.Socket = NULL;
OvpnFlushPeers(device);

RtlZeroMemory(&device->Socket.TcpState, sizeof(OvpnSocketTcpState));
RtlZeroMemory(&device->Socket.UdpState, sizeof(OvpnSocketUdpState));

// OvpnSocketClose requires PASSIVE_LEVEL, so must release lock
ExReleaseSpinLockExclusive(&device->SpinLock, kirql);

LOG_IF_NOT_NT_SUCCESS(OvpnSocketClose(socket));

// flush buffers in control queue so that client won't get control channel messages from previous session
while (LIST_ENTRY* entry = OvpnBufferQueueDequeue(device->ControlRxBufferQueue)) {
OVPN_RX_BUFFER* buffer = CONTAINING_RECORD(entry, OVPN_RX_BUFFER, QueueListEntry);
// return buffer back to pool
OvpnRxBufferPoolPut(buffer);
}

WDFREQUEST request;
while (NT_SUCCESS(WdfIoQueueRetrieveNextRequest(device->PendingReadsQueue, &request))) {
ULONG_PTR bytesCopied = 0;
LOG_INFO("Cancel IO request from manual queue");
WdfRequestCompleteWithInformation(request, STATUS_CANCELLED, bytesCopied);
}

LOG_EXIT();

return STATUS_SUCCESS;
}

_Use_decl_annotations_
NTSTATUS OvpnPeerSet(POVPN_DEVICE device, WDFREQUEST request)
{
Expand Down
5 changes: 0 additions & 5 deletions peer.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,6 @@ _IRQL_requires_(PASSIVE_LEVEL)
NTSTATUS
OvpnPeerNew(_In_ POVPN_DEVICE device, WDFREQUEST request);

_Must_inspect_result_
_IRQL_requires_(PASSIVE_LEVEL)
NTSTATUS
OvpnPeerDel(_In_ POVPN_DEVICE device);

_Must_inspect_result_
_Requires_exclusive_lock_held_(device->SpinLock)
NTSTATUS
Expand Down

0 comments on commit 92305b4

Please sign in to comment.