Detect vote or response replay/caching

This commit is contained in:
Ian Gulliver
2023-06-03 21:51:07 -07:00
parent 8c8133ff52
commit 3cebbc3425
2 changed files with 22 additions and 6 deletions

View File

@@ -21,18 +21,18 @@ type Voter struct {
}
type vote struct {
VoterID string `json:"voterID"`
LastSeenCandidateID string `json:"lastSeenCandidateID"`
NumPollsSinceChange int `json:"numPollsSinceChange"`
// TODO: Add timestamp
VoterID string `json:"voterID"`
LastSeenCandidateID string `json:"lastSeenCandidateID"`
NumPollsSinceChange int `json:"numPollsSinceChange"`
VoteSent time.Time `json:"voteSent"`
// Used internally by Candidate
received time.Time
}
type voteResponse struct {
CandidateID string `json:"candidateID"`
// TODO: Add timestamp
CandidateID string `json:"candidateID"`
ResponseSent time.Time `json:"responseSent"`
}
func NewVoter(url string, signingKey string) *Voter {
@@ -105,6 +105,8 @@ func (v *Voter) poll(update <-chan time.Duration, t *time.Ticker) bool {
}
func (v *Voter) sendVote() {
v.vote.VoteSent = time.Now().UTC()
for _, c := range v.candidates {
c.voteIfNo(&v.vote)
}
@@ -152,6 +154,10 @@ func (v *Voter) sendVote() {
return
}
if time.Since(vr.ResponseSent).Abs() > 15*time.Second {
v.log("excessive time difference (%.1f seconds); delay, replay, or clock skew", time.Since(vr.ResponseSent).Seconds())
}
if vr.CandidateID == v.vote.LastSeenCandidateID {
v.vote.NumPollsSinceChange++
} else {