Outbounds: Shadowsocks: initial implementation

Signed-off-by: Vasiliy Doylov <nekocwd@mainlining.org>
This commit is contained in:
Vasiliy Doylov 2025-06-23 15:22:31 +03:00
parent fada005f27
commit 059111f020
Signed by: NekoCWD
GPG key ID: B7BE22D44474A582
4 changed files with 58 additions and 3 deletions

View file

@ -1,3 +1,4 @@
errordomain ParseError {
NOT_IMPLEMENTED,
WRONG_FORMATING,
}

View file

@ -3,4 +3,5 @@ outbounds_sources = [
'logic/outbounds/dial.vala',
'logic/outbounds/trojan.vala',
'logic/outbounds/vless.vala',
'logic/outbounds/shadowsocks.vala',
]

View file

@ -29,8 +29,6 @@ class Singularity.Outbound.Outbound : Object, Json.Serializable {
uri = Uri.parse (profile, UriFlags.HAS_PASSWORD | UriFlags.NON_DNS | UriFlags.PARSE_RELAXED);
var scheme = uri.get_scheme ();
if (!(scheme == "trojan" || scheme == "vless"))// Stupid check for now
throw new ParseError.NOT_IMPLEMENTED ("Protocol %s not implemented yet", scheme);
var host = uri.get_host ();
var port = uri.get_port ();
@ -127,8 +125,20 @@ class Singularity.Outbound.Outbound : Object, Json.Serializable {
tls = tls,
};
break;
case "ss":
string creds = (string) Base64.decode (user);
var temp = creds.split (":", 2);
if (temp.length != 2)
throw new ParseError.WRONG_FORMATING ("Shadowsocks formating fail. Failed to parse creditants ?%s?", creds);
outbound = new ShadowSocks () {
method = temp[0],
password = temp[1],
server = host,
server_port = port,
};
break;
default:
warning ("Unknown scheme %s", scheme);
throw new ParseError.NOT_IMPLEMENTED ("Protocol %s not implemented yet", scheme);
break;
}
outbound.name = name;

View file

@ -0,0 +1,43 @@
/* shadowsocks.vala
*
* Copyright 2025 Vasiliy Doylov (NekoCWD) <nekocwd@mainlining.org>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
/*
* ShadowSocks outbound.
* DASH and TYPE FIX REQUIRED
*/
class Singularity.Outbound.ShadowSocks : Dial, Json.Serializable {
public string server { get; set; default = null; }
public int64 server_port { get; set; default = 1080; }
public string method { get; set; default = null; }
public string password { get; set; default = null; }
public string plugin { get; set; default = null; }
public string plugin_opts { get; set; default = null; }
public string network { get; set; default = null; }
public bool udp_over_tcp { get; set; default = false; }
/*
* public Multiplex multiplex { get; set; default = null; }
* TODO: Implement Multiplex
*/
construct {
type_name = "shadowsocks";
}
}