summaryrefslogtreecommitdiff
path: root/main/src/ui/java/de/blinkt/openvpn/fragments/ImportASConfig.kt
blob: 71d1ee7cd40fe447963ee3c38c84b215d7095983 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
/*
 * Copyright (c) 2012-2019 Arne Schwabe
 * Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt
 */

package de.blinkt.openvpn.fragments

import android.app.AlertDialog
import android.app.Dialog
import android.content.Context
import android.content.Intent
import android.content.SharedPreferences
import android.net.TrafficStats
import android.os.Bundle
import android.text.InputType
import android.util.Base64
import android.util.Base64.NO_WRAP
import android.util.Log
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.CheckBox
import android.widget.EditText
import android.widget.Toast
import androidx.fragment.app.DialogFragment
import androidx.lifecycle.lifecycleScope
import de.blinkt.openvpn.R
import de.blinkt.openvpn.activities.ConfigConverter
import de.blinkt.openvpn.core.Preferences
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import okhttp3.*
import okhttp3.internal.tls.OkHostnameVerifier
import java.io.IOException
import java.security.MessageDigest
import java.security.cert.CertPathValidatorException
import java.security.cert.CertificateException
import java.security.cert.X509Certificate
import java.util.concurrent.TimeUnit
import java.util.regex.Pattern
import javax.net.ssl.*

class BasicAuthInterceptor(user: String, password: String) : Interceptor {

    private val credentials: String

    init {
        this.credentials = Credentials.basic(user, password)
    }

    @Throws(IOException::class)
    override fun intercept(chain: Interceptor.Chain): Response {
        val request = chain.request()
        val authenticatedRequest = request.newBuilder()
                .header("Authorization", credentials).build()
        return chain.proceed(authenticatedRequest)
    }

}


fun getCompositeSSLSocketFactory(certPin: CertificatePinner, hostname: String): SSLSocketFactory {
    val trustPinnedCerts = arrayOf<TrustManager>(object : X509TrustManager {
        override fun getAcceptedIssuers(): Array<X509Certificate> {
            return emptyArray()
        }

        @Throws(CertificateException::class)
        override fun checkClientTrusted(chain: Array<X509Certificate>, authType: String) {
            throw CertificateException("Why would we check client certificates?!")
        }

        @Throws(CertificateException::class)
        override fun checkServerTrusted(chain: Array<X509Certificate>, authType: String) {
            certPin.check(hostname, chain.toList())
        }
    })

    // Install the all-trusting trust manager
    val sslContext = SSLContext.getInstance("TLS")
    sslContext.init(null, trustPinnedCerts, java.security.SecureRandom())
    // Create an ssl socket factory with our all-trusting manager

    return sslContext.socketFactory

}

class ImportASConfig : DialogFragment() {
    private lateinit var asUseAutlogin: CheckBox
    private lateinit var asServername: EditText
    private lateinit var asUsername: EditText
    private lateinit var asPassword: EditText
    private lateinit var dialogView: View



    internal fun getHostNameVerifier(prefs: SharedPreferences): HostnameVerifier {
        val pinnedHostnames: Set<String> = prefs.getStringSet("pinnedHosts", emptySet())!!

        val mapping = mutableMapOf<String, String?>()

        pinnedHostnames.forEach { ph ->
            mapping[ph] = prefs.getString("pin-${ph}", "")
        }

        val defaultVerifier = OkHostnameVerifier.INSTANCE;
        val pinHostVerifier = object : HostnameVerifier {
            override fun verify(hostname: String?, session: SSLSession?): Boolean {
                val unverifiedHandshake = Handshake.get(session)
                val cert = unverifiedHandshake.peerCertificates()[0] as X509Certificate
                val hostPin = CertificatePinner.pin(cert)

                if (mapping.containsKey(hostname) && mapping[hostname] == hostPin)
                    return true
                else
                    return defaultVerifier.verify(hostname, session)
            }

        }
        return pinHostVerifier
    }

    internal fun buildHttpClient(c: Context, user: String, password: String, hostname: String): OkHttpClient {

        // TODO: HACK
        val THREAD_ID = 10000;
        TrafficStats.setThreadStatsTag(THREAD_ID);

        val prefs = c.getSharedPreferences("pinnedCerts", Context.MODE_PRIVATE)
        val pinnedHosts: Set<String> = prefs.getStringSet("pinnedHosts", emptySet())!!

        val okHttpClient = OkHttpClient.Builder()
                .addInterceptor(BasicAuthInterceptor(user, password))
                .connectTimeout(15, TimeUnit.SECONDS)

        /* Rely on system certificates if we do not have the host pinned */
        if (pinnedHosts.contains(hostname)) {
            val cpb = CertificatePinner.Builder()

            pinnedHosts.forEach { ph ->
                cpb.add(ph, prefs.getString("pin-${ph}", ""))
            }


            val certPinner = cpb.build()
            getCompositeSSLSocketFactory(certPinner, hostname).let {
                okHttpClient.sslSocketFactory(it)
            }
            //okHttpClient.certificatePinner(certPinner)
        }

        okHttpClient.hostnameVerifier(getHostNameVerifier(prefs))

        val client = okHttpClient.build()
        return client

    }

