forked from jamesp-epcc/DUNERucioPolicy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpermission.py
1201 lines (955 loc) · 48.7 KB
/
permission.py
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
# -*- coding: utf-8 -*-
# Copyright European Organization for Nuclear Research (CERN) since 2012
#
# 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.
from typing import TYPE_CHECKING
import rucio.core.scope
from rucio.core.account import list_account_attributes, has_account_attribute
from rucio.core.identity import exist_identity_account
from rucio.core.lifetime_exception import list_exceptions
from rucio.core.rse import list_rse_attributes
from rucio.core.rse_expression_parser import parse_expression
from rucio.db.sqla.constants import IdentityType
if TYPE_CHECKING:
from typing import Optional
from sqlalchemy.orm import Session
from rucio.common.types import InternalAccount
import rucio.core.permission.generic
from metacat.webapi import MetaCatClient
metacat_client = MetaCatClient() # will read env. METACAT_SERVER_URL by default
def has_permission(issuer, action, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account has the specified permission to
execute an action with parameters.
:param issuer: Account identifier which issues the command..
:param action: The action(API call) called by the account.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
perm = {'add_account': perm_add_account,
'del_account': perm_del_account,
'update_account': perm_update_account,
'add_rule': perm_add_rule,
'add_subscription': perm_add_subscription,
'add_scope': perm_add_scope,
'add_rse': perm_add_rse,
'update_rse': perm_update_rse,
'add_protocol': perm_add_protocol,
'del_protocol': perm_del_protocol,
'update_protocol': perm_update_protocol,
'add_qos_policy': perm_add_qos_policy,
'delete_qos_policy': perm_delete_qos_policy,
'declare_bad_file_replicas': perm_declare_bad_file_replicas,
'declare_suspicious_file_replicas': perm_declare_suspicious_file_replicas,
'add_replicas': perm_add_replicas,
'delete_replicas': perm_delete_replicas,
'skip_availability_check': perm_skip_availability_check,
'update_replicas_states': perm_update_replicas_states,
'add_rse_attribute': perm_add_rse_attribute,
'del_rse_attribute': perm_del_rse_attribute,
'del_rse': perm_del_rse,
'del_rule': perm_del_rule,
'update_rule': perm_update_rule,
'approve_rule': perm_approve_rule,
'update_subscription': perm_update_subscription,
'reduce_rule': perm_reduce_rule,
'move_rule': perm_move_rule,
'get_auth_token_user_pass': perm_get_auth_token_user_pass,
'get_auth_token_gss': perm_get_auth_token_gss,
'get_auth_token_x509': perm_get_auth_token_x509,
'get_auth_token_saml': perm_get_auth_token_saml,
'add_account_identity': perm_add_account_identity,
'add_did': perm_add_did,
'add_dids': perm_add_dids,
'attach_dids': perm_attach_dids,
'detach_dids': perm_detach_dids,
'attach_dids_to_dids': perm_attach_dids_to_dids,
'create_did_sample': perm_create_did_sample,
'set_metadata': perm_set_metadata,
'set_metadata_bulk': perm_set_metadata_bulk,
'set_status': perm_set_status,
'queue_requests': perm_queue_requests,
'set_rse_usage': perm_set_rse_usage,
'set_rse_limits': perm_set_rse_limits,
'list_requests': perm_list_requests,
'list_requests_history': perm_list_requests_history,
'get_request_by_did': perm_get_request_by_did,
'get_request_history_by_did': perm_get_request_history_by_did,
'cancel_request': perm_cancel_request,
'get_next': perm_get_next,
'set_local_account_limit': perm_set_local_account_limit,
'set_global_account_limit': perm_set_global_account_limit,
'delete_local_account_limit': perm_delete_local_account_limit,
'delete_global_account_limit': perm_delete_global_account_limit,
'config_sections': perm_config,
'config_add_section': perm_config,
'config_has_section': perm_config,
'config_options': perm_config,
'config_has_option': perm_config,
'config_get': perm_config,
'config_items': perm_config,
'config_set': perm_config,
'config_remove_section': perm_config,
'config_remove_option': perm_config,
'get_local_account_usage': perm_get_local_account_usage,
'get_global_account_usage': perm_get_global_account_usage,
'add_attribute': perm_add_account_attribute,
'del_attribute': perm_del_account_attribute,
'list_heartbeats': perm_list_heartbeats,
'resurrect': perm_resurrect,
'update_lifetime_exceptions': perm_update_lifetime_exceptions,
'get_auth_token_ssh': perm_get_auth_token_ssh,
'get_signed_url': perm_get_signed_url,
'add_bad_pfns': perm_add_bad_pfns,
'del_account_identity': perm_del_account_identity,
'del_identity': perm_del_identity,
'remove_did_from_followed': perm_remove_did_from_followed,
'remove_dids_from_followed': perm_remove_dids_from_followed,
'export': perm_export}
if action not in perm:
return rucio.core.permission.generic.has_permission(issuer, action, kwargs, session=session)
return perm.get(action, perm_default)(issuer=issuer, kwargs=kwargs, session=session)
def _is_root(issuer):
return issuer.external == 'root'
def perm_default(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Default permission.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session)
def perm_add_rse(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can add a RSE.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or has_account_attribute(account=issuer, key='add_rse', session=session)
def perm_update_rse(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can update a RSE.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session)
def perm_add_rule(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can add a replication rule.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if kwargs['account'] == issuer and not kwargs['locked']:
return True
if (_is_root(issuer) or
has_account_attribute(account=issuer, key='admin', session=session) or
has_account_attribute(account=issuer, key='add_rule', session=session)
):
return True
return False
def perm_add_subscription(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can add a subscription.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if (_is_root(issuer) or
has_account_attribute(account=issuer, key='admin', session=session) or
has_account_attribute(account=issuer, key='add_subscription', session=session)
):
return True
return False
def perm_add_rse_attribute(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can add a RSE attribute.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or has_account_attribute(account=issuer, key='add_rse_attribute', session=session):
return True
return False
def perm_del_rse_attribute(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can delete a RSE attribute.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or has_account_attribute(account=issuer, key='del_rse_attribute', session=session):
return True
return False
def perm_del_rse(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can delete a RSE.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or has_account_attribute(account=issuer, key='del_rse', session=session)
def perm_add_account(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can add an account.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer)
def perm_del_account(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can del an account.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer)
def perm_update_account(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can update an account.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session)
def perm_add_scope(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can add a scop to a account.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or has_account_attribute(account=issuer, key='add_scope', session=session)
def perm_get_auth_token_user_pass(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if a user can request a token with user_pass for an account.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if exist_identity_account(identity=kwargs['username'], type_=IdentityType.USERPASS, account=kwargs['account'], session=session):
return True
return False
def perm_get_auth_token_gss(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if a user can request a token with user_pass for an account.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if exist_identity_account(identity=kwargs['gsscred'], type_=IdentityType.GSS, account=kwargs['account'], session=session):
return True
return False
def perm_get_auth_token_x509(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if a user can request a token with user_pass for an account.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if exist_identity_account(identity=kwargs['dn'], type_=IdentityType.X509, account=kwargs['account'], session=session):
return True
return False
def perm_get_auth_token_saml(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if a user can request a token with user_pass for an account.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if exist_identity_account(identity=kwargs['saml_nameid'], type_=IdentityType.SAML, account=kwargs['account'], session=session):
return True
return False
def perm_add_account_identity(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can add an identity to an account.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session)
def perm_del_account_identity(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can delete an identity to an account.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session)
def perm_del_identity(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can delete an identity.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or issuer.external in kwargs.get('accounts')
def _files_exist(lst):
dids = set(item["scope"].external+":"+item["name"] for item in lst)
files = metacat_client.get_files([{"did":did} for did in dids])
return len(files) == len(dids)
def _dataset_exists(dataset):
return metacat_client.get_dataset(did=dataset["scope"].external+":"+dataset["name"]) is not None
def perm_add_did(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can add an data identifier to a scope.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if kwargs["type"] == "FILE" and not _files_exist([kwargs]):
return False
if (kwargs["type"] == "DATASET" or kwargs["type"] == "CONTAINER") and not _dataset_exists(kwargs):
return False
# Check the accounts of the issued rules
if not _is_root(issuer) and not has_account_attribute(account=issuer, key='admin', session=session):
for rule in kwargs.get('rules', []):
if rule['account'] != issuer:
return False
return _is_root(issuer)\
or has_account_attribute(account=issuer, key='admin', session=session)\
or has_account_attribute(account=issuer, key='add_did', session=session)\
or rucio.core.scope.is_scope_owner(scope=kwargs['scope'], account=issuer, session=session)\
or kwargs['scope'].external == 'mock'
def perm_add_dids(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can bulk add data identifiers.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
files = [did for did in kwargs if did.get("type") in ("F", "FILE")]
if files and not _files_exist(files):
return False
# Check the accounts of the issued rules
if not _is_root(issuer) and not has_account_attribute(account=issuer, key='admin', session=session):
for did in kwargs['dids']:
for rule in did.get('rules', []):
if rule['account'] != issuer:
return False
return _is_root(issuer) \
or has_account_attribute(account=issuer, key='admin', session=session)\
or has_account_attribute(account=issuer, key='add_dids', session=session)
def perm_attach_dids(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can append an data identifier to the other data identifier.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer)\
or has_account_attribute(account=issuer, key='admin', session=session)\
or has_account_attribute(account=issuer, key='attach_dids', session=session)\
or rucio.core.scope.is_scope_owner(scope=kwargs['scope'], account=issuer, session=session)\
or kwargs['scope'].external == 'mock'
def perm_attach_dids_to_dids(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can append an data identifier to the other data identifier.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session):
return True
else:
attachments = kwargs['attachments']
scopes = [did['scope'] for did in attachments]
scopes = list(set(scopes))
for scope in scopes:
if not rucio.core.scope.is_scope_owner(scope, issuer, session=session):
return False
return True
def perm_create_did_sample(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can create a sample of a data identifier collection.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer)\
or has_account_attribute(account=issuer, key='admin', session=session)\
or has_account_attribute(account=issuer, key='create_did_sample', session=session)\
or rucio.core.scope.is_scope_owner(scope=kwargs['scope'], account=issuer, session=session)\
or kwargs['scope'].external == 'mock'
def perm_del_rule(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an issuer can delete a replication rule.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed to call the API call, otherwise False
"""
if (_is_root(issuer)
or has_account_attribute(account=issuer, key='admin', session=session)
or has_account_attribute(account=issuer, key='del_rule', session=session)
):
return True
return False
def perm_update_rule(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an issuer can update a replication rule.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed to call the API call, otherwise False
"""
if (_is_root(issuer)
or has_account_attribute(account=issuer, key='admin', session=session)
or has_account_attribute(account=issuer, key='update_rule', session=session)
):
return True
return False
def perm_approve_rule(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an issuer can approve a replication rule.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed to call the API call, otherwise False
"""
if (_is_root(issuer)
or has_account_attribute(account=issuer, key='admin', session=session)
or has_account_attribute(account=issuer, key='approve_rule', session=session)
):
return True
return False
def perm_reduce_rule(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an issuer can reduce a replication rule.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed to call the API call, otherwise False
"""
if (_is_root(issuer)
or has_account_attribute(account=issuer, key='admin', session=session)
or has_account_attribute(account=issuer, key='reduce_rule', session=session)
):
return True
return False
def perm_move_rule(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an issuer can move a replication rule.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed to call the API call, otherwise False
"""
if (_is_root(issuer)
or has_account_attribute(account=issuer, key='admin', session=session)
or has_account_attribute(account=issuer, key='move_rule', session=session)
):
return True
return False
def perm_update_subscription(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can update a subscription.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if (_is_root(issuer)
or has_account_attribute(account=issuer, key='admin', session=session)
or has_account_attribute(account=issuer, key='update_subscription', session=session)
):
return True
return False
def perm_detach_dids(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can detach an data identifier from the other data identifier.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return perm_attach_dids(issuer, kwargs, session=session)
def perm_set_metadata_bulk(issuer: "InternalAccount", kwargs: dict, *, session: "Optional[Session]" = None) -> bool:
"""
Checks if an account can set a metadata on a data identifier.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or rucio.core.scope.is_scope_owner(scope=kwargs['scope'], account=issuer, session=session)
def perm_set_metadata(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can set a metadata on a data identifier.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or rucio.core.scope.is_scope_owner(scope=kwargs['scope'], account=issuer, session=session)
def perm_set_status(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can set status on an data identifier.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if kwargs.get('open', False):
if not _is_root(issuer) and not has_account_attribute(account=issuer, key='admin', session=session):
return False
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or rucio.core.scope.is_scope_owner(scope=kwargs['scope'], account=issuer, session=session)
def perm_add_protocol(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can add a protocol to an RSE.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or has_account_attribute(account=issuer, key='add_protocol', session=session)
def perm_del_protocol(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can delete protocols from an RSE.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or has_account_attribute(account=issuer, key='add_protocol', session=session)
def perm_update_protocol(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can update protocols of an RSE.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or has_account_attribute(account=issuer, key='add_protocol', session=session)
def perm_add_qos_policy(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can add QoS policies to an RSE.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session)
def perm_delete_qos_policy(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can delete QoS policies from an RSE.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session)
def perm_declare_bad_file_replicas(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can declare bad file replicas.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='declare_bad_file_replicas', session=session)
def perm_declare_suspicious_file_replicas(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can declare suspicious file replicas.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return True
def perm_add_replicas(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can add replicas.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return str(kwargs.get('rse', '')).endswith('SCRATCHDISK')\
or str(kwargs.get('rse', '')).endswith('USERDISK')\
or str(kwargs.get('rse', '')).endswith('MOCK')\
or str(kwargs.get('rse', '')).endswith('LOCALGROUPDISK')\
or _is_root(issuer)\
or has_account_attribute(account=issuer, key='admin', session=session)\
or has_account_attribute(account=issuer, key='add_replicas', session=session)
def perm_skip_availability_check(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can skip the availabity check to add/delete file replicas.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session)
def perm_delete_replicas(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can delete replicas.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return False
def perm_update_replicas_states(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can delete replicas.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer)\
or has_account_attribute(account=issuer, key='admin', session=session)\
or has_account_attribute(account=issuer, key='update_replicas_states', session=session)
def perm_queue_requests(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can submit transfer or deletion requests on destination RSEs for data identifiers.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='queue_requests', session=session)
def perm_list_requests(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can list requests.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session)
def perm_list_requests_history(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can list historical requests.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session)
def perm_get_request_by_did(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can get a request by DID.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return True
def perm_get_request_history_by_did(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can get a historical request by DID.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session)
def perm_cancel_request(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can cancel a request.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='cancel_request', session=session)
def perm_get_next(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can retrieve the next request matching the request type and state.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='get_next', session=session)
def perm_set_rse_usage(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can set RSE usage information.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed to call the API call, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='set_rse_usage', session=session)
def perm_set_rse_limits(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can set RSE limits.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed to call the API call, otherwise False
"""
return _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or has_account_attribute(account=issuer, key='set_rse_limits', session=session)
def perm_set_local_account_limit(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can set an account limit.
:param account: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or has_account_attribute(account=issuer, key='set_local_account_limit', session=session):
return True
# Check if user is a country admin
admin_in_country = []
for kv in list_account_attributes(account=issuer, session=session):
if kv['key'].startswith('country-') and kv['value'] == 'admin':
admin_in_country.append(kv['key'].partition('-')[2])
if admin_in_country and list_rse_attributes(rse_id=kwargs['rse_id'], session=session).get('country') in admin_in_country:
return True
return False
def perm_set_global_account_limit(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can set a global account limit.
:param account: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or has_account_attribute(account=issuer, key='set_global_account_limit', session=session):
return True
# Check if user is a country admin
admin_in_country = set()
for kv in list_account_attributes(account=issuer, session=session):
if kv['key'].startswith('country-') and kv['value'] == 'admin':
admin_in_country.add(kv['key'].partition('-')[2])
resolved_rse_countries = {list_rse_attributes(rse_id=rse['rse_id'], session=session).get('country')
for rse in parse_expression(kwargs['rse_expression'], filter_={'vo': issuer.vo}, session=session)}
if resolved_rse_countries.issubset(admin_in_country):
return True
return False
def perm_delete_local_account_limit(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can delete an account limit.
:param account: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or has_account_attribute(account=issuer, key='delete_local_account_limit', session=session):
return True
# Check if user is a country admin
admin_in_country = []
for kv in list_account_attributes(account=issuer, session=session):
if kv['key'].startswith('country-') and kv['value'] == 'admin':
admin_in_country.append(kv['key'].partition('-')[2])
if admin_in_country and list_rse_attributes(rse_id=kwargs['rse_id'], session=session).get('country') in admin_in_country:
return True
return False
def perm_delete_global_account_limit(issuer, kwargs, *, session: "Optional[Session]" = None):
"""
Checks if an account can delete a global account limit.
:param issuer: Account identifier which issues the command.
:param kwargs: List of arguments for the action.
:param session: The DB session to use
:returns: True if account is allowed, otherwise False
"""
if _is_root(issuer) or has_account_attribute(account=issuer, key='admin', session=session) or has_account_attribute(account=issuer, key='delete_global_account_limit', session=session):
return True
# Check if user is a country admin
admin_in_country = set()
for kv in list_account_attributes(account=issuer, session=session):
if kv['key'].startswith('country-') and kv['value'] == 'admin':
admin_in_country.add(kv['key'].partition('-')[2])
if admin_in_country:
resolved_rse_countries = {list_rse_attributes(rse_id=rse['rse_id'], session=session).get('country')
for rse in parse_expression(kwargs['rse_expression'], filter_={'vo': issuer.vo}, session=session)}
if resolved_rse_countries.issubset(admin_in_country):