General purpose TCP proxy?

M

Markus Fischer

Hi,

I'm trying to figure out if there's a gem or software available in Ruby
which allows me to act as a general purpose in-between proxy between a
server and multiple clients?

Basically:

<some tcp server> -- <ruby tcp propxy> -- <client1>
\- <client2>
\- <client3>
etc.

It's not an HTTP server, pure TCP with it's own (documented) protocol.
My idea is to be able to act in-between and put certain restrictions on
clients that the server itself is not capable of.

Connections can be long-running, hours or days. I'm not planning on high
traffic (although real traffic requirements are not known to me yet),
but the number of clients will max around 15 or 20, not yet decided.

So, before I start into action on my own I was wandering if there's
something out there?

thanks for pointer,
- Markus
 
M

Markus Fischer

Hi!


This one looks very promising based on the slides and the documentation.

However I've instantly ran into troubles outlined here:
http://github.com/igrigorik/em-proxy/issues#issue/3 . Any idea?

Another thing I'm not sure: when I look at the simply forwarding example
in the README.rdoc, I see that I basically have hook methods (on_data,
on_response, etc.) onto which I can attach my own code.

What I would need is a per client/connection logic. I.e. a client
connects, I inspect and forward the traffic. I also my intercept some
requests from the client and send back my own stuff. Ultimately I have a
state per client.

From the examples it's unclear to me how would I be able to identify the
different clients through the whole connection process?

thanks,
- Markus
 
M

Markus Fischer

Whats wrong with haproxy ?

Works for raw TCP sockets.

I don't know .. does it allow my to have per Client connection logic and
traffic interception, scripted, custom answers and rejection? Ideally in
Ruby.

- Markus
 
T

Tony Arcieri

[Note: parts of this message were removed to make it a legal post.]

Don't apologize, the anti-top posting nazis need to learn TIMTOWTDI some day
 
J

John W Higgins

[Note: parts of this message were removed to make it a legal post.]

Hi!



This one looks very promising based on the slides and the documentation.

However I've instantly ran into troubles outlined here:
http://github.com/igrigorik/em-proxy/issues#issue/3 . Any idea?

I would chalk it up to probably just a mistake in the sample code - yes,
it's not the best first impression but it does happen. It may very well be
conn.unbind instead of unbind but I'm not certain (unbind is a method of the
connection object).

Another thing I'm not sure: when I look at the simply forwarding example
in the README.rdoc, I see that I basically have hook methods (on_data,
on_response, etc.) onto which I can attach my own code.

What I would need is a per client/connection logic. I.e. a client
connects, I inspect and forward the traffic. I also my intercept some
requests from the client and send back my own stuff. Ultimately I have a
state per client.

Try looking at the smtp_whitelist example. It shows intercepting a request -
looking at it and sending back a response without the proxy actually passing
it on to the backend server. If you return nil from the on_data call then
nothing is forwarded along.

You do have a state - the "conn" object, which EventMachine creates per
connection and passes into the outer block that then calls into the on_data,
on_response et al. blocks.

My guess for your case would be that you would want to extend the connection
class (see connection.rb) to hold more information that would be available
to you during the lifetime of the connection.

If nothing else this is around 200 or so lines of code that gives a nice
starting point to anything more custom that you believe you would need/want.
I would be rather impressed if something else gave you more flexibility than
this and lived in the ruby world. You may find very well that a few helper
methods would help you along the way or perhaps the opposite in that you
don't want the blocks but rather to work in a custom connection object that
eliminates the block calls. But I do assure you that this is the right road
to be on.....

John
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top