-
Notifications
You must be signed in to change notification settings - Fork 113
/
eosgrpc.go
1578 lines (1242 loc) · 47.1 KB
/
eosgrpc.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-2021 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 eosgrpc
import (
"bytes"
"context"
"fmt"
"io"
"io/ioutil"
"net/http"
"os"
"os/exec"
"path"
"path/filepath"
"strconv"
"strings"
"syscall"
"github.com/cs3org/reva/pkg/appctx"
"github.com/cs3org/reva/pkg/eosclient"
erpc "github.com/cs3org/reva/pkg/eosclient/eosgrpc/eos_grpc"
ehttp "github.com/cs3org/reva/pkg/eosclient/eosgrpc/eos_http"
"github.com/cs3org/reva/pkg/errtypes"
"github.com/cs3org/reva/pkg/logger"
"github.com/cs3org/reva/pkg/storage/utils/acl"
"github.com/google/uuid"
"github.com/pkg/errors"
"github.com/rs/zerolog/log"
"google.golang.org/grpc"
)
const (
versionPrefix = ".sys.v#."
)
const (
// SystemAttr is the system extended attribute.
SystemAttr eosclient.AttrType = iota
// UserAttr is the user extended attribute.
UserAttr
)
// Options to configure the Client.
type Options struct {
// 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
// Set to true to use the local disk as a buffer for chunk
// reads from EOS. Default is false, i.e. pure streaming
ReadUsesLocalTemp bool
// Set to true to use the local disk as a buffer for chunk
// writes to EOS. Default is false, i.e. pure streaming
// Beware: in pure streaming mode the FST must support
// the HTTP chunked encoding
WriteUsesLocalTemp bool
// 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
// URI of the EOS MGM grpc server
GrpcURI 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
// Authkey is the key that authorizes this client to connect to the GRPC service
// It's unclear whether this will be the final solution
Authkey string
// SecProtocol is the comma separated list of security protocols used by xrootd.
// For example: "sss, unix"
SecProtocol string
// HTTP connections to EOS: max number of idle conns
MaxIdleConns int
// HTTP connections to EOS: max number of conns per host
MaxConnsPerHost int
// HTTP connections to EOS: max number of idle conns per host
MaxIdleConnsPerHost int
// HTTP connections to EOS: idle conections TTL
IdleConnTimeout int
}
func (opt *Options) init() {
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)
// using the EOS GRPC interface.
type Client struct {
opt *Options
httptransport *http.Transport
cl erpc.EosClient
}
// GetHTTPCl creates an http client for immediate usage, using the already instantiated resources
func (c *Client) GetHTTPCl() *ehttp.Client {
var htopts ehttp.Options
t, err := htopts.Init()
if err != nil {
panic("Cant't init the EOS http client options")
}
htopts.BaseURL = c.opt.URL
return ehttp.New(&htopts, t)
}
// Create and connect a grpc eos Client
func newgrpc(ctx context.Context, opt *Options) (erpc.EosClient, error) {
log := appctx.GetLogger(ctx)
log.Info().Str("Setting up GRPC towards ", "'"+opt.GrpcURI+"'").Msg("")
conn, err := grpc.Dial(opt.GrpcURI, grpc.WithInsecure())
if err != nil {
log.Warn().Str("Error connecting to ", "'"+opt.GrpcURI+"' ").Str("err", err.Error()).Msg("")
}
log.Debug().Str("Going to ping ", "'"+opt.GrpcURI+"' ").Msg("")
ecl := erpc.NewEosClient(conn)
// If we can't ping... just print warnings. In the case EOS is down, grpc will take care of
// connecting later
prq := new(erpc.PingRequest)
prq.Authkey = opt.Authkey
prq.Message = []byte("hi this is a ping from reva")
prep, err := ecl.Ping(ctx, prq)
if err != nil {
log.Warn().Str("Could not ping to ", "'"+opt.GrpcURI+"' ").Str("err", err.Error()).Msg("")
}
if prep == nil {
log.Warn().Str("Could not ping to ", "'"+opt.GrpcURI+"' ").Str("nil response", "").Msg("")
}
return ecl, nil
}
// New creates a new client with the given options.
func New(opt *Options) *Client {
tlog := logger.New().With().Int("pid", os.Getpid()).Logger()
tlog.Debug().Str("Creating new eosgrpc client. opt: ", "'"+fmt.Sprintf("%#v", opt)+"' ").Msg("")
opt.init()
c := new(Client)
c.opt = opt
var htopts ehttp.Options
t, err := htopts.Init()
if err != nil {
panic("Cant't init the EOS http client options")
}
c.httptransport = t
htopts.BaseURL = c.opt.URL
tctx := appctx.WithLogger(context.Background(), &tlog)
ccl, err := newgrpc(tctx, opt)
if err != nil {
return nil
}
c.cl = ccl
return c
}
// If the error is not nil, take that
// If there is an error coming from EOS, erturn a descriptive error
func (c *Client) getRespError(rsp *erpc.NSResponse, err error) error {
if err != nil {
return err
}
if rsp == nil || rsp.Error == nil || rsp.Error.Code == 0 {
return nil
}
err2 := errtypes.InternalError("Err from EOS: " + fmt.Sprintf("%#v", rsp.Error))
return err2
}
// Common code to create and initialize a NSRequest
func (c *Client) initNSRequest(ctx context.Context, uid, gid string) (*erpc.NSRequest, error) {
// Stuff filename, uid, gid into the MDRequest type
log := appctx.GetLogger(ctx)
log.Debug().Str("(uid,gid)", "("+uid+","+gid+")").Msg("New grpcNS req")
rq := new(erpc.NSRequest)
rq.Role = new(erpc.RoleId)
uidInt, err := strconv.ParseUint(uid, 10, 64)
if err != nil {
return nil, err
}
gidInt, err := strconv.ParseUint(gid, 10, 64)
if err != nil {
return nil, err
}
rq.Role.Uid = uidInt
rq.Role.Gid = gidInt
rq.Authkey = c.opt.Authkey
return rq, nil
}
// Common code to create and initialize a NSRequest
func (c *Client) initMDRequest(ctx context.Context, uid, gid string) (*erpc.MDRequest, error) {
// Stuff filename, uid, gid into the MDRequest type
log := appctx.GetLogger(ctx)
log.Debug().Str("(uid,gid)", "("+uid+","+gid+")").Msg("New grpcMD req")
mdrq := new(erpc.MDRequest)
mdrq.Role = new(erpc.RoleId)
uidInt, err := strconv.ParseUint(uid, 10, 64)
if err != nil {
return nil, err
}
gidInt, err := strconv.ParseUint(gid, 10, 64)
if err != nil {
return nil, err
}
mdrq.Role.Uid = uidInt
mdrq.Role.Gid = gidInt
mdrq.Authkey = c.opt.Authkey
return mdrq, nil
}
// AddACL adds an new acl to EOS with the given aclType.
func (c *Client) AddACL(ctx context.Context, uid, gid, rootUID, rootGID, path string, a *acl.Entry) error {
log := appctx.GetLogger(ctx)
log.Info().Str("func", "AddACL").Str("uid,gid", uid+","+gid).Str("rootuid,rootgid", rootUID+","+rootGID).Str("path", path).Msg("")
acls, err := c.getACLForPath(ctx, uid, gid, path)
if err != nil {
return err
}
err = acls.SetEntry(a.Type, a.Qualifier, a.Permissions)
if err != nil {
return err
}
sysACL := acls.Serialize()
// Init a new NSRequest
rq, err := c.initNSRequest(ctx, uid, gid)
if err != nil {
return err
}
msg := new(erpc.NSRequest_AclRequest)
msg.Cmd = erpc.NSRequest_AclRequest_ACL_COMMAND(erpc.NSRequest_AclRequest_ACL_COMMAND_value["MODIFY"])
msg.Type = erpc.NSRequest_AclRequest_ACL_TYPE(erpc.NSRequest_AclRequest_ACL_TYPE_value["SYS_ACL"])
msg.Recursive = true
msg.Rule = sysACL
msg.Id = new(erpc.MDId)
msg.Id.Path = []byte(path)
rq.Command = &erpc.NSRequest_Acl{Acl: msg}
// Now send the req and see what happens
resp, err := c.cl.Exec(context.Background(), rq)
e := c.getRespError(resp, err)
if e != nil {
log.Error().Str("func", "AddACL").Str("path", path).Str("err", e.Error()).Msg("")
return e
}
if resp == nil {
return errtypes.NotFound(fmt.Sprintf("Path: %s", path))
}
log.Debug().Str("func", "AddACL").Str("path", path).Str("resp:", fmt.Sprintf("%#v", resp)).Msg("grpc response")
return err
}
// RemoveACL removes the acl from EOS.
func (c *Client) RemoveACL(ctx context.Context, uid, gid, rootUID, rootGID, path string, a *acl.Entry) error {
log := appctx.GetLogger(ctx)
log.Info().Str("func", "RemoveACL").Str("uid,gid", uid+","+gid).Str("rootuid,rootgid", rootUID+","+rootGID).Str("path", path).Msg("")
acls, err := c.getACLForPath(ctx, uid, gid, path)
if err != nil {
return err
}
acls.DeleteEntry(a.Type, a.Qualifier)
sysACL := acls.Serialize()
// Init a new NSRequest
rq, err := c.initNSRequest(ctx, uid, gid)
if err != nil {
return err
}
msg := new(erpc.NSRequest_AclRequest)
msg.Cmd = erpc.NSRequest_AclRequest_ACL_COMMAND(erpc.NSRequest_AclRequest_ACL_COMMAND_value["MODIFY"])
msg.Type = erpc.NSRequest_AclRequest_ACL_TYPE(erpc.NSRequest_AclRequest_ACL_TYPE_value["SYS_ACL"])
msg.Recursive = true
msg.Rule = sysACL
msg.Id = new(erpc.MDId)
msg.Id.Path = []byte(path)
rq.Command = &erpc.NSRequest_Acl{Acl: msg}
// Now send the req and see what happens
resp, err := c.cl.Exec(context.Background(), rq)
e := c.getRespError(resp, err)
if e != nil {
log.Error().Str("func", "RemoveACL").Str("path", path).Str("err", e.Error()).Msg("")
return e
}
if resp == nil {
return errtypes.NotFound(fmt.Sprintf("Path: %s", path))
}
log.Debug().Str("func", "RemoveACL").Str("path", path).Str("resp:", fmt.Sprintf("%#v", resp)).Msg("grpc response")
return err
}
// UpdateACL updates the EOS acl.
func (c *Client) UpdateACL(ctx context.Context, uid, gid, rootUID, rootGID, path string, a *acl.Entry) error {
return c.AddACL(ctx, uid, gid, path, rootUID, rootGID, a)
}
// GetACL for a file
func (c *Client) GetACL(ctx context.Context, uid, gid, path, aclType, target string) (*acl.Entry, error) {
log := appctx.GetLogger(ctx)
log.Info().Str("func", "GetACL").Str("uid,gid", uid+","+gid).Str("path", path).Msg("")
acls, err := c.ListACLs(ctx, uid, gid, 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, uid, gid, path string) ([]*acl.Entry, error) {
log := appctx.GetLogger(ctx)
log.Info().Str("func", "ListACLs").Str("uid,gid", uid+","+gid).Str("path", path).Msg("")
parsedACLs, err := c.getACLForPath(ctx, uid, gid, 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, uid, gid, path string) (*acl.ACLs, error) {
log := appctx.GetLogger(ctx)
log.Info().Str("func", "GetACLForPath").Str("uid,gid", uid+","+gid).Str("path", path).Msg("")
// Initialize the common fields of the NSReq
rq, err := c.initNSRequest(ctx, uid, gid)
if err != nil {
return nil, err
}
msg := new(erpc.NSRequest_AclRequest)
msg.Cmd = erpc.NSRequest_AclRequest_ACL_COMMAND(erpc.NSRequest_AclRequest_ACL_COMMAND_value["LIST"])
msg.Type = erpc.NSRequest_AclRequest_ACL_TYPE(erpc.NSRequest_AclRequest_ACL_TYPE_value["SYS_ACL"])
msg.Recursive = true
msg.Id = new(erpc.MDId)
msg.Id.Path = []byte(path)
rq.Command = &erpc.NSRequest_Acl{Acl: msg}
// Now send the req and see what happens
resp, err := c.cl.Exec(context.Background(), rq)
e := c.getRespError(resp, err)
if e != nil {
log.Error().Str("func", "GetACLForPath").Str("path", path).Str("err", e.Error()).Msg("")
return nil, e
}
if resp == nil {
return nil, errtypes.InternalError(fmt.Sprintf("nil response for uid: '%s' path: '%s'", uid, path))
}
log.Debug().Str("func", "GetACLForPath").Str("path", path).Str("resp:", fmt.Sprintf("%#v", resp)).Msg("grpc response")
if resp.Acl == nil {
return nil, errtypes.InternalError(fmt.Sprintf("nil acl for uid: '%s' path: '%s'", uid, path))
}
if resp.GetError() != nil {
log.Error().Str("func", "GetACLForPath").Str("uid", uid).Str("path", path).Int64("errcode", resp.GetError().Code).Str("errmsg", resp.GetError().Msg).Msg("EOS negative resp")
}
aclret, err := acl.Parse(resp.Acl.Rule, acl.ShortTextForm)
// Now loop and build the correct return value
return aclret, err
}
// GetFileInfoByInode returns the FileInfo by the given inode
func (c *Client) GetFileInfoByInode(ctx context.Context, uid, gid string, inode uint64) (*eosclient.FileInfo, error) {
log := appctx.GetLogger(ctx)
log.Info().Str("func", "GetFileInfoByInode").Str("uid,gid", uid+","+gid).Uint64("inode", inode).Msg("")
// Initialize the common fields of the MDReq
mdrq, err := c.initMDRequest(ctx, uid, gid)
if err != nil {
return nil, err
}
// Stuff filename, uid, gid into the MDRequest type
mdrq.Type = erpc.TYPE_STAT
mdrq.Id = new(erpc.MDId)
mdrq.Id.Ino = inode
// Now send the req and see what happens
resp, err := c.cl.MD(context.Background(), mdrq)
if err != nil {
log.Error().Err(err).Uint64("inode", inode).Str("err", err.Error())
return nil, err
}
rsp, err := resp.Recv()
if err != nil {
log.Error().Err(err).Uint64("inode", inode).Str("err", err.Error())
return nil, err
}
if rsp == nil {
return nil, errtypes.InternalError(fmt.Sprintf("nil response for inode: '%d'", inode))
}
log.Debug().Uint64("inode", inode).Str("rsp:", fmt.Sprintf("%#v", rsp)).Msg("grpc response")
info, err := c.grpcMDResponseToFileInfo(rsp, "")
if err != nil {
return nil, err
}
if c.opt.VersionInvariant && isVersionFolder(info.File) {
info, err = c.getFileInfoFromVersion(ctx, uid, gid, info.File)
if err != nil {
return nil, err
}
info.Inode = inode
}
log.Debug().Str("func", "GetFileInfoByInode").Uint64("inode", inode).Msg("")
return info, nil
}
// SetAttr sets an extended attributes on a path.
func (c *Client) SetAttr(ctx context.Context, uid, gid string, attr *eosclient.Attribute, recursive bool, path string) error {
log := appctx.GetLogger(ctx)
log.Info().Str("func", "SetAttr").Str("uid,gid", uid+","+gid).Str("path", path).Msg("")
// Initialize the common fields of the NSReq
rq, err := c.initNSRequest(ctx, uid, gid)
if err != nil {
return err
}
msg := new(erpc.NSRequest_SetXAttrRequest)
var m = map[string][]byte{attr.Key: []byte(attr.Val)}
msg.Xattrs = m
msg.Recursive = recursive
msg.Id = new(erpc.MDId)
msg.Id.Path = []byte(path)
rq.Command = &erpc.NSRequest_Xattr{Xattr: msg}
// Now send the req and see what happens
resp, err := c.cl.Exec(ctx, rq)
e := c.getRespError(resp, err)
if e != nil {
log.Error().Str("func", "SetAttr").Str("path", path).Str("err", e.Error()).Msg("")
return e
}
if resp == nil {
return errtypes.InternalError(fmt.Sprintf("nil response for uid: '%s' gid: '%s' path: '%s'", uid, gid, path))
}
if resp.GetError() != nil {
log.Error().Str("func", "setAttr").Str("path", path).Int64("errcode", resp.GetError().Code).Str("errmsg", resp.GetError().Msg).Msg("EOS negative result")
}
return err
}
// UnsetAttr unsets an extended attribute on a path.
func (c *Client) UnsetAttr(ctx context.Context, uid, gid string, attr *eosclient.Attribute, path string) error {
log := appctx.GetLogger(ctx)
log.Info().Str("func", "UnsetAttr").Str("uid,gid", uid+","+gid).Str("path", path).Msg("")
// Initialize the common fields of the NSReq
rq, err := c.initNSRequest(ctx, uid, gid)
if err != nil {
return err
}
msg := new(erpc.NSRequest_SetXAttrRequest)
var ktd = []string{attr.Key}
msg.Keystodelete = ktd
msg.Id = new(erpc.MDId)
msg.Id.Path = []byte(path)
rq.Command = &erpc.NSRequest_Xattr{Xattr: msg}
// Now send the req and see what happens
resp, err := c.cl.Exec(ctx, rq)
e := c.getRespError(resp, err)
if e != nil {
log.Error().Str("func", "UnsetAttr").Str("path", path).Str("err", e.Error()).Msg("")
return e
}
if resp == nil {
return errtypes.InternalError(fmt.Sprintf("nil response for uid: '%s' gid: '%s' path: '%s'", uid, gid, path))
}
if resp.GetError() != nil {
log.Error().Str("func", "UnsetAttr").Str("path", path).Int64("errcode", resp.GetError().Code).Str("errmsg", resp.GetError().Msg).Msg("EOS negative resp")
}
return err
}
// GetFileInfoByPath returns the FilInfo at the given path
func (c *Client) GetFileInfoByPath(ctx context.Context, uid, gid, path string) (*eosclient.FileInfo, error) {
log := appctx.GetLogger(ctx)
log.Info().Str("func", "GetFileInfoByPath").Str("uid,gid", uid+","+gid).Str("path", path).Msg("")
// Initialize the common fields of the MDReq
mdrq, err := c.initMDRequest(ctx, uid, gid)
if err != nil {
return nil, err
}
mdrq.Type = erpc.TYPE_STAT
mdrq.Id = new(erpc.MDId)
mdrq.Id.Path = []byte(path)
// Now send the req and see what happens
resp, err := c.cl.MD(ctx, mdrq)
if err != nil {
log.Error().Str("func", "GetFileInfoByPath").Err(err).Str("path", path).Str("err", err.Error())
return nil, err
}
rsp, err := resp.Recv()
if err != nil {
log.Error().Str("func", "GetFileInfoByPath").Err(err).Str("path", path).Str("err", err.Error())
// FIXME: this is very very bad and poisonous for the project!!!!!!!
// Apparently here we have to assume that an error in Recv() means "file not found"
// - "File not found is not an error", it's a legitimate result of a legitimate check
// - Assuming that any error means file not found is doubly poisonous
return nil, errtypes.NotFound(err.Error())
// return nil, nil
}
if rsp == nil {
return nil, errtypes.NotFound(fmt.Sprintf("%s:%s", "acltype", path))
}
log.Debug().Str("func", "GetFileInfoByPath").Str("path", path).Str("rsp:", fmt.Sprintf("%#v", rsp)).Msg("grpc response")
info, err := c.grpcMDResponseToFileInfo(rsp, filepath.Dir(path))
if err != nil {
return nil, err
}
if c.opt.VersionInvariant && !isVersionFolder(path) && !info.IsDir {
inode, err := c.getVersionFolderInode(ctx, uid, gid, path)
if err != nil {
return nil, err
}
info.Inode = inode
}
return info, nil
}
// GetFileInfoByFXID returns the FileInfo by the given file id in hexadecimal
func (c *Client) GetFileInfoByFXID(ctx context.Context, uid, gid string, fxid string) (*eosclient.FileInfo, error) {
return nil, errtypes.NotSupported("eosgrpc: GetFileInfoByFXID not implemented")
}
// GetQuota gets the quota of a user on the quota node defined by path
func (c *Client) GetQuota(ctx context.Context, username, rootUID, rootGID, path string) (*eosclient.QuotaInfo, error) {
log := appctx.GetLogger(ctx)
log.Info().Str("func", "GetQuota").Str("rootuid,rootgid", rootUID+","+rootGID).Str("username", username).Str("path", path).Msg("")
// Initialize the common fields of the NSReq
rq, err := c.initNSRequest(ctx, rootUID, rootGID)
if err != nil {
return nil, err
}
msg := new(erpc.NSRequest_QuotaRequest)
msg.Path = []byte(path)
msg.Id = new(erpc.RoleId)
msg.Op = erpc.QUOTAOP_GET
// Eos filters the returned quotas by username. This means that EOS must know it, someone
// must have created an user with that name
msg.Id.Username = username
rq.Command = &erpc.NSRequest_Quota{Quota: msg}
// Now send the req and see what happens
resp, err := c.cl.Exec(ctx, rq)
e := c.getRespError(resp, err)
if e != nil {
return nil, e
}
if resp == nil {
return nil, errtypes.InternalError(fmt.Sprintf("nil response for rootuid: '%s' rootgid: '%s' username: '%s' path: '%s'", rootUID, rootGID, username, path))
}
if resp.GetError() != nil {
log.Error().Str("func", "GetQuota").Str("rootuid,rootgid", rootUID+","+rootGID).Str("username", username).Str("info:", fmt.Sprintf("%#v", resp)).Int64("eoserrcode", resp.GetError().Code).Str("errmsg", resp.GetError().Msg).Msg("EOS negative resp")
} else {
log.Debug().Str("func", "GetQuota").Str("rootuid,rootgid", rootUID+","+rootGID).Str("username", username).Str("info:", fmt.Sprintf("%#v", resp)).Msg("grpc response")
}
if resp.Quota == nil {
return nil, errtypes.InternalError(fmt.Sprintf("nil quota response? rootuid: '%s' rootgid: '%s' path: '%s'", rootUID, rootGID, path))
}
if resp.Quota.Code != 0 {
return nil, errtypes.InternalError(fmt.Sprintf("Quota error from eos. rootuid: '%s' rootgid: '%s' info: '%#v'", rootUID, rootGID, resp.Quota))
}
qi := new(eosclient.QuotaInfo)
if resp == nil {
return nil, errtypes.InternalError("Out of memory")
}
// Let's loop on all the quotas that match this uid (apparently there can be many)
// If there are many for this node, we sum them up
for i := 0; i < len(resp.Quota.Quotanode); i++ {
log.Debug().Str("func", "GetQuota").Str("rootuid,rootgid", rootUID+","+rootGID).Str("quotanode:", fmt.Sprintf("%d: %#v", i, resp.Quota.Quotanode[i])).Msg("")
mx := int64(resp.Quota.Quotanode[i].Maxlogicalbytes) - int64(resp.Quota.Quotanode[i].Usedbytes)
if mx < 0 {
mx = 0
}
qi.AvailableBytes += uint64(mx)
qi.UsedBytes += resp.Quota.Quotanode[i].Usedbytes
mx = int64(resp.Quota.Quotanode[i].Maxfiles) - int64(resp.Quota.Quotanode[i].Usedfiles)
if mx < 0 {
mx = 0
}
qi.AvailableInodes += uint64(mx)
qi.UsedInodes += resp.Quota.Quotanode[i].Usedfiles
}
return qi, err
}
// SetQuota sets the quota of a user on the quota node defined by path
func (c *Client) SetQuota(ctx context.Context, rootUID, rootGID string, info *eosclient.SetQuotaInfo) error {
{
log := appctx.GetLogger(ctx)
log.Info().Str("func", "SetQuota").Str("rootuid,rootgid", rootUID+","+rootGID).Str("info:", fmt.Sprintf("%#v", info)).Msg("")
// EOS does not have yet this command... work in progress, this is a draft piece of code
// return errtypes.NotSupported("eosgrpc: SetQuota not implemented")
// Initialize the common fields of the NSReq
rq, err := c.initNSRequest(ctx, rootUID, rootGID)
if err != nil {
return err
}
msg := new(erpc.NSRequest_QuotaRequest)
msg.Path = []byte(info.QuotaNode)
msg.Id = new(erpc.RoleId)
uidInt, err := strconv.ParseUint(info.UID, 10, 64)
if err != nil {
return err
}
// We set a quota for an user, not a group!
msg.Id.Uid = uidInt
msg.Id.Gid = 0
msg.Id.Username = info.Username
msg.Op = erpc.QUOTAOP_SET
msg.Maxbytes = info.MaxBytes
msg.Maxfiles = info.MaxFiles
rq.Command = &erpc.NSRequest_Quota{Quota: msg}
// Now send the req and see what happens
resp, err := c.cl.Exec(ctx, rq)
e := c.getRespError(resp, err)
if e != nil {
return e
}
if resp == nil {
return errtypes.InternalError(fmt.Sprintf("nil response for rootuid: '%s' rootgid: '%s' info: '%#v'", rootUID, rootGID, info))
}
if resp.GetError() != nil {
log.Error().Str("func", "SetQuota").Str("rootuid,rootgid", rootUID+","+rootGID).Str("info:", fmt.Sprintf("%#v", resp)).Int64("errcode", resp.GetError().Code).Str("errmsg", resp.GetError().Msg).Msg("EOS negative resp")
} else {
log.Debug().Str("func", "SetQuota").Str("rootuid,rootgid", rootUID+","+rootGID).Str("info:", fmt.Sprintf("%#v", resp)).Msg("grpc response")
}
if resp.Quota == nil {
return errtypes.InternalError(fmt.Sprintf("nil quota response? rootuid: '%s' rootgid: '%s' info: '%#v'", rootUID, rootGID, info))
}
if resp.Quota.Code != 0 {
return errtypes.InternalError(fmt.Sprintf("Quota error from eos. rootuid: '%s' rootgid: '%s' quota: '%#v'", rootUID, rootGID, resp.Quota))
}
log.Debug().Str("func", "GetQuota").Str("rootuid,rootgid", rootUID+","+rootGID).Str("quotanodes", fmt.Sprintf("%d", len(resp.Quota.Quotanode))).Msg("grpc response")
return err
}
}
// Touch creates a 0-size,0-replica file in the EOS namespace.
func (c *Client) Touch(ctx context.Context, uid, gid, path string) error {
log := appctx.GetLogger(ctx)
log.Info().Str("func", "Touch").Str("uid,gid", uid+","+gid).Str("path", path).Msg("")
// Initialize the common fields of the NSReq
rq, err := c.initNSRequest(ctx, uid, gid)
if err != nil {
return err
}
msg := new(erpc.NSRequest_TouchRequest)
msg.Id = new(erpc.MDId)
msg.Id.Path = []byte(path)
rq.Command = &erpc.NSRequest_Touch{Touch: msg}
// Now send the req and see what happens
resp, err := c.cl.Exec(ctx, rq)
e := c.getRespError(resp, err)
if e != nil {
log.Error().Str("func", "Touch").Str("path", path).Str("err", e.Error()).Msg("")
return e
}
if resp == nil {
return errtypes.InternalError(fmt.Sprintf("nil response for uid: '%s' path: '%s'", uid, path))
}
log.Debug().Str("func", "Touch").Str("path", path).Str("resp:", fmt.Sprintf("%#v", resp)).Msg("grpc response")
return err
}
// Chown given path
func (c *Client) Chown(ctx context.Context, uid, gid, chownUID, chownGID, path string) error {
log := appctx.GetLogger(ctx)
log.Info().Str("func", "Chown").Str("uid,gid", uid+","+gid).Str("chownuid,chowngid", chownUID+","+chownGID).Str("path", path).Msg("")
// Initialize the common fields of the NSReq
rq, err := c.initNSRequest(ctx, uid, gid)
if err != nil {
return err
}
msg := new(erpc.NSRequest_ChownRequest)
msg.Owner = new(erpc.RoleId)
msg.Owner.Uid, err = strconv.ParseUint(chownUID, 10, 64)
if err != nil {
return err
}
msg.Owner.Gid, err = strconv.ParseUint(chownGID, 10, 64)
if err != nil {
return err
}
msg.Id = new(erpc.MDId)
msg.Id.Path = []byte(path)
rq.Command = &erpc.NSRequest_Chown{Chown: msg}
// Now send the req and see what happens
resp, err := c.cl.Exec(ctx, rq)
e := c.getRespError(resp, err)
if e != nil {
log.Error().Str("func", "Chown").Str("path", path).Str("err", e.Error()).Msg("")
return e
}
if resp == nil {
return errtypes.InternalError(fmt.Sprintf("nil response for uid: '%s' chownuid: '%s' path: '%s'", uid, chownUID, path))
}
log.Debug().Str("func", "Chown").Str("path", path).Str("uid,gid", uid+","+gid).Str("chownuid,chowngid", chownUID+","+chownGID).Str("resp:", fmt.Sprintf("%#v", resp)).Msg("grpc response")
return err
}
// Chmod given path
func (c *Client) Chmod(ctx context.Context, uid, gid, mode, path string) error {
log := appctx.GetLogger(ctx)
log.Info().Str("func", "Chmod").Str("uid,gid", uid+","+gid).Str("mode", mode).Str("path", path).Msg("")
// Initialize the common fields of the NSReq
rq, err := c.initNSRequest(ctx, uid, gid)
if err != nil {
return err
}
msg := new(erpc.NSRequest_ChmodRequest)
md, err := strconv.ParseUint(mode, 8, 64)
if err != nil {
return err
}
msg.Mode = int64(md)
msg.Id = new(erpc.MDId)
msg.Id.Path = []byte(path)
rq.Command = &erpc.NSRequest_Chmod{Chmod: msg}
// Now send the req and see what happens
resp, err := c.cl.Exec(ctx, rq)
e := c.getRespError(resp, err)
if e != nil {
log.Error().Str("func", "Chmod").Str("path ", path).Str("err", e.Error()).Msg("")
return e
}
if resp == nil {
return errtypes.InternalError(fmt.Sprintf("nil response for uid: '%s' mode: '%s' path: '%s'", uid, mode, path))
}
log.Debug().Str("func", "Chmod").Str("path", path).Str("resp:", fmt.Sprintf("%#v", resp)).Msg("grpc response")
return err
}
// CreateDir creates a directory at the given path
func (c *Client) CreateDir(ctx context.Context, uid, gid, path string) error {
log := appctx.GetLogger(ctx)
log.Info().Str("func", "Createdir").Str("uid,gid", uid+","+gid).Str("path", path).Msg("")
// Initialize the common fields of the NSReq
rq, err := c.initNSRequest(ctx, uid, gid)
if err != nil {
return err
}
msg := new(erpc.NSRequest_MkdirRequest)
// Let's put 750 as permissions, assuming that EOS will apply some mask
md, err := strconv.ParseUint("750", 8, 64)
if err != nil {
return err
}
msg.Mode = int64(md)
msg.Recursive = true
msg.Id = new(erpc.MDId)
msg.Id.Path = []byte(path)
rq.Command = &erpc.NSRequest_Mkdir{Mkdir: msg}
// Now send the req and see what happens
resp, err := c.cl.Exec(ctx, rq)
e := c.getRespError(resp, err)
if e != nil {
log.Error().Str("func", "Createdir").Str("path", path).Str("err", e.Error()).Msg("")
return e
}
if resp == nil {
return errtypes.InternalError(fmt.Sprintf("nil response for uid: '%s' path: '%s'", uid, path))
}
log.Debug().Str("func", "Createdir").Str("path", path).Str("resp:", fmt.Sprintf("%#v", resp)).Msg("grpc response")
return err
}
func (c *Client) rm(ctx context.Context, uid, gid, path string) error {
log := appctx.GetLogger(ctx)
log.Info().Str("func", "rm").Str("uid,gid", uid+","+gid).Str("path", path).Msg("")
// Initialize the common fields of the NSReq
rq, err := c.initNSRequest(ctx, uid, gid)
if err != nil {
return err
}
msg := new(erpc.NSRequest_UnlinkRequest)
msg.Id = new(erpc.MDId)
msg.Id.Path = []byte(path)
rq.Command = &erpc.NSRequest_Unlink{Unlink: msg}
// Now send the req and see what happens
resp, err := c.cl.Exec(ctx, rq)
e := c.getRespError(resp, err)
if e != nil {
log.Error().Str("func", "rm").Str("path", path).Str("err", e.Error()).Msg("")
return e
}
if resp == nil {
return errtypes.InternalError(fmt.Sprintf("nil response for uid: '%s' path: '%s'", uid, path))
}
log.Debug().Str("func", "rm").Str("path", path).Str("resp:", fmt.Sprintf("%#v", resp)).Msg("grpc response")
return err