-
Notifications
You must be signed in to change notification settings - Fork 161
/
provider.go
116 lines (103 loc) · 3.1 KB
/
provider.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
// Copyright 2023 ETH Zurich
//
// 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 drkeyutil
import (
"time"
"github.com/scionproto/scion/pkg/addr"
"github.com/scionproto/scion/pkg/drkey"
"github.com/scionproto/scion/pkg/private/serrors"
"github.com/scionproto/scion/pkg/scrypto/cppki"
"github.com/scionproto/scion/pkg/spao"
)
type FakeProvider struct {
EpochDuration time.Duration
AcceptanceWindow time.Duration
}
func (p *FakeProvider) GetASHostKey(
validTime time.Time,
_ addr.IA,
_ addr.Host,
) (drkey.ASHostKey, error) {
duration := int64(p.EpochDuration / time.Second)
idxCurrent := validTime.Unix() / duration
epochCurrent := newEpoch(idxCurrent, duration)
return drkey.ASHostKey{
Key: drkey.Key{},
Epoch: epochCurrent,
}, nil
}
func (p *FakeProvider) GetKeyWithinAcceptanceWindow(
t time.Time,
timestamp uint64,
dstIA addr.IA,
dstAddr addr.Host,
) (drkey.ASHostKey, error) {
keys, err := p.getASHostTriple(t, dstIA, dstAddr)
if err != nil {
return drkey.ASHostKey{}, err
}
awBegin := t.Add(-(p.AcceptanceWindow / 2))
awEnd := t.Add(p.AcceptanceWindow / 2)
validity := cppki.Validity{
NotBefore: awBegin,
NotAfter: awEnd,
}
absTimePrevious := spao.AbsoluteTimestamp(keys[0].Epoch, timestamp)
absTimeCurrent := spao.AbsoluteTimestamp(keys[1].Epoch, timestamp)
absTimeNext := spao.AbsoluteTimestamp(keys[2].Epoch, timestamp)
switch {
// case absTimeCurrent.After(awBegin) && absTimeCurrent.Before(awEnd):
case validity.Contains(absTimeCurrent):
return keys[1], nil
case validity.Contains(absTimePrevious):
return keys[0], nil
case validity.Contains(absTimeNext):
return keys[2], nil
default:
return drkey.ASHostKey{}, serrors.New("no absTime falls into the acceptance window",
"awBegin", awBegin, "awEnd", awEnd, "absTimePrevious", absTimePrevious,
"absTimeCurrent", absTimeCurrent, "absTimeNext", absTimeNext)
}
}
func (p *FakeProvider) getASHostTriple(
validTime time.Time,
_ addr.IA,
_ addr.Host,
) ([]drkey.ASHostKey, error) {
duration := int64(p.EpochDuration / time.Second)
idxCurrent := validTime.Unix() / duration
idxPrevious, idxNext := idxCurrent-1, idxCurrent+1
epochPrevious := newEpoch(idxPrevious, duration)
epochCurrent := newEpoch(idxCurrent, duration)
epochNext := newEpoch(idxNext, duration)
return []drkey.ASHostKey{
{
Epoch: epochPrevious,
Key: drkey.Key{},
},
{
Epoch: epochCurrent,
Key: drkey.Key{},
},
{
Epoch: epochNext,
Key: drkey.Key{},
},
}, nil
}
func newEpoch(idx int64, duration int64) drkey.Epoch {
begin := uint32(idx * duration)
end := begin + uint32(duration)
return drkey.NewEpoch(begin, end)
}