1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
14 "git.arvados.org/arvados.git/sdk/go/arvados"
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)
24 var m map[string]interface{}
25 err = json.Unmarshal(buf, &m)
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, "", "")
37 return json.NewEncoder(w).Encode(m)
40 // whitelist classifies configs as safe/unsafe to reveal to
41 // unauthenticated clients.
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.
50 // Example: API.RequestTimeout is safe because whitelist["API"] == and
51 // whitelist["API.RequestTimeout"] == true.
53 // Example: PostgreSQL.Connection.password is not safe because
54 // whitelist["PostgreSQL.Connection"] == false.
56 // Example: PostgreSQL.BadKey would cause an error because
57 // whitelist["PostgreSQL"] isn't false, and neither
58 // whitelist["PostgreSQL.BadKey"] nor whitelist["PostgreSQL.*"]
60 var whitelist = map[string]bool{
63 "API.AsyncPermissionsUpdateInterval": false,
64 "API.DisabledAPIs": false,
65 "API.FreezeProjectRequiresDescription": true,
66 "API.FreezeProjectRequiresProperties": true,
67 "API.FreezeProjectRequiresProperties.*": true,
68 "API.KeepServiceRequestTimeout": false,
69 "API.MaxConcurrentRequests": false,
70 "API.MaxIndexDatabaseRead": false,
71 "API.MaxItemsPerResponse": true,
72 "API.MaxKeepBlobBuffers": false,
73 "API.MaxRequestAmplification": false,
74 "API.MaxRequestSize": true,
75 "API.MaxTokenLifetime": false,
76 "API.RequestTimeout": true,
77 "API.SendTimeout": true,
78 "API.UnfreezeProjectRequiresAdmin": true,
79 "API.VocabularyPath": false,
80 "API.WebsocketClientEventQueue": false,
81 "API.WebsocketServerEventQueue": false,
83 "AuditLogs.MaxAge": false,
84 "AuditLogs.MaxDeleteBatch": false,
85 "AuditLogs.UnloggedAttributes": false,
88 "Collections.BalanceCollectionBatch": false,
89 "Collections.BalanceCollectionBuffers": false,
90 "Collections.BalancePeriod": false,
91 "Collections.BalanceTimeout": false,
92 "Collections.BalanceUpdateLimit": false,
93 "Collections.BlobDeleteConcurrency": false,
94 "Collections.BlobMissingReport": false,
95 "Collections.BlobReplicateConcurrency": false,
96 "Collections.BlobSigning": true,
97 "Collections.BlobSigningKey": false,
98 "Collections.BlobSigningTTL": true,
99 "Collections.BlobTrash": false,
100 "Collections.BlobTrashCheckInterval": false,
101 "Collections.BlobTrashConcurrency": false,
102 "Collections.BlobTrashLifetime": false,
103 "Collections.CollectionVersioning": true,
104 "Collections.DefaultReplication": true,
105 "Collections.DefaultTrashLifetime": true,
106 "Collections.ForwardSlashNameSubstitution": true,
107 "Collections.KeepproxyPermission": false,
108 "Collections.ManagedProperties": true,
109 "Collections.ManagedProperties.*": true,
110 "Collections.ManagedProperties.*.*": true,
111 "Collections.PreserveVersionIfIdle": true,
112 "Collections.S3FolderObjects": true,
113 "Collections.TrashSweepInterval": false,
114 "Collections.TrustAllContent": true,
115 "Collections.WebDAVCache": false,
116 "Collections.WebDAVLogEvents": false,
117 "Collections.WebDAVPermission": false,
119 "Containers.AlwaysUsePreemptibleInstances": true,
120 "Containers.CloudVMs": false,
121 "Containers.CrunchRunArgumentsList": false,
122 "Containers.CrunchRunCommand": false,
123 "Containers.DefaultKeepCacheRAM": true,
124 "Containers.DispatchPrivateKey": false,
125 "Containers.JobsAPI": true,
126 "Containers.JobsAPI.Enable": true,
127 "Containers.JobsAPI.GitInternalDir": false,
128 "Containers.LocalKeepBlobBuffersPerVCPU": false,
129 "Containers.LocalKeepLogsToContainerLog": false,
130 "Containers.Logging": false,
131 "Containers.LogReuseDecisions": false,
132 "Containers.LSF": false,
133 "Containers.MaxComputeVMs": false,
134 "Containers.MaxDispatchAttempts": false,
135 "Containers.MaxRetryAttempts": true,
136 "Containers.MinRetryPeriod": true,
137 "Containers.PreemptiblePriceFactor": false,
138 "Containers.ReserveExtraRAM": true,
139 "Containers.RuntimeEngine": true,
140 "Containers.ShellAccess": true,
141 "Containers.ShellAccess.Admin": true,
142 "Containers.ShellAccess.User": true,
143 "Containers.SLURM": false,
144 "Containers.StaleLockTimeout": false,
145 "Containers.SupportedDockerImageFormats": true,
146 "Containers.SupportedDockerImageFormats.*": true,
148 "InstanceTypes": true,
149 "InstanceTypes.*": true,
150 "InstanceTypes.*.*": true,
151 "InstanceTypes.*.*.*": true,
153 "Login.Google": true,
154 "Login.Google.AlternateEmailAddresses": false,
155 "Login.Google.AuthenticationRequestParameters": false,
156 "Login.Google.ClientID": false,
157 "Login.Google.ClientSecret": false,
158 "Login.Google.Enable": true,
159 "Login.IssueTrustedTokens": false,
161 "Login.LDAP.AppendDomain": false,
162 "Login.LDAP.EmailAttribute": false,
163 "Login.LDAP.Enable": true,
164 "Login.LDAP.InsecureTLS": false,
165 "Login.LDAP.SearchAttribute": false,
166 "Login.LDAP.SearchBase": false,
167 "Login.LDAP.SearchBindPassword": false,
168 "Login.LDAP.SearchBindUser": false,
169 "Login.LDAP.SearchFilters": false,
170 "Login.LDAP.StartTLS": false,
171 "Login.LDAP.StripDomain": false,
172 "Login.LDAP.URL": false,
173 "Login.LDAP.UsernameAttribute": false,
174 "Login.LoginCluster": true,
175 "Login.OpenIDConnect": true,
176 "Login.OpenIDConnect.AcceptAccessToken": false,
177 "Login.OpenIDConnect.AcceptAccessTokenScope": false,
178 "Login.OpenIDConnect.AuthenticationRequestParameters": false,
179 "Login.OpenIDConnect.ClientID": false,
180 "Login.OpenIDConnect.ClientSecret": false,
181 "Login.OpenIDConnect.EmailClaim": false,
182 "Login.OpenIDConnect.EmailVerifiedClaim": false,
183 "Login.OpenIDConnect.Enable": true,
184 "Login.OpenIDConnect.Issuer": false,
185 "Login.OpenIDConnect.UsernameClaim": false,
187 "Login.PAM.DefaultEmailDomain": false,
188 "Login.PAM.Enable": true,
189 "Login.PAM.Service": false,
190 "Login.RemoteTokenRefresh": true,
192 "Login.Test.Enable": true,
193 "Login.Test.Users": false,
194 "Login.TokenLifetime": false,
195 "Login.TrustedClients": false,
196 "Login.TrustPrivateNetworks": false,
198 "Mail.EmailFrom": false,
199 "Mail.IssueReporterEmailFrom": false,
200 "Mail.IssueReporterEmailTo": false,
201 "Mail.MailchimpAPIKey": false,
202 "Mail.MailchimpListID": false,
203 "Mail.SendUserSetupNotificationEmail": false,
204 "Mail.SupportEmailAddress": true,
205 "ManagementToken": false,
207 "RemoteClusters": true,
208 "RemoteClusters.*": true,
209 "RemoteClusters.*.ActivateUsers": true,
210 "RemoteClusters.*.Host": true,
211 "RemoteClusters.*.Insecure": true,
212 "RemoteClusters.*.Proxy": true,
213 "RemoteClusters.*.Scheme": true,
216 "Services.*.ExternalURL": true,
217 "Services.*.InternalURLs": false,
218 "StorageClasses": true,
219 "StorageClasses.*": true,
220 "StorageClasses.*.Default": true,
221 "StorageClasses.*.Priority": true,
223 "SystemRootToken": false,
225 "TLS.Certificate": false,
226 "TLS.Insecure": true,
229 "Users.ActivatedUsersAreVisibleToOthers": false,
230 "Users.ActivityLoggingPeriod": false,
231 "Users.AdminNotifierEmailFrom": false,
232 "Users.AnonymousUserToken": true,
233 "Users.AutoAdminFirstUser": false,
234 "Users.AutoAdminUserWithEmail": false,
235 "Users.AutoSetupNewUsers": false,
236 "Users.AutoSetupNewUsersWithRepository": false,
237 "Users.AutoSetupNewUsersWithVmUUID": false,
238 "Users.AutoSetupUsernameBlacklist": false,
239 "Users.CanCreateRoleGroups": true,
240 "Users.EmailSubjectPrefix": false,
241 "Users.NewInactiveUserNotificationRecipients": false,
242 "Users.NewUserNotificationRecipients": false,
243 "Users.NewUsersAreActive": false,
244 "Users.PreferDomainForUsername": false,
245 "Users.RoleGroupsVisibleToAll": false,
246 "Users.UserNotifierEmailBcc": false,
247 "Users.UserNotifierEmailFrom": false,
248 "Users.UserProfileNotificationAddress": false,
249 "Users.UserSetupMailText": false,
252 "Volumes.*.*": false,
253 "Volumes.*.AccessViaHosts": true,
254 "Volumes.*.AccessViaHosts.*": true,
255 "Volumes.*.AccessViaHosts.*.ReadOnly": true,
256 "Volumes.*.ReadOnly": true,
257 "Volumes.*.Replication": true,
258 "Volumes.*.StorageClasses": true,
259 "Volumes.*.StorageClasses.*": true,
261 "Workbench.ActivationContactLink": false,
262 "Workbench.APIClientConnectTimeout": true,
263 "Workbench.APIClientReceiveTimeout": true,
264 "Workbench.APIResponseCompression": true,
265 "Workbench.ApplicationMimetypesWithViewIcon": true,
266 "Workbench.ApplicationMimetypesWithViewIcon.*": true,
267 "Workbench.ArvadosDocsite": true,
268 "Workbench.ArvadosPublicDataDocURL": true,
269 "Workbench.BannerURL": true,
270 "Workbench.DefaultOpenIdPrefix": false,
271 "Workbench.DisableSharingURLsUI": true,
272 "Workbench.EnableGettingStartedPopup": true,
273 "Workbench.EnablePublicProjectsPage": true,
274 "Workbench.FileViewersConfigURL": true,
275 "Workbench.IdleTimeout": true,
276 "Workbench.InactivePageHTML": true,
277 "Workbench.LogViewerMaxBytes": true,
278 "Workbench.MultiSiteSearch": true,
279 "Workbench.ProfilingEnabled": true,
280 "Workbench.Repositories": false,
281 "Workbench.RepositoryCache": false,
282 "Workbench.RunningJobLogRecordsToFetch": true,
283 "Workbench.SecretKeyBase": false,
284 "Workbench.ShowRecentCollectionsOnDashboard": true,
285 "Workbench.ShowUserAgreementInline": true,
286 "Workbench.ShowUserNotifications": true,
287 "Workbench.SiteName": true,
288 "Workbench.SSHHelpHostSuffix": true,
289 "Workbench.SSHHelpPageHTML": true,
290 "Workbench.Theme": true,
291 "Workbench.UserProfileFormFields": true,
292 "Workbench.UserProfileFormFields.*": true,
293 "Workbench.UserProfileFormFields.*.*": true,
294 "Workbench.UserProfileFormFields.*.*.*": true,
295 "Workbench.UserProfileFormMessage": true,
296 "Workbench.WelcomePageHTML": true,
299 func redactUnsafe(m map[string]interface{}, mPrefix, lookupPrefix string) error {
301 for k, v := range m {
303 safe, ok := whitelist[lookupPrefix+k]
306 safe, ok = whitelist[lookupPrefix+"*"]
309 errs = append(errs, fmt.Sprintf("config bug: key %q not in whitelist map", lookupPrefix+k))
316 if v, ok := v.(map[string]interface{}); ok {
317 err := redactUnsafe(v, mPrefix+k+".", lookupPrefix+lookupKey+".")
319 errs = append(errs, err.Error())
324 return errors.New(strings.Join(errs, "\n"))