aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/embeddable-dll-service/csharp/TunnelDll/Win32.cs
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2021-01-04 16:26:47 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2021-01-21 15:26:07 +0100
commite9ed04e8ba4f3bee171938a435d70b2f2302f6a8 (patch)
tree6d169de5dd2a34041e40836040e8e1d994500a14 /embeddable-dll-service/csharp/TunnelDll/Win32.cs
parentlocales: sync with crowdin (diff)
downloadwireguard-windows-e9ed04e8ba4f3bee171938a435d70b2f2302f6a8.tar.xz
wireguard-windows-e9ed04e8ba4f3bee171938a435d70b2f2302f6a8.zip
embeddable-dll-service: add more robust example for .NET 5
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'embeddable-dll-service/csharp/TunnelDll/Win32.cs')
-rw-r--r--embeddable-dll-service/csharp/TunnelDll/Win32.cs175
1 files changed, 175 insertions, 0 deletions
diff --git a/embeddable-dll-service/csharp/TunnelDll/Win32.cs b/embeddable-dll-service/csharp/TunnelDll/Win32.cs
new file mode 100644
index 00000000..d8447f7f
--- /dev/null
+++ b/embeddable-dll-service/csharp/TunnelDll/Win32.cs
@@ -0,0 +1,175 @@
+/* SPDX-License-Identifier: MIT
+ *
+ * Copyright (C) 2019-2021 WireGuard LLC. All Rights Reserved.
+ */
+
+using System;
+using System.Runtime.InteropServices;
+
+namespace Tunnel
+{
+ static class Win32
+ {
+ [Flags]
+ public enum ScmAccessRights
+ {
+ Connect = 0x0001,
+ CreateService = 0x0002,
+ EnumerateService = 0x0004,
+ Lock = 0x0008,
+ QueryLockStatus = 0x0010,
+ ModifyBootConfig = 0x0020,
+ StandardRightsRequired = 0xF0000,
+ AllAccess = (StandardRightsRequired | Connect | CreateService | EnumerateService | Lock | QueryLockStatus | ModifyBootConfig)
+ }
+
+ [Flags]
+ public enum ServiceAccessRights
+ {
+ QueryConfig = 0x1,
+ ChangeConfig = 0x2,
+ QueryStatus = 0x4,
+ EnumerateDependants = 0x8,
+ Start = 0x10,
+ Stop = 0x20,
+ PauseContinue = 0x40,
+ Interrogate = 0x80,
+ UserDefinedControl = 0x100,
+ Delete = 0x00010000,
+ StandardRightsRequired = 0xF0000,
+ AllAccess = (StandardRightsRequired | QueryConfig | ChangeConfig | QueryStatus | EnumerateDependants | Start | Stop | PauseContinue | Interrogate | UserDefinedControl)
+ }
+
+ [Flags]
+ public enum ServiceStartType
+ {
+ Boot = 0x00000000,
+ System = 0x00000001,
+ Auto = 0x00000002,
+ Demand = 0x00000003,
+ Disabled = 0x00000004
+ }
+
+ [Flags]
+ public enum ServiceControl
+ {
+ Stop = 0x00000001,
+ Pause = 0x00000002,
+ Continue = 0x00000003,
+ Interrogate = 0x00000004,
+ Shutdown = 0x00000005,
+ ParamChange = 0x00000006,
+ NetBindAdd = 0x00000007,
+ NetBindRemove = 0x00000008,
+ NetBindEnable = 0x00000009,
+ NetBindDisable = 0x0000000A
+ }
+
+ [Flags]
+ public enum ServiceError
+ {
+ Ignore = 0x00000000,
+ Normal = 0x00000001,
+ Severe = 0x00000002,
+ Critical = 0x00000003
+ }
+
+ [Flags]
+ public enum ServiceSidType
+ {
+ None = 0x00000000,
+ Unrestricted = 0x00000001,
+ Restricted = 0x00000003
+ }
+
+ [Flags]
+ public enum ServiceType
+ {
+ KernelDriver = 0x00000001,
+ FileSystemDriver = 0x00000002,
+ Win32OwnProcess = 0x00000010,
+ Win32ShareProcess = 0x00000020,
+ InteractiveProcess = 0x00000100
+ }
+
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode, Size = 8192), ComVisible(false)]
+ public struct ServiceSidInfo
+ {
+ public ServiceSidType serviceSidType;
+ };
+
+ public enum ServiceState
+ {
+ Unknown = -1,
+ NotFound = 0,
+ Stopped = 1,
+ StartPending = 2,
+ StopPending = 3,
+ Running = 4,
+ ContinuePending = 5,
+ PausePending = 6,
+ Paused = 7
+ }
+
+ [StructLayout(LayoutKind.Sequential)]
+ public class ServiceStatus
+ {
+ public int dwServiceType = 0;
+ public ServiceState dwCurrentState = 0;
+ public int dwControlsAccepted = 0;
+ public int dwWin32ExitCode = 0;
+ public int dwServiceSpecificExitCode = 0;
+ public int dwCheckPoint = 0;
+ public int dwWaitHint = 0;
+ }
+
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode, Size = 8192), ComVisible(false)]
+ public struct ServiceDescription
+ {
+ public String lpDescription;
+ };
+
+ public enum ServiceConfigType
+ {
+ Description = 1,
+ SidInfo = 5
+ }
+
+ [DllImport("advapi32.dll", EntryPoint = "OpenSCManagerW", ExactSpelling = true, CharSet = CharSet.Unicode, SetLastError = true)]
+ public static extern IntPtr OpenSCManager(string machineName, string databaseName, ScmAccessRights dwDesiredAccess);
+
+ [DllImport("advapi32.dll", SetLastError = true, CharSet = CharSet.Auto)]
+ public static extern IntPtr OpenService(IntPtr hSCManager, string lpServiceName, ServiceAccessRights dwDesiredAccess);
+
+ [DllImport("advapi32.dll", SetLastError = true)]
+ [return: MarshalAs(UnmanagedType.Bool)]
+ public static extern bool CloseServiceHandle(IntPtr hSCObject);
+
+ [DllImport("advapi32.dll", SetLastError = true)]
+ [return: MarshalAs(UnmanagedType.Bool)]
+ public static extern bool StartService(IntPtr hService, int dwNumServiceArgs, string[] lpServiceArgVectors);
+
+ [DllImport("advapi32.dll", SetLastError = true, CharSet = CharSet.Auto)]
+ public static extern IntPtr CreateService(IntPtr hSCManager, string lpServiceName, string lpDisplayName, ServiceAccessRights dwDesiredAccess, ServiceType dwServiceType, ServiceStartType dwStartType, ServiceError dwErrorControl, string lpBinaryPathName, string lpLoadOrderGroup, IntPtr lpdwTagId, string lpDependencies, string lp, string lpPassword);
+
+ [DllImport("advapi32.dll", SetLastError = true)]
+ [return: MarshalAs(UnmanagedType.Bool)]
+ public static extern bool DeleteService(IntPtr hService);
+
+ [DllImport("advapi32.dll", SetLastError = true)]
+ [return: MarshalAs(UnmanagedType.Bool)]
+ public static extern bool ControlService(IntPtr hService, ServiceControl dwControl, ServiceStatus lpServiceStatus);
+
+ [DllImport("advapi32.dll", SetLastError = true)]
+ [return: MarshalAs(UnmanagedType.Bool)]
+ public static extern bool QueryServiceStatus(IntPtr hService, ServiceStatus lpServiceStatus);
+
+ [DllImport("advapi32.dll", EntryPoint = "ChangeServiceConfig2", CharSet = CharSet.Unicode, SetLastError = true, CallingConvention = CallingConvention.StdCall)]
+ [return: MarshalAs(UnmanagedType.Bool)]
+ public static extern bool ChangeServiceConfig2(IntPtr hService, ServiceConfigType dwInfoLevel, ref ServiceSidType lpInfo);
+
+ [DllImport("advapi32.dll", EntryPoint = "ChangeServiceConfig2", CharSet = CharSet.Unicode, SetLastError = true, CallingConvention = CallingConvention.StdCall)]
+ [return: MarshalAs(UnmanagedType.Bool)]
+ public static extern bool ChangeServiceConfig2(IntPtr hService, ServiceConfigType dwInfoLevel, ref ServiceDescription lpInfo);
+ }
+}