Merge branch '18349-fed-request-id'
[arvados.git] / sdk / go / arvados / config.go
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: Apache-2.0
4
5 package arvados
6
7 import (
8         "encoding/json"
9         "errors"
10         "fmt"
11         "net/url"
12         "os"
13
14         "git.arvados.org/arvados.git/sdk/go/config"
15 )
16
17 var DefaultConfigFile = func() string {
18         if path := os.Getenv("ARVADOS_CONFIG"); path != "" {
19                 return path
20         }
21         return "/etc/arvados/config.yml"
22 }()
23
24 type Config struct {
25         Clusters         map[string]Cluster
26         AutoReloadConfig bool
27 }
28
29 // GetConfig returns the current system config, loading it from
30 // configFile if needed.
31 func GetConfig(configFile string) (*Config, error) {
32         var cfg Config
33         err := config.LoadFile(&cfg, configFile)
34         return &cfg, err
35 }
36
37 // GetCluster returns the cluster ID and config for the given
38 // cluster, or the default/only configured cluster if clusterID is "".
39 func (sc *Config) GetCluster(clusterID string) (*Cluster, error) {
40         if clusterID == "" {
41                 if len(sc.Clusters) == 0 {
42                         return nil, fmt.Errorf("no clusters configured")
43                 } else if len(sc.Clusters) > 1 {
44                         return nil, fmt.Errorf("multiple clusters configured, cannot choose")
45                 } else {
46                         for id, cc := range sc.Clusters {
47                                 cc.ClusterID = id
48                                 return &cc, nil
49                         }
50                 }
51         }
52         cc, ok := sc.Clusters[clusterID]
53         if !ok {
54                 return nil, fmt.Errorf("cluster %q is not configured", clusterID)
55         }
56         cc.ClusterID = clusterID
57         return &cc, nil
58 }
59
60 type WebDAVCacheConfig struct {
61         TTL                  Duration
62         UUIDTTL              Duration
63         MaxBlockEntries      int
64         MaxCollectionEntries int
65         MaxCollectionBytes   int64
66         MaxUUIDEntries       int
67         MaxSessions          int
68 }
69
70 type UploadDownloadPermission struct {
71         Upload   bool
72         Download bool
73 }
74
75 type UploadDownloadRolePermissions struct {
76         User  UploadDownloadPermission
77         Admin UploadDownloadPermission
78 }
79
80 type ManagedProperties map[string]struct {
81         Value     interface{}
82         Function  string
83         Protected bool
84 }
85
86 type Cluster struct {
87         ClusterID       string `json:"-"`
88         ManagementToken string
89         SystemRootToken string
90         Services        Services
91         InstanceTypes   InstanceTypeMap
92         Containers      ContainersConfig
93         RemoteClusters  map[string]RemoteCluster
94         PostgreSQL      PostgreSQL
95
96         API struct {
97                 AsyncPermissionsUpdateInterval Duration
98                 DisabledAPIs                   StringSet
99                 MaxIndexDatabaseRead           int
100                 MaxItemsPerResponse            int
101                 MaxConcurrentRequests          int
102                 MaxKeepBlobBuffers             int
103                 MaxRequestAmplification        int
104                 MaxRequestSize                 int
105                 MaxTokenLifetime               Duration
106                 RequestTimeout                 Duration
107                 SendTimeout                    Duration
108                 WebsocketClientEventQueue      int
109                 WebsocketServerEventQueue      int
110                 KeepServiceRequestTimeout      Duration
111                 VocabularyPath                 string
112         }
113         AuditLogs struct {
114                 MaxAge             Duration
115                 MaxDeleteBatch     int
116                 UnloggedAttributes StringSet
117         }
118         Collections struct {
119                 BlobSigning                  bool
120                 BlobSigningKey               string
121                 BlobSigningTTL               Duration
122                 BlobTrash                    bool
123                 BlobTrashLifetime            Duration
124                 BlobTrashCheckInterval       Duration
125                 BlobTrashConcurrency         int
126                 BlobDeleteConcurrency        int
127                 BlobReplicateConcurrency     int
128                 CollectionVersioning         bool
129                 DefaultTrashLifetime         Duration
130                 DefaultReplication           int
131                 ManagedProperties            ManagedProperties
132                 PreserveVersionIfIdle        Duration
133                 TrashSweepInterval           Duration
134                 TrustAllContent              bool
135                 ForwardSlashNameSubstitution string
136                 S3FolderObjects              bool
137
138                 BlobMissingReport        string
139                 BalancePeriod            Duration
140                 BalanceCollectionBatch   int
141                 BalanceCollectionBuffers int
142                 BalanceTimeout           Duration
143                 BalanceUpdateLimit       int
144
145                 WebDAVCache WebDAVCacheConfig
146
147                 KeepproxyPermission UploadDownloadRolePermissions
148                 WebDAVPermission    UploadDownloadRolePermissions
149                 WebDAVLogEvents     bool
150         }
151         Git struct {
152                 GitCommand   string
153                 GitoliteHome string
154                 Repositories string
155         }
156         Login struct {
157                 LDAP struct {
158                         Enable             bool
159                         URL                URL
160                         StartTLS           bool
161                         InsecureTLS        bool
162                         StripDomain        string
163                         AppendDomain       string
164                         SearchAttribute    string
165                         SearchBindUser     string
166                         SearchBindPassword string
167                         SearchBase         string
168                         SearchFilters      string
169                         EmailAttribute     string
170                         UsernameAttribute  string
171                 }
172                 Google struct {
173                         Enable                          bool
174                         ClientID                        string
175                         ClientSecret                    string
176                         AlternateEmailAddresses         bool
177                         AuthenticationRequestParameters map[string]string
178                 }
179                 OpenIDConnect struct {
180                         Enable                          bool
181                         Issuer                          string
182                         ClientID                        string
183                         ClientSecret                    string
184                         EmailClaim                      string
185                         EmailVerifiedClaim              string
186                         UsernameClaim                   string
187                         AcceptAccessToken               bool
188                         AcceptAccessTokenScope          string
189                         AuthenticationRequestParameters map[string]string
190                 }
191                 PAM struct {
192                         Enable             bool
193                         Service            string
194                         DefaultEmailDomain string
195                 }
196                 Test struct {
197                         Enable bool
198                         Users  map[string]TestUser
199                 }
200                 LoginCluster       string
201                 RemoteTokenRefresh Duration
202                 TokenLifetime      Duration
203                 TrustedClients     map[string]struct{}
204                 IssueTrustedTokens bool
205         }
206         Mail struct {
207                 MailchimpAPIKey                string
208                 MailchimpListID                string
209                 SendUserSetupNotificationEmail bool
210                 IssueReporterEmailFrom         string
211                 IssueReporterEmailTo           string
212                 SupportEmailAddress            string
213                 EmailFrom                      string
214         }
215         SystemLogs struct {
216                 LogLevel                string
217                 Format                  string
218                 MaxRequestLogParamsSize int
219         }
220         TLS struct {
221                 Certificate string
222                 Key         string
223                 Insecure    bool
224         }
225         Users struct {
226                 ActivatedUsersAreVisibleToOthers      bool
227                 AnonymousUserToken                    string
228                 AdminNotifierEmailFrom                string
229                 AutoAdminFirstUser                    bool
230                 AutoAdminUserWithEmail                string
231                 AutoSetupNewUsers                     bool
232                 AutoSetupNewUsersWithRepository       bool
233                 AutoSetupNewUsersWithVmUUID           string
234                 AutoSetupUsernameBlacklist            StringSet
235                 EmailSubjectPrefix                    string
236                 NewInactiveUserNotificationRecipients StringSet
237                 NewUserNotificationRecipients         StringSet
238                 NewUsersAreActive                     bool
239                 UserNotifierEmailFrom                 string
240                 UserNotifierEmailBcc                  StringSet
241                 UserProfileNotificationAddress        string
242                 PreferDomainForUsername               string
243                 UserSetupMailText                     string
244                 RoleGroupsVisibleToAll                bool
245         }
246         StorageClasses map[string]StorageClassConfig
247         Volumes        map[string]Volume
248         Workbench      struct {
249                 ActivationContactLink            string
250                 APIClientConnectTimeout          Duration
251                 APIClientReceiveTimeout          Duration
252                 APIResponseCompression           bool
253                 ApplicationMimetypesWithViewIcon StringSet
254                 ArvadosDocsite                   string
255                 ArvadosPublicDataDocURL          string
256                 DefaultOpenIdPrefix              string
257                 EnableGettingStartedPopup        bool
258                 EnablePublicProjectsPage         bool
259                 FileViewersConfigURL             string
260                 LogViewerMaxBytes                ByteSize
261                 MultiSiteSearch                  string
262                 ProfilingEnabled                 bool
263                 Repositories                     bool
264                 RepositoryCache                  string
265                 RunningJobLogRecordsToFetch      int
266                 SecretKeyBase                    string
267                 ShowRecentCollectionsOnDashboard bool
268                 ShowUserAgreementInline          bool
269                 ShowUserNotifications            bool
270                 SiteName                         string
271                 Theme                            string
272                 UserProfileFormFields            map[string]struct {
273                         Type                 string
274                         FormFieldTitle       string
275                         FormFieldDescription string
276                         Required             bool
277                         Position             int
278                         Options              map[string]struct{}
279                 }
280                 UserProfileFormMessage string
281                 WelcomePageHTML        string
282                 InactivePageHTML       string
283                 SSHHelpPageHTML        string
284                 SSHHelpHostSuffix      string
285                 IdleTimeout            Duration
286         }
287 }
288
289 type StorageClassConfig struct {
290         Default  bool
291         Priority int
292 }
293
294 type Volume struct {
295         AccessViaHosts   map[URL]VolumeAccess
296         ReadOnly         bool
297         Replication      int
298         StorageClasses   map[string]bool
299         Driver           string
300         DriverParameters json.RawMessage
301 }
302
303 type S3VolumeDriverParameters struct {
304         IAMRole            string
305         AccessKeyID        string
306         SecretAccessKey    string
307         Endpoint           string
308         Region             string
309         Bucket             string
310         LocationConstraint bool
311         V2Signature        bool
312         UseAWSS3v2Driver   bool
313         IndexPageSize      int
314         ConnectTimeout     Duration
315         ReadTimeout        Duration
316         RaceWindow         Duration
317         UnsafeDelete       bool
318         PrefixLength       int
319 }
320
321 type AzureVolumeDriverParameters struct {
322         StorageAccountName   string
323         StorageAccountKey    string
324         StorageBaseURL       string
325         ContainerName        string
326         RequestTimeout       Duration
327         ListBlobsRetryDelay  Duration
328         ListBlobsMaxAttempts int
329 }
330
331 type DirectoryVolumeDriverParameters struct {
332         Root      string
333         Serialize bool
334 }
335
336 type VolumeAccess struct {
337         ReadOnly bool
338 }
339
340 type Services struct {
341         Composer       Service
342         Controller     Service
343         DispatchCloud  Service
344         DispatchLSF    Service
345         GitHTTP        Service
346         GitSSH         Service
347         Health         Service
348         Keepbalance    Service
349         Keepproxy      Service
350         Keepstore      Service
351         RailsAPI       Service
352         WebDAVDownload Service
353         WebDAV         Service
354         WebShell       Service
355         Websocket      Service
356         Workbench1     Service
357         Workbench2     Service
358 }
359
360 type Service struct {
361         InternalURLs map[URL]ServiceInstance
362         ExternalURL  URL
363 }
364
365 type TestUser struct {
366         Email    string
367         Password string
368 }
369
370 // URL is a url.URL that is also usable as a JSON key/value.
371 type URL url.URL
372
373 // UnmarshalText implements encoding.TextUnmarshaler so URL can be
374 // used as a JSON key/value.
375 func (su *URL) UnmarshalText(text []byte) error {
376         u, err := url.Parse(string(text))
377         if err == nil {
378                 *su = URL(*u)
379                 if su.Path == "" && su.Host != "" {
380                         // http://example really means http://example/
381                         su.Path = "/"
382                 }
383         }
384         return err
385 }
386
387 func (su URL) MarshalText() ([]byte, error) {
388         return []byte(fmt.Sprintf("%s", (*url.URL)(&su).String())), nil
389 }
390
391 func (su URL) String() string {
392         return (*url.URL)(&su).String()
393 }
394
395 type ServiceInstance struct {
396         Rendezvous string `json:",omitempty"`
397 }
398
399 type PostgreSQL struct {
400         Connection     PostgreSQLConnection
401         ConnectionPool int
402 }
403
404 type PostgreSQLConnection map[string]string
405
406 type RemoteCluster struct {
407         Host          string
408         Proxy         bool
409         Scheme        string
410         Insecure      bool
411         ActivateUsers bool
412 }
413
414 type InstanceType struct {
415         Name            string
416         ProviderType    string
417         VCPUs           int
418         RAM             ByteSize
419         Scratch         ByteSize
420         IncludedScratch ByteSize
421         AddedScratch    ByteSize
422         Price           float64
423         Preemptible     bool
424 }
425
426 type ContainersConfig struct {
427         CloudVMs                    CloudVMsConfig
428         CrunchRunCommand            string
429         CrunchRunArgumentsList      []string
430         DefaultKeepCacheRAM         ByteSize
431         DispatchPrivateKey          string
432         LogReuseDecisions           bool
433         MaxComputeVMs               int
434         MaxDispatchAttempts         int
435         MaxRetryAttempts            int
436         MinRetryPeriod              Duration
437         ReserveExtraRAM             ByteSize
438         StaleLockTimeout            Duration
439         SupportedDockerImageFormats StringSet
440         UsePreemptibleInstances     bool
441         RuntimeEngine               string
442         LocalKeepBlobBuffersPerVCPU int
443         LocalKeepLogsToContainerLog string
444
445         JobsAPI struct {
446                 Enable         string
447                 GitInternalDir string
448         }
449         Logging struct {
450                 MaxAge                       Duration
451                 LogBytesPerEvent             int
452                 LogSecondsBetweenEvents      Duration
453                 LogThrottlePeriod            Duration
454                 LogThrottleBytes             int
455                 LogThrottleLines             int
456                 LimitLogBytesPerJob          int
457                 LogPartialLineThrottlePeriod Duration
458                 LogUpdatePeriod              Duration
459                 LogUpdateSize                ByteSize
460         }
461         ShellAccess struct {
462                 Admin bool
463                 User  bool
464         }
465         SLURM struct {
466                 PrioritySpread             int64
467                 SbatchArgumentsList        []string
468                 SbatchEnvironmentVariables map[string]string
469                 Managed                    struct {
470                         DNSServerConfDir       string
471                         DNSServerConfTemplate  string
472                         DNSServerReloadCommand string
473                         DNSServerUpdateCommand string
474                         ComputeNodeDomain      string
475                         ComputeNodeNameservers StringSet
476                         AssignNodeHostname     string
477                 }
478         }
479         LSF struct {
480                 BsubSudoUser      string
481                 BsubArgumentsList []string
482         }
483 }
484
485 type CloudVMsConfig struct {
486         Enable bool
487
488         BootProbeCommand               string
489         DeployRunnerBinary             string
490         ImageID                        string
491         MaxCloudOpsPerSecond           int
492         MaxProbesPerSecond             int
493         MaxConcurrentInstanceCreateOps int
494         PollInterval                   Duration
495         ProbeInterval                  Duration
496         SSHPort                        string
497         SyncInterval                   Duration
498         TimeoutBooting                 Duration
499         TimeoutIdle                    Duration
500         TimeoutProbe                   Duration
501         TimeoutShutdown                Duration
502         TimeoutSignal                  Duration
503         TimeoutStaleRunLock            Duration
504         TimeoutTERM                    Duration
505         ResourceTags                   map[string]string
506         TagKeyPrefix                   string
507
508         Driver           string
509         DriverParameters json.RawMessage
510 }
511
512 type InstanceTypeMap map[string]InstanceType
513
514 var errDuplicateInstanceTypeName = errors.New("duplicate instance type name")
515
516 // UnmarshalJSON handles old config files that provide an array of
517 // instance types instead of a hash.
518 func (it *InstanceTypeMap) UnmarshalJSON(data []byte) error {
519         fixup := func(t InstanceType) (InstanceType, error) {
520                 if t.ProviderType == "" {
521                         t.ProviderType = t.Name
522                 }
523                 if t.Scratch == 0 {
524                         t.Scratch = t.IncludedScratch + t.AddedScratch
525                 } else if t.AddedScratch == 0 {
526                         t.AddedScratch = t.Scratch - t.IncludedScratch
527                 } else if t.IncludedScratch == 0 {
528                         t.IncludedScratch = t.Scratch - t.AddedScratch
529                 }
530
531                 if t.Scratch != (t.IncludedScratch + t.AddedScratch) {
532                         return t, fmt.Errorf("InstanceType %q: Scratch != (IncludedScratch + AddedScratch)", t.Name)
533                 }
534                 return t, nil
535         }
536
537         if len(data) > 0 && data[0] == '[' {
538                 var arr []InstanceType
539                 err := json.Unmarshal(data, &arr)
540                 if err != nil {
541                         return err
542                 }
543                 if len(arr) == 0 {
544                         *it = nil
545                         return nil
546                 }
547                 *it = make(map[string]InstanceType, len(arr))
548                 for _, t := range arr {
549                         if _, ok := (*it)[t.Name]; ok {
550                                 return errDuplicateInstanceTypeName
551                         }
552                         t, err := fixup(t)
553                         if err != nil {
554                                 return err
555                         }
556                         (*it)[t.Name] = t
557                 }
558                 return nil
559         }
560         var hash map[string]InstanceType
561         err := json.Unmarshal(data, &hash)
562         if err != nil {
563                 return err
564         }
565         // Fill in Name field (and ProviderType field, if not
566         // specified) using hash key.
567         *it = InstanceTypeMap(hash)
568         for name, t := range *it {
569                 t.Name = name
570                 t, err := fixup(t)
571                 if err != nil {
572                         return err
573                 }
574                 (*it)[name] = t
575         }
576         return nil
577 }
578
579 type StringSet map[string]struct{}
580
581 // UnmarshalJSON handles old config files that provide an array of
582 // instance types instead of a hash.
583 func (ss *StringSet) UnmarshalJSON(data []byte) error {
584         if len(data) > 0 && data[0] == '[' {
585                 var arr []string
586                 err := json.Unmarshal(data, &arr)
587                 if err != nil {
588                         return err
589                 }
590                 if len(arr) == 0 {
591                         *ss = nil
592                         return nil
593                 }
594                 *ss = make(map[string]struct{}, len(arr))
595                 for _, t := range arr {
596                         (*ss)[t] = struct{}{}
597                 }
598                 return nil
599         }
600         var hash map[string]struct{}
601         err := json.Unmarshal(data, &hash)
602         if err != nil {
603                 return err
604         }
605         *ss = make(map[string]struct{}, len(hash))
606         for t := range hash {
607                 (*ss)[t] = struct{}{}
608         }
609
610         return nil
611 }
612
613 type ServiceName string
614
615 const (
616         ServiceNameRailsAPI      ServiceName = "arvados-api-server"
617         ServiceNameController    ServiceName = "arvados-controller"
618         ServiceNameDispatchCloud ServiceName = "arvados-dispatch-cloud"
619         ServiceNameDispatchLSF   ServiceName = "arvados-dispatch-lsf"
620         ServiceNameHealth        ServiceName = "arvados-health"
621         ServiceNameWorkbench1    ServiceName = "arvados-workbench1"
622         ServiceNameWorkbench2    ServiceName = "arvados-workbench2"
623         ServiceNameWebsocket     ServiceName = "arvados-ws"
624         ServiceNameKeepbalance   ServiceName = "keep-balance"
625         ServiceNameKeepweb       ServiceName = "keep-web"
626         ServiceNameKeepproxy     ServiceName = "keepproxy"
627         ServiceNameKeepstore     ServiceName = "keepstore"
628 )
629
630 // Map returns all services as a map, suitable for iterating over all
631 // services or looking up a service by name.
632 func (svcs Services) Map() map[ServiceName]Service {
633         return map[ServiceName]Service{
634                 ServiceNameRailsAPI:      svcs.RailsAPI,
635                 ServiceNameController:    svcs.Controller,
636                 ServiceNameDispatchCloud: svcs.DispatchCloud,
637                 ServiceNameDispatchLSF:   svcs.DispatchLSF,
638                 ServiceNameHealth:        svcs.Health,
639                 ServiceNameWorkbench1:    svcs.Workbench1,
640                 ServiceNameWorkbench2:    svcs.Workbench2,
641                 ServiceNameWebsocket:     svcs.Websocket,
642                 ServiceNameKeepbalance:   svcs.Keepbalance,
643                 ServiceNameKeepweb:       svcs.WebDAV,
644                 ServiceNameKeepproxy:     svcs.Keepproxy,
645                 ServiceNameKeepstore:     svcs.Keepstore,
646         }
647 }