-
-
Notifications
You must be signed in to change notification settings - Fork 497
/
binary.go
267 lines (224 loc) · 7.57 KB
/
binary.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
package action
import (
"bytes"
"context"
"crypto/sha256"
"encoding/base64"
"fmt"
"io"
"io/ioutil"
"net/http"
"os"
"path/filepath"
"strings"
"github.com/gopasspw/gopass/internal/debug"
"github.com/gopasspw/gopass/internal/out"
"github.com/gopasspw/gopass/pkg/ctxutil"
"github.com/gopasspw/gopass/pkg/fsutil"
"github.com/gopasspw/gopass/pkg/gopass"
"github.com/gopasspw/gopass/pkg/gopass/secret"
"github.com/pkg/errors"
"github.com/urfave/cli/v2"
)
var (
binstdin = os.Stdin
)
// Cat prints to or reads from STDIN/STDOUT
func (s *Action) Cat(c *cli.Context) error {
ctx := ctxutil.WithGlobalFlags(c)
name := c.Args().First()
if name == "" {
return ExitError(ExitNoName, nil, "Usage: %s cat <NAME>", c.App.Name)
}
// handle pipe to stdin
info, err := binstdin.Stat()
if err != nil {
return ExitError(ExitIO, err, "failed to stat stdin: %s", err)
}
// if content is piped to stdin, read and save it
if info.Mode()&os.ModeCharDevice == 0 {
debug.Log("Reading from STDIN ...")
content := &bytes.Buffer{}
if written, err := io.Copy(content, binstdin); err != nil {
return ExitError(ExitIO, err, "Failed to copy after %d bytes: %s", written, err)
}
return s.Store.Set(
ctxutil.WithCommitMessage(ctx, "Read secret from STDIN"),
name,
secFromBytes(name, "STDIN", content.Bytes()),
)
}
buf, err := s.binaryGet(ctx, name)
if err != nil {
return ExitError(ExitDecrypt, err, "failed to read secret: %s", err)
}
fmt.Fprint(stdout, string(buf))
return nil
}
func secFromBytes(dst, src string, in []byte) gopass.Secret {
ct := http.DetectContentType(in)
debug.Log("Read %d bytes of %s from %s to %s", len(in), ct, src, dst)
sec := secret.New()
sec.Set("Content-Type", http.DetectContentType(in))
sec.Set("Content-Disposition", fmt.Sprintf("attachment; filename=\"%s\"", filepath.Base(src)))
if strings.HasPrefix(ct, "text/") {
sec.WriteString(string(in))
} else {
sec.WriteString(base64.StdEncoding.EncodeToString(in))
sec.Set("Content-Transfer-Encoding", "Base64")
}
return sec
}
// BinaryCopy copies either from the filesystem to the store or from the store
// to the filesystem
func (s *Action) BinaryCopy(c *cli.Context) error {
ctx := ctxutil.WithGlobalFlags(c)
from := c.Args().Get(0)
to := c.Args().Get(1)
// argument checking is in s.binaryCopy
if err := s.binaryCopy(ctx, c, from, to, false); err != nil {
return ExitError(ExitUnknown, err, "%s", err)
}
return nil
}
// BinaryMove works like Copy but will remove (shred/wipe) the source
// after a successful copy. Mostly useful for securely moving secrets into
// the store if they are no longer needed / wanted on disk afterwards
func (s *Action) BinaryMove(c *cli.Context) error {
ctx := ctxutil.WithGlobalFlags(c)
from := c.Args().Get(0)
to := c.Args().Get(1)
// argument checking is in s.binaryCopy
if err := s.binaryCopy(ctx, c, from, to, true); err != nil {
return ExitError(ExitUnknown, err, "%s", err)
}
return nil
}
// binaryCopy implements the control flow for copy and move. We support two
// workflows:
// 1. From the filesystem to the store
// 2. From the store to the filesystem
//
// Copying secrets in the store must be done through the regular copy command
func (s *Action) binaryCopy(ctx context.Context, c *cli.Context, from, to string, deleteSource bool) error {
if from == "" || to == "" {
op := "copy"
if deleteSource {
op = "move"
}
return errors.Errorf("Usage: %s fs%s from to", c.App.Name, op)
}
switch {
case fsutil.IsFile(from) && fsutil.IsFile(to):
// copying from on file to another file is not supported
return errors.New("ambiquity detected. Only from or to can be a file")
case s.Store.Exists(ctx, from) && s.Store.Exists(ctx, to):
// copying from one secret to another secret is not supported
return errors.New("ambiquity detected. Either from or to must be a file")
case fsutil.IsFile(from) && !fsutil.IsFile(to):
return s.binaryCopyFromFileToStore(ctx, from, to, deleteSource)
case !fsutil.IsFile(from):
return s.binaryCopyFromStoreToFile(ctx, from, to, deleteSource)
default:
return errors.Errorf("ambiquity detected. Unhandled case. Please report a bug")
}
}
func (s *Action) binaryCopyFromFileToStore(ctx context.Context, from, to string, deleteSource bool) error {
// if the source is a file the destination must no to avoid ambiquities
// if necessary this can be resolved by using a absolute path for the file
// and a relative one for the secret
// copy from FS to store
buf, err := ioutil.ReadFile(from)
if err != nil {
return errors.Wrapf(err, "failed to read file from '%s'", from)
}
if err := s.Store.Set(
ctxutil.WithCommitMessage(ctx, fmt.Sprintf("Copied data from %s to %s", from, to)), to, secFromBytes(to, from, buf)); err != nil {
return errors.Wrapf(err, "failed to save buffer to store")
}
if !deleteSource {
return nil
}
// it's important that we return if the validation fails, because
// in that case we don't want to shred our (only) copy of this data!
if err := s.binaryValidate(ctx, buf, to); err != nil {
return errors.Wrapf(err, "failed to validate written data")
}
if err := fsutil.Shred(from, 8); err != nil {
return errors.Wrapf(err, "failed to shred data")
}
return nil
}
func (s *Action) binaryCopyFromStoreToFile(ctx context.Context, from, to string, deleteSource bool) error {
// if the source is no file we assume it's a secret and to is a filename
// (which may already exist or not)
// copy from store to FS
buf, err := s.binaryGet(ctx, from)
if err != nil {
return errors.Wrapf(err, "failed to read data from '%s'", from)
}
if err := ioutil.WriteFile(to, buf, 0600); err != nil {
return errors.Wrapf(err, "failed to write data to '%s'", to)
}
if !deleteSource {
return nil
}
// as before: if validation of the written data fails, we MUST NOT
// delete the (only) source
if err := s.binaryValidate(ctx, buf, from); err != nil {
return errors.Wrapf(err, "failed to validate the written data")
}
if err := s.Store.Delete(ctx, from); err != nil {
return errors.Wrapf(err, "failed to delete '%s' from the store", from)
}
return nil
}
func (s *Action) binaryValidate(ctx context.Context, buf []byte, name string) error {
h := sha256.New()
_, _ = h.Write(buf)
fileSum := fmt.Sprintf("%x", h.Sum(nil))
h.Reset()
debug.Log("in: %s - '%s'", fileSum, string(buf))
var err error
buf, err = s.binaryGet(ctx, name)
if err != nil {
return errors.Wrapf(err, "failed to read '%s' from the store", name)
}
_, _ = h.Write(buf)
storeSum := fmt.Sprintf("%x", h.Sum(nil))
debug.Log("store: %s - '%s'", storeSum, string(buf))
if fileSum != storeSum {
return errors.Errorf("Hashsum mismatch (file: %s, store: %s)", fileSum, storeSum)
}
return nil
}
func (s *Action) binaryGet(ctx context.Context, name string) ([]byte, error) {
sec, err := s.Store.Get(ctx, name)
if err != nil {
return nil, errors.Wrapf(err, "failed to read '%s' from the store", name)
}
if cte := sec.Get("Content-Transfer-Encoding"); cte != "Base64" {
return []byte(sec.GetBody()), nil
}
buf, err := base64.StdEncoding.DecodeString(sec.GetBody())
if err != nil {
return nil, errors.Wrapf(err, "failed to encode to base64")
}
return buf, nil
}
// Sum decodes binary content and computes the SHA256 checksum
func (s *Action) Sum(c *cli.Context) error {
ctx := ctxutil.WithGlobalFlags(c)
name := c.Args().First()
if name == "" {
return ExitError(ExitUsage, nil, "Usage: %s sha256 name", c.App.Name)
}
buf, err := s.binaryGet(ctx, name)
if err != nil {
return ExitError(ExitDecrypt, err, "failed to read secret: %s", err)
}
h := sha256.New()
_, _ = h.Write(buf)
out.Yellow(ctx, "%x", h.Sum(nil))
return nil
}