1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:17:23 +08:00

Rename AdminChecker to ElevatedPrivilegesChecker, refactor elevated check

This commit is contained in:
Christine Chen 2021-04-26 21:05:18 -04:00
parent 260dd06f47
commit c3bad1d4c5
2 changed files with 23 additions and 9 deletions

View File

@ -5,7 +5,7 @@ using System;
using System.Security.Principal;
using osu.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics;
using osu.Game.Overlays;
@ -16,7 +16,7 @@ namespace osu.Desktop.Admin
/// <summary>
/// Checks if the game is running with elevated privileges (as admin in Windows, root in Unix) and displays a warning notification if so.
/// </summary>
public class AdminChecker : CompositeDrawable
public class ElevatedPrivilegesChecker : Component
{
[Resolved]
protected NotificationOverlay Notifications { get; private set; }
@ -24,17 +24,31 @@ namespace osu.Desktop.Admin
protected override void LoadComplete()
{
base.LoadComplete();
if (isAdmin())
Notifications.Post(new AdminNotification());
bool elevated = false;
if (OperatingSystem.IsWindows())
{
var windowsIdentity = WindowsIdentity.GetCurrent();
var windowsPrincipal = new WindowsPrincipal(windowsIdentity);
elevated = windowsPrincipal.IsInRole(WindowsBuiltInRole.Administrator);
}
else if (RuntimeInfo.IsUnix)
{
elevated = Mono.Unix.Native.Syscall.geteuid() == 0;
}
if (!elevated)
return;
Notifications.Post(new ElevatedPrivilegesNotification());
}
private bool isAdmin() => OperatingSystem.IsWindows() ? new WindowsPrincipal(WindowsIdentity.GetCurrent()).IsInRole(WindowsBuiltInRole.Administrator) : Mono.Unix.Native.Syscall.geteuid() == 0;
private class AdminNotification : SimpleNotification
private class ElevatedPrivilegesNotification : SimpleNotification
{
public override bool IsImportant => true;
public AdminNotification()
public ElevatedPrivilegesNotification()
{
Text = $"Running osu! as {(RuntimeInfo.IsUnix ? "root" : "administrator")} does not improve performance and poses a security risk. Please run the game normally.";
}

View File

@ -115,7 +115,7 @@ namespace osu.Desktop
if (RuntimeInfo.OS == RuntimeInfo.Platform.Windows)
LoadComponentAsync(new GameplayWinKeyBlocker(), Add);
LoadComponentAsync(new AdminChecker(), Add);
LoadComponentAsync(new ElevatedPrivilegesChecker(), Add);
}
protected override void ScreenChanged(IScreen lastScreen, IScreen newScreen)