mirror of https://github.com/dnomd343/ProxyC
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.7 KiB
92 lines
3.7 KiB
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import json
|
|
from Basis.Constant import ssMethods, ssAllMethods
|
|
|
|
|
|
def loadConfig(proxyInfo: dict, socksInfo: dict) -> dict: # load basic config option
|
|
config = {
|
|
'server': proxyInfo['server'],
|
|
'server_port': proxyInfo['port'], # type -> int
|
|
'local_address': socksInfo['addr'],
|
|
'local_port': socksInfo['port'], # type -> int
|
|
'method': proxyInfo['method'],
|
|
'password': proxyInfo['passwd'],
|
|
}
|
|
if proxyInfo['plugin'] is not None: # with plugin
|
|
config['plugin'] = proxyInfo['plugin']['type']
|
|
config['plugin_opts'] = proxyInfo['plugin']['param']
|
|
return config
|
|
|
|
|
|
def pluginUdp(plugin: str, pluginParam: str) -> bool: # whether the plugin uses UDP
|
|
if plugin in ['obfs-local', 'simple-tls', 'ck-client', 'gq-client', 'mtt-client', 'rabbit-plugin']:
|
|
return False # UDP is not used
|
|
if plugin in ['v2ray-plugin', 'xray-plugin', 'gost-plugin']:
|
|
if 'mode=quic' not in pluginParam.split(';'): # non-quic mode does not use UDP
|
|
return False
|
|
return True # UDP is assumed by default
|
|
|
|
|
|
def ssRust(proxyInfo: dict, socksInfo: dict, isUdp: bool) -> tuple[dict, list]:
|
|
config = loadConfig(proxyInfo, socksInfo)
|
|
if isUdp: # proxy UDP traffic
|
|
config['mode'] = 'tcp_and_udp'
|
|
return config, ['ss-rust-local', '-v']
|
|
|
|
|
|
def ssLibev(proxyInfo: dict, socksInfo: dict, isUdp: bool) -> tuple[dict, list]:
|
|
config = loadConfig(proxyInfo, socksInfo)
|
|
if isUdp: # proxy UDP traffic
|
|
config['mode'] = 'tcp_and_udp'
|
|
return config, ['ss-libev-local', '-v']
|
|
|
|
|
|
def ssPython(proxyInfo: dict, socksInfo: dict, isUdp: bool) -> tuple[dict, list]:
|
|
config = loadConfig(proxyInfo, socksInfo)
|
|
mbedtlsMethods = [
|
|
'aes-128-cfb128',
|
|
'aes-192-cfb128',
|
|
'aes-256-cfb128',
|
|
'camellia-128-cfb128',
|
|
'camellia-192-cfb128',
|
|
'camellia-256-cfb128',
|
|
]
|
|
if config['method'] in mbedtlsMethods: # mbedtls methods should use prefix `mbedtls:`
|
|
config['method'] = 'mbedtls:' + config['method']
|
|
if config['method'] in ['idea-cfb', 'seed-cfb']: # only older versions of openssl are supported
|
|
config['extra_opts'] = '--libopenssl=libcrypto.so.1.0.0'
|
|
if not isUdp:
|
|
config['no_udp'] = True # UDP traffic is not proxied
|
|
config['shadowsocks'] = 'ss-python-local'
|
|
return config, ['ss-bootstrap-local', '--debug', '-vv']
|
|
|
|
|
|
def ssPythonLegacy(proxyInfo: dict, socksInfo: dict, isUdp: bool) -> tuple[dict, list]:
|
|
config = loadConfig(proxyInfo, socksInfo)
|
|
if not isUdp:
|
|
config['no_udp'] = True # UDP traffic is not proxied
|
|
config['shadowsocks'] = 'ss-python-legacy-local'
|
|
return config, ['ss-bootstrap-local', '--debug', '-vv']
|
|
|
|
|
|
def load(proxyInfo: dict, socksInfo: dict, configFile: str) -> tuple[list, str, dict]:
|
|
if proxyInfo['plugin'] is None: # UDP is enabled when server without plugin
|
|
isUdp = True
|
|
else:
|
|
isUdp = not pluginUdp( # check the UDP conflict status of plugins
|
|
proxyInfo['plugin']['type'], proxyInfo['plugin']['param']
|
|
)
|
|
if proxyInfo['method'] not in ssAllMethods: # unknown shadowsocks method
|
|
raise RuntimeError('Unknown shadowsocks method')
|
|
for client in ssMethods: # traverse all shadowsocks client
|
|
if proxyInfo['method'] not in ssMethods[client]:
|
|
continue
|
|
ssConfig, ssClient = {
|
|
'ss-rust': ssRust,
|
|
'ss-libev': ssLibev,
|
|
'ss-python': ssPython,
|
|
'ss-python-legacy': ssPythonLegacy
|
|
}[client](proxyInfo, socksInfo, isUdp) # generate config file
|
|
return ssClient + ['-c', configFile], json.dumps(ssConfig), {} # tuple[command, fileContent, envVar]
|
|
|