Prew is a reverse rewrite proxy for PostgreSQL (other protocol support pending). It generalizes rewrite rules into:
- A parser
- A filter
- A transformer
- An encoder
- A reporter
A sample binary is included but it is primarily intended to be pulled in as a library and provided custom components for the rewrite rules.
Packets returned from the service being proxied are currently not subject to any rules and are always passed back to the client unmodified.
The parser is responsible for parsing a packet into a standard struct, that will be used for the following rules.
The filter can selectively filter out packets. No response is sent for filtered packets.
The transformer can optionally modify packet content (i.e., the rewrite step).
The encoder encodes the transformed packet back into its raw format (skipped if no transformation was made).
The reporter runs concurrently to provide logging or additional side-functionality based on the content of the packet.
Prew is based in large part upon sql-proxy-rs by Raymond Cheng.