-
Notifications
You must be signed in to change notification settings - Fork 0
/
authentication.go
219 lines (177 loc) · 6.55 KB
/
authentication.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
/*
Copyright 2017 Gravitational, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package services
import (
"encoding/json"
"fmt"
"github.com/gravitational/teleport"
"github.com/gravitational/teleport/lib/defaults"
"github.com/gravitational/teleport/lib/utils"
"github.com/gravitational/trace"
)
// ClusterAuthPreference defines an interface to get and set
// authentication preferences for a cluster.
type ClusterAuthPreference interface {
// GetClusterAuthPreference returns the authentication preferences for a cluster.
GetClusterAuthPreference() (AuthPreference, error)
// SetClusterAuthPreference sets the authentication preferences for a cluster.
SetClusterAuthPreference(AuthPreference) error
}
// AuthPreference defines the authentication preferences for a specific
// cluster. It defines the type (local, oidc) and second factor (off, otp, oidc).
type AuthPreference interface {
// GetType returns the type of authentication.
GetType() string
// SetType sets the type of authentication.
SetType(string)
// GetSecondFactor returns the type of second factor.
GetSecondFactor() string
// SetSecondFactor sets the type of second factor.
SetSecondFactor(string)
// CheckAndSetDefaults sets and default values and then
// verifies the constraints for AuthPreference.
CheckAndSetDefaults() error
// String represents a human readable version of authentication settings.
String() string
}
// NewAuthPreference is a convenience method to to create AuthPreferenceV2.
func NewAuthPreference(spec AuthPreferenceSpecV2) (AuthPreference, error) {
return &AuthPreferenceV2{
Kind: KindClusterAuthPreference,
Version: V2,
Metadata: Metadata{
Name: MetaNameClusterAuthPreference,
Namespace: defaults.Namespace,
},
Spec: spec,
}, nil
}
// AuthPreferenceV2 implements AuthPreference.
type AuthPreferenceV2 struct {
// Kind is a resource kind - always resource.
Kind string `json:"kind"`
// Version is a resource version.
Version string `json:"version"`
// Metadata is metadata about the resource.
Metadata Metadata `json:"metadata"`
// Spec is the specification of the resource.
Spec AuthPreferenceSpecV2 `json:"spec"`
}
// AuthPreferenceSpecV2 is the actual data we care about for AuthPreferenceV2.
type AuthPreferenceSpecV2 struct {
// Type is the type of authentication.
Type string `json:"type"`
// SecondFactor is the type of second factor.
SecondFactor string `json:"second_factor"`
}
// GetType returns the type of authentication.
func (c *AuthPreferenceV2) GetType() string {
return c.Spec.Type
}
// SetType sets the type of authentication.
func (c *AuthPreferenceV2) SetType(s string) {
c.Spec.Type = s
}
// GetSecondFactor returns the type of second factor.
func (c *AuthPreferenceV2) GetSecondFactor() string {
return c.Spec.SecondFactor
}
// SetSecondFactor sets the type of second factor.
func (c *AuthPreferenceV2) SetSecondFactor(s string) {
c.Spec.SecondFactor = s
}
// CheckAndSetDefaults verifies the constraints for AuthPreference.
func (c *AuthPreferenceV2) CheckAndSetDefaults() error {
// if nothing is passed in, set defaults
if c.Spec.Type == "" {
c.Spec.Type = teleport.Local
}
if c.Spec.SecondFactor == "" && c.Spec.Type == teleport.Local {
c.Spec.SecondFactor = teleport.OTP
}
// make sure whatever was passed in was sane
switch c.Spec.Type {
case teleport.Local:
if c.Spec.SecondFactor != teleport.OFF && c.Spec.SecondFactor != teleport.OTP && c.Spec.SecondFactor != teleport.U2F {
return trace.BadParameter("second factor type %q not supported", c.Spec.SecondFactor)
}
case teleport.OIDC:
if c.Spec.SecondFactor != "" {
return trace.BadParameter("second factor [%q] not supported with OIDC connector")
}
case teleport.SAML:
if c.Spec.SecondFactor != "" {
return trace.BadParameter("second factor [%q] not supported with SAML connector")
}
default:
return trace.BadParameter("unsupported type %q", c.Spec.Type)
}
return nil
}
// String represents a human readable version of authentication settings.
func (c *AuthPreferenceV2) String() string {
return fmt.Sprintf("AuthPreference(Type=%q,SecondFactor=%q)", c.Spec.Type, c.Spec.SecondFactor)
}
const AuthPreferenceSpecSchemaTemplate = `{
"type": "object",
"additionalProperties": false,
"properties": {
"type": {"type": "string"},
"second_factor": {"type": "string"}%v
}
}`
// GetAuthPreferenceSchema returns the schema with optionally injected
// schema for extensions.
func GetAuthPreferenceSchema(extensionSchema string) string {
var authPreferenceSchema string
if authPreferenceSchema == "" {
authPreferenceSchema = fmt.Sprintf(AuthPreferenceSpecSchemaTemplate, "")
} else {
authPreferenceSchema = fmt.Sprintf(AuthPreferenceSpecSchemaTemplate, ","+extensionSchema)
}
return fmt.Sprintf(V2SchemaTemplate, MetadataSchema, authPreferenceSchema)
}
// AuthPreferenceMarshaler implements marshal/unmarshal of AuthPreference implementations
// mostly adds support for extended versions.
type AuthPreferenceMarshaler interface {
Marshal(c AuthPreference, opts ...MarshalOption) ([]byte, error)
Unmarshal(bytes []byte) (AuthPreference, error)
}
var authPreferenceMarshaler AuthPreferenceMarshaler = &TeleportAuthPreferenceMarshaler{}
func SetAuthPreferenceMarshaler(m AuthPreferenceMarshaler) {
marshalerMutex.Lock()
defer marshalerMutex.Unlock()
authPreferenceMarshaler = m
}
func GetAuthPreferenceMarshaler() AuthPreferenceMarshaler {
marshalerMutex.Lock()
defer marshalerMutex.Unlock()
return authPreferenceMarshaler
}
type TeleportAuthPreferenceMarshaler struct{}
// Unmarshal unmarshals role from JSON or YAML.
func (t *TeleportAuthPreferenceMarshaler) Unmarshal(bytes []byte) (AuthPreference, error) {
var authPreference AuthPreferenceV2
if len(bytes) == 0 {
return nil, trace.BadParameter("missing resource data")
}
err := utils.UnmarshalWithSchema(GetAuthPreferenceSchema(""), &authPreference, bytes)
if err != nil {
return nil, trace.BadParameter(err.Error())
}
return &authPreference, nil
}
// Marshal marshals role to JSON or YAML.
func (t *TeleportAuthPreferenceMarshaler) Marshal(c AuthPreference, opts ...MarshalOption) ([]byte, error) {
return json.Marshal(c)
}