Adam Pritchard ec23ce9d4e Created Docker build image for Go-Android library. 11 лет назад
..
go_psi b2f5e92037 Replace SocketProtector/BindToDevice UNIX domain socket client/server with in-process Java/Go interface; update import paths from code.google.com; fix: don't use 0 timeout in bindLookupIP 11 лет назад
java_golang 139deff442 Testing and bug fixes in progress 11 лет назад
java_psi b2f5e92037 Replace SocketProtector/BindToDevice UNIX domain socket client/server with in-process Java/Go interface; update import paths from code.google.com; fix: don't use 0 timeout in bindLookupIP 11 лет назад
libpsi 4419eb2d27 Add AndroidLibrary, a Java/Go binding that enables use of psiphon-tunnel-core within an Android app; modify sample AndroidApp to use AndroidLibrary (and remove embedded binary + subprocess method); move sample console app to its own subdir 11 лет назад
psi c1f6d6cb0c Change data store disk configuration from filename to data directory and temp directory -- enables working configuration of library on Android. 11 лет назад
Dockerfile ec23ce9d4e Created Docker build image for Go-Android library. 11 лет назад
README.md ec23ce9d4e Created Docker build image for Go-Android library. 11 лет назад
make.bash ec23ce9d4e Created Docker build image for Go-Android library. 11 лет назад

README.md

Psiphon Library for Android README

Overview

Psiphon Library for Android enables you to easily embed Psiphon in your Android app. The Psiphon Library for Android is implemented in Go and follows the standard conventions for using a Go library in an Android app.

Status

  • Pre-release

Building From Source

Follow Go Android documentation:

  • Overview README
  • Sample JNI App README
  • gobind documentation

    /AndroidLibrary
    README.md                - this file
    libgojni.so              - build binary output
    /psi
    psi.go                 - main library source
    /go_psi
    go_psi.go              - gobind output
    /java_psi/go/psi
    Psi.java               - gobind output
    /java_golang/go
    Go.java                - fork of Go/Java integration file
    Seq.java               - fork of Go/Java integration file
    /libpsi
    main.go                - stub main package for library
    
  • Requires Go 1.4 or later.

  • Install Go from source. The Android instructions are here: https://code.google.com/p/go/source/browse/README?repo=mobile.

    • In summary, download and install the Android NDK, use a script to make a standalone toolchain, and use that toolchain to build android/arm support within the Go source install. Then cross compile as usual.
  • $GOPATH/bin/gobind -lang=go github.com/Psiphon-Labs/psiphon-tunnel-core/AndroidLibrary/psi > go_psi/go_psi.go

  • $GOPATH/bin/gobind -lang=java github.com/Psiphon-Labs/psiphon-tunnel-core/AndroidLibrary/psi > java_psi/go/psi/Psi.java

  • In /libpsi CGO_ENABLED=1 GOOS=android GOARCH=arm GOARM=7 go build -ldflags="-shared" and copy output file to gojni.so

Building with Docker

Create the build image:

# While in the same directory as the Dockerfile...
$ sudo docker build -t psibuild .
# That will take a long time to complete.
# After it's done, you'll have an image called "psibuild". Check with...
$ sudo docker images

To do the build:

$ sudo docker run -v $GOPATH/src:/src psibuild /bin/bash -c 'cd /src/github.com/Psiphon-Labs/psiphon-tunnel-core/AndroidLibrary && ./make.bash'

When that command completes, the compiled library will be located at libs/armeabi-v7a/libgojni.so.

Using

  1. Build the shared object library from source or use the binary release and Java source files
  2. Add Go/Java integration files java_golang/go/*.java to your $src/go
  3. Add java_psi/go/psi/Psi.java to your $src/go/psi
  4. Add libgojni.so to your Android app

NOTE: may change to Psiphon-specific library name and init.

AndroidApp README

See sample usage in Psiphon.java. Uses gobind conventions for data passing.

  1. Embed a config file
  2. Call Go.init(getApplicationContext()); in Application.onCreate()
  3. Extend Psi.Listener.Stub to receive messages in Message(String line)
  4. Call Psi.Start(configFile, Psi.Listener) to start Psiphon. Catch Exception to receive errors.
  5. Call Psi.Stop() to stop Psiphon.
  6. Sample shows how to monitor messages and detect which proxy ports to use and when the tunnel is active.

NOTE: may add more explicit interface for state change events.

Limitations

  • Only supports one concurrent instance of Psiphon.