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
|
/*
* ngtcp2
*
* Copyright (c) 2019 ngtcp2 contributors
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "ngtcp2_pv.h"
#include <string.h>
#include <assert.h>
#include "ngtcp2_mem.h"
#include "ngtcp2_log.h"
#include "ngtcp2_macro.h"
#include "ngtcp2_addr.h"
void ngtcp2_pv_entry_init(ngtcp2_pv_entry *pvent, const uint8_t *data,
ngtcp2_tstamp expiry, uint8_t flags) {
memcpy(pvent->data, data, sizeof(pvent->data));
pvent->expiry = expiry;
pvent->flags = flags;
}
int ngtcp2_pv_new(ngtcp2_pv **ppv, const ngtcp2_dcid *dcid,
ngtcp2_duration timeout, uint8_t flags, ngtcp2_log *log,
const ngtcp2_mem *mem) {
(*ppv) = ngtcp2_mem_malloc(mem, sizeof(ngtcp2_pv));
if (*ppv == NULL) {
return NGTCP2_ERR_NOMEM;
}
ngtcp2_static_ringbuf_pv_ents_init(&(*ppv)->ents);
ngtcp2_dcid_copy(&(*ppv)->dcid, dcid);
(*ppv)->mem = mem;
(*ppv)->log = log;
(*ppv)->timeout = timeout;
(*ppv)->fallback_pto = 0;
(*ppv)->started_ts = UINT64_MAX;
(*ppv)->probe_pkt_left = NGTCP2_PV_NUM_PROBE_PKT;
(*ppv)->round = 0;
(*ppv)->flags = flags;
return 0;
}
void ngtcp2_pv_del(ngtcp2_pv *pv) {
if (pv == NULL) {
return;
}
ngtcp2_mem_free(pv->mem, pv);
}
void ngtcp2_pv_add_entry(ngtcp2_pv *pv, const uint8_t *data,
ngtcp2_tstamp expiry, uint8_t flags,
ngtcp2_tstamp ts) {
ngtcp2_pv_entry *ent;
assert(pv->probe_pkt_left);
if (ngtcp2_ringbuf_len(&pv->ents.rb) == 0) {
pv->started_ts = ts;
}
ent = ngtcp2_ringbuf_push_back(&pv->ents.rb);
ngtcp2_pv_entry_init(ent, data, expiry, flags);
pv->flags &= (uint8_t)~NGTCP2_PV_FLAG_CANCEL_TIMER;
--pv->probe_pkt_left;
}
int ngtcp2_pv_validate(ngtcp2_pv *pv, uint8_t *pflags, const uint8_t *data) {
size_t len = ngtcp2_ringbuf_len(&pv->ents.rb);
size_t i;
ngtcp2_pv_entry *ent;
if (len == 0) {
return NGTCP2_ERR_INVALID_STATE;
}
for (i = 0; i < len; ++i) {
ent = ngtcp2_ringbuf_get(&pv->ents.rb, i);
if (memcmp(ent->data, data, sizeof(ent->data)) == 0) {
*pflags = ent->flags;
ngtcp2_log_info(pv->log, NGTCP2_LOG_EVENT_PTV, "path has been validated");
return 0;
}
}
return NGTCP2_ERR_INVALID_ARGUMENT;
}
void ngtcp2_pv_handle_entry_expiry(ngtcp2_pv *pv, ngtcp2_tstamp ts) {
ngtcp2_pv_entry *ent;
if (ngtcp2_ringbuf_len(&pv->ents.rb) == 0) {
return;
}
ent = ngtcp2_ringbuf_get(&pv->ents.rb, ngtcp2_ringbuf_len(&pv->ents.rb) - 1);
if (ent->expiry > ts) {
return;
}
++pv->round;
pv->probe_pkt_left = NGTCP2_PV_NUM_PROBE_PKT;
}
int ngtcp2_pv_should_send_probe(ngtcp2_pv *pv) {
return pv->probe_pkt_left > 0;
}
int ngtcp2_pv_validation_timed_out(ngtcp2_pv *pv, ngtcp2_tstamp ts) {
ngtcp2_tstamp t;
ngtcp2_pv_entry *ent;
if (pv->started_ts == UINT64_MAX) {
return 0;
}
assert(ngtcp2_ringbuf_len(&pv->ents.rb));
ent = ngtcp2_ringbuf_get(&pv->ents.rb, ngtcp2_ringbuf_len(&pv->ents.rb) - 1);
t = pv->started_ts + pv->timeout;
t = ngtcp2_max(t, ent->expiry);
return t <= ts;
}
ngtcp2_tstamp ngtcp2_pv_next_expiry(ngtcp2_pv *pv) {
ngtcp2_pv_entry *ent;
if ((pv->flags & NGTCP2_PV_FLAG_CANCEL_TIMER) ||
ngtcp2_ringbuf_len(&pv->ents.rb) == 0) {
return UINT64_MAX;
}
ent = ngtcp2_ringbuf_get(&pv->ents.rb, ngtcp2_ringbuf_len(&pv->ents.rb) - 1);
return ent->expiry;
}
void ngtcp2_pv_cancel_expired_timer(ngtcp2_pv *pv, ngtcp2_tstamp ts) {
ngtcp2_tstamp expiry = ngtcp2_pv_next_expiry(pv);
if (expiry > ts) {
return;
}
pv->flags |= NGTCP2_PV_FLAG_CANCEL_TIMER;
}
|