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 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2025 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package assemblestate
import (
"time"
)
// DeviceQueryTracker manages device identity information and query/response
// lifecycle for unknown devices in the cluster.
type DeviceQueryTracker struct {
// pendingResponses is used to signal when there are device query responses
// ready to be sent to peers.
pendingResponses chan struct{}
// pendingOutgoingQueries is used to send notifications that indicate that
// we should query a peer for device information.
pendingOutgoingQueries chan struct{}
// inflight keeps track of queries for device information that we have
// in-flight. We keep track of a mapping of device RDT to time at which the
// query was sent.
inflight map[DeviceToken]time.Time
// timeout is the amount of time we will wait before sending a query for
// device information again.
timeout time.Duration
// queries keeps track of which devices each peer has queried us for. Each
// DeviceToken maps to the set of devices that are unknown to the peer with
// that DeviceToken.
queries map[DeviceToken]map[DeviceToken]struct{}
// known keeps track of which devices we know each peer knows about. Each
// DeviceToken maps to the set of devices that are the peer with that
// DeviceToken has identitying information for.
known map[DeviceToken]map[DeviceToken]struct{}
// ids is our collection of device identities that we've heard from other
// peers.
ids map[DeviceToken]Identity
// clock enables injecting a implementation to return the current time.
clock func() time.Time
}
// NewDeviceQueryTracker creates a new DeviceQueryTracker with the given initial
// data. A timeout can be provided, which will prevent queries from being
// re-sent for the duration of that timeout. Additionally, a clock function can
// can be provided in the case that time.Now needs to be overridden.
func NewDeviceQueryTracker(
data DeviceQueryTrackerData,
timeout time.Duration,
clock func() time.Time,
) DeviceQueryTracker {
dt := DeviceQueryTracker{
timeout: timeout,
pendingResponses: make(chan struct{}, 1),
pendingOutgoingQueries: make(chan struct{}, 1),
queries: make(map[DeviceToken]map[DeviceToken]struct{}),
known: make(map[DeviceToken]map[DeviceToken]struct{}),
inflight: make(map[DeviceToken]time.Time),
ids: make(map[DeviceToken]Identity),
clock: clock,
}
// seed with any provided data
for _, identity := range data.IDs {
dt.RecordIdentity(identity)
}
for peer, devices := range data.Queries {
dt.RecordIncomingQuery(peer, devices)
}
for peer, devices := range data.Known {
dt.RecordDevicesKnownBy(peer, devices)
}
return dt
}
// PendingResponses returns a channel that signals when there are device query
// responses ready to be sent to peers. After reading from this channel, it is
// expected that all responses are handled via calls to
// [DeviceQueryTracker.ResponsesTo].
func (d *DeviceQueryTracker) PendingResponses() <-chan struct{} {
return d.pendingResponses
}
// PendingOutgoingQueries returns a channel that signals when there are outgoing
// device queries ready to be sent to peers. After reading from this channel, it
// is expected that all queries are handled via calls to
// [DeviceQueryTracker.OutgoingQueriesTo].
func (d *DeviceQueryTracker) PendingOutgoingQueries() <-chan struct{} {
return d.pendingOutgoingQueries
}
// RecordIncomingQuery records an imcoming query from a peer for unknown device
// identities. If we have identity information for the requested devices, a
// response will be queued.
func (d *DeviceQueryTracker) RecordIncomingQuery(from DeviceToken, unknowns []DeviceToken) {
if d.queries[from] == nil {
d.queries[from] = make(map[DeviceToken]struct{})
}
changes := false
for _, u := range unknowns {
// if we don't know the requested device's id, then we drop the query
if _, ok := d.ids[u]; !ok {
continue
}
changes = true
d.queries[from][u] = struct{}{}
}
// if we got some queries we can answer, let the other side know there is
// new data to handle
if changes {
select {
case d.pendingResponses <- struct{}{}:
default:
}
}
}
// ResponsesTo returns the device identities that should be sent to the
// specified peer, along with an acknowledgment function that must be called
// after successful transmission. ack(true) indicates that they responses were
// sent, ack(false) indicates that the responses could not be sent.
func (d *DeviceQueryTracker) ResponsesTo(to DeviceToken) (ids []Identity, ack func(bool)) {
ids = make([]Identity, 0, len(d.queries[to]))
for rdt := range d.queries[to] {
id, ok := d.ids[rdt]
if !ok {
// this case shouldn't be possible, since we don't insert into
// d.queries unless we have the identity of the device
continue
}
ids = append(ids, id)
}
ack = func(success bool) {
// on success, we mark these responses as sent. on failure, we make sure
// that the response is re-queued
if success {
for _, id := range ids {
delete(d.queries[to], id.RDT)
}
} else {
select {
case d.pendingResponses <- struct{}{}:
default:
}
}
}
return ids, ack
}
// OutgoingQueriesTo returns unknown device RDTs that should be sent as queries
// to the given peer, along with an acknowledgment function that must be called
// after successful transmission to track inflight queries. ack(true) indicates
// that they queries were sent, ack(false) indicates that the queries could not
// be sent.
func (d *DeviceQueryTracker) OutgoingQueriesTo(to DeviceToken) (unknown []DeviceToken, ack func(bool)) {
for rdt := range d.known[to] {
if _, ok := d.ids[rdt]; ok {
continue
}
// if we have a query in-flight for this rdt, omit it from the queries
// we will send
if d.inflight[rdt].Add(d.timeout).After(d.clock()) {
continue
}
unknown = append(unknown, rdt)
}
ack = func(success bool) {
// on success, we mark these queries as in-flight. on failure, we make
// sure that the query is re-queued
if success {
sent := d.clock()
for _, u := range unknown {
d.inflight[u] = sent
}
} else {
select {
case d.pendingOutgoingQueries <- struct{}{}:
default:
}
}
}
return unknown, ack
}
// RecordDevicesKnownBy records that the given peer has knowledge of the
// specified device RDTs. If any of these devices are unknown to us, a query
// will be queued.
func (d *DeviceQueryTracker) RecordDevicesKnownBy(source DeviceToken, rdts []DeviceToken) {
if d.known[source] == nil {
d.known[source] = make(map[DeviceToken]struct{})
}
missing := false
for _, rdt := range rdts {
d.known[source][rdt] = struct{}{}
if _, ok := d.ids[rdt]; !ok {
missing = true
}
}
// if we are missing some of these routes, let the other side know we have
// data to request
if missing {
select {
case d.pendingOutgoingQueries <- struct{}{}:
default:
}
}
}
// Identified returns whether we have identity information for the specified
// device RDT.
func (d *DeviceQueryTracker) Identified(rdt DeviceToken) bool {
_, ok := d.ids[rdt]
return ok
}
// Lookup returns the identity information for the specified device RDT, or
// false if the device is unknown.
func (d *DeviceQueryTracker) Lookup(rdt DeviceToken) (Identity, bool) {
id, ok := d.ids[rdt]
return id, ok
}
// RecordIdentity records identity information for a device.
func (d *DeviceQueryTracker) RecordIdentity(id Identity) {
d.ids[id.RDT] = id
}
// DeviceQueryTrackerData represents the serializable state of
// DeviceQueryTracker.
type DeviceQueryTrackerData struct {
Queries map[DeviceToken][]DeviceToken `json:"unknowns,omitempty"`
Known map[DeviceToken][]DeviceToken `json:"sources,omitempty"`
IDs []Identity `json:"ids,omitempty"`
}
// Export returns the serializable state of the DeviceQueryTracker.
func (d *DeviceQueryTracker) Export() DeviceQueryTrackerData {
data := DeviceQueryTrackerData{
Queries: make(map[DeviceToken][]DeviceToken),
Known: make(map[DeviceToken][]DeviceToken),
IDs: make([]Identity, 0, len(d.ids)),
}
for peer, devices := range d.queries {
for device := range devices {
data.Queries[peer] = append(data.Queries[peer], device)
}
}
for peer, devices := range d.known {
for device := range devices {
data.Known[peer] = append(data.Known[peer], device)
}
}
for _, identity := range d.ids {
data.IDs = append(data.IDs, identity)
}
// if anything is empty, just clear it out. makes testing easier.
if len(data.Queries) == 0 {
data.Queries = nil
}
if len(data.Known) == 0 {
data.Known = nil
}
if len(data.IDs) == 0 {
data.IDs = nil
}
return data
}
|