Last Updated: 21st June 2022
Currently, it's a half baked implementation. It basically:
- Have a server to listen to incoming
Init
packet from a client and reply it with a domain the client can use. - Upon running the client, it will send an
Init
packet, to get the domain name. - Then, the client send a
DataInit
packet to the server, setting up another TCP tunnel listening to request from the server and proxy it to the local server. It's currently hardcoded to forward tolocalhost:4000
- Once the server receive an
DataInit
packet, it will spin up aTcpListener
on the assigned port for the particular domain name, which is hardcoded as well. This will then allow the public internet to send request to the domain, which will be proxy to the client local server through the TCP tunnel we setup. - Once the client tunnal receive and respond with a request, the whole TCP
tunnel will be shutdown, and it will resend the
DataInit
packet again to setup another TCP tunnel. - Same applied to the
TcpListener
that is exposed to the internet. Hence, it's not an efficient implementation as it will spin up and shutdown 2 TCP connection on every request.
On top of that:
- It only support 3 domain name, that means it currently support at most 3 client at a time.
- It doesn't work with websocket.
The domain name is not recycle. This mean that if a client lost it's connection, the domain assigned do not goes back to the domain name pool.It doesn't support logging HTTP request and response time.
Last Updated: 24th May 2022
The following flow will be the initial first attempt to make a minimal reverse proxy. It's subject to changes as we involved our implementation.
- First, a client send an
Init
packet to setup the control channel with the server. Then, the server will assigned a domain and port for the control channel and reply the domain name to the client.
Init
Client ------> Server
<------
Domain
- Once the client receive the domain name, it send an
Ack
packet and the server will proceed to update the state to keep track of the control channel spawned.
Ack
Client ------> Server (proceed to store the control channel information in the state)
- Client will then proceed to setup a data channel with the server and
a
TcpStream
to connect to the local service, waiting for the incoming request from the server, so it can proxy the request to the local service and respond back to the server through the data channel.
TCP connection DataInit
Local Service <----------------> Client -----------> Server
- When server receive the
DataInit
packet, it start listening to the particular port assigned to the domain name and start to forward any request to the data channel to the client, which the client will proxy it to the local service and reply the responses to us through the same data channel, which we then return to the incoming request.
TCP listener Proxy request
Internet <---------------> Server <---------------> Server
- Once a request is served, the data channel, TCP listner on the server and TCP connection to the local service from the client will all be shutdown. Step 3, 4 and 5 will be repeated.