Skip to content

Commit 0647ef4

Browse files
committed
fix #121
1 parent 97c6ff9 commit 0647ef4

File tree

4 files changed

+50
-35
lines changed

4 files changed

+50
-35
lines changed

src/main/AndroidManifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22
package="com.github.shadowsocks"
3-
android:versionCode="72"
4-
android:versionName="2.2.4">
3+
android:versionCode="73"
4+
android:versionName="2.2.5">
55

66
<uses-permission android:name="android.permission.INTERNET"/>
77
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

src/main/scala/com/github/shadowsocks/ShadowsocksNatService.scala

+36-26
Original file line numberDiff line numberDiff line change
@@ -114,25 +114,40 @@ class ShadowsocksNatService extends Service with BaseService {
114114
})
115115
}
116116

117-
val raw_args = ("ss-local -b 127.0.0.1 -s %s -p %d -l %d -k %s -m %s -f " +
118-
Path.BASE + "ss-local.pid")
119-
.format(config.proxy, config.remotePort, config.localPort, config.sitekey, config.encMethod)
120-
val args = if (Build.VERSION.SDK_INT >= 20) {
121-
raw_args
122-
} else {
123-
Path.BASE + raw_args
117+
val cmd = new ArrayBuffer[String]
118+
cmd += ("ss-local"
119+
, "-b" , "127.0.0.1"
120+
, "-s" , config.proxy
121+
, "-p" , config.remotePort.toString
122+
, "-l" , config.localPort.toString
123+
, "-k" , config.sitekey
124+
, "-m" , config.encMethod
125+
, "-f" , (Path.BASE + "ss-local.pid"))
126+
127+
if (config.isGFWList && isACLEnabled) {
128+
cmd += "--acl"
129+
cmd += (Path.BASE + "chn.acl")
124130
}
125-
val cmd = if (config.isGFWList && isACLEnabled) args + " --acl " + Path.BASE + "chn.acl" else args
126-
if (BuildConfig.DEBUG) Log.d(TAG, cmd)
127131

128-
Core.sslocal(cmd.split(" "))
132+
if (BuildConfig.DEBUG) Log.d(TAG, cmd.mkString(" "))
133+
134+
Core.sslocal(cmd.toArray)
129135
}
130136

131137
def startDnsDaemon() {
132-
val args = if (config.isUdpDns) {
133-
("ss-tunnel -b 127.0.0.1 -s %s -p %d -l %d -k %s -m %s -L 8.8.8.8:53 -u -f " +
134-
Path.BASE + "ss-tunnel.pid")
135-
.format(config.proxy, config.remotePort, 8153, config.sitekey, config.encMethod)
138+
if (config.isUdpDns) {
139+
val cmd = new ArrayBuffer[String]
140+
cmd += ("ss-tunnel" , "-u"
141+
, "-b" , "127.0.0.1"
142+
, "-l" , "8153"
143+
, "-L" , "8.8.8.8:53"
144+
, "-s" , config.proxy
145+
, "-p" , config.remotePort.toString
146+
, "-k" , config.sitekey
147+
, "-m" , config.encMethod
148+
, "-f" , (Path.BASE + "ss-tunnel.pid"))
149+
if (BuildConfig.DEBUG) Log.d(TAG, cmd.mkString(" "))
150+
Core.sstunnel(cmd.toArray)
136151
} else {
137152
val conf = {
138153
if (config.isGFWList)
@@ -143,20 +158,15 @@ class ShadowsocksNatService extends Service with BaseService {
143158
ConfigUtils.printToFile(new File(Path.BASE + "pdnsd.conf"))(p => {
144159
p.println(conf)
145160
})
146-
"pdnsd -c " + Path.BASE + "pdnsd.conf"
147-
}
148-
149-
val cmd = if (Build.VERSION.SDK_INT >= 20) {
150-
"/system/bin/" + args
151-
} else {
152-
Path.BASE + args
153-
}
154161

155-
if (BuildConfig.DEBUG) Log.d(TAG, cmd)
162+
val args = "pdnsd -c " + Path.BASE + "pdnsd.conf"
156163

157-
if (config.isUdpDns) {
158-
Core.sstunnel(cmd.split(" "))
159-
} else {
164+
val cmd = if (Build.VERSION.SDK_INT >= 20) {
165+
"/system/bin/" + args
166+
} else {
167+
Path.BASE + args
168+
}
169+
if (BuildConfig.DEBUG) Log.d(TAG, cmd)
160170
Console.runRootCommand(cmd)
161171
}
162172
}

src/main/scala/com/github/shadowsocks/ShadowsocksVpnService.scala

+11-6
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,17 @@ class ShadowsocksVpnService extends VpnService with BaseService {
8080
}
8181

8282
def startShadowsocksDaemon() {
83-
val cmd: String = (Path.BASE +
84-
"ss-local -b 127.0.0.1 -s %s -p %d -l %d -k %s -m %s -u -f " +
85-
Path.BASE + "ss-local.pid")
86-
.format(config.proxy, config.remotePort, config.localPort, config.sitekey, config.encMethod)
87-
if (BuildConfig.DEBUG) Log.d(TAG, cmd)
88-
Core.sslocal(cmd.split(" "))
83+
val cmd = new ArrayBuffer[String]
84+
cmd += ("ss-local" , "-u"
85+
, "-b" , "127.0.0.1"
86+
, "-s" , config.proxy
87+
, "-p" , config.remotePort.toString
88+
, "-l" , config.localPort.toString
89+
, "-k" , config.sitekey
90+
, "-m" , config.encMethod
91+
, "-f" , (Path.BASE + "ss-local.pid"))
92+
if (BuildConfig.DEBUG) Log.d(TAG, cmd.mkString(" "))
93+
Core.sslocal(cmd.toArray)
8994
}
9095

9196
def startDnsDaemon() {

0 commit comments

Comments
 (0)