-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy patheosbinary.go
1266 lines (1106 loc) · 39.4 KB
/
eosbinary.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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2018-2024 CERN
//
// 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.
//
// In applying this license, CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
package eosbinary
import (
"bytes"
"context"
"fmt"
"io"
"os"
"os/exec"
"path"
"path/filepath"
"strconv"
"strings"
"syscall"
"time"
"github.com/cs3org/reva/pkg/appctx"
"github.com/cs3org/reva/pkg/eosclient"
"github.com/cs3org/reva/pkg/errtypes"
"github.com/cs3org/reva/pkg/storage/utils/acl"
"github.com/cs3org/reva/pkg/trace"
"github.com/google/uuid"
"github.com/pkg/errors"
)
const (
versionPrefix = ".sys.v#."
favoritesKey = "http://owncloud.org/ns/favorite"
)
func serializeAttribute(a *eosclient.Attribute) string {
return fmt.Sprintf("%s.%s=%s", attrTypeToString(a.Type), a.Key, a.Val)
}
func attrTypeToString(at eosclient.AttrType) string {
switch at {
case eosclient.SystemAttr:
return "sys"
case eosclient.UserAttr:
return "user"
default:
return "invalid"
}
}
func isValidAttribute(a *eosclient.Attribute) bool {
// validate that an attribute is correct.
if (a.Type != eosclient.SystemAttr && a.Type != eosclient.UserAttr) || a.Key == "" {
return false
}
return true
}
// Options to configure the Client.
type Options struct {
// ForceSingleUserMode forces all connections to use only one user.
// This is the case when access to EOS is done from FUSE under apache or www-data.
ForceSingleUserMode bool
// UseKeyTabAuth changes will authenticate requests by using an EOS keytab.
UseKeytab bool
// Whether to maintain the same inode across various versions of a file.
// Requires extra metadata operations if set to true
VersionInvariant bool
// SingleUsername is the username to use when connecting to EOS.
// Defaults to apache
SingleUsername string
// Location of the eos binary.
// Default is /usr/bin/eos.
EosBinary string
// Location of the xrdcopy binary.
// Default is /opt/eos/xrootd/bin/xrdcopy.
XrdcopyBinary string
// URL of the EOS MGM.
// Default is root://eos-example.org
URL string
// Location on the local fs where to store reads.
// Defaults to os.TempDir()
CacheDirectory string
// Keytab is the location of the EOS keytab file.
Keytab string
// SecProtocol is the comma separated list of security protocols used by xrootd.
// For example: "sss, unix"
// DEPRECATED
// This variable is no longer used. Only sss and unix protocols are possible.
// If UseKeytab is set to true the protocol will be set to "sss", else to "unix"
SecProtocol string
// TokenExpiry stores in seconds the time after which generated tokens will expire
// Default is 3600
TokenExpiry int
}
func (opt *Options) ApplyDefaults() {
if opt.ForceSingleUserMode && opt.SingleUsername != "" {
opt.SingleUsername = "apache"
}
if opt.EosBinary == "" {
opt.EosBinary = "/usr/bin/eos"
}
if opt.XrdcopyBinary == "" {
opt.XrdcopyBinary = "/opt/eos/xrootd/bin/xrdcopy"
}
if opt.URL == "" {
opt.URL = "root://eos-example.org"
}
if opt.CacheDirectory == "" {
opt.CacheDirectory = os.TempDir()
}
}
// Client performs actions against a EOS management node (MGM).
// It requires the eos-client and xrootd-client packages installed to work.
type Client struct {
opt *Options
}
// New creates a new client with the given options.
func New(opt *Options) (*Client, error) {
opt.ApplyDefaults()
c := new(Client)
c.opt = opt
return c, nil
}
// executeXRDCopy executes xrdcpy commands and returns the stdout, stderr and return code.
func (c *Client) executeXRDCopy(ctx context.Context, cmdArgs []string) (string, string, error) {
log := appctx.GetLogger(ctx)
outBuf := &bytes.Buffer{}
errBuf := &bytes.Buffer{}
cmd := exec.CommandContext(ctx, c.opt.XrdcopyBinary, cmdArgs...)
cmd.Stdout = outBuf
cmd.Stderr = errBuf
cmd.Env = []string{
"EOS_MGM_URL=" + c.opt.URL,
}
if c.opt.UseKeytab {
cmd.Env = append(cmd.Env, "XrdSecPROTOCOL=sss")
cmd.Env = append(cmd.Env, "XrdSecSSSKT="+c.opt.Keytab)
} else { // we are a trusted gateway
cmd.Env = append(cmd.Env, "XrdSecPROTOCOL=unix")
cmd.Env = append(cmd.Env, "KRB5CCNAME=FILE:/dev/null") // do not try to use krb
}
err := cmd.Run()
var exitStatus int
if exiterr, ok := err.(*exec.ExitError); ok {
// The program has exited with an exit code != 0
// This works on both Unix and Windows. Although package
// syscall is generally platform dependent, WaitStatus is
// defined for both Unix and Windows and in both cases has
// an ExitStatus() method with the same signature.
if status, ok := exiterr.Sys().(syscall.WaitStatus); ok {
exitStatus = status.ExitStatus()
switch exitStatus {
case 0:
err = nil
case int(syscall.ENOENT):
err = errtypes.NotFound(errBuf.String())
}
}
}
// check for operation not permitted error
if strings.Contains(errBuf.String(), "Operation not permitted") {
err = errtypes.InvalidCredentials("eosclient: no sufficient permissions for the operation")
}
// check for lock mismatch error
if strings.Contains(errBuf.String(), "file has a valid extended attribute lock") {
err = errtypes.Conflict("eosclient: lock mismatch")
}
args := fmt.Sprintf("%s", cmd.Args)
env := fmt.Sprintf("%s", cmd.Env)
log.Info().Str("args", args).Str("env", env).Int("exit", exitStatus).Msg("eos cmd")
return outBuf.String(), errBuf.String(), err
}
// exec executes only EOS commands the command and returns the stdout, stderr and return code.
func (c *Client) executeEOS(ctx context.Context, cmdArgs []string, auth eosclient.Authorization) (string, string, error) {
log := appctx.GetLogger(ctx)
outBuf := &bytes.Buffer{}
errBuf := &bytes.Buffer{}
cmd := exec.CommandContext(ctx, c.opt.EosBinary)
cmd.Stdout = outBuf
cmd.Stderr = errBuf
cmd.Env = []string{
"EOS_MGM_URL=" + c.opt.URL,
}
if auth.Token != "" {
cmd.Env = append(cmd.Env, "EOSAUTHZ="+auth.Token)
} else if auth.Role.UID != "" && auth.Role.GID != "" {
cmd.Args = append(cmd.Args, []string{"-r", auth.Role.UID, auth.Role.GID}...)
}
if c.opt.UseKeytab {
cmd.Env = append(cmd.Env, "XrdSecPROTOCOL=sss")
cmd.Env = append(cmd.Env, "XrdSecSSSKT="+c.opt.Keytab)
} else { // we are a trusted gateway
cmd.Env = append(cmd.Env, "XrdSecPROTOCOL=unix")
cmd.Env = append(cmd.Env, "KRB5CCNAME=FILE:/dev/null") // do not try to use krb
}
// add application label
// cmd.Args = append(cmd.Args, "-a", "reva_eosclient::meta")
cmd.Args = append(cmd.Args, cmdArgs...)
t := trace.Get(ctx)
if t != "" {
cmd.Args = append(cmd.Args, "--comment", t)
}
err := cmd.Run()
var exitStatus int
if exiterr, ok := err.(*exec.ExitError); ok {
// The program has exited with an exit code != 0
// This works on both Unix and Windows. Although package
// syscall is generally platform dependent, WaitStatus is
// defined for both Unix and Windows and in both cases has
// an ExitStatus() method with the same signature.
if status, ok := exiterr.Sys().(syscall.WaitStatus); ok {
exitStatus = status.ExitStatus()
switch exitStatus {
case 0:
err = nil
case int(syscall.ENOENT):
err = errtypes.NotFound("eosclient: " + errBuf.String())
case int(syscall.EPERM), int(syscall.E2BIG), int(syscall.EINVAL):
// eos reports back error code 1 (EPERM) as a PermissionDenied error
// eos reports back error code 7 (E2BIG) when the user is not allowed to read the directory
// eos reports back error code 22 (EINVAL) when the user is not allowed to enter the instance
errString := errBuf.String()
if errString == "" {
errString = fmt.Sprintf("rc = %d", exitStatus)
}
err = errtypes.PermissionDenied("eosclient: " + errString)
default:
err = errors.Wrap(err, fmt.Sprintf("eosclient: error while executing command: %s", errBuf.String()))
}
}
}
args := fmt.Sprintf("%s", cmd.Args)
env := fmt.Sprintf("%s", cmd.Env)
log.Info().Str("args", args).Str("env", env).Int("exit", exitStatus).Str("err", errBuf.String()).Msg("eos cmd")
return outBuf.String(), errBuf.String(), err
}
// AddACL adds an new acl to EOS with the given aclType.
func (c *Client) AddACL(ctx context.Context, auth, rootAuth eosclient.Authorization, path string, pos uint, a *acl.Entry) error {
finfo, err := c.getRawFileInfoByPath(ctx, auth, path)
if err != nil {
return err
}
sysACL := a.CitrineSerialize()
args := []string{"acl", "--sys"}
if finfo.IsDir {
args = append(args, "--recursive")
}
// set position of ACLs to add. The default is to append to the end, so no arguments will be added in this case
// the first position starts at 1 = eosclient.StartPosition
if pos != eosclient.EndPosition {
args = append(args, "--position", fmt.Sprint(pos))
}
args = append(args, sysACL, path)
_, _, err = c.executeEOS(ctx, args, rootAuth)
return err
}
// RemoveACL removes the acl from EOS.
func (c *Client) RemoveACL(ctx context.Context, auth, rootAuth eosclient.Authorization, path string, a *acl.Entry) error {
finfo, err := c.getRawFileInfoByPath(ctx, auth, path)
if err != nil {
return err
}
a.Permissions = ""
sysACL := a.CitrineSerialize()
args := []string{"acl", "--sys"}
if finfo.IsDir {
args = append(args, "--recursive")
}
args = append(args, sysACL, path)
_, _, err = c.executeEOS(ctx, args, rootAuth)
return err
}
// UpdateACL updates the EOS acl.
func (c *Client) UpdateACL(ctx context.Context, auth, rootAuth eosclient.Authorization, path string, position uint, a *acl.Entry) error {
return c.AddACL(ctx, auth, rootAuth, path, position, a)
}
// GetACL for a file.
func (c *Client) GetACL(ctx context.Context, auth eosclient.Authorization, path, aclType, target string) (*acl.Entry, error) {
acls, err := c.ListACLs(ctx, auth, path)
if err != nil {
return nil, err
}
for _, a := range acls {
if a.Type == aclType && a.Qualifier == target {
return a, nil
}
}
return nil, errtypes.NotFound(fmt.Sprintf("%s:%s", aclType, target))
}
// ListACLs returns the list of ACLs present under the given path.
// EOS returns uids/gid for Citrine version and usernames for older versions.
// For Citire we need to convert back the uid back to username.
func (c *Client) ListACLs(ctx context.Context, auth eosclient.Authorization, path string) ([]*acl.Entry, error) {
parsedACLs, err := c.getACLForPath(ctx, auth, path)
if err != nil {
return nil, err
}
// EOS Citrine ACLs are stored with uid. The UID will be resolved to the
// user opaque ID at the eosfs level.
return parsedACLs.Entries, nil
}
func (c *Client) getACLForPath(ctx context.Context, auth eosclient.Authorization, path string) (*acl.ACLs, error) {
finfo, err := c.GetFileInfoByPath(ctx, auth, path)
if err != nil {
return nil, err
}
return finfo.SysACL, nil
}
// GetFileInfoByInode returns the FileInfo by the given inode.
func (c *Client) GetFileInfoByInode(ctx context.Context, auth eosclient.Authorization, inode uint64) (*eosclient.FileInfo, error) {
args := []string{"file", "info", fmt.Sprintf("inode:%d", inode), "-m"}
stdout, _, err := c.executeEOS(ctx, args, auth)
if err != nil {
return nil, err
}
info, err := c.parseFileInfo(ctx, stdout)
if err != nil {
return nil, err
}
if c.opt.VersionInvariant && isVersionFolder(info.File) {
info, err = c.getFileInfoFromVersion(ctx, auth, info.File)
if err != nil {
return nil, err
}
info.Inode = inode
}
return c.mergeACLsAndAttrsForFiles(ctx, auth, info), nil
}
// GetFileInfoByFXID returns the FileInfo by the given file id in hexadecimal.
func (c *Client) GetFileInfoByFXID(ctx context.Context, auth eosclient.Authorization, fxid string) (*eosclient.FileInfo, error) {
args := []string{"file", "info", fmt.Sprintf("fxid:%s", fxid), "-m"}
stdout, _, err := c.executeEOS(ctx, args, auth)
if err != nil {
return nil, err
}
info, err := c.parseFileInfo(ctx, stdout)
if err != nil {
return nil, err
}
return c.mergeACLsAndAttrsForFiles(ctx, auth, info), nil
}
// GetFileInfoByPath returns the FilInfo at the given path.
func (c *Client) GetFileInfoByPath(ctx context.Context, auth eosclient.Authorization, path string) (*eosclient.FileInfo, error) {
args := []string{"file", "info", path, "-m"}
stdout, _, err := c.executeEOS(ctx, args, auth)
if err != nil {
return nil, err
}
info, err := c.parseFileInfo(ctx, stdout)
if err != nil {
return nil, err
}
if c.opt.VersionInvariant && !isVersionFolder(path) && !info.IsDir {
ownerAuth := eosclient.Authorization{Role: eosclient.Role{
UID: strconv.FormatUint(info.UID, 10),
GID: strconv.FormatUint(info.GID, 10),
}}
if inode, err := c.getVersionFolderInode(ctx, auth, ownerAuth, path); err == nil {
info.Inode = inode
}
}
return c.mergeACLsAndAttrsForFiles(ctx, auth, info), nil
}
func (c *Client) getRawFileInfoByPath(ctx context.Context, auth eosclient.Authorization, path string) (*eosclient.FileInfo, error) {
args := []string{"file", "info", path, "-m"}
stdout, _, err := c.executeEOS(ctx, args, auth)
if err != nil {
return nil, err
}
return c.parseFileInfo(ctx, stdout)
}
func (c *Client) mergeACLsAndAttrsForFiles(ctx context.Context, auth eosclient.Authorization, info *eosclient.FileInfo) *eosclient.FileInfo {
// We need to inherit the ACLs for the parent directory as these are not available for files
if !info.IsDir {
parentInfo, err := c.getRawFileInfoByPath(ctx, auth, path.Dir(info.File))
// Even if this call fails, at least return the current file object
if err == nil {
info.SysACL.Entries = append(info.SysACL.Entries, parentInfo.SysACL.Entries...)
}
}
return info
}
// SetAttr sets an extended attributes on a path.
func (c *Client) SetAttr(ctx context.Context, auth eosclient.Authorization, attr *eosclient.Attribute, errorIfExists, recursive bool, path, app string) error {
if !isValidAttribute(attr) {
return errors.New("eos: attr is invalid: " + serializeAttribute(attr))
}
// Favorites need to be stored per user so handle these separately
if attr.Type == eosclient.UserAttr && attr.Key == favoritesKey {
info, err := c.getRawFileInfoByPath(ctx, auth, path)
if err != nil {
return err
}
return c.handleFavAttr(ctx, auth, attr, recursive, path, info, true)
}
return c.setEOSAttr(ctx, auth, attr, errorIfExists, recursive, path, app)
}
func (c *Client) setEOSAttr(ctx context.Context, auth eosclient.Authorization, attr *eosclient.Attribute, errorIfExists, recursive bool, path, app string) error {
args := []string{}
if app != "" {
args = append(args, "-a", app)
}
args = append(args, "attr")
if recursive {
args = append(args, "-r")
}
args = append(args, "set")
if errorIfExists {
args = append(args, "-c")
}
args = append(args, serializeAttribute(attr), path)
_, _, err := c.executeEOS(ctx, args, auth)
if err != nil {
var exErr *exec.ExitError
if errors.As(err, &exErr) && exErr.ExitCode() == 17 { // EEXIST
return eosclient.AttrAlreadyExistsError
}
if errors.As(err, &exErr) && exErr.ExitCode() == 16 { // EBUSY -> Locked
return eosclient.FileIsLockedError
}
return err
}
return nil
}
func (c *Client) handleFavAttr(ctx context.Context, auth eosclient.Authorization, attr *eosclient.Attribute, recursive bool, path string, info *eosclient.FileInfo, set bool) error {
var err error
u := appctx.ContextMustGetUser(ctx)
if info == nil {
info, err = c.getRawFileInfoByPath(ctx, auth, path)
if err != nil {
return err
}
}
favStr := info.Attrs[favoritesKey]
favs, err := acl.Parse(favStr, acl.ShortTextForm)
if err != nil {
return err
}
if set {
err = favs.SetEntry(acl.TypeUser, u.Id.OpaqueId, "1")
if err != nil {
return err
}
} else {
favs.DeleteEntry(acl.TypeUser, u.Id.OpaqueId)
}
attr.Val = favs.Serialize()
if attr.Val == "" {
return c.unsetEOSAttr(ctx, auth, attr, recursive, path, "", true)
} else {
return c.setEOSAttr(ctx, auth, attr, false, recursive, path, "")
}
}
// UnsetAttr unsets an extended attribute on a path.
func (c *Client) UnsetAttr(ctx context.Context, auth eosclient.Authorization, attr *eosclient.Attribute, recursive bool, path, app string) error {
// In the case of handleFavs, we call unsetEOSAttr with deleteFavs = true, which is why this simply calls a subroutine
return c.unsetEOSAttr(ctx, auth, attr, recursive, path, app, false)
}
// UnsetAttr unsets an extended attribute on a path.
func (c *Client) unsetEOSAttr(ctx context.Context, auth eosclient.Authorization, attr *eosclient.Attribute, recursive bool, path, app string, deleteFavs bool) error {
if !isValidAttribute(attr) {
return errors.New("eos: attr is invalid: " + serializeAttribute(attr))
}
var err error
// Favorites need to be stored per user so handle these separately
if !deleteFavs && attr.Type == eosclient.UserAttr && attr.Key == favoritesKey {
info, err := c.getRawFileInfoByPath(ctx, auth, path)
if err != nil {
return err
}
return c.handleFavAttr(ctx, auth, attr, recursive, path, info, false)
}
var args []string
if app != "" {
args = append(args, "-a", app)
}
args = append(args, "attr")
if recursive {
args = append(args, "-r")
}
args = append(args, "rm", fmt.Sprintf("%s.%s", attrTypeToString(attr.Type), attr.Key), path)
_, _, err = c.executeEOS(ctx, args, auth)
if err != nil {
var exErr *exec.ExitError
if errors.As(err, &exErr) && exErr.ExitCode() == 61 {
return eosclient.AttrNotExistsError
}
return err
}
return nil
}
// GetAttr returns the attribute specified by key.
func (c *Client) GetAttr(ctx context.Context, auth eosclient.Authorization, key, path string) (*eosclient.Attribute, error) {
args := []string{"attr", "get", key, path}
attrOut, _, err := c.executeEOS(ctx, args, auth)
if err != nil {
return nil, err
}
attr, err := deserializeAttribute(attrOut)
if err != nil {
return nil, err
}
return attr, nil
}
// GetAttrs returns all the attributes of a resource.
func (c *Client) GetAttrs(ctx context.Context, auth eosclient.Authorization, path string) ([]*eosclient.Attribute, error) {
args := []string{"attr", "ls", path}
attrOut, _, err := c.executeEOS(ctx, args, auth)
if err != nil {
return nil, err
}
attrsStr := strings.Split(attrOut, "\n")
attrs := make([]*eosclient.Attribute, 0, len(attrsStr))
for _, line := range attrsStr {
attr, err := deserializeAttribute(line)
if err != nil {
return nil, err
}
attrs = append(attrs, attr)
}
return attrs, nil
}
func deserializeAttribute(attrStr string) (*eosclient.Attribute, error) {
// the string is in the form sys.forced.checksum="adler"
keyValue := strings.SplitN(strings.TrimSpace(attrStr), "=", 2) // keyValue = ["sys.forced.checksum", "\"adler\""]
if len(keyValue) != 2 {
return nil, errtypes.InternalError("wrong attr format to deserialize")
}
type2key := strings.SplitN(keyValue[0], ".", 2) // type2key = ["sys", "forced.checksum"]
if len(type2key) != 2 {
return nil, errtypes.InternalError("wrong attr format to deserialize")
}
t, err := eosclient.AttrStringToType(type2key[0])
if err != nil {
return nil, err
}
// trim \" from value
value := strings.Trim(keyValue[1], "\"")
return &eosclient.Attribute{Type: t, Key: type2key[1], Val: value}, nil
}
// GetQuota gets the quota of a user on the quota node defined by path.
func (c *Client) GetQuota(ctx context.Context, username string, rootAuth eosclient.Authorization, path string) (*eosclient.QuotaInfo, error) {
args := []string{"quota", "ls", "-u", username, "-m"}
stdout, _, err := c.executeEOS(ctx, args, rootAuth)
if err != nil {
return nil, err
}
return c.parseQuota(path, stdout)
}
// SetQuota sets the quota of a user on the quota node defined by path.
func (c *Client) SetQuota(ctx context.Context, rootAuth eosclient.Authorization, info *eosclient.SetQuotaInfo) error {
maxBytes := fmt.Sprintf("%d", info.MaxBytes)
maxFiles := fmt.Sprintf("%d", info.MaxFiles)
args := []string{"quota", "set", "-u", info.Username, "-p", info.QuotaNode, "-v", maxBytes, "-i", maxFiles}
_, _, err := c.executeEOS(ctx, args, rootAuth)
if err != nil {
return err
}
return nil
}
// Touch creates a 0-size,0-replica file in the EOS namespace.
func (c *Client) Touch(ctx context.Context, auth eosclient.Authorization, path string) error {
args := []string{"file", "touch", path}
_, _, err := c.executeEOS(ctx, args, auth)
return err
}
// Chown given path.
func (c *Client) Chown(ctx context.Context, auth, chownauth eosclient.Authorization, path string) error {
args := []string{"chown", chownauth.Role.UID + ":" + chownauth.Role.GID, path}
_, _, err := c.executeEOS(ctx, args, auth)
return err
}
// Chmod given path.
func (c *Client) Chmod(ctx context.Context, auth eosclient.Authorization, mode, path string) error {
args := []string{"chmod", mode, path}
_, _, err := c.executeEOS(ctx, args, auth)
return err
}
// CreateDir creates a directory at the given path.
func (c *Client) CreateDir(ctx context.Context, auth eosclient.Authorization, path string) error {
args := []string{"mkdir", "-p", path}
_, _, err := c.executeEOS(ctx, args, auth)
return err
}
// Remove removes the resource at the given path.
func (c *Client) Remove(ctx context.Context, auth eosclient.Authorization, path string, noRecycle bool) error {
args := []string{"rm", "-r"}
if noRecycle {
args = append(args, "--no-recycle-bin") // do not put the file in the recycle bin
}
args = append(args, path)
_, _, err := c.executeEOS(ctx, args, auth)
return err
}
// Rename renames the resource referenced by oldPath to newPath.
func (c *Client) Rename(ctx context.Context, auth eosclient.Authorization, oldPath, newPath string) error {
args := []string{"file", "rename", oldPath, newPath}
_, _, err := c.executeEOS(ctx, args, auth)
return err
}
// List the contents of the directory given by path.
func (c *Client) List(ctx context.Context, auth eosclient.Authorization, path string) ([]*eosclient.FileInfo, error) {
args := []string{"oldfind", "--fileinfo", "--maxdepth", "1", path}
stdout, _, err := c.executeEOS(ctx, args, auth)
if err != nil {
return nil, errors.Wrapf(err, "eosclient: error listing fn=%s", path)
}
return c.parseFind(ctx, auth, path, stdout)
}
// Read reads a file from the mgm.
func (c *Client) Read(ctx context.Context, auth eosclient.Authorization, path string) (io.ReadCloser, error) {
rand := "eosread-" + uuid.New().String()
localTarget := fmt.Sprintf("%s/%s", c.opt.CacheDirectory, rand)
defer os.RemoveAll(localTarget)
xrdPath := fmt.Sprintf("%s//%s", c.opt.URL, path)
args := []string{"--nopbar", "--silent", "-f", xrdPath, localTarget}
if auth.Token != "" {
args[3] += "?authz=" + auth.Token
} else if auth.Role.UID != "" && auth.Role.GID != "" {
args = append(args, fmt.Sprintf("-OSeos.ruid=%s&eos.rgid=%s&eos.app=reva_eosclient::read", auth.Role.UID, auth.Role.GID))
}
_, _, err := c.executeXRDCopy(ctx, args)
if err != nil {
return nil, err
}
return os.Open(localTarget)
}
// Write writes a stream to the mgm.
func (c *Client) Write(ctx context.Context, auth eosclient.Authorization, path string, stream io.ReadCloser, app string) error {
fd, err := os.CreateTemp(c.opt.CacheDirectory, "eoswrite-")
if err != nil {
return err
}
defer fd.Close()
defer os.RemoveAll(fd.Name())
// copy stream to local temp file
_, err = io.Copy(fd, stream)
if err != nil {
return err
}
return c.writeFile(ctx, auth, path, fd.Name(), app)
}
// WriteFile writes an existing file to the mgm.
func (c *Client) writeFile(ctx context.Context, auth eosclient.Authorization, path, source, app string) error {
xrdPath := fmt.Sprintf("%s//%s", c.opt.URL, path)
args := []string{"--nopbar", "--silent", "-f", source, xrdPath}
if auth.Token != "" {
args[4] += "?authz=" + auth.Token
} else if auth.Role.UID != "" && auth.Role.GID != "" {
args = append(args, fmt.Sprintf("-ODeos.ruid=%s&eos.rgid=%s&eos.app=%s", auth.Role.UID, auth.Role.GID, app))
}
_, _, err := c.executeXRDCopy(ctx, args)
return err
}
// ListDeletedEntries returns a list of the deleted entries.
func (c *Client) ListDeletedEntries(ctx context.Context, auth eosclient.Authorization, maxentries int, from, to time.Time) ([]*eosclient.DeletedEntry, error) {
deleted := []*eosclient.DeletedEntry{}
count := 0
for d := to; !d.Before(from); d = d.AddDate(0, 0, -1) {
args := []string{"recycle", "ls", "-m", d.Format("2006/01/02"), fmt.Sprintf("%d", maxentries+1)}
stdout, _, err := c.executeEOS(ctx, args, auth)
if err != nil {
switch err.(type) {
case errtypes.IsPermissionDenied:
// in this context, this is an E2BIG that gets converted to PermissionDenied by executeEOS()
return nil, errtypes.BadRequest("list too long")
default:
return nil, err
}
}
list, err := parseRecycleList(stdout)
if err != nil {
return nil, err
}
deleted = append(deleted, list...)
count += len(list)
if count > maxentries {
return nil, errtypes.BadRequest("list too long")
}
}
return deleted, nil
}
// RestoreDeletedEntry restores a deleted entry.
func (c *Client) RestoreDeletedEntry(ctx context.Context, auth eosclient.Authorization, key string) error {
args := []string{"recycle", "restore", key}
_, _, err := c.executeEOS(ctx, args, auth)
return err
}
// PurgeDeletedEntries purges all entries from the recycle bin.
func (c *Client) PurgeDeletedEntries(ctx context.Context, auth eosclient.Authorization) error {
args := []string{"recycle", "purge"}
_, _, err := c.executeEOS(ctx, args, auth)
return err
}
// ListVersions list all the versions for a given file.
func (c *Client) ListVersions(ctx context.Context, auth eosclient.Authorization, p string) ([]*eosclient.FileInfo, error) {
versionFolder := getVersionFolder(p)
finfos, err := c.List(ctx, auth, versionFolder)
if err != nil {
// we send back an empty list
return []*eosclient.FileInfo{}, nil
}
return finfos, nil
}
// RollbackToVersion rollbacks a file to a previous version.
func (c *Client) RollbackToVersion(ctx context.Context, auth eosclient.Authorization, path, version string) error {
args := []string{"file", "versions", path, version}
_, _, err := c.executeEOS(ctx, args, auth)
return err
}
// ReadVersion reads the version for the given file.
func (c *Client) ReadVersion(ctx context.Context, auth eosclient.Authorization, p, version string) (io.ReadCloser, error) {
versionFile := path.Join(getVersionFolder(p), version)
return c.Read(ctx, auth, versionFile)
}
// GenerateToken returns a token on behalf of the resource owner to be used by lightweight accounts.
func (c *Client) GenerateToken(ctx context.Context, auth eosclient.Authorization, p string, a *acl.Entry) (string, error) {
expiration := strconv.FormatInt(time.Now().Add(time.Duration(c.opt.TokenExpiry)*time.Second).Unix(), 10)
args := []string{"token", "--permission", a.Permissions, "--tree", "--path", p, "--expires", expiration}
stdout, _, err := c.executeEOS(ctx, args, auth)
return strings.TrimSpace(stdout), err
}
func (c *Client) getVersionFolderInode(ctx context.Context, auth, ownerAuth eosclient.Authorization, p string) (uint64, error) {
versionFolder := getVersionFolder(p)
md, err := c.getRawFileInfoByPath(ctx, auth, versionFolder)
if err != nil {
if err = c.CreateDir(ctx, ownerAuth, versionFolder); err != nil {
return 0, err
}
md, err = c.getRawFileInfoByPath(ctx, auth, versionFolder)
if err != nil {
return 0, err
}
}
return md.Inode, nil
}
func (c *Client) getFileInfoFromVersion(ctx context.Context, auth eosclient.Authorization, p string) (*eosclient.FileInfo, error) {
file := getFileFromVersionFolder(p)
md, err := c.GetFileInfoByPath(ctx, auth, file)
if err != nil {
return nil, err
}
return md, nil
}
func isVersionFolder(p string) bool {
return strings.HasPrefix(path.Base(p), versionPrefix)
}
func getVersionFolder(p string) string {
return path.Join(path.Dir(p), versionPrefix+path.Base(p))
}
func getFileFromVersionFolder(p string) string {
return path.Join(path.Dir(p), strings.TrimPrefix(path.Base(p), versionPrefix))
}
func parseRecycleList(raw string) ([]*eosclient.DeletedEntry, error) {
entries := []*eosclient.DeletedEntry{}
rawLines := strings.FieldsFunc(raw, func(c rune) bool {
return c == '\n'
})
for _, rl := range rawLines {
if rl == "" {
continue
}
entry, err := parseRecycleEntry(rl)
if err != nil {
return nil, err
}
entries = append(entries, entry)
}
return entries, nil
}
// parse entries like these:
// recycle=ls recycle-bin=/eos/backup/proc/recycle/ uid=gonzalhu gid=it size=0 deletion-time=1510823151 type=recursive-dir keylength.restore-path=45 restore-path=/eos/scratch/user/g/gonzalhu/.sys.v#.app.ico/ restore-key=0000000000a35100
// recycle=ls recycle-bin=/eos/backup/proc/recycle/ uid=gonzalhu gid=it size=381038 deletion-time=1510823151 type=file keylength.restore-path=36 restore-path=/eos/scratch/user/g/gonzalhu/app.ico restore-key=000000002544fdb3.
// NOTE: after EOS 5.2.0, the restore-key field is not the latest entry in the response anymore.
func parseRecycleEntry(raw string) (*eosclient.DeletedEntry, error) {
partsBySpace := strings.FieldsFunc(raw, func(c rune) bool {
return c == ' '
})
kv := getMap(partsBySpace)
size, err := strconv.ParseUint(kv["size"], 10, 64)
if err != nil {
return nil, err
}
isDir := false
if kv["type"] == "recursive-dir" {
isDir = true
}
deletionMTime, err := strconv.ParseUint(strings.Split(kv["deletion-time"], ".")[0], 10, 64)
if err != nil {
return nil, err
}
entry := &eosclient.DeletedEntry{
RestorePath: kv["restore-path"],
RestoreKey: kv["restore-key"],
Size: size,
DeletionMTime: deletionMTime,
IsDir: isDir,
}
// rewrite the restore-path to take into account the key keylength.restore-path
keyLengthString, ok := kv["keylength.restore-path"]
if !ok {
return nil, errors.Wrap(err, fmt.Sprintf("eos response is missing restore-key:%+v", kv))
}
keyLength, err := strconv.ParseUint(keyLengthString, 10, 64)
if err != nil {
return nil, errors.Wrap(err, fmt.Sprintf("recycle ls response keylength.restore-path is not a number:%+v", kv))
}
// find the index of the restore-path key string in the raw string
// ... restore-path=/eos/scratch/user/g/gonzalhu/app.ico ....
// NOTE: this code will break if another key of the output will contain the string "restore-path=/" in it (very unlikely)
index := strings.Index(raw, "restore-path=/")
if index == -1 {
return nil, errors.New(fmt.Sprintf("restore-path key not found in raw string: %s", raw))
}
start := index + len("restore-path=/") // note the key ends with /, this is to avoid getting a hit on keylength.restore-path
stop := uint64(start) + keyLength
restorePath := raw[start:stop]
restorePath = "/" + restorePath // if the path does not start with /, it's skipping in response
restorePath = strings.Trim(restorePath, " ")
entry.RestorePath = restorePath
return entry, nil
}
func getMap(partsBySpace []string) map[string]string {
kv := map[string]string{}
for _, pair := range partsBySpace {
parts := strings.Split(pair, "=")
if len(parts) > 1 {
kv[parts[0]] = parts[1]
}
}
return kv
}
func (c *Client) parseFind(ctx context.Context, auth eosclient.Authorization, dirPath, raw string) ([]*eosclient.FileInfo, error) {
log := appctx.GetLogger(ctx)
finfos := []*eosclient.FileInfo{}
versionFolders := map[string]*eosclient.FileInfo{}
rawLines := strings.FieldsFunc(raw, func(c rune) bool {
return c == '\n'
})
var ownerAuth *eosclient.Authorization
var parent *eosclient.FileInfo
for _, rl := range rawLines {
if rl == "" {
continue
}
fi, err := c.parseFileInfo(ctx, rl)
if err != nil {
return nil, err
}
// dirs in eos end with a slash, like /eos/user/g/gonzalhu/
// we skip the current directory as eos find will return the directory we
// ask to find
if fi.File == path.Clean(dirPath) {
parent = fi
continue
}
// If it's a version folder, store it in a map, so that for the corresponding file,
// we can return its inode instead