aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/main.go
diff options
context:
space:
mode:
authorSimon Rozman <simon@rozman.si>2019-08-29 11:04:07 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2019-08-30 08:47:21 -0600
commita935ce44c26a4f8ef33ba4610ca13833e4a34095 (patch)
tree4c57eadc8d704277c3f03550896122115418941e /main.go
parentelevate: check for desktop admin ownership (diff)
downloadwireguard-windows-a935ce44c26a4f8ef33ba4610ca13833e4a34095.tar.xz
wireguard-windows-a935ce44c26a4f8ef33ba4610ca13833e4a34095.zip
main: display localized "Administrators" group name
Signed-off-by: Simon Rozman <simon@rozman.si>
Diffstat (limited to '')
-rw-r--r--main.go12
1 files changed, 8 insertions, 4 deletions
diff --git a/main.go b/main.go
index ef14afde..d32ea7f7 100644
--- a/main.go
+++ b/main.go
@@ -40,6 +40,10 @@ func fatal(v ...interface{}) {
os.Exit(1)
}
+func fatalf(format string, v ...interface{}) {
+ fatal(fmt.Sprintf(format, v...))
+}
+
func info(title string, format string, v ...interface{}) {
windows.MessageBox(0, windows.StringToUTF16Ptr(fmt.Sprintf(format, v...)), windows.StringToUTF16Ptr(title), windows.MB_ICONINFORMATION)
}
@@ -61,7 +65,7 @@ func checkForWow64() {
}
err = windows.IsWow64Process(p, &b)
if err != nil {
- fatal("Unable to determine whether the process is running under WOW64: ", err)
+ fatalf("Unable to determine whether the process is running under WOW64: %v", err)
}
if b {
fatal("You must use the 64-bit version of WireGuard on this computer.")
@@ -72,18 +76,18 @@ func checkForAdminGroup() {
// This is not a security check, but rather a user-confusion one.
processToken, err := windows.OpenCurrentProcessToken()
if err != nil {
- fatal("Unable to open current process token: ", err)
+ fatalf("Unable to open current process token: %v", err)
}
defer processToken.Close()
if !elevate.TokenIsElevatedOrElevatable(processToken) {
- fatal("WireGuard may only be used by users who are a member of the Builtin Administrators group.")
+ fatalf("WireGuard may only be used by users who are a member of the Builtin %s group.", elevate.AdminGroupName())
}
}
func checkForAdminDesktop() {
adminDesktop, err := elevate.IsAdminDesktop()
if !adminDesktop && err == nil {
- fatal("WireGuard is running, but the UI is only accessible from desktops of the Builtin Administrators group.")
+ fatalf("WireGuard is running, but the UI is only accessible from desktops of the Builtin %s group.", elevate.AdminGroupName())
}
}