This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
forked from Versent/saml2aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
saml.go
183 lines (146 loc) · 5.39 KB
/
saml.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
package saml2aws
import (
"fmt"
"strconv"
"time"
"github.com/beevik/etree"
)
const (
assertionTag = "Assertion"
attributeStatementTag = "AttributeStatement"
attributeTag = "Attribute"
attributeValueTag = "AttributeValue"
responseTag = "Response"
)
// ErrMissingElement is the error type that indicates an element and/or attribute is
// missing. It provides a structured error that can be more appropriately acted
// upon.
type ErrMissingElement struct {
Tag, Attribute string
}
// ErrMissingAssertion indicates that an appropriate assertion element could not
// be found in the SAML Response
var (
ErrMissingAssertion = ErrMissingElement{Tag: assertionTag}
)
func (e ErrMissingElement) Error() string {
if e.Attribute != "" {
return fmt.Sprintf("missing %s attribute on %s element", e.Attribute, e.Tag)
}
return fmt.Sprintf("missing %s element", e.Tag)
}
// ExtractSessionDuration this will attempt to extract a session duration from the assertion
// see https://aws.amazon.com/SAML/Attributes/SessionDuration
func ExtractSessionDuration(data []byte) (int64, error) {
doc := etree.NewDocument()
if err := doc.ReadFromBytes(data); err != nil {
return 0, err
}
assertionElement := doc.FindElement(".//Assertion")
if assertionElement == nil {
return 0, ErrMissingAssertion
}
// log.Printf("tag: %s", assertionElement.Tag)
//Get the actual assertion attributes
attributeStatement := assertionElement.FindElement(childPath(assertionElement.Space, attributeStatementTag))
if attributeStatement == nil {
return 0, ErrMissingElement{Tag: attributeStatementTag}
}
attributes := attributeStatement.FindElements(childPath(assertionElement.Space, attributeTag))
for _, attribute := range attributes {
if attribute.SelectAttrValue("Name", "") != "https://aws.amazon.com/SAML/Attributes/SessionDuration" {
continue
}
atributeValues := attribute.FindElements(childPath(assertionElement.Space, attributeValueTag))
for _, attrValue := range atributeValues {
return strconv.ParseInt(attrValue.Text(), 10, 64)
}
}
return 0, nil
}
// ExtractDestinationURL will find the Destination URL to POST the SAML assertion to.
// This is necessary to support AWS instances with custom endpoints such as GovCloud and AWS China without requiring
// hardcoded endpoints on the saml2aws side.
func ExtractDestinationURL(data []byte) (string, error) {
doc := etree.NewDocument()
if err := doc.ReadFromBytes(data); err != nil {
return "", err
}
rootElement := doc.Root()
if rootElement == nil {
return "", ErrMissingElement{Tag: responseTag}
}
destination := rootElement.SelectAttrValue("Destination", "none")
if destination == "none" {
// If Destination attribute is not found in Response (root) element,
// get the Recipient attribute from the SubjectConfirmationData element.
subjectConfirmationDataElement := doc.FindElement(".//SubjectConfirmationData")
if subjectConfirmationDataElement == nil {
return "", ErrMissingElement{Tag: responseTag}
}
destination = subjectConfirmationDataElement.SelectAttrValue("Recipient", "none")
if destination == "none" {
return "", ErrMissingElement{Tag: responseTag}
}
}
return destination, nil
}
// ExtractMFATokenExpiryTime returns the duration of MFA token
// This is done by looking at the SubjectConfirmationData's NotOnOrAfter attribute
func ExtractMFATokenExpiryTime(data []byte) (time.Time, error) {
var t time.Time
doc := etree.NewDocument()
if err := doc.ReadFromBytes(data); err != nil {
return t, err
}
rootElement := doc.Root()
if rootElement == nil {
return t, ErrMissingElement{Tag: responseTag}
}
subjectConfirmationDataElement := doc.FindElement(".//SubjectConfirmationData")
if subjectConfirmationDataElement == nil {
return t, ErrMissingElement{Tag: responseTag}
}
// The field NotOnOrAfter holds the timestamp past which the token is invalid
ValidUntilString := subjectConfirmationDataElement.SelectAttrValue("NotOnOrAfter", "")
// return time.Parse("", ValidUntilString)
return time.Parse(time.RFC3339, ValidUntilString)
}
// ExtractAwsRoles given an assertion document extract the aws roles
func ExtractAwsRoles(data []byte) ([]string, error) {
awsroles := []string{}
doc := etree.NewDocument()
if err := doc.ReadFromBytes(data); err != nil {
return awsroles, err
}
// log.Printf("root tag: %s", doc.Root().Tag)
assertionElement := doc.FindElement(".//Assertion")
if assertionElement == nil {
return nil, ErrMissingAssertion
}
// log.Printf("tag: %s", assertionElement.Tag)
//Get the actual assertion attributes
attributeStatement := assertionElement.FindElement(childPath(assertionElement.Space, attributeStatementTag))
if attributeStatement == nil {
return nil, ErrMissingElement{Tag: attributeStatementTag}
}
// log.Printf("tag: %s", attributeStatement.Tag)
attributes := attributeStatement.FindElements(childPath(assertionElement.Space, attributeTag))
for _, attribute := range attributes {
if attribute.SelectAttrValue("Name", "") != "https://aws.amazon.com/SAML/Attributes/Role" {
continue
}
atributeValues := attribute.FindElements(childPath(assertionElement.Space, attributeValueTag))
for _, attrValue := range atributeValues {
awsroles = append(awsroles, attrValue.Text())
}
}
return awsroles, nil
}
func childPath(space, tag string) string {
if space == "" {
return "./" + tag
}
//log.Printf("query = %s", "./"+space+":"+tag)
return "./" + space + ":" + tag
}