This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
update.go
286 lines (260 loc) · 5.99 KB
/
update.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
package main
import (
"bytes"
"compress/gzip"
"crypto/sha256"
"encoding/json"
"errors"
"fmt"
"io"
"io/ioutil"
"log"
"math/rand"
"net/http"
"os"
"os/exec"
"runtime"
"time"
"github.com/heroku/hk/Godeps/_workspace/src/bitbucket.org/kardianos/osext"
"github.com/heroku/hk/Godeps/_workspace/src/github.com/inconshreveable/go-update"
"github.com/heroku/hk/Godeps/_workspace/src/github.com/kr/binarydist"
)
var cmdUpdate = &Command{
Run: runUpdate,
Usage: "update",
Category: "hk",
Long: `
Update downloads and installs the next version of hk.
This command is unlisted, since users never have to run it directly.
`,
}
func runUpdate(cmd *Command, args []string) {
if updater == nil {
printFatal("Dev builds don't support auto-updates")
}
if err := updater.update(); err != nil {
printFatal(err.Error())
}
}
const (
upcktimePath = "cktime"
plat = runtime.GOOS + "-" + runtime.GOARCH
)
var ErrHashMismatch = errors.New("new file hash mismatch after patch")
// Update protocol.
//
// GET hk.heroku.com/hk/current/linux-amd64.json
//
// 200 ok
// {
// "Version": "2",
// "Sha256": "..." // base64
// }
//
// then
//
// GET hkpatch.s3.amazonaws.com/hk/1/2/linux-amd64
//
// 200 ok
// [bsdiff data]
//
// or
//
// GET hkdist.s3.amazonaws.com/hk/2/linux-amd64.gz
//
// 200 ok
// [gzipped executable data]
type Updater struct {
apiURL string
cmdName string
binURL string
diffURL string
dir string
info struct {
Version string
Sha256 []byte
}
}
func (u *Updater) backgroundRun() {
os.MkdirAll(u.dir, 0777)
if u.wantUpdate() {
if err := update.SanityCheck(); err != nil {
// fail
return
}
self, err := osext.Executable()
if err != nil {
// fail update, couldn't figure out path to self
return
}
// TODO(bgentry): logger isn't on Windows. Replace w/ proper error reports.
l := exec.Command("logger", "-thk")
c := exec.Command(self, "update")
if w, err := l.StdinPipe(); err == nil && l.Start() == nil {
c.Stdout = w
c.Stderr = w
}
c.Start()
}
}
func (u *Updater) wantUpdate() bool {
path := u.dir + upcktimePath
if Version == "dev" || readTime(path).After(time.Now()) {
return false
}
wait := 12*time.Hour + randDuration(8*time.Hour)
return writeTime(path, time.Now().Add(wait))
}
func (u *Updater) update() error {
path, err := osext.Executable()
if err != nil {
return err
}
old, err := os.Open(path)
if err != nil {
return err
}
defer old.Close()
err = u.fetchInfo()
if err != nil {
return err
}
if u.info.Version == Version {
return nil
}
bin, err := u.fetchAndVerifyPatch(old)
if err != nil {
switch err {
case ErrNoPatchAvailable:
log.Println("update: no patch available, falling back to full binary")
case ErrHashMismatch:
log.Println("update: hash mismatch from patched binary")
default:
log.Println("update: patching binary,", err)
}
bin, err = u.fetchAndVerifyFullBin()
if err != nil {
if err == ErrHashMismatch {
log.Println("update: hash mismatch from full binary")
} else {
log.Println("update: fetching full binary,", err)
}
return err
}
}
// close the old binary before installing because on windows
// it can't be renamed if a handle to the file is still open
old.Close()
err, errRecover := update.FromStream(bytes.NewBuffer(bin))
if errRecover != nil {
return fmt.Errorf("update and recovery errors: %q %q", err, errRecover)
}
if err != nil {
return err
}
log.Printf("Updated v%s -> v%s.", Version, u.info.Version)
return nil
}
func (u *Updater) fetchInfo() error {
r, err := fetch(u.apiURL + u.cmdName + "/current/" + plat + ".json")
if err != nil {
return err
}
defer r.Close()
err = json.NewDecoder(r).Decode(&u.info)
if err != nil {
return err
}
if len(u.info.Sha256) != sha256.Size {
return errors.New("bad cmd hash in info")
}
return nil
}
func (u *Updater) fetchAndVerifyPatch(old io.Reader) ([]byte, error) {
bin, err := u.fetchAndApplyPatch(old)
if err != nil {
return nil, err
}
if !verifySha(bin, u.info.Sha256) {
return nil, ErrHashMismatch
}
return bin, nil
}
func (u *Updater) fetchAndApplyPatch(old io.Reader) ([]byte, error) {
r, err := fetch(u.diffURL + u.cmdName + "/" + Version + "/" + u.info.Version + "/" + plat)
if err != nil {
return nil, err
}
defer r.Close()
var buf bytes.Buffer
err = binarydist.Patch(old, &buf, r)
return buf.Bytes(), err
}
func (u *Updater) fetchAndVerifyFullBin() ([]byte, error) {
bin, err := u.fetchBin()
if err != nil {
return nil, err
}
verified := verifySha(bin, u.info.Sha256)
if !verified {
return nil, ErrHashMismatch
}
return bin, nil
}
func (u *Updater) fetchBin() ([]byte, error) {
r, err := fetch(u.binURL + u.cmdName + "/" + u.info.Version + "/" + plat + ".gz")
if err != nil {
return nil, err
}
defer r.Close()
buf := new(bytes.Buffer)
gz, err := gzip.NewReader(r)
if err != nil {
return nil, err
}
if _, err = io.Copy(buf, gz); err != nil {
return nil, err
}
return buf.Bytes(), nil
}
// returns a random duration in [0,n).
func randDuration(n time.Duration) time.Duration {
return time.Duration(rand.Int63n(int64(n)))
}
var ErrNoPatchAvailable = errors.New("no patch available")
func fetch(url string) (io.ReadCloser, error) {
resp, err := http.Get(url)
if err != nil {
return nil, err
}
switch resp.StatusCode {
case 200:
return resp.Body, nil
case 401, 403, 404:
return nil, ErrNoPatchAvailable
default:
return nil, fmt.Errorf("bad http status from %s: %v", url, resp.Status)
}
}
func readTime(path string) time.Time {
p, err := ioutil.ReadFile(path)
if os.IsNotExist(err) {
return time.Time{}
}
if err != nil {
return time.Now().Add(1000 * time.Hour)
}
t, err := time.Parse(time.RFC3339, string(p))
if err != nil {
return time.Now().Add(1000 * time.Hour)
}
return t
}
func verifySha(bin []byte, sha []byte) bool {
h := sha256.New()
h.Write(bin)
return bytes.Equal(h.Sum(nil), sha)
}
func writeTime(path string, t time.Time) bool {
return ioutil.WriteFile(path, []byte(t.Format(time.RFC3339)), 0644) == nil
}