-
Notifications
You must be signed in to change notification settings - Fork 1
/
uwsgi.go
140 lines (122 loc) · 3.61 KB
/
uwsgi.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
// Copyright 2023 Xinhe Wang
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package uwsgi
import (
"bufio"
"bytes"
"encoding/binary"
"io"
"net"
"net/http"
"strings"
"github.com/caddyserver/caddy/v2"
"github.com/caddyserver/caddy/v2/caddyconfig/caddyfile"
"github.com/caddyserver/caddy/v2/modules/caddyhttp/reverseproxy"
)
func init() {
caddy.RegisterModule(Transport{})
}
type Transport struct {
}
// CaddyModule returns the Caddy module information.
func (Transport) CaddyModule() caddy.ModuleInfo {
return caddy.ModuleInfo{
ID: "http.reverse_proxy.transport.uwsgi",
New: func() caddy.Module { return new(Transport) },
}
}
var headerNameReplacer = strings.NewReplacer("-", "_")
func writeBlockVar(buffer *bytes.Buffer, s string) {
b := []byte(s)
binary.Write(buffer, binary.LittleEndian, uint16(len(b)))
buffer.Write(b)
}
// generateBlockVars returns the packet body of WSGI block vars generated from http.Request.
func generateBlockVars(req *http.Request) (*bytes.Buffer, error) {
serverName, serverPort, err := net.SplitHostPort(req.Host)
if err != nil {
serverName = req.Host
}
if serverPort == "" {
if req.TLS == nil {
serverPort = "80"
} else {
serverPort = "443"
}
}
vars := map[string]string{
"REQUEST_METHOD": req.Method,
"SCRIPT_NAME": "",
"PATH_INFO": req.URL.Path,
"QUERY_STRING": req.URL.RawQuery,
"CONTENT_TYPE": req.Header.Get("Content-Type"),
"CONTENT_LENGTH": req.Header.Get("Content-Length"),
"SERVER_NAME": serverName,
"SERVER_PORT": serverPort,
"SERVER_PROTOCOL": req.Proto,
"REMOTE_ADDR": req.RemoteAddr,
"HTTP_HOST": req.Host,
}
if req.TLS != nil {
vars["HTTPS"] = "on"
}
for name, value := range req.Header {
vars["HTTP_"+headerNameReplacer.Replace(strings.ToUpper(name))] = strings.Join(value, ", ")
}
var packetBody bytes.Buffer
for key, val := range vars {
writeBlockVar(&packetBody, key)
writeBlockVar(&packetBody, val)
}
return &packetBody, nil
}
func (t Transport) RoundTrip(req *http.Request) (*http.Response, error) {
ctx := req.Context()
network, address := "tcp", req.URL.Host
if dialInfo, ok := reverseproxy.GetDialInfo(ctx); ok {
network = dialInfo.Network
address = dialInfo.Address
}
conn, err := net.Dial(network, address)
if err != nil {
return nil, err
}
blockVars, err := generateBlockVars(req)
if err != nil {
return nil, err
}
conn.Write([]byte{0}) // modifier1
binary.Write(conn, binary.LittleEndian, uint16(blockVars.Len())) // datasize
conn.Write([]byte{0}) // modifier2
io.Copy(conn, blockVars) // packet body
if req.Body != nil {
io.Copy(conn, req.Body)
req.Body.Close()
}
return http.ReadResponse(bufio.NewReader(conn), req)
}
// UnmarshalCaddyfile implements caddyfile.Unmarshaler.
func (t *Transport) UnmarshalCaddyfile(d *caddyfile.Dispenser) error {
for d.Next() {
if d.NextArg() {
// too many args
return d.ArgErr()
}
}
return nil
}
var (
_ http.RoundTripper = (*Transport)(nil)
_ caddyfile.Unmarshaler = (*Transport)(nil)
)