    /**
     * @param fp Fingerprint in sha 256 format
     */
    internal fun addPinnedCert(c: Context, host: String, fp: String) {
        val prefs = c.getSharedPreferences("pinnedCerts", Context.MODE_PRIVATE)
        val pedit = prefs.edit()
        val pinnedHosts: MutableSet<String> = prefs.getStringSet("pinnedHosts", mutableSetOf<String>())!!

        pinnedHosts.add(host)

        pedit.putString("pin-${host}", "sha256/${fp}")

        pedit.putStringSet("pinnedHosts", pinnedHosts)

        pedit.apply()
    }

    internal fun removedPinnedCert(c: Context, host: String) {
        val prefs = c.getSharedPreferences("pinnedCerts", Context.MODE_PRIVATE)
        val pedit = prefs.edit()
        val pinnedHosts: MutableSet<String> = prefs.getStringSet("pinnedHosts", mutableSetOf<String>())!!

        pinnedHosts.remove(host)

        pedit.remove("pin-${host}")

        pedit.putStringSet("pinnedHosts", pinnedHosts)

        pedit.apply()
    }

    fun fetchProfile(c: Context, asUri: HttpUrl, user: String, password: String): Response? {


        val httpClient = buildHttpClient(c, user, password, asUri.host() ?: "")

        val request = Request.Builder()
                .url(asUri)
                .build()

        val response = httpClient.newCall(request).execute()

        return response

    }

    private fun getAsUrl(url: String, autologin: Boolean): HttpUrl {
        var asurl = url
        if (!asurl.startsWith("http"))
            asurl = "https://" + asurl

        if (autologin)
            asurl += "/rest/GetAutologin?tls-cryptv2=1"
        else
            asurl += "/rest/GetUserlogin?tls-cryptv2=1"

        val asUri = HttpUrl.parse(asurl)
        return asUri
    }

