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