forked from h2non/imaginary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsource_http.go
184 lines (156 loc) · 5.23 KB
/
source_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
/*
* SPDX-License-Identifier: AGPL-3.0-only
*
* Copyright (c) 2025 sycured
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package main
import (
"crypto/tls"
"fmt"
"io"
"net/http"
"net/url"
"strconv"
"strings"
)
const ImageSourceTypeHTTP ImageSourceType = "http"
const URLQueryKey = "url"
type HTTPImageSource struct {
Config *SourceConfig
}
func NewHTTPImageSource(config *SourceConfig) ImageSource {
return &HTTPImageSource{config}
}
func (s *HTTPImageSource) Matches(r *http.Request) bool {
return r.Method == http.MethodGet && r.URL.Query().Get(URLQueryKey) != ""
}
func (s *HTTPImageSource) GetImage(req *http.Request) ([]byte, http.Header, error) {
u, err := parseURL(req)
if err != nil {
return nil, nil, ErrInvalidImageURL
}
if shouldRestrictOrigin(u, s.Config.AllowedOrigins) {
return nil, nil, fmt.Errorf("not allowed remote URL origin: %s%s", u.Host, u.Path)
}
return s.fetchImage(u, req)
}
func (s *HTTPImageSource) fetchImage(url *url.URL, ireq *http.Request) ([]byte, http.Header, error) {
// Check remote image size by fetching HTTP Headers
if s.Config.MaxAllowedSize > 0 {
req := newHTTPRequest(s, ireq, http.MethodHead, url)
res, err := http.DefaultClient.Do(req)
if err != nil {
return nil, nil, fmt.Errorf("error fetching remote http image headers: %v", err)
}
_ = res.Body.Close()
if res.StatusCode < 200 || res.StatusCode > 206 {
return nil, nil, NewError(fmt.Sprintf(
"error fetching remote http image headers: (status=%d) (url=%s)", res.StatusCode, req.URL.String()), res.StatusCode)
}
contentLength, _ := strconv.Atoi(res.Header.Get("Content-Length"))
if contentLength > s.Config.MaxAllowedSize {
return nil, nil, fmt.Errorf("Content-Length %d exceeds maximum allowed %d bytes", contentLength, s.Config.MaxAllowedSize) //nolint:lll
}
}
// Perform the request using the default client
req := newHTTPRequest(s, ireq, http.MethodGet, url)
res, err := http.DefaultClient.Do(req)
if err != nil {
return nil, nil, fmt.Errorf("error fetching remote http image: %v", err)
}
defer func(Body io.ReadCloser) {
_ = Body.Close()
}(res.Body)
if res.StatusCode != 200 {
return nil, nil, NewError(
fmt.Sprintf("error fetching remote http image: (status=%d) (url=%s)", res.StatusCode, req.URL.String()), res.StatusCode) //nolint:lll
}
// Read the body
buf, err := io.ReadAll(res.Body)
if err != nil {
return nil, nil, fmt.Errorf("unable to create image from response body: %s (url=%s)", req.URL.String(), err)
}
return buf, res.Header, nil
}
func (s *HTTPImageSource) setAuthorizationHeader(req *http.Request, ireq *http.Request) {
auth := s.Config.Authorization
if auth == "" {
auth = ireq.Header.Get("X-Forward-Authorization")
}
if auth == "" {
auth = ireq.Header.Get("Authorization")
}
if auth != "" {
req.Header.Set("Authorization", auth)
}
}
func (s *HTTPImageSource) setForwardHeaders(req *http.Request, ireq *http.Request) {
headers := s.Config.ForwardHeaders
for _, header := range headers {
if _, ok := ireq.Header[header]; ok {
req.Header.Set(header, ireq.Header.Get(header))
}
}
}
func parseURL(request *http.Request) (*url.URL, error) {
return url.Parse(request.URL.Query().Get(URLQueryKey))
}
func newHTTPRequest(s *HTTPImageSource, ireq *http.Request, method string, url *url.URL) *http.Request {
req, _ := http.NewRequest(method, url.String(), nil)
req.Header.Set("User-Agent", "imaginary/"+Version)
req.URL = url
if len(s.Config.ForwardHeaders) != 0 {
s.setForwardHeaders(req, ireq)
}
// Forward auth header to the target server, if necessary
if s.Config.AuthForwarding || s.Config.Authorization != "" {
s.setAuthorizationHeader(req, ireq)
}
if s.Config.AllowInsecureSSL {
http.DefaultTransport.(*http.Transport).TLSClientConfig = &tls.Config{InsecureSkipVerify: true} //nolint:gosec
}
return req
}
func shouldRestrictOrigin(url *url.URL, origins []*url.URL) bool {
if len(origins) == 0 {
return false
}
for _, origin := range origins {
if isExactMatch(url, origin) || isSubdomainMatch(url, origin) {
return false
}
}
return true
}
func isExactMatch(url *url.URL, origin *url.URL) bool {
return origin.Host == url.Host && strings.HasPrefix(url.Path, origin.Path)
}
func isSubdomainMatch(url *url.URL, origin *url.URL) bool {
if len(origin.Host) < 3 || origin.Host[0:2] != "*." {
return false
}
// Check if "*.example.org" matches "example.org"
if url.Host == origin.Host[2:] && strings.HasPrefix(url.Path, origin.Path) {
return true
}
// Check if "*.example.org" matches "foo.example.org"
if strings.HasSuffix(url.Host, origin.Host[1:]) && strings.HasPrefix(url.Path, origin.Path) {
return true
}
return false
}
func init() {
RegisterSource(ImageSourceTypeHTTP, NewHTTPImageSource)
}