Skip to content

vishalbelsare/libpagekite

 
 

Repository files navigation

libpagekite

This is a tight, fast implementation of the PageKite protocol in C, suitable for high-performance or embedded applications.

What is PageKite?

PageKite is a protocol for dynamic, tunneled reverse proxying of arbitrary TCP byte streams. It is particularly well suited for making a HTTP server on a device without a public IP address visible to the wider Internet, but can also be used for a variety of other things, including SSH access.

PageKite is usually used with the public relay service provided by https://pagekite.net/, but you can also run your own relay if you prefer; the Python relay is free software.

For more information, see http://pagekite.org/

What is in the box?

The structure is as follows:

bindings/           Library bindings for Java, Python
contrib/            Things that use libpagekite
doc/                Documentation
include/pagekite.h  The public interface of libpagekite
java-classes/       Compiled Java classes
libpagekite/        The source code
tools/              Helper scripts for building and working

In contrib/backends/ you'll find:

httpkite.c         A sample implementation of a very basic HTTP server
pagekitec.c        Basic standalone pagekite back-end connector/proxy.
sshkite.c          An example of exposing SSH over pagekite.
PageKiteTest.java  Minimal Java test connector

Getting started

Be sure you have the following packages (list assumes Debian/Ubuntu, your distro will offer something equivalent):

$ apt install build-essential pkg-config libtool automake
$ apt install libev-dev libssl-dev

To build for development on Linux, use:

$ ./autogen.sh
$ ./configure --prefix=$(pwd) --without-java
$ make install

This will build the library (without Java bindings), placing binaries in the bin/ and lib/ subdirectories. You can then run the test connector like so:

$ export LD_LIBRARY_PATH=$(pwd)/lib
$ ./bin/pagekitec 80 http yourkite.pagekite.me 0 kitesecret

To run the Python test:

$ export LD_LIBRARY_PATH=$(pwd)/lib
$ cd bindings/python
$ export PYTHONPATH="$(pwd):$PYTHONPATH"
$ python ./cython_demo.py 80 http yourkite.pagekite.me secret

To run the Java test:

$ ./configure --prefix=$(pwd)
$ make install
$ export LD_LIBRARY_PATH=$(pwd)/lib
$ cd java-classes
$ java PageKiteTest

(Note: The Java test is expected to fail because of hard-coded invalid credentials. You'll need to edit the source for it to actually work.)

Press CTRL+C to exit any of the test apps.

Documentation and examples

See ./configure --help for some options on how to build the library.

See the old README for hints on how some things used to be done and may still be missing from our current build processes and documentation.

State of the Onion

As of February 2017, the library's main limitations are:

The back-end connector code is however considered mature and stable; the library does a good job connecting, relaying traffic and reconnecting as necessary. Stability has been pretty good, but check our issues for the latest bug reports and the commit log for recent fixes.

License and Copyright

libpagekite is Copyright 2011-2020, The Beanstalks Project ehf.

This code is released under the Apache License 2.0, but may also be used according to the terms of the GNU Affero General Public License. Please see the file COPYING.md for details on which license applies to you.

Commercial support for this code, as well as managed front-end relay service, are available from https://pagekite.net/.

Development of this code was partially sponsored by SURFnet and the Icelandic Technology Development fund.

About

A high performance PageKite implementation in C

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 69.7%
  • C# 14.1%
  • Python 6.9%
  • M4 4.2%
  • C++ 2.2%
  • Shell 1.1%
  • Other 1.8%