forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sync.go
493 lines (411 loc) · 15.8 KB
/
sync.go
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
package cli
import (
"errors"
"fmt"
"io"
"io/ioutil"
"os"
"strings"
"github.com/spf13/cobra"
kapi "k8s.io/kubernetes/pkg/api"
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
"k8s.io/kubernetes/pkg/runtime"
kerrs "k8s.io/kubernetes/pkg/util/errors"
"k8s.io/kubernetes/pkg/util/sets"
"k8s.io/kubernetes/pkg/util/validation/field"
kyaml "k8s.io/kubernetes/pkg/util/yaml"
"github.com/openshift/origin/pkg/auth/ldaputil"
"github.com/openshift/origin/pkg/auth/ldaputil/ldapclient"
osclient "github.com/openshift/origin/pkg/client"
"github.com/openshift/origin/pkg/cmd/admin/groups/sync"
"github.com/openshift/origin/pkg/cmd/admin/groups/sync/interfaces"
"github.com/openshift/origin/pkg/cmd/admin/groups/sync/syncerror"
"github.com/openshift/origin/pkg/cmd/server/api"
configapilatest "github.com/openshift/origin/pkg/cmd/server/api/latest"
"github.com/openshift/origin/pkg/cmd/server/api/validation"
cmdutil "github.com/openshift/origin/pkg/cmd/util"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
)
const (
SyncRecommendedName = "sync"
syncLong = `
Sync OpenShift Groups with records from an external provider.
In order to sync OpenShift Group records with those from an external provider, determine which Groups you wish
to sync and where their records live. For instance, all or some groups may be selected from the current Groups
stored in OpenShift that have been synced previously, or similarly all or some groups may be selected from those
stored on an LDAP server. The path to a sync configuration file is required in order to describe how data is
requested from the external record store and migrated to OpenShift records. Default behavior is to do a dry-run
without changing OpenShift records. Passing '--confirm' will sync all groups from the LDAP server returned by the
LDAP query templates.
`
syncExamples = ` # Sync all groups from an LDAP server
$ %[1]s --sync-config=/path/to/ldap-sync-config.yaml --confirm
# Sync all groups except the ones from the blacklist file from an LDAP server
$ %[1]s --blacklist=/path/to/blacklist.txt --sync-config=/path/to/ldap-sync-config.yaml --confirm
# Sync specific groups specified in a whitelist file with an LDAP server
$ %[1]s --whitelist=/path/to/whitelist.txt --sync-config=/path/to/sync-config.yaml --confirm
# Sync all OpenShift Groups that have been synced previously with an LDAP server
$ %[1]s --type=openshift --sync-config=/path/to/ldap-sync-config.yaml --confirm
# Sync specific OpenShift Groups if they have been synced previously with an LDAP server
$ %[1]s groups/group1 groups/group2 groups/group3 --sync-config=/path/to/sync-config.yaml --confirm
`
)
// GroupSyncSource determines the source of the groups to be synced
type GroupSyncSource string
const (
// GroupSyncSourceLDAP determines that the groups to be synced are determined from an LDAP record
GroupSyncSourceLDAP GroupSyncSource = "ldap"
// GroupSyncSourceOpenShift determines that the groups to be synced are determined from OpenShift records
GroupSyncSourceOpenShift GroupSyncSource = "openshift"
)
var AllowedSourceTypes = []string{string(GroupSyncSourceLDAP), string(GroupSyncSourceOpenShift)}
func ValidateSource(source GroupSyncSource) bool {
return sets.NewString(AllowedSourceTypes...).Has(string(source))
}
type SyncOptions struct {
// Source determines the source of the list of groups to sync
Source GroupSyncSource
// Config is the LDAP sync config read from file
Config *api.LDAPSyncConfig
// Whitelist are the names of OpenShift group or LDAP group UIDs to use for syncing
Whitelist []string
// Blacklist are the names of OpenShift group or LDAP group UIDs to exclude
Blacklist []string
// Confirm determines whether or not to write to OpenShift
Confirm bool
// GroupsInterface is the interface used to interact with OpenShift Group objects
GroupInterface osclient.GroupInterface
// Stderr is the writer to write warnings and errors to
Stderr io.Writer
// Out is the writer to write output to
Out io.Writer
}
// CreateErrorHandler creates an error handler for the LDAP sync job
func (o *SyncOptions) CreateErrorHandler() syncerror.Handler {
components := []syncerror.Handler{}
if o.Config.RFC2307Config != nil {
if o.Config.RFC2307Config.TolerateMemberOutOfScopeErrors {
components = append(components, syncerror.NewMemberLookupOutOfBoundsSuppressor(o.Stderr))
}
if o.Config.RFC2307Config.TolerateMemberNotFoundErrors {
components = append(components, syncerror.NewMemberLookupMemberNotFoundSuppressor(o.Stderr))
}
}
return syncerror.NewCompoundHandler(components...)
}
func NewSyncOptions() *SyncOptions {
return &SyncOptions{
Stderr: os.Stderr,
Whitelist: []string{},
}
}
func NewCmdSync(name, fullName string, f *clientcmd.Factory, out io.Writer) *cobra.Command {
options := NewSyncOptions()
options.Out = out
typeArg := string(GroupSyncSourceLDAP)
whitelistFile := ""
blacklistFile := ""
configFile := ""
cmd := &cobra.Command{
Use: fmt.Sprintf("%s [--type=TYPE] [WHITELIST] [--whitelist=WHITELIST-FILE] --sync-config=CONFIG-FILE [--confirm]", name),
Short: "Sync OpenShift groups with records from an external provider.",
Long: syncLong,
Example: fmt.Sprintf(syncExamples, fullName),
Run: func(c *cobra.Command, args []string) {
if err := options.Complete(typeArg, whitelistFile, blacklistFile, configFile, args, f); err != nil {
kcmdutil.CheckErr(kcmdutil.UsageError(c, err.Error()))
}
if err := options.Validate(); err != nil {
kcmdutil.CheckErr(kcmdutil.UsageError(c, err.Error()))
}
err := options.Run(c, f)
if err != nil {
if aggregate, ok := err.(kerrs.Aggregate); ok {
for _, err := range aggregate.Errors() {
fmt.Printf("%s\n", err)
}
os.Exit(1)
}
}
kcmdutil.CheckErr(err)
},
}
cmd.Flags().StringVar(&whitelistFile, "whitelist", whitelistFile, "path to the group whitelist file")
cmd.MarkFlagFilename("whitelist", "txt")
cmd.Flags().StringVar(&blacklistFile, "blacklist", whitelistFile, "path to the group blacklist file")
cmd.MarkFlagFilename("blacklist", "txt")
// TODO enable this we're able to support string slice elements that have commas
// cmd.Flags().StringSliceVar(&options.Blacklist, "blacklist-group", options.Blacklist, "group to blacklist")
cmd.Flags().StringVar(&configFile, "sync-config", configFile, "path to the sync config")
cmd.MarkFlagFilename("sync-config", "yaml", "yml")
cmd.Flags().StringVar(&typeArg, "type", typeArg, "which groups white- and blacklist entries refer to: "+strings.Join(AllowedSourceTypes, ","))
cmd.Flags().BoolVar(&options.Confirm, "confirm", false, "if true, modify OpenShift groups; if false, display results of a dry-run")
kcmdutil.AddPrinterFlags(cmd)
cmd.Flags().Lookup("output").DefValue = "yaml"
cmd.Flags().Lookup("output").Value.Set("yaml")
return cmd
}
func (o *SyncOptions) Complete(typeArg, whitelistFile, blacklistFile, configFile string, args []string, f *clientcmd.Factory) error {
switch typeArg {
case string(GroupSyncSourceLDAP):
o.Source = GroupSyncSourceLDAP
case string(GroupSyncSourceOpenShift):
o.Source = GroupSyncSourceOpenShift
default:
return fmt.Errorf("unrecognized --type %q; allowed types %v", typeArg, strings.Join(AllowedSourceTypes, ","))
}
var err error
if o.Source == GroupSyncSourceOpenShift {
o.Whitelist, err = buildOpenShiftGroupNameList(args, whitelistFile)
if err != nil {
return err
}
o.Blacklist, err = buildOpenShiftGroupNameList([]string{}, blacklistFile)
if err != nil {
return err
}
} else {
o.Whitelist, err = buildNameList(args, whitelistFile)
if err != nil {
return err
}
o.Blacklist, err = buildNameList([]string{}, blacklistFile)
if err != nil {
return err
}
}
o.Config, err = decodeSyncConfigFromFile(configFile)
if err != nil {
return err
}
osClient, _, err := f.Clients()
if err != nil {
return err
}
o.GroupInterface = osClient.Groups()
return nil
}
// buildOpenShiftGroupNameList builds a list of OpenShift names from file and args
func buildOpenShiftGroupNameList(args []string, file string) ([]string, error) {
rawList, err := buildNameList(args, file)
if err != nil {
return nil, err
}
return openshiftGroupNamesOnlyList(rawList)
}
// buildNameLists builds a list from file and args
func buildNameList(args []string, file string) ([]string, error) {
var list []string
if len(args) > 0 {
list = append(list, args...)
}
// unpack file from source
if len(file) != 0 {
listData, err := readLines(file)
if err != nil {
return nil, err
}
list = append(list, listData...)
}
return list, nil
}
func decodeSyncConfigFromFile(configFile string) (*api.LDAPSyncConfig, error) {
var config api.LDAPSyncConfig
yamlConfig, err := ioutil.ReadFile(configFile)
if err != nil {
return nil, fmt.Errorf("could not read file %s: %v", configFile, err)
}
jsonConfig, err := kyaml.ToJSON(yamlConfig)
if err != nil {
return nil, fmt.Errorf("could not parse file %s: %v", configFile, err)
}
if err := runtime.DecodeInto(configapilatest.Codec, jsonConfig, &config); err != nil {
return nil, fmt.Errorf("couldg not decode file into config: %v", err)
}
return &config, nil
}
// openshiftGroupNamesOnlyBlacklist returns back a list that contains only the names of the groups.
// Since Group.Name cannot contain '/', the split is safe. Any resource ref that is not a group
// is skipped.
func openshiftGroupNamesOnlyList(list []string) ([]string, error) {
ret := []string{}
errs := []error{}
for _, curr := range list {
tokens := strings.SplitN(curr, "/", 2)
if len(tokens) == 1 {
ret = append(ret, tokens[0])
continue
}
if tokens[0] != "group" && tokens[0] != "groups" {
errs = append(errs, fmt.Errorf("%q is not a valid OpenShift group", curr))
continue
}
ret = append(ret, tokens[1])
}
if len(errs) > 0 {
return nil, kerrs.NewAggregate(errs)
}
return ret, nil
}
// readLines interprets a file as plaintext and returns a string array of the lines of text in the file
func readLines(path string) ([]string, error) {
bytes, err := ioutil.ReadFile(path)
if err != nil {
return nil, fmt.Errorf("could not open file %s: %v", path, err)
}
rawLines := strings.Split(string(bytes), "\n")
var trimmedLines []string
for _, line := range rawLines {
if len(strings.TrimSpace(line)) > 0 {
trimmedLines = append(trimmedLines, strings.TrimSpace(line))
}
}
return trimmedLines, nil
}
func (o *SyncOptions) Validate() error {
if !ValidateSource(o.Source) {
return fmt.Errorf("sync source must be one of the following: %v", strings.Join(AllowedSourceTypes, ","))
}
results := validation.ValidateLDAPSyncConfig(o.Config)
if o.GroupInterface == nil {
results.Errors = append(results.Errors, field.Required(field.NewPath("groupInterface"), ""))
}
// TODO(skuznets): pretty-print validation results
if len(results.Errors) > 0 {
return fmt.Errorf("validation of LDAP sync config failed: %v", results.Errors.ToAggregate())
}
return nil
}
// Run creates the GroupSyncer specified and runs it to sync groups
// the arguments are only here because its the only way to get the printer we need
func (o *SyncOptions) Run(cmd *cobra.Command, f *clientcmd.Factory) error {
bindPassword, err := api.ResolveStringValue(o.Config.BindPassword)
if err != nil {
return err
}
clientConfig, err := ldaputil.NewLDAPClientConfig(o.Config.URL, o.Config.BindDN, bindPassword, o.Config.CA, o.Config.Insecure)
if err != nil {
return fmt.Errorf("could not determine LDAP client configuration: %v", err)
}
errorHandler := o.CreateErrorHandler()
syncBuilder, err := buildSyncBuilder(clientConfig, o.Config, errorHandler)
if err != nil {
return err
}
// populate schema-independent syncer fields
syncer := &syncgroups.LDAPGroupSyncer{
Host: clientConfig.Host(),
GroupClient: o.GroupInterface,
DryRun: !o.Confirm,
Out: o.Out,
Err: os.Stderr,
}
switch o.Source {
case GroupSyncSourceOpenShift:
// when your source of ldapGroupUIDs is from an openshift group, the mapping of ldapGroupUID to openshift group name is logically
// pinned by the existing mapping.
listerMapper, err := getOpenShiftGroupListerMapper(clientConfig.Host(), o)
if err != nil {
return err
}
syncer.GroupLister = listerMapper
syncer.GroupNameMapper = listerMapper
case GroupSyncSourceLDAP:
syncer.GroupLister, err = getLDAPGroupLister(syncBuilder, o)
if err != nil {
return err
}
syncer.GroupNameMapper, err = getGroupNameMapper(syncBuilder, o)
if err != nil {
return err
}
default:
return fmt.Errorf("invalid group source: %v", o.Source)
}
syncer.GroupMemberExtractor, err = syncBuilder.GetGroupMemberExtractor()
if err != nil {
return err
}
syncer.UserNameMapper, err = syncBuilder.GetUserNameMapper()
if err != nil {
return err
}
// Now we run the Syncer and report any errors
openshiftGroups, syncErrors := syncer.Sync()
if o.Confirm {
return kerrs.NewAggregate(syncErrors)
}
list := &kapi.List{}
for _, item := range openshiftGroups {
list.Items = append(list.Items, item)
}
fn := cmdutil.VersionedPrintObject(f.PrintObject, cmd, o.Out)
if err := fn(list); err != nil {
return err
}
return kerrs.NewAggregate(syncErrors)
}
func buildSyncBuilder(clientConfig ldapclient.Config, syncConfig *api.LDAPSyncConfig, errorHandler syncerror.Handler) (SyncBuilder, error) {
switch {
case syncConfig.RFC2307Config != nil:
return &RFC2307Builder{ClientConfig: clientConfig, Config: syncConfig.RFC2307Config, ErrorHandler: errorHandler}, nil
case syncConfig.ActiveDirectoryConfig != nil:
return &ADBuilder{ClientConfig: clientConfig, Config: syncConfig.ActiveDirectoryConfig}, nil
case syncConfig.AugmentedActiveDirectoryConfig != nil:
return &AugmentedADBuilder{ClientConfig: clientConfig, Config: syncConfig.AugmentedActiveDirectoryConfig}, nil
default:
return nil, errors.New("invalid sync config type")
}
}
func getOpenShiftGroupListerMapper(host string, info OpenShiftGroupNameRestrictions) (interfaces.LDAPGroupListerNameMapper, error) {
if len(info.GetWhitelist()) != 0 {
return syncgroups.NewOpenShiftGroupLister(info.GetWhitelist(), info.GetBlacklist(), host, info.GetClient()), nil
} else {
return syncgroups.NewAllOpenShiftGroupLister(info.GetBlacklist(), host, info.GetClient()), nil
}
}
func getLDAPGroupLister(syncBuilder SyncBuilder, info GroupNameRestrictions) (interfaces.LDAPGroupLister, error) {
if len(info.GetWhitelist()) != 0 {
ldapWhitelist := syncgroups.NewLDAPWhitelistGroupLister(info.GetWhitelist())
if len(info.GetBlacklist()) == 0 {
return ldapWhitelist, nil
}
return syncgroups.NewLDAPBlacklistGroupLister(info.GetBlacklist(), ldapWhitelist), nil
}
syncLister, err := syncBuilder.GetGroupLister()
if err != nil {
return nil, err
}
if len(info.GetBlacklist()) == 0 {
return syncLister, nil
}
return syncgroups.NewLDAPBlacklistGroupLister(info.GetBlacklist(), syncLister), nil
}
func getGroupNameMapper(syncBuilder SyncBuilder, info MappedNameRestrictions) (interfaces.LDAPGroupNameMapper, error) {
syncNameMapper, err := syncBuilder.GetGroupNameMapper()
if err != nil {
return nil, err
}
// if the mapping is specified, union the specified mapping with the default mapping. The specified mapping is checked first
if len(info.GetGroupNameMappings()) > 0 {
userDefinedMapper := syncgroups.NewUserDefinedGroupNameMapper(info.GetGroupNameMappings())
if syncNameMapper == nil {
return userDefinedMapper, nil
}
return &syncgroups.UnionGroupNameMapper{GroupNameMappers: []interfaces.LDAPGroupNameMapper{userDefinedMapper, syncNameMapper}}, nil
}
return syncNameMapper, nil
}
// The following getters ensure that SyncOptions satisfies the name restriction interfaces
func (o *SyncOptions) GetWhitelist() []string {
return o.Whitelist
}
func (o *SyncOptions) GetBlacklist() []string {
return o.Blacklist
}
func (o *SyncOptions) GetClient() osclient.GroupInterface {
return o.GroupInterface
}
func (o *SyncOptions) GetGroupNameMappings() map[string]string {
return o.Config.LDAPGroupUIDToOpenShiftGroupNameMapping
}