mirror of
https://github.com/2dust/v2rayN.git
synced 2025-08-25 04:16:56 +00:00
126 lines
3.5 KiB
C#
126 lines
3.5 KiB
C#
using System.Diagnostics;
|
|
using System.Text;
|
|
using CliWrap;
|
|
|
|
namespace ServiceLib.Handler;
|
|
|
|
public class CoreAdminHandler
|
|
{
|
|
private static readonly Lazy<CoreAdminHandler> _instance = new(() => new());
|
|
public static CoreAdminHandler Instance => _instance.Value;
|
|
private Config _config;
|
|
private Action<bool, string>? _updateFunc;
|
|
private int _linuxSudoPid = -1;
|
|
|
|
public async Task Init(Config config, Action<bool, string> updateFunc)
|
|
{
|
|
if (_config != null)
|
|
{
|
|
return;
|
|
}
|
|
_config = config;
|
|
_updateFunc = updateFunc;
|
|
}
|
|
|
|
private void UpdateFunc(bool notify, string msg)
|
|
{
|
|
_updateFunc?.Invoke(notify, msg);
|
|
}
|
|
|
|
public async Task<Process?> RunProcessAsLinuxSudo(string fileName, CoreInfo coreInfo, string configPath)
|
|
{
|
|
var cmdLine = $"{fileName.AppendQuotes()} {string.Format(coreInfo.Arguments, Utils.GetBinConfigPath(configPath).AppendQuotes())}";
|
|
var shFilePath = await CreateLinuxShellFile(cmdLine, "run_as_sudo.sh");
|
|
|
|
Process proc = new()
|
|
{
|
|
StartInfo = new()
|
|
{
|
|
FileName = shFilePath,
|
|
Arguments = "",
|
|
WorkingDirectory = Utils.GetBinConfigPath(),
|
|
UseShellExecute = false,
|
|
RedirectStandardInput = true,
|
|
RedirectStandardOutput = true,
|
|
RedirectStandardError = true,
|
|
CreateNoWindow = true,
|
|
StandardInputEncoding = Encoding.UTF8,
|
|
StandardOutputEncoding = Encoding.UTF8,
|
|
StandardErrorEncoding = Encoding.UTF8,
|
|
}
|
|
};
|
|
|
|
proc.OutputDataReceived += (sender, e) =>
|
|
{
|
|
if (e.Data.IsNotEmpty())
|
|
{
|
|
UpdateFunc(false, e.Data + Environment.NewLine);
|
|
}
|
|
};
|
|
proc.ErrorDataReceived += (sender, e) =>
|
|
{
|
|
if (e.Data.IsNotEmpty())
|
|
{
|
|
UpdateFunc(false, e.Data + Environment.NewLine);
|
|
}
|
|
};
|
|
|
|
proc.Start();
|
|
proc.BeginOutputReadLine();
|
|
proc.BeginErrorReadLine();
|
|
|
|
await Task.Delay(10);
|
|
await proc.StandardInput.WriteLineAsync();
|
|
await Task.Delay(10);
|
|
await proc.StandardInput.WriteLineAsync(AppHandler.Instance.LinuxSudoPwd);
|
|
|
|
await Task.Delay(100);
|
|
if (proc is null or { HasExited: true })
|
|
{
|
|
throw new Exception(ResUI.FailedToRunCore);
|
|
}
|
|
|
|
_linuxSudoPid = proc.Id;
|
|
|
|
return proc;
|
|
}
|
|
|
|
public async Task KillProcessAsLinuxSudo()
|
|
{
|
|
if (_linuxSudoPid < 0)
|
|
{
|
|
return;
|
|
}
|
|
|
|
var cmdLine = $"pkill -P {_linuxSudoPid} ; kill {_linuxSudoPid}";
|
|
var shFilePath = await CreateLinuxShellFile(cmdLine, "kill_as_sudo.sh");
|
|
|
|
await Cli.Wrap(shFilePath)
|
|
.WithStandardInputPipe(PipeSource.FromString(AppHandler.Instance.LinuxSudoPwd))
|
|
.ExecuteAsync();
|
|
|
|
_linuxSudoPid = -1;
|
|
}
|
|
|
|
private async Task<string> CreateLinuxShellFile(string cmdLine, string fileName)
|
|
{
|
|
var shFilePath = Utils.GetBinConfigPath(fileName);
|
|
File.Delete(shFilePath);
|
|
|
|
var sb = new StringBuilder();
|
|
sb.AppendLine("#!/bin/sh");
|
|
if (Utils.IsAdministrator())
|
|
{
|
|
sb.AppendLine($"{cmdLine}");
|
|
}
|
|
else
|
|
{
|
|
sb.AppendLine($"sudo -S {cmdLine}");
|
|
}
|
|
|
|
await File.WriteAllTextAsync(shFilePath, sb.ToString());
|
|
await Utils.SetLinuxChmod(shFilePath);
|
|
|
|
return shFilePath;
|
|
}
|
|
}
|