go-security-plugs

command module
v1.3.20 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 26, 2023 License: Apache-2.0 Imports: 10 Imported by: 0

README

go-security-plugs

Plugs4Security

The rtplugs package uses the http RoundTripper interfce to enable safely extending any go application that uses the http client. More specifically it is designed to enable extensing the standard go reverseproxy with one or more secuity extensions.

The package not only load extensions, but also recover from any panic situations and handle all errors that may be introduced by extensions. It is meant to keep the go application safe from harm done by extensions to a certain degree. It does not protect the application from extensions which: use excasive memory, cpu or other system resources (file descriptors etc.).

Using rtplugs, secuity extensions of a reverseproxy may:

  1. Block the request before it reaches the server. Blocking the reqeust will result in the connection to the client being closed. The client will receive a 502 response code. The request will never reach the server.

  2. Block the response from the server before it is returned to the client. Blocking the response will result in the connection to the client being closed. The client will receive a 502 response code and no data will be transfered from the server to the client. The connection to the server will also be closed, signaling to the server that the client disconnected and no further service is required.

  3. Asynchroniously cancel a request while it is being processed by the server. Canceling the request will result in the connection to the client and server being closed. No additional data (beyond what was already delivered prior to request cancelation) will be further delivered from the server to the client. There are two cases to consider:

    1. The request was cancled before the response code was sent to the client. In this case, the client will now receive a 502 response code. Closing the connection to the server will signal to the server that the client disconnected and no further service is required.

    2. The request was cancled after the response code was sent to the client. In this case, closing the connection to the client will signal to the client that the server aborted the service. Closing the connection to the server will signal to the server that the client disconnected and no further service is required.

Security extensions such as rtgate can be introduced by third parties as packages and developed seperatly from the main application. Such extensions can later be pluged using rtplugs to the application. As demonstrated by proxy, rtplugs supports both static and dynamic loading the extensions on-demand, based, on the application configuration.

pluginterfaces

Both the the rtplugs and the secuity extension import the pluginterfaces package to gain access to the interfaces shared between the two.

rtplugs

An application looking to extend reverseproxy (or any other http client) use the rtplugs to load and communicate with the secuity extensions.

proxy is an example of a go application that uses the go reverseproxy and enable a unified and simple interface for security extensions by importing and using rtplugs.

rtgate

rtgate is an example third party secuity enhancement which import and use pluginterfaces and can be loaded by the rtplugs.

rtgate demonstrates how a request can be canceled before reaching the server. It will block any request that include the header "X-Block-Req:true".

rtgate demonstrates how a response can be canceled before reaching the client. It will block the response of any request that include the header "X-Block-Resp:true".

rtgate demonstrates how a request can be canceled asynchrniously using a security extension. The code allows requests to last for no more than 5 seconds by default. Alternativly timeout can be specified using the reqeust header "X-Block-Async:". For example: "X-Block-Async:3s" results in a cancel being processed 3 seconds from request. The timeout examplifies an asynchrnious decission to cancel a request after it was delivered for processing by the server.

Try it out

  1. build and run a sample http server:
    ./runServer.sh
  1. in a different window, run build the Plugs and run the proxy:
    ./runProxy.sh 

Optional - Change the plugs defined in runProxy.sh to try different plugs:

  • RTPLUGS_PKG defines the list of plug packages you wish to import
  • RTPLUGS defines the list of plug names you wish to activate
  1. using a browser or curl try the url: http://127.0.0.1:8081 and see the logs pile up in the proxy window.

    Here are some examples:

    curl 127.0.0.1:8081 -v   
    curl 127.0.0.1:8081 -v   -H "X-Block-Req:true"
    curl 127.0.0.1:8081 -v   -H "X-Block-Resp:true"
    curl 127.0.0.1:8081 -v   -H "X-Sleep:4s"
    curl 127.0.0.1:8081 -v   -H "X-Sleep:4s"   -H "X-Block-Async:2s"
    curl 127.0.0.1:8081 -v   -H "X-Sleep:0.1s" -H "X-Sleep-Step:0.001s" -H "X-Sleep-Num-Steps:10000"
    curl 127.0.0.1:8081 -v   -H "X-Sleep:0.1s" -H "X-Sleep-Step:0.001s" -H "X-Sleep-Num-Steps:10000"  -H "X-Block-Async:2s"

The reqeust headers "X-Sleep", "X-Sleep-Step", "X-Sleep-Num-Steps" control the behaviour of our sample server.

The reqeust headers "X-Block-Req", "X-Block-Resp", "X-Block-Async" control the behaviour of our sample rtgate.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
iodup can help dulicate data arriving from an io.ReadCloser It allows wraping an existing io.ReadCloser provider and duplciate it to n readers
iodup can help dulicate data arriving from an io.ReadCloser It allows wraping an existing io.ReadCloser provider and duplciate it to n readers
iofilter can help filter data arriving from an io.ReadCloser It allows wraping an existing io.ReadCloser provider and filter the data before exposing it it up the chain.
iofilter can help filter data arriving from an io.ReadCloser It allows wraping an existing io.ReadCloser provider and filter the data before exposing it it up the chain.
Commmon interfaces used by github.com/IBM/go-security-plugs/rtplugs and the plgins it loads
Commmon interfaces used by github.com/IBM/go-security-plugs/rtplugs and the plgins it loads
plugs
main
Code generated by ./hack/add_queue_options.sh.
Code generated by ./hack/add_queue_options.sh.
The rtplugs package instruments golang http clients that supports a RoundTripper interface.
The rtplugs package instruments golang http clients that supports a RoundTripper interface.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL