mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
pf: add sctp multihome probe points
Add probe points to allow us to probe when we add or remove multihome addresses.
Example use:
pf:sctp:multihome:add
{
printf("Add tag %x address %x", arg0,
((struct pf_sctp_source *)arg1)->addr.v4.s_addr);
}
pf:sctp:multihome:remove
{
printf("Remove tag %x address %x", arg0,
((struct pf_sctp_source *)arg2)->addr.v4.s_addr);
}
MFC after: 1 week
Sponsored by: Orange Business Services
(cherry picked from commit f042e1515433456dca4a2be8ec8ac60c75860304)
This commit is contained in:
parent
a2bc504df1
commit
5942bb31b9
1 changed files with 9 additions and 1 deletions
|
|
@ -128,6 +128,10 @@ SDT_PROBE_DEFINE5(pf, ip, state, lookup, "struct pfi_kkif *",
|
|||
"struct pf_kstate *");
|
||||
SDT_PROBE_DEFINE4(pf, sctp, multihome, test, "struct pfi_kkif *",
|
||||
"struct pf_krule *", "struct mbuf *", "int");
|
||||
SDT_PROBE_DEFINE2(pf, sctp, multihome, add, "uint32_t",
|
||||
"struct pf_sctp_source *");
|
||||
SDT_PROBE_DEFINE3(pf, sctp, multihome, remove, "uint32_t",
|
||||
"struct pf_kstate *", "struct pf_sctp_source *");
|
||||
|
||||
SDT_PROBE_DEFINE3(pf, eth, test_rule, entry, "int", "struct ifnet *",
|
||||
"struct mbuf *");
|
||||
|
|
@ -6015,11 +6019,12 @@ pf_sctp_multihome_detach_addr(const struct pf_kstate *s)
|
|||
key.v_tag = s->dst.scrub->pfss_v_tag;
|
||||
ep = RB_FIND(pf_sctp_endpoints, &V_pf_sctp_endpoints, &key);
|
||||
if (ep != NULL) {
|
||||
/* XXX Actually remove! */
|
||||
TAILQ_FOREACH_SAFE(i, &ep->sources, entry, tmp) {
|
||||
if (pf_addr_cmp(&i->addr,
|
||||
&s->key[PF_SK_WIRE]->addr[s->direction == PF_OUT],
|
||||
s->key[PF_SK_WIRE]->af) == 0) {
|
||||
SDT_PROBE3(pf, sctp, multihome, remove,
|
||||
key.v_tag, s, i);
|
||||
TAILQ_REMOVE(&ep->sources, i, entry);
|
||||
free(i, M_PFTEMP);
|
||||
break;
|
||||
|
|
@ -6040,6 +6045,8 @@ pf_sctp_multihome_detach_addr(const struct pf_kstate *s)
|
|||
if (pf_addr_cmp(&i->addr,
|
||||
&s->key[PF_SK_WIRE]->addr[s->direction == PF_IN],
|
||||
s->key[PF_SK_WIRE]->af) == 0) {
|
||||
SDT_PROBE3(pf, sctp, multihome, remove,
|
||||
key.v_tag, s, i);
|
||||
TAILQ_REMOVE(&ep->sources, i, entry);
|
||||
free(i, M_PFTEMP);
|
||||
break;
|
||||
|
|
@ -6097,6 +6104,7 @@ pf_sctp_multihome_add_addr(struct pf_pdesc *pd, struct pf_addr *a, uint32_t v_ta
|
|||
i->af = pd->af;
|
||||
memcpy(&i->addr, a, sizeof(*a));
|
||||
TAILQ_INSERT_TAIL(&ep->sources, i, entry);
|
||||
SDT_PROBE2(pf, sctp, multihome, add, v_tag, i);
|
||||
|
||||
PF_SCTP_ENDPOINTS_UNLOCK();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue