-
Notifications
You must be signed in to change notification settings - Fork 0
/
u2f.go
187 lines (150 loc) · 5.79 KB
/
u2f.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
/*
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/lib/defaults"
"github.com/gravitational/teleport/lib/utils"
"github.com/gravitational/trace"
)
// UniversalSecondFactorSettings defines the interface to get and set
// Universal Second Factor settings.
type UniversalSecondFactorSettings interface {
// GetUniversalSecondFactor returns universal second factor settings.
GetUniversalSecondFactor() (UniversalSecondFactor, error)
// SetUniversalSecondFactor sets universal second factor settings.
SetUniversalSecondFactor(UniversalSecondFactor) error
}
// UniversalSecondFactor defines settings for Universal Second Factor
// like the AppID and Facets.
type UniversalSecondFactor interface {
// GetAppID returns the application ID for universal second factor.
GetAppID() string
// SetAppID sets the application ID for universal second factor.
SetAppID(string)
// GetFacets returns the facets for universal second factor.
GetFacets() []string
// SetFacets sets the facets for universal second factor.
SetFacets([]string)
// String represents a human readable version of U2F settings.
String() string
}
// NewUniversalSecondFactor is a convenience method to to create UniversalSecondFactorV2.
func NewUniversalSecondFactor(spec UniversalSecondFactorSpecV2) (UniversalSecondFactor, error) {
return &UniversalSecondFactorV2{
Kind: KindUniversalSecondFactor,
Version: V2,
Metadata: Metadata{
Name: MetaNameUniversalSecondFactor,
Namespace: defaults.Namespace,
},
Spec: spec,
}, nil
}
// UniversalSecondFactorV2 implements UniversalSecondFactor.
type UniversalSecondFactorV2 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 UniversalSecondFactorSpecV2 `json:"spec"`
}
// UniversalSecondFactorSpecV2 is the actual data we care about for UniversalSecondFactorV2.
type UniversalSecondFactorSpecV2 struct {
// AppID is the application ID for universal second factor.
AppID string `json:"app_id"`
// Facets are the facets for universal second factor.
Facets []string `json:"facets"`
}
// GetAppID returns the application ID for universal second factor.
func (c *UniversalSecondFactorV2) GetAppID() string {
return c.Spec.AppID
}
// SetAppID sets the application ID for universal second factor.
func (c *UniversalSecondFactorV2) SetAppID(s string) {
c.Spec.AppID = s
}
// GetFacets returns the facets for universal second factor.
func (c *UniversalSecondFactorV2) GetFacets() []string {
return c.Spec.Facets
}
// SetFacets sets the facets for universal second factor.
func (c *UniversalSecondFactorV2) SetFacets(s []string) {
c.Spec.Facets = s
}
// String represents a human readable version of U2F settings.
func (c *UniversalSecondFactorV2) String() string {
return fmt.Sprintf("UniversalSecondFactor(AppID=%q,Facets=%q)", c.Spec.AppID, c.Spec.Facets)
}
const UniversalSecondFactorSpecSchemaTemplate = `{
"type": "object",
"additionalProperties": false,
"properties": {
"app_id": {"type": "string"},
"facets": {
"type": "array",
"items": {
"type": "string"
}
}%v
}
}`
// GetUniversalSecondFactorSchema returns the schema with optionally injected
// schema for extensions.
func GetUniversalSecondFactorSchema(extensionSchema string) string {
var authPreferenceSchema string
if authPreferenceSchema == "" {
authPreferenceSchema = fmt.Sprintf(UniversalSecondFactorSpecSchemaTemplate, "")
} else {
authPreferenceSchema = fmt.Sprintf(UniversalSecondFactorSpecSchemaTemplate, ","+extensionSchema)
}
return fmt.Sprintf(V2SchemaTemplate, MetadataSchema, authPreferenceSchema)
}
// UniversalSecondFactorMarshaler implements marshal/unmarshal of UniversalSecondFactor implementations
// mostly adds support for extended versions.
type UniversalSecondFactorMarshaler interface {
Marshal(c UniversalSecondFactor, opts ...MarshalOption) ([]byte, error)
Unmarshal(bytes []byte) (UniversalSecondFactor, error)
}
var universalSecondFactorMarshaler UniversalSecondFactorMarshaler = &TeleportUniversalSecondFactorMarshaler{}
func SetUniversalSecondFactorMarshaler(m UniversalSecondFactorMarshaler) {
marshalerMutex.Lock()
defer marshalerMutex.Unlock()
universalSecondFactorMarshaler = m
}
func GetUniversalSecondFactorMarshaler() UniversalSecondFactorMarshaler {
marshalerMutex.Lock()
defer marshalerMutex.Unlock()
return universalSecondFactorMarshaler
}
type TeleportUniversalSecondFactorMarshaler struct{}
// Unmarshal unmarshals role from JSON or YAML.
func (t *TeleportUniversalSecondFactorMarshaler) Unmarshal(bytes []byte) (UniversalSecondFactor, error) {
var authPreference UniversalSecondFactorV2
if len(bytes) == 0 {
return nil, trace.BadParameter("missing resource data")
}
err := utils.UnmarshalWithSchema(GetUniversalSecondFactorSchema(""), &authPreference, bytes)
if err != nil {
return nil, trace.BadParameter(err.Error())
}
return &authPreference, nil
}
// Marshal marshals role to JSON or YAML.
func (t *TeleportUniversalSecondFactorMarshaler) Marshal(c UniversalSecondFactor, opts ...MarshalOption) ([]byte, error) {
return json.Marshal(c)
}