-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.go
More file actions
248 lines (212 loc) · 6.74 KB
/
Copy pathbase.go
File metadata and controls
248 lines (212 loc) · 6.74 KB
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
// BSD 3-Clause License
// Copyright (c) 2021, James Bowes
// Copyright (c) 2023, Alexander Taraymovich, OffBlocks
// All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// 1. Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// 3. Neither the name of the copyright holder nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
package httpsig
import (
"encoding/base64"
"errors"
"slices"
"strings"
"time"
"github.com/dunglas/httpsfv"
)
type signatureItem struct {
key httpsfv.Item
value []string
}
func createSigningParameters(config *SignConfig) *httpsfv.Params {
// https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-message-signatures#name-signature-parameters
now := time.Now()
params := config.Params
if len(params) == 0 {
params = defaultParams
}
output := httpsfv.NewParams()
if slices.Contains(params, ParamCreated) {
// created is optional but recommended. If created is supplied but is nil, that's an explicit
// instruction to *not* include the created parameter
var created *time.Time
if config.ParamValues != nil && config.ParamValues.Created == nil {
created = nil
} else if config.ParamValues != nil && config.ParamValues.Created != nil {
created = config.ParamValues.Created
} else {
created = &now
}
if created != nil {
output.Add("created", created.Unix())
}
}
if slices.Contains(params, ParamExpires) {
// attempt to obtain an explicit expires time, otherwise create one that is 300 seconds after
// creation. Don't add an expires time if there is no created time
var expires *time.Time
if config.ParamValues != nil && config.ParamValues.Expires != nil && config.ParamValues.Created != nil {
expires = config.ParamValues.Expires
} else if config.ParamValues != nil && config.ParamValues.Created != nil {
exp := now.Add(300 * time.Second)
expires = &exp
}
if expires != nil {
output.Add("expires", expires.Unix())
}
}
if slices.Contains(params, ParamKeyID) {
// attempt to obtain an overridden key id, otherwise use the one supplied by the key
var keyID *string
if config.ParamValues != nil && config.ParamValues.KeyID != nil {
keyID = config.ParamValues.KeyID
} else {
k := config.Key.GetKeyID()
keyID = &k
}
output.Add("keyid", *keyID)
}
if slices.Contains(params, ParamAlg) {
// attempt to obtain an overridden algorithm, otherwise use the one supplied by the key
var alg *Algorithm
if config.ParamValues != nil && config.ParamValues.Alg != nil {
alg = config.ParamValues.Alg
} else {
a := config.Key.GetAlgorithm()
alg = &a
}
output.Add("alg", string(*alg))
}
if slices.Contains(params, ParamNonce) {
// attempt to obtain an explicit nonce, otherwise create one
var n *string
if config.ParamValues != nil && config.ParamValues.Nonce != nil {
n = config.ParamValues.Nonce
} else {
nonce := nonce()
n = &nonce
}
output.Add("nonce", *n)
}
if slices.Contains(params, ParamTag) {
var tag *string
if config.ParamValues != nil {
tag = config.ParamValues.Tag
}
output.Add("tag", *tag)
}
return output
}
func parseParams(params *httpsfv.Params) (*SignatureParameters, error) {
output := SignatureParameters{}
if params == nil {
return nil, errors.New("no parameters provided")
}
for _, k := range params.Names() {
p, _ := params.Get(k)
if k == "created" {
if v, ok := p.(int64); ok {
t := time.Unix(v, 0)
output.Created = &t
} else {
return nil, errors.New("invalid created parameter")
}
} else if k == "expires" {
if v, ok := p.(int64); ok {
t := time.Unix(v, 0)
output.Expires = &t
} else {
return nil, errors.New("invalid expires parameter")
}
} else if k == "nonce" {
if v, ok := p.(string); ok {
output.Nonce = &v
} else {
return nil, errors.New("invalid nonce parameter")
}
} else if k == "alg" {
if v, ok := p.(string); ok {
a := Algorithm(v)
output.Alg = &a
} else {
return nil, errors.New("invalid alg parameter")
}
} else if k == "keyid" {
if v, ok := p.(string); ok {
output.KeyID = &v
} else {
return nil, errors.New("invalid keyid parameter")
}
} else if k == "tag" {
if v, ok := p.(string); ok {
output.Tag = &v
} else {
return nil, errors.New("invalid tag parameter")
}
} else {
return nil, errors.New("unknown parameter")
}
}
return &output, nil
}
func normaliseParams(params *httpsfv.Params) *httpsfv.Params {
if params == nil {
return nil
}
ps := httpsfv.NewParams()
for _, k := range params.Names() {
p, _ := params.Get(k)
if v, ok := p.([]byte); ok {
encoded := base64.StdEncoding.EncodeToString(v)
ps.Add(k, encoded)
} else if v, ok := p.(httpsfv.Token); ok {
ps.Add(k, string(v))
} else {
ps.Add(k, p)
}
}
return ps
}
func createSignatureBase(fields []string, msg *Message) ([]signatureItem, error) {
items := make([]signatureItem, 0)
for _, f := range fields {
field, err := httpsfv.UnmarshalItem([]string{quoteString(f)})
if err != nil {
return nil, err
}
params := normaliseParams(field.Params)
lcName := strings.ToLower(field.Value.(string))
if lcName != "@signature-params" {
var value []string
if strings.HasPrefix(lcName, "@") {
value, err = canonicaliseComponent(lcName, params, msg)
} else {
value, err = canonicaliseHeader(lcName, params, msg)
}
if err != nil {
return nil, err
}
item := httpsfv.NewItem(field.Value)
item.Params = params
items = append(items, signatureItem{item, value})
}
}
return items, nil
}