-
Notifications
You must be signed in to change notification settings - Fork 15
/
http.go
268 lines (221 loc) · 6.49 KB
/
http.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
/* ipp-usb - HTTP reverse proxy, backed by IPP-over-USB connection to device
*
* Copyright (C) 2020 and up by Alexander Pevzner ([email protected])
* See LICENSE for license terms and conditions
*
* HTTP proxy
*/
package main
import (
"context"
"errors"
"fmt"
"io"
"log"
"net"
"net/http"
"net/url"
"strings"
"sync/atomic"
)
var (
httpSessionID int32
)
// HTTPProxy represents HTTP protocol proxy backed by the
// specified http.RoundTripper. It implements http.Handler
// interface
type HTTPProxy struct {
log *Logger // Logger instance
server *http.Server // HTTP server
enable bool // Proxy can handle incoming requests
transport *UsbTransport // Transport for outgoing requests
closeWait chan struct{} // Closed at server close
}
// NewHTTPProxy creates new HTTP proxy
func NewHTTPProxy(logger *Logger,
listener net.Listener, transport *UsbTransport) *HTTPProxy {
proxy := &HTTPProxy{
log: logger,
transport: transport,
closeWait: make(chan struct{}),
}
proxy.server = &http.Server{
Handler: proxy,
ErrorLog: log.New(logger.LineWriter(LogError, '!'), "", 0),
}
go func() {
proxy.server.Serve(listener)
close(proxy.closeWait)
}()
return proxy
}
// Close the proxy
func (proxy *HTTPProxy) Close() {
proxy.server.Close()
<-proxy.closeWait
}
// Enable indicates that initialization is completed and
// incoming requests can be handled
func (proxy *HTTPProxy) Enable() {
proxy.enable = true
}
// Handle HTTP request
func (proxy *HTTPProxy) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// Catch panics to log
defer func() {
v := recover()
if v != nil {
Log.Panic(v)
}
}()
session := int(atomic.AddInt32(&httpSessionID, 1)-1) % 1000
// Perform sanity checking
if !proxy.enable {
proxy.httpError(session, w, r, http.StatusServiceUnavailable,
errors.New("ipp-usb is not ready for this device"))
return
}
if r.Method == "CONNECT" {
proxy.httpError(session, w, r, http.StatusMethodNotAllowed,
errors.New("CONNECT not allowed"))
return
}
if r.Header.Get("Upgrade") != "" {
proxy.httpError(session, w, r, http.StatusServiceUnavailable,
errors.New("Protocol upgrade is not implemented"))
return
}
if r.URL.IsAbs() {
proxy.httpError(session, w, r, http.StatusServiceUnavailable,
errors.New("Absolute URL not allowed"))
return
}
// Obtain request's client and server addresses
var clientAddr, serverAddr *net.TCPAddr
clientAddr, err := net.ResolveTCPAddr("tcp", r.RemoteAddr)
if err != nil {
proxy.httpError(session, w, r, http.StatusInternalServerError,
errors.New("Unable to get client address for request"))
return
}
if v := r.Context().Value(http.LocalAddrContextKey); v != nil {
if v != nil {
serverAddr, _ = v.(*net.TCPAddr)
}
}
if serverAddr == nil {
proxy.httpError(session, w, r, http.StatusInternalServerError,
errors.New("Unable to get server address for request"))
return
}
// Authenticate
if status, err := AuthHTTPRequest(proxy.log,
clientAddr, serverAddr, r); err != nil {
proxy.httpError(session, w, r, status, err)
return
}
// Adjust request headers
httpRemoveHopByHopHeaders(r.Header)
if r.Host == "" {
if serverAddr.IP.IsLoopback() {
r.Host = fmt.Sprintf("localhost:%d", serverAddr.Port)
} else {
r.Host = serverAddr.String()
}
}
r.URL.Scheme = "http"
r.URL.Host = r.Host
// If request is ordered to the loopback address, and r.Host is not
// "localhost" or "localhost:port", redirect request to the localhost
//
// Note, IPP over USB specification requires Host: to be always
// "localhost" or "localhost:port". Although most of the printers
// accept any syntactically correct Host: header, some of the OKI
// printers doesn't, and reject requests that violate this rule
//
// This redirection fixes compatibility with these printers for
// clients that follow redirects (i.e., web browser and sane-airscan;
// CUPS unfortunately doesn't follow redirects)
if serverAddr.IP.IsLoopback() &&
(r.Method == "GET" || r.Method == "HEAD") {
host := strings.ToLower(r.Host)
if host != "localhost" &&
!strings.HasPrefix(host, "localhost:") {
url := *r.URL
url.Host = fmt.Sprintf("localhost:%d", serverAddr.Port)
proxy.httpRedirect(session, w, r, http.StatusFound, &url)
return
}
}
// Send request and obtain response status and header
resp, err := proxy.transport.RoundTripWithSession(session, r)
if err != nil {
proxy.httpError(session, w, r, http.StatusServiceUnavailable, err)
return
}
httpRemoveHopByHopHeaders(resp.Header)
httpCopyHeaders(w.Header(), resp.Header)
w.WriteHeader(resp.StatusCode)
// Obtain response body, if any
_, err = io.Copy(w, resp.Body)
if err != nil {
proxy.log.HTTPError('!', session, "%s", err)
}
resp.Body.Close()
}
// Reject request with a error
func (proxy *HTTPProxy) httpError(session int, w http.ResponseWriter, r *http.Request,
status int, err error) {
proxy.log.Begin().
HTTPRqParams(LogDebug, '>', session, r).
HTTPRequest(LogTraceHTTP, '>', session, r).
Commit()
w.Header().Set("Content-Type", "text/plain; charset=utf-8")
httpNoCache(w)
w.WriteHeader(status)
w.Write([]byte(err.Error()))
w.Write([]byte("\n"))
if err != context.Canceled {
proxy.log.HTTPError('!', session, "%s", err.Error())
} else {
proxy.log.HTTPDebug(' ', session, "request canceled by impatient client")
}
}
// Respond to request with the HTTP redirect
func (proxy *HTTPProxy) httpRedirect(session int, w http.ResponseWriter, r *http.Request,
status int, location *url.URL) {
proxy.log.Begin().
HTTPRqParams(LogDebug, '>', session, r).
HTTPRequest(LogTraceHTTP, '>', session, r).
Commit()
w.Header().Set("Location", location.String())
w.WriteHeader(status)
proxy.log.HTTPDebug(' ', session, "redirected to %s", location)
}
// Set response headers to disable cacheing
func httpNoCache(w http.ResponseWriter) {
w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
w.Header().Set("Pragma", "no-cache")
w.Header().Set("Expires", "0")
}
// Remove HTTP hop-by-hop headers, RFC 7230, section 6.1
func httpRemoveHopByHopHeaders(hdr http.Header) {
if c := hdr.Get("Connection"); c != "" {
for _, f := range strings.Split(c, ",") {
if f = strings.TrimSpace(f); f != "" {
hdr.Del(f)
}
}
}
for _, c := range []string{"Connection", "Keep-Alive",
"Proxy-Authenticate", "Proxy-Connection",
"Proxy-Authorization", "Te", "Trailer", "Transfer-Encoding"} {
hdr.Del(c)
}
}
// Copy HTTP headers
func httpCopyHeaders(dst, src http.Header) {
for k, v := range src {
dst[k] = v
}
}