- The process id is returned as a message formatted in the same manner as error messages from the service to the client: i.e., a three-line message with pid formatted as 0x%08x on line 1, "Process Id" on line 2 and a blank line 3.
This provides a way for service clients to check the status of openvpn and terminate it without needing management interface or exit event. Useful when the interactive service is used from a launch script, or to force-terminate openvpn from the GUI if/when needed. Signed-off-by: Selva Nair <selva.n...@gmail.com> --- src/openvpnserv/interactive.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/openvpnserv/interactive.c b/src/openvpnserv/interactive.c index 2453f17..c80a181 100644 --- a/src/openvpnserv/interactive.c +++ b/src/openvpnserv/interactive.c @@ -230,6 +230,18 @@ WritePipeAsync (HANDLE pipe, LPVOID data, DWORD size, DWORD count, LPHANDLE even return AsyncPipeOp (write, pipe, data, size, count, events); } +static VOID +ReturnProcessId (HANDLE pipe, DWORD pid, DWORD count, LPHANDLE events) +{ + const WCHAR msg[] = L"\nProcess ID\n"; + WCHAR buf[10 + _countof(msg)]; /* 10 characters for the pid in 0x%08x format */ + + /* A 3-line string like an error message but with pid in place of error number */ + _snwprintf (buf, _countof(buf), L"0x%08x%s", pid, msg); + buf[_countof(buf) - 1] = '\0'; + + WritePipeAsync (pipe, buf, wcslen (buf) * 2, count, events); +} static VOID ReturnError (HANDLE pipe, DWORD error, LPCWSTR func, DWORD count, LPHANDLE events) @@ -1293,6 +1305,8 @@ RunOpenvpn (LPVOID p) goto out; } + ReturnProcessId (pipe, proc_info.dwProcessId, 1, &exit_event); + CloseHandleEx (&stdout_write); CloseHandleEx (&stdin_read); CloseHandleEx (&svc_pipe); -- 1.7.10.4