15881: Move Google, SSO, and PAM configs into their own sections.
[arvados.git] / lib / config / export.go
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 package config
6
7 import (
8         "encoding/json"
9         "errors"
10         "fmt"
11         "io"
12         "strings"
13
14         "git.arvados.org/arvados.git/sdk/go/arvados"
15 )
16
17 // ExportJSON writes a JSON object with the safe (non-secret) portions
18 // of the cluster config to w.
19 func ExportJSON(w io.Writer, cluster *arvados.Cluster) error {
20         buf, err := json.Marshal(cluster)
21         if err != nil {
22                 return err
23         }
24         var m map[string]interface{}
25         err = json.Unmarshal(buf, &m)
26         if err != nil {
27                 return err
28         }
29
30         // ClusterID is not marshalled by default (see `json:"-"`).
31         // Add it back here so it is included in the exported config.
32         m["ClusterID"] = cluster.ClusterID
33         err = redactUnsafe(m, "", "")
34         if err != nil {
35                 return err
36         }
37         return json.NewEncoder(w).Encode(m)
38 }
39
40 // whitelist classifies configs as safe/unsafe to reveal to
41 // unauthenticated clients.
42 //
43 // Every config entry must either be listed explicitly here along with
44 // all of its parent keys (e.g., "API" + "API.RequestTimeout"), or
45 // have an ancestor listed as false (e.g.,
46 // "PostgreSQL.Connection.password" has an ancestor
47 // "PostgreSQL.Connection" with a false value). Otherwise, it is a bug
48 // which should be caught by tests.
49 //
50 // Example: API.RequestTimeout is safe because whitelist["API"] == and
51 // whitelist["API.RequestTimeout"] == true.
52 //
53 // Example: PostgreSQL.Connection.password is not safe because
54 // whitelist["PostgreSQL.Connection"] == false.
55 //
56 // Example: PostgreSQL.BadKey would cause an error because
57 // whitelist["PostgreSQL"] isn't false, and neither
58 // whitelist["PostgreSQL.BadKey"] nor whitelist["PostgreSQL.*"]
59 // exists.
60 var whitelist = map[string]bool{
61         // | sort -t'"' -k2,2
62         "ClusterID":                                    true,
63         "API":                                          true,
64         "API.AsyncPermissionsUpdateInterval":           false,
65         "API.DisabledAPIs":                             false,
66         "API.MaxConcurrentRequests":                    false,
67         "API.MaxIndexDatabaseRead":                     false,
68         "API.MaxItemsPerResponse":                      true,
69         "API.MaxKeepBlobBuffers":                       false,
70         "API.MaxRequestAmplification":                  false,
71         "API.MaxRequestSize":                           true,
72         "API.RailsSessionSecretToken":                  false,
73         "API.RequestTimeout":                           true,
74         "API.WebsocketClientEventQueue":                false,
75         "API.SendTimeout":                              true,
76         "API.WebsocketServerEventQueue":                false,
77         "API.KeepServiceRequestTimeout":                false,
78         "AuditLogs":                                    false,
79         "AuditLogs.MaxAge":                             false,
80         "AuditLogs.MaxDeleteBatch":                     false,
81         "AuditLogs.UnloggedAttributes":                 false,
82         "Collections":                                  true,
83         "Collections.BlobSigning":                      true,
84         "Collections.BlobSigningKey":                   false,
85         "Collections.BlobSigningTTL":                   true,
86         "Collections.BlobTrash":                        false,
87         "Collections.BlobTrashLifetime":                false,
88         "Collections.BlobTrashConcurrency":             false,
89         "Collections.BlobTrashCheckInterval":           false,
90         "Collections.BlobDeleteConcurrency":            false,
91         "Collections.BlobReplicateConcurrency":         false,
92         "Collections.CollectionVersioning":             false,
93         "Collections.DefaultReplication":               true,
94         "Collections.DefaultTrashLifetime":             true,
95         "Collections.ForwardSlashNameSubstitution":     true,
96         "Collections.ManagedProperties":                true,
97         "Collections.ManagedProperties.*":              true,
98         "Collections.ManagedProperties.*.*":            true,
99         "Collections.PreserveVersionIfIdle":            true,
100         "Collections.TrashSweepInterval":               false,
101         "Collections.TrustAllContent":                  false,
102         "Collections.WebDAVCache":                      false,
103         "Collections.BalanceCollectionBatch":           false,
104         "Collections.BalancePeriod":                    false,
105         "Collections.BlobMissingReport":                false,
106         "Collections.BalanceCollectionBuffers":         false,
107         "Containers":                                   true,
108         "Containers.CloudVMs":                          false,
109         "Containers.CrunchRunCommand":                  false,
110         "Containers.CrunchRunArgumentsList":            false,
111         "Containers.DefaultKeepCacheRAM":               true,
112         "Containers.DispatchPrivateKey":                false,
113         "Containers.JobsAPI":                           true,
114         "Containers.JobsAPI.Enable":                    true,
115         "Containers.JobsAPI.GitInternalDir":            false,
116         "Containers.Logging":                           false,
117         "Containers.LogReuseDecisions":                 false,
118         "Containers.MaxComputeVMs":                     false,
119         "Containers.MaxDispatchAttempts":               false,
120         "Containers.MaxRetryAttempts":                  true,
121         "Containers.MinRetryPeriod":                    true,
122         "Containers.ReserveExtraRAM":                   true,
123         "Containers.SLURM":                             false,
124         "Containers.StaleLockTimeout":                  false,
125         "Containers.SupportedDockerImageFormats":       true,
126         "Containers.SupportedDockerImageFormats.*":     true,
127         "Containers.UsePreemptibleInstances":           true,
128         "ForceLegacyAPI14":                             false,
129         "Git":                                          false,
130         "InstanceTypes":                                true,
131         "InstanceTypes.*":                              true,
132         "InstanceTypes.*.*":                            true,
133         "Login":                                        true,
134         "Login.Google":                                 true,
135         "Login.Google.AlternateEmailAddresses":         false,
136         "Login.Google.ClientID":                        false,
137         "Login.Google.ClientSecret":                    false,
138         "Login.Google.Enable":                          true,
139         "Login.LDAP":                                   true,
140         "Login.LDAP.AppendDomain":                      false,
141         "Login.LDAP.EmailAttribute":                    false,
142         "Login.LDAP.Enable":                            true,
143         "Login.LDAP.InsecureTLS":                       false,
144         "Login.LDAP.SearchAttribute":                   false,
145         "Login.LDAP.SearchBase":                        false,
146         "Login.LDAP.SearchBindPassword":                false,
147         "Login.LDAP.SearchBindUser":                    false,
148         "Login.LDAP.SearchFilters":                     false,
149         "Login.LDAP.StartTLS":                          false,
150         "Login.LDAP.StripDomain":                       false,
151         "Login.LDAP.URL":                               false,
152         "Login.LDAP.UsernameAttribute":                 false,
153         "Login.LoginCluster":                           true,
154         "Login.PAM":                                    true,
155         "Login.PAM.DefaultEmailDomain":                 false,
156         "Login.PAM.Enable":                             true,
157         "Login.PAM.Service":                            false,
158         "Login.SSO":                                    true,
159         "Login.SSO.Enable":                             true,
160         "Login.SSO.ProviderAppID":                      false,
161         "Login.SSO.ProviderAppSecret":                  false,
162         "Login.RemoteTokenRefresh":                     true,
163         "Mail":                                         true,
164         "Mail.MailchimpAPIKey":                         false,
165         "Mail.MailchimpListID":                         false,
166         "Mail.SendUserSetupNotificationEmail":          false,
167         "Mail.IssueReporterEmailFrom":                  false,
168         "Mail.IssueReporterEmailTo":                    false,
169         "Mail.SupportEmailAddress":                     true,
170         "Mail.EmailFrom":                               false,
171         "ManagementToken":                              false,
172         "PostgreSQL":                                   false,
173         "RemoteClusters":                               true,
174         "RemoteClusters.*":                             true,
175         "RemoteClusters.*.ActivateUsers":               true,
176         "RemoteClusters.*.Host":                        true,
177         "RemoteClusters.*.Insecure":                    true,
178         "RemoteClusters.*.Proxy":                       true,
179         "RemoteClusters.*.Scheme":                      true,
180         "Services":                                     true,
181         "Services.*":                                   true,
182         "Services.*.ExternalURL":                       true,
183         "Services.*.InternalURLs":                      false,
184         "SystemLogs":                                   false,
185         "SystemRootToken":                              false,
186         "TLS":                                          false,
187         "Users":                                        true,
188         "Users.AnonymousUserToken":                     true,
189         "Users.AdminNotifierEmailFrom":                 false,
190         "Users.AutoAdminFirstUser":                     false,
191         "Users.AutoAdminUserWithEmail":                 false,
192         "Users.AutoSetupNewUsers":                      false,
193         "Users.AutoSetupNewUsersWithRepository":        false,
194         "Users.AutoSetupNewUsersWithVmUUID":            false,
195         "Users.AutoSetupUsernameBlacklist":             false,
196         "Users.EmailSubjectPrefix":                     false,
197         "Users.NewInactiveUserNotificationRecipients":  false,
198         "Users.NewUserNotificationRecipients":          false,
199         "Users.NewUsersAreActive":                      false,
200         "Users.PreferDomainForUsername":                false,
201         "Users.UserNotifierEmailFrom":                  false,
202         "Users.UserProfileNotificationAddress":         false,
203         "Volumes":                                      true,
204         "Volumes.*":                                    true,
205         "Volumes.*.*":                                  false,
206         "Volumes.*.AccessViaHosts":                     true,
207         "Volumes.*.AccessViaHosts.*":                   true,
208         "Volumes.*.AccessViaHosts.*.ReadOnly":          true,
209         "Volumes.*.ReadOnly":                           true,
210         "Volumes.*.Replication":                        true,
211         "Volumes.*.StorageClasses":                     true,
212         "Volumes.*.StorageClasses.*":                   false,
213         "Workbench":                                    true,
214         "Workbench.ActivationContactLink":              false,
215         "Workbench.APIClientConnectTimeout":            true,
216         "Workbench.APIClientReceiveTimeout":            true,
217         "Workbench.APIResponseCompression":             true,
218         "Workbench.ApplicationMimetypesWithViewIcon":   true,
219         "Workbench.ApplicationMimetypesWithViewIcon.*": true,
220         "Workbench.ArvadosDocsite":                     true,
221         "Workbench.ArvadosPublicDataDocURL":            true,
222         "Workbench.DefaultOpenIdPrefix":                false,
223         "Workbench.EnableGettingStartedPopup":          true,
224         "Workbench.EnablePublicProjectsPage":           true,
225         "Workbench.FileViewersConfigURL":               true,
226         "Workbench.LogViewerMaxBytes":                  true,
227         "Workbench.MultiSiteSearch":                    true,
228         "Workbench.ProfilingEnabled":                   true,
229         "Workbench.Repositories":                       false,
230         "Workbench.RepositoryCache":                    false,
231         "Workbench.RunningJobLogRecordsToFetch":        true,
232         "Workbench.SecretKeyBase":                      false,
233         "Workbench.ShowRecentCollectionsOnDashboard":   true,
234         "Workbench.ShowUserAgreementInline":            true,
235         "Workbench.ShowUserNotifications":              true,
236         "Workbench.SiteName":                           true,
237         "Workbench.Theme":                              true,
238         "Workbench.UserProfileFormFields":              true,
239         "Workbench.UserProfileFormFields.*":            true,
240         "Workbench.UserProfileFormFields.*.*":          true,
241         "Workbench.UserProfileFormFields.*.*.*":        true,
242         "Workbench.UserProfileFormMessage":             true,
243         "Workbench.VocabularyURL":                      true,
244         "Workbench.WelcomePageHTML":                    true,
245         "Workbench.InactivePageHTML":                   true,
246         "Workbench.SSHHelpPageHTML":                    true,
247         "Workbench.SSHHelpHostSuffix":                  true,
248 }
249
250 func redactUnsafe(m map[string]interface{}, mPrefix, lookupPrefix string) error {
251         var errs []string
252         for k, v := range m {
253                 lookupKey := k
254                 safe, ok := whitelist[lookupPrefix+k]
255                 if !ok {
256                         lookupKey = "*"
257                         safe, ok = whitelist[lookupPrefix+"*"]
258                 }
259                 if !ok {
260                         errs = append(errs, fmt.Sprintf("config bug: key %q not in whitelist map", lookupPrefix+k))
261                         continue
262                 }
263                 if !safe {
264                         delete(m, k)
265                         continue
266                 }
267                 if v, ok := v.(map[string]interface{}); ok {
268                         err := redactUnsafe(v, mPrefix+k+".", lookupPrefix+lookupKey+".")
269                         if err != nil {
270                                 errs = append(errs, err.Error())
271                         }
272                 }
273         }
274         if len(errs) > 0 {
275                 return errors.New(strings.Join(errs, "\n"))
276         }
277         return nil
278 }