Skip to content

Commit

Permalink
Revert "Clean up HTTP proxy (#123)" (#124)
Browse files Browse the repository at this point in the history
This reverts commit 4d4d3f6.
  • Loading branch information
fortuna authored Oct 26, 2023
1 parent 4d4d3f6 commit a5a5ff5
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 134 deletions.
2 changes: 1 addition & 1 deletion x/examples/http2transport/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func main() {
defer listener.Close()
log.Printf("Proxy listening on %v", listener.Addr().String())

server := http.Server{Handler: httpproxy.NewProxyHandler(dialer)}
server := http.Server{Handler: httpproxy.NewConnectHandler(dialer)}
go func() {
if err := server.Serve(listener); err != nil && err != http.ErrServerClosed {
log.Fatalf("Error running web server: %v", err)
Expand Down
62 changes: 55 additions & 7 deletions x/httpproxy/connect_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,68 @@
package httpproxy

import (
"context"
"fmt"
"io"
"net"
"net/http"
"strings"

"github.com/Jigsaw-Code/outline-sdk/transport"
)

type connectHandler struct {
type handler struct {
dialer transport.StreamDialer
client http.Client
}

var _ http.Handler = (*connectHandler)(nil)
var _ http.Handler = (*handler)(nil)

func (h *connectHandler) ServeHTTP(proxyResp http.ResponseWriter, proxyReq *http.Request) {
if proxyReq.Method != http.MethodConnect {
proxyResp.Header().Add("Allow", "CONNECT")
http.Error(proxyResp, fmt.Sprintf("Method %v is not supported", proxyReq.Method), http.StatusMethodNotAllowed)
// ServeHTTP implements [http.Handler].ServeHTTP for CONNECT requests, using the internal [transport.StreamDialer].
func (h *handler) ServeHTTP(proxyResp http.ResponseWriter, proxyReq *http.Request) {
// TODO(fortuna): For public services (not local), we need authentication and drain on failures to avoid fingerprinting.
if proxyReq.Method == http.MethodConnect {
h.handleConnect(proxyResp, proxyReq)
return
}
if proxyReq.URL.Host != "" {
h.handleHTTPProxyRequest(proxyResp, proxyReq)
return
}
http.Error(proxyResp, "Not Found", http.StatusNotFound)
}

func (h *handler) handleHTTPProxyRequest(proxyResp http.ResponseWriter, proxyReq *http.Request) {
// We create a new request that uses a relative path + Host header, instead of the absolute URL in the proxy request.
targetReq, err := http.NewRequestWithContext(proxyReq.Context(), proxyReq.Method, proxyReq.URL.String(), proxyReq.Body)
if err != nil {
http.Error(proxyResp, "Error creating target request", http.StatusInternalServerError)
return
}
for key, values := range proxyReq.Header {
for _, value := range values {
targetReq.Header.Add(key, value)
}
}
targetResp, err := h.client.Do(targetReq)
if err != nil {
http.Error(proxyResp, "Failed to fetch destination", http.StatusServiceUnavailable)
return
}
defer targetResp.Body.Close()
for key, values := range targetResp.Header {
for _, value := range values {
proxyResp.Header().Add(key, value)
}
}
_, err = io.Copy(proxyResp, targetResp.Body)
if err != nil {
http.Error(proxyResp, "Failed write response", http.StatusServiceUnavailable)
return
}
}

func (h *handler) handleConnect(proxyResp http.ResponseWriter, proxyReq *http.Request) {
// Validate the target address.
_, portStr, err := net.SplitHostPort(proxyReq.Host)
if err != nil {
Expand Down Expand Up @@ -86,5 +128,11 @@ func (h *connectHandler) ServeHTTP(proxyResp http.ResponseWriter, proxyReq *http
// The resulting handler is currently vulnerable to probing attacks. It's ok as a localhost proxy
// but it may be vulnerable if used as a public proxy.
func NewConnectHandler(dialer transport.StreamDialer) http.Handler {
return &connectHandler{dialer}
dialContext := func(ctx context.Context, network, addr string) (net.Conn, error) {
if !strings.HasPrefix(network, "tcp") {
return nil, fmt.Errorf("protocol not supported: %v", network)
}
return dialer.Dial(ctx, addr)
}
return &handler{dialer, http.Client{Transport: &http.Transport{DialContext: dialContext}}}
}
77 changes: 0 additions & 77 deletions x/httpproxy/forward_handler.go

This file was deleted.

48 changes: 0 additions & 48 deletions x/httpproxy/proxy_handler.go

This file was deleted.

2 changes: 1 addition & 1 deletion x/mobileproxy/mobileproxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func RunProxy(localAddress string, transportConfig string) (*Proxy, error) {
return nil, fmt.Errorf("could not listen on address %v: %v", localAddress, err)
}

server := &http.Server{Handler: httpproxy.NewProxyHandler(dialer)}
server := &http.Server{Handler: httpproxy.NewConnectHandler(dialer)}
go server.Serve(listener)

host, portStr, err := net.SplitHostPort(listener.Addr().String())
Expand Down

0 comments on commit a5a5ff5

Please sign in to comment.