    override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
        return dialogView
    }

    override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
        val inflater = requireActivity().layoutInflater
        dialogView = inflater.inflate(R.layout.import_as_config, null);

        val builder = AlertDialog.Builder(requireContext())

        builder.setView(dialogView)
        builder.setTitle(R.string.import_from_as)

        asServername = dialogView.findViewById(R.id.as_servername)
        asUsername = dialogView.findViewById(R.id.username)
        asPassword = dialogView.findViewById(R.id.password)
        asUseAutlogin = dialogView.findViewById(R.id.request_autologin)

        builder.setPositiveButton(R.string.import_config, null)
        builder.setNegativeButton(android.R.string.cancel) { _, _ -> }

        val dialog = builder.create()

        return dialog
    }

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)

        dialog!!.setOnShowListener() { d2 ->
            val d: AlertDialog = d2 as AlertDialog

            d.getButton(AlertDialog.BUTTON_POSITIVE)?.setOnClickListener()

            { _ ->
                viewLifecycleOwner.lifecycleScope.launch {
                    doAsImport(asUsername.text.toString(), asPassword.text.toString())
                }
            }
        }
    }

    val crvMessage = Pattern.compile(".*<Message>CRV1:R,E:(.*):(.*):(.*)</Message>.*", Pattern.DOTALL)

    suspend internal fun doAsImport(user: String, password: String) {
        var pleaseWait:AlertDialog?
        withContext(Dispatchers.IO)
        {

            withContext(Dispatchers.Main)
            {
                val ab = AlertDialog.Builder(requireContext())
                ab.setTitle("Downloading profile")
                ab.setMessage("Please wait")
                pleaseWait = ab.show()

                Toast.makeText(context, "Downloading profile", Toast.LENGTH_LONG).show()
            }


            val asProfileUri = getAsUrl(asServername.text.toString(), asUseAutlogin.isChecked)

            var e: Exception? = null
            try {
                val response = fetchProfile(requireContext(), asProfileUri, user, password)

                if (response == null) {
                    throw Exception("No Response from Server")
                }

                val profile = response.body().string()
                if (response.code() == 401 && crvMessage.matcher(profile).matches()) {
                    withContext(Dispatchers.Main) {
                        pleaseWait?.dismiss()
                        showCRDialog(profile)
                    }
                } else if (response.isSuccessful) {

                    withContext(Dispatchers.Main) {
                        pleaseWait?.dismiss()
                        val startImport = Intent(activity, ConfigConverter::class.java)
                        startImport.action = ConfigConverter.IMPORT_PROFILE_DATA
                        startImport.putExtra(Intent.EXTRA_TEXT, profile)
                        startActivity(startImport)
                        dismiss()
                    }
                } else {
                    throw Exception("Invalid Response from server: \n${response.code()} ${response.message()} \n\n ${profile}")
                }

            } catch (ce: SSLHandshakeException) {
                e = ce
                // Find out if we are in the non trust path
                if (ce.cause is CertificateException && ce.cause != null) {
                    val certExp: CertificateException = (ce.cause as CertificateException)
                    if (certExp.cause is CertPathValidatorException && certExp.cause != null) {
                        val caPathExp: CertPathValidatorException = certExp.cause as CertPathValidatorException
                        if (caPathExp.certPath.type.equals("X.509") && caPathExp.certPath.certificates.size > 0) {
                            val firstCert: X509Certificate = (caPathExp.certPath.certificates[0] as X509Certificate)

                            val fpBytes = MessageDigest.getInstance("SHA-256").digest(firstCert.publicKey.encoded)
                            val fp = Base64.encodeToString(fpBytes, NO_WRAP)



                            Log.i("OpenVPN", "Found cert with FP ${fp}: ${firstCert.subjectDN}")
                            withContext(Dispatchers.Main) {

                                pleaseWait?.dismiss()

                                AlertDialog.Builder(requireContext())
                                        .setTitle("Untrusted certificate found")
                                        .setMessage(firstCert.toString())
                                        .setPositiveButton("Trust") { _, _ -> addPinnedCert(requireContext(), asProfileUri.host(), fp) }
                                        .setNegativeButton("Do not trust", null)
                                        .show()
                            }
                            e = null
                        }
                    } else if (ce.message != null && ce.message!!.contains("Certificate pinning failure")) {
                        withContext(Dispatchers.Main) {
                            pleaseWait?.dismiss()

                            AlertDialog.Builder(requireContext())
                                    .setTitle("Different certificate than trusted certificate from server")
                                    .setMessage(ce.message)
                                    .setNegativeButton(android.R.string.ok, null)
                                    .setPositiveButton("Forget pinned certificate", { _, _ -> removedPinnedCert(requireContext(), asProfileUri.host()) })
                                    .show();
                        }
                        e = null

                    }
                }
            } catch (ge: Exception) {
                e = ge
            }
            if (e != null) {
                withContext(Dispatchers.Main) {
                    pleaseWait?.dismiss()
                    AlertDialog.Builder(requireContext())
                            .setTitle("Import failed")
                            .setMessage("Error: " + e.localizedMessage)
                            .setPositiveButton(android.R.string.ok, null)
                            .show()
                }
            }
        }
    }

    private fun showCRDialog(response: String) {
        // This is a dirty hack instead of properly parsing the response
        val m = crvMessage.matcher(response)
        // We already know that it matches
        m.matches()
        val challenge = m.group(1)
        var username = m.group(2)
        val message = m.group(3)

        username = String(Base64.decode(username, Base64.DEFAULT))

        val pwprefix = "CRV1::${challenge}::"

        val entry = EditText(context)
        entry.setInputType(InputType.TYPE_CLASS_TEXT or InputType.TYPE_TEXT_VARIATION_PASSWORD)

        AlertDialog.Builder(requireContext())
                .setTitle("Server request challenge/response authentication")
                .setMessage("Challenge: " + message)
                .setView(entry)
                .setNegativeButton(android.R.string.cancel, null)
                .setPositiveButton(R.string.import_config) { _,_ ->
                    viewLifecycleOwner.lifecycleScope.launch {
                        doAsImport(username, pwprefix + entry.text.toString())
                    }
                }
                .show()

    }


    override fun onResume() {
        super.onResume()
        asServername.setText(Preferences.getDefaultSharedPreferences(activity).getString("as-hostname", ""))
        asUsername.setText(Preferences.getDefaultSharedPreferences(activity).getString("as-username", ""))
    }

    override fun onPause() {
        super.onPause()
        val prefs = Preferences.getDefaultSharedPreferences(activity)
        prefs.edit().putString("as-hostname", asServername.text.toString()).apply()
        prefs.edit().putString("as-username", asUsername.text.toString()).apply()
    }

    companion object {
        @JvmStatic
        fun newInstance(): ImportASConfig {
            return ImportASConfig();
        }
    }

}