forked from mendersoftware/mender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrootfs.go
111 lines (93 loc) · 3.24 KB
/
rootfs.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
// Copyright 2017 Northern.tech AS
//
// 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 main
import (
"fmt"
"io"
"io/ioutil"
"os"
"strings"
"github.com/mendersoftware/log"
"github.com/mendersoftware/mender/client"
"github.com/mendersoftware/mender/installer"
"github.com/mendersoftware/mender/utils"
"github.com/pkg/errors"
)
// This will be run manually from command line ONLY
func doRootfs(device installer.UInstaller, args runOptionsType, dt string,
vKey []byte) error {
var image io.ReadCloser
var imageSize int64
var err error
var upclient client.Updater
if args == (runOptionsType{}) {
return errors.New("rootfs called without needed parameters")
}
log.Debug("Starting device update.")
updateLocation := *args.imageFile
if strings.HasPrefix(updateLocation, "http:") ||
strings.HasPrefix(updateLocation, "https:") {
log.Infof("Performing remote update from: [%s].", updateLocation)
var ac *client.ApiClient
// we are having remote update
ac, err = client.New(args.Config)
if err != nil {
return errors.New("Can not initialize client for performing network update.")
}
upclient = client.NewUpdate()
log.Debug("Client initialized. Start downloading image.")
image, imageSize, err = upclient.FetchUpdate(ac, updateLocation, 0)
log.Debugf("Image downloaded: %d [%v] [%v]", imageSize, image, err)
} else {
// perform update from local file
log.Infof("Start updating from local image file: [%s]", updateLocation)
image, imageSize, err = FetchUpdateFromFile(updateLocation)
log.Debugf("Fetching update from file results: [%v], %d, %v", image, imageSize, err)
}
if image == nil || err != nil {
return errors.Wrapf(err, "rootfs: error while updating image from command line")
}
defer image.Close()
fmt.Fprintf(os.Stdout, "Installing update from the artifact of size %d\n", imageSize)
p := &utils.ProgressWriter{
Out: os.Stdout,
N: imageSize,
}
tr := io.TeeReader(image, p)
err = installer.Install(ioutil.NopCloser(tr), dt, vKey, "", device, *args.runStateScripts)
if err != nil {
log.Errorf("Installation failed: %s", err.Error())
return err
}
err = device.EnableUpdatedPartition()
if err != nil {
log.Errorf("Enabling updated partition failed: %s", err.Error())
return err
}
return nil
}
// FetchUpdateFromFile returns a byte stream of the given file, size of the file
// and an error if one occurred.
func FetchUpdateFromFile(file string) (io.ReadCloser, int64, error) {
fd, err := os.Open(file)
if err != nil {
return nil, 0, fmt.Errorf("Not able to open image file: %s: %s\n",
file, err.Error())
}
imageInfo, err := fd.Stat()
if err != nil {
return nil, 0, fmt.Errorf("Unable to stat() file: %s: %s\n", file, err.Error())
}
return fd, imageInfo.Size(), nil
}