-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.go
331 lines (294 loc) · 9.81 KB
/
tools.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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
// Copyright 2013 Canonical Ltd.
// Licensed under the AGPLv3, see LICENCE file for details.
package apiserver
import (
"bytes"
"crypto/sha256"
"fmt"
"io"
"io/ioutil"
"net/http"
"net/url"
"strconv"
"strings"
"github.com/juju/errors"
"github.com/juju/utils"
"github.com/juju/version"
"github.com/juju/juju/apiserver/common"
"github.com/juju/juju/apiserver/httpcontext"
"github.com/juju/juju/apiserver/params"
"github.com/juju/juju/environs"
envtools "github.com/juju/juju/environs/tools"
"github.com/juju/juju/state"
"github.com/juju/juju/state/binarystorage"
"github.com/juju/juju/state/stateenvirons"
"github.com/juju/juju/tools"
)
// toolsReadCloser wraps the ReadCloser for the tools blob
// and the state StorageCloser.
// It allows us to stream the tools binary from state,
// closing them both at once when done.
type toolsReadCloser struct {
f io.ReadCloser
st binarystorage.StorageCloser
}
func (t *toolsReadCloser) Read(p []byte) (n int, err error) {
return t.f.Read(p)
}
func (t *toolsReadCloser) Close() error {
var err error
if err = t.f.Close(); err == nil {
return t.st.Close()
}
if err2 := t.st.Close(); err2 != nil {
err = errors.Wrap(err, err2)
}
return err
}
// toolsHandler handles tool upload through HTTPS in the API server.
type toolsUploadHandler struct {
ctxt httpContext
stateAuthFunc func(*http.Request) (*state.PooledState, error)
}
// toolsHandler handles tool download through HTTPS in the API server.
type toolsDownloadHandler struct {
ctxt httpContext
}
func (h *toolsDownloadHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
st, err := h.ctxt.stateForRequestUnauthenticated(r)
if err != nil {
if err := sendError(w, err); err != nil {
logger.Errorf("%v", err)
}
return
}
defer st.Release()
switch r.Method {
case "GET":
reader, size, err := h.getToolsForRequest(r, st.State)
if err != nil {
logger.Errorf("GET(%s) failed: %v", r.URL, err)
if err := sendError(w, errors.NewBadRequest(err, "")); err != nil {
logger.Errorf("%v", err)
}
return
}
defer reader.Close()
if err := h.sendTools(w, reader, size); err != nil {
logger.Errorf("%v", err)
}
default:
if err := sendError(w, errors.MethodNotAllowedf("unsupported method: %q", r.Method)); err != nil {
logger.Errorf("%v", err)
}
}
}
func (h *toolsUploadHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// Validate before authenticate because the authentication is dependent
// on the state connection that is determined during the validation.
st, err := h.stateAuthFunc(r)
if err != nil {
if err := sendError(w, err); err != nil {
logger.Errorf("%v", err)
}
return
}
defer st.Release()
switch r.Method {
case "POST":
// Add tools to storage.
agentTools, err := h.processPost(r, st.State)
if err != nil {
if err := sendError(w, err); err != nil {
logger.Errorf("%v", err)
}
return
}
if err := sendStatusAndJSON(w, http.StatusOK, ¶ms.ToolsResult{
ToolsList: tools.List{agentTools},
}); err != nil {
logger.Errorf("%v", err)
}
default:
if err := sendError(w, errors.MethodNotAllowedf("unsupported method: %q", r.Method)); err != nil {
logger.Errorf("%v", err)
}
}
}
// getToolsForRequest retrieves the compressed agent binaries tarball from state
// based on the input HTTP request.
// It is returned with the size of the file as recorded in the stored metadata.
func (h *toolsDownloadHandler) getToolsForRequest(r *http.Request, st *state.State) (io.ReadCloser, int64, error) {
version, err := version.ParseBinary(r.URL.Query().Get(":version"))
if err != nil {
return nil, 0, errors.Annotate(err, "error parsing version")
}
logger.Debugf("request for agent binaries: %s", version)
storage, err := st.ToolsStorage()
if err != nil {
return nil, 0, errors.Annotate(err, "error getting storage for agent binaries")
}
md, reader, err := storage.Open(version.String())
if errors.IsNotFound(err) {
// Tools could not be found in tools storage,
// so look for them in simplestreams,
// fetch them and cache in tools storage.
logger.Infof("%v agent binaries not found locally, fetching", version)
md, reader, err = h.fetchAndCacheTools(version, storage, st)
if err != nil {
err = errors.Annotate(err, "error fetching agent binaries")
}
}
if err != nil {
storage.Close()
return nil, 0, err
}
return &toolsReadCloser{f: reader, st: storage}, md.Size, nil
}
// fetchAndCacheTools fetches tools with the specified version by searching for a URL
// in simplestreams and GETting it, caching the result in tools storage before returning
// to the caller.
func (h *toolsDownloadHandler) fetchAndCacheTools(
v version.Binary,
stor binarystorage.Storage,
st *state.State,
) (binarystorage.Metadata, io.ReadCloser, error) {
md := binarystorage.Metadata{Version: v.String()}
newEnviron := stateenvirons.GetNewEnvironFunc(environs.New)
env, err := newEnviron(st)
if err != nil {
return md, nil, err
}
tools, err := envtools.FindExactTools(env, v.Number, v.Series, v.Arch)
if err != nil {
return md, nil, err
}
// No need to verify the server's identity because we verify the SHA-256 hash.
logger.Infof("fetching %v agent binaries from %v", v, tools.URL)
resp, err := utils.GetNonValidatingHTTPClient().Get(tools.URL)
if err != nil {
return md, nil, err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
msg := fmt.Sprintf("bad HTTP response: %v", resp.Status)
if body, err := ioutil.ReadAll(resp.Body); err == nil {
msg += fmt.Sprintf(" (%s)", bytes.TrimSpace(body))
}
return md, nil, errors.New(msg)
}
data, sha256, err := readAndHash(resp.Body)
if err != nil {
return md, nil, err
}
if int64(len(data)) != tools.Size {
return md, nil, errors.Errorf("size mismatch for %s", tools.URL)
}
md.Size = tools.Size
if sha256 != tools.SHA256 {
return md, nil, errors.Errorf("hash mismatch for %s", tools.URL)
}
md.SHA256 = tools.SHA256
if err := stor.Add(bytes.NewReader(data), md); err != nil {
return md, nil, errors.Annotate(err, "error caching agent binaries")
}
return md, ioutil.NopCloser(bytes.NewReader(data)), nil
}
// sendTools streams the tools tarball to the client.
func (h *toolsDownloadHandler) sendTools(w http.ResponseWriter, reader io.ReadCloser, size int64) error {
logger.Tracef("sending %d bytes", size)
w.Header().Set("Content-Type", "application/x-tar-gz")
w.Header().Set("Content-Length", strconv.FormatInt(size, 10))
if _, err := io.Copy(w, reader); err != nil {
// Having begun writing, it is too late to send an error response here.
return errors.Annotatef(err, "failed to send agent binaries")
}
return nil
}
// processPost handles a tools upload POST request after authentication.
func (h *toolsUploadHandler) processPost(r *http.Request, st *state.State) (*tools.Tools, error) {
query := r.URL.Query()
binaryVersionParam := query.Get("binaryVersion")
if binaryVersionParam == "" {
return nil, errors.BadRequestf("expected binaryVersion argument")
}
toolsVersion, err := version.ParseBinary(binaryVersionParam)
if err != nil {
return nil, errors.NewBadRequest(err, fmt.Sprintf("invalid agent binaries version %q", binaryVersionParam))
}
// Make sure the content type is x-tar-gz.
contentType := r.Header.Get("Content-Type")
if contentType != "application/x-tar-gz" {
return nil, errors.BadRequestf("expected Content-Type: application/x-tar-gz, got: %v", contentType)
}
// We'll clone the tools for each additional series specified.
var cloneSeries []string
if seriesParam := query.Get("series"); seriesParam != "" {
cloneSeries = strings.Split(seriesParam, ",")
}
logger.Debugf("request to upload agent binaries: %s", toolsVersion)
logger.Debugf("additional series: %s", cloneSeries)
toolsVersions := []version.Binary{toolsVersion}
for _, series := range cloneSeries {
if series != toolsVersion.Series {
v := toolsVersion
v.Series = series
toolsVersions = append(toolsVersions, v)
}
}
serverRoot := h.getServerRoot(r, query, st)
return h.handleUpload(r.Body, toolsVersions, serverRoot, st)
}
func (h *toolsUploadHandler) getServerRoot(r *http.Request, query url.Values, st *state.State) string {
modelUUID := httpcontext.RequestModelUUID(r)
return fmt.Sprintf("https://%s/model/%s", r.Host, modelUUID)
}
// handleUpload uploads the tools data from the reader to env storage as the specified version.
func (h *toolsUploadHandler) handleUpload(r io.Reader, toolsVersions []version.Binary, serverRoot string, st *state.State) (*tools.Tools, error) {
// Check if changes are allowed and the command may proceed.
blockChecker := common.NewBlockChecker(st)
if err := blockChecker.ChangeAllowed(); err != nil {
return nil, errors.Trace(err)
}
storage, err := st.ToolsStorage()
if err != nil {
return nil, err
}
defer storage.Close()
// Read the tools tarball from the request, calculating the sha256 along the way.
data, sha256, err := readAndHash(r)
if err != nil {
return nil, err
}
if len(data) == 0 {
return nil, errors.BadRequestf("no agent binaries uploaded")
}
// TODO(wallyworld): check integrity of tools tarball.
// Store tools and metadata in tools storage.
for _, v := range toolsVersions {
metadata := binarystorage.Metadata{
Version: v.String(),
Size: int64(len(data)),
SHA256: sha256,
}
logger.Debugf("uploading agent binaries %+v to storage", metadata)
if err := storage.Add(bytes.NewReader(data), metadata); err != nil {
return nil, err
}
}
tools := &tools.Tools{
Version: toolsVersions[0],
Size: int64(len(data)),
SHA256: sha256,
URL: common.ToolsURL(serverRoot, toolsVersions[0]),
}
return tools, nil
}
func readAndHash(r io.Reader) (data []byte, sha256hex string, err error) {
hash := sha256.New()
data, err = ioutil.ReadAll(io.TeeReader(r, hash))
if err != nil {
return nil, "", errors.Annotate(err, "error processing file upload")
}
return data, fmt.Sprintf("%x", hash.Sum(nil)), nil
}