mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
101 lines
3.5 KiB
C#
101 lines
3.5 KiB
C#
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using Netch.Controllers;
|
|
using Netch.Models;
|
|
using Netch.Utils;
|
|
|
|
namespace Netch.Servers.Shadowsocks
|
|
{
|
|
public class SSController : Guard, IServerController
|
|
{
|
|
public override string Name { get; protected set; } = "Shadowsocks";
|
|
public override string MainFile { get; protected set; } = "Shadowsocks.exe";
|
|
|
|
public Server Server { get; set; }
|
|
public ushort? Socks5LocalPort { get; set; }
|
|
public string LocalAddress { get; set; }
|
|
|
|
public bool DllFlag;
|
|
|
|
public bool Start(in Server s, in Mode mode)
|
|
{
|
|
Server = s;
|
|
var server = (Shadowsocks) s;
|
|
|
|
if (mode.Type == 0 && !server.HasPlugin())
|
|
return true;
|
|
|
|
DllFlag = Global.Settings.BootShadowsocksFromDLL && mode.Type is 0 or 1 or 2 && !server.HasPlugin();
|
|
|
|
//从DLL启动Shaowsocks
|
|
if (DllFlag)
|
|
{
|
|
State = State.Starting;
|
|
var client = Encoding.UTF8.GetBytes($"{this.LocalAddress()}:{this.Socks5LocalPort()}");
|
|
var remote = Encoding.UTF8.GetBytes($"{server.AutoResolveHostname()}:{server.Port}");
|
|
var passwd = Encoding.UTF8.GetBytes($"{server.Password}");
|
|
var method = Encoding.UTF8.GetBytes($"{server.EncryptMethod}");
|
|
if (!ShadowsocksDLL.Info(client, remote, passwd, method))
|
|
{
|
|
State = State.Stopped;
|
|
Logging.Error("DLL SS INFO 设置失败!");
|
|
return false;
|
|
}
|
|
|
|
Logging.Info("DLL SS INFO 设置成功!");
|
|
|
|
if (!ShadowsocksDLL.Start())
|
|
{
|
|
State = State.Stopped;
|
|
Logging.Error("DLL SS 启动失败!");
|
|
return false;
|
|
}
|
|
|
|
Logging.Info("DLL SS 启动成功!");
|
|
State = State.Started;
|
|
return true;
|
|
}
|
|
|
|
#region Argument
|
|
|
|
var argument = new StringBuilder();
|
|
argument.Append(
|
|
$"-s {server.AutoResolveHostname()} " +
|
|
$"-p {server.Port} " +
|
|
$"-b {this.LocalAddress()} " +
|
|
$"-l {this.Socks5LocalPort()} " +
|
|
$"-m {server.EncryptMethod} " +
|
|
$"-k \"{server.Password}\" " +
|
|
"-u ");
|
|
if (!string.IsNullOrWhiteSpace(server.Plugin) && !string.IsNullOrWhiteSpace(server.PluginOption))
|
|
argument.Append($"--plugin {server.Plugin} " +
|
|
$"--plugin-opts \"{server.PluginOption}\"");
|
|
if (mode.BypassChina)
|
|
argument.Append(" --acl default.acl");
|
|
|
|
#endregion
|
|
|
|
return StartInstanceAuto(argument.ToString());
|
|
}
|
|
|
|
public override void Stop()
|
|
{
|
|
if (DllFlag)
|
|
ShadowsocksDLL.Stop();
|
|
else
|
|
StopInstance();
|
|
}
|
|
|
|
private class ShadowsocksDLL
|
|
{
|
|
[DllImport("shadowsocks-windows-dynamic", CallingConvention = CallingConvention.Cdecl)]
|
|
public static extern bool Info(byte[] client, byte[] remote, byte[] passwd, byte[] method);
|
|
|
|
[DllImport("shadowsocks-windows-dynamic", CallingConvention = CallingConvention.Cdecl)]
|
|
public static extern bool Start();
|
|
|
|
[DllImport("shadowsocks-windows-dynamic", CallingConvention = CallingConvention.Cdecl)]
|
|
public static extern void Stop();
|
|
}
|
|
}
|
|
} |