Add patch from JRB0001 to reload protocols on RPKI change
This commit is contained in:
parent
b9deced219
commit
aff07ee7ed
24
nest/proto.c
24
nest/proto.c
@ -1968,3 +1968,27 @@ proto_get_named(struct symbol *sym, struct protocol *pr)
|
|||||||
|
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
reload_all(void)
|
||||||
|
{
|
||||||
|
log(L_INFO "Reloading all protocols.");
|
||||||
|
struct proto *p;
|
||||||
|
WALK_LIST(p, proto_list)
|
||||||
|
{
|
||||||
|
if (!p->disabled && p->proto_state == PS_UP)
|
||||||
|
{
|
||||||
|
log(L_INFO "Reloading protocol %s.", p->name);
|
||||||
|
struct channel *c;
|
||||||
|
WALK_LIST(c, p->channels)
|
||||||
|
{
|
||||||
|
if (channel_reloadable(c) && c->channel_state == CS_UP)
|
||||||
|
{
|
||||||
|
channel_request_reload(c);
|
||||||
|
channel_request_feeding(c);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -624,6 +624,7 @@ void *channel_config_new(const struct channel_class *cc, const char *name, uint
|
|||||||
void *channel_config_get(const struct channel_class *cc, const char *name, uint net_type, struct proto_config *proto);
|
void *channel_config_get(const struct channel_class *cc, const char *name, uint net_type, struct proto_config *proto);
|
||||||
int channel_reconfigure(struct channel *c, struct channel_config *cf);
|
int channel_reconfigure(struct channel *c, struct channel_config *cf);
|
||||||
|
|
||||||
|
void reload_all(void);
|
||||||
|
|
||||||
/* Moved from route.h to avoid dependency conflicts */
|
/* Moved from route.h to avoid dependency conflicts */
|
||||||
static inline void rte_update(struct proto *p, const net_addr *n, rte *new) { rte_update2(p->main_channel, n, new, p->main_source); }
|
static inline void rte_update(struct proto *p, const net_addr *n, rte *new) { rte_update2(p->main_channel, n, new, p->main_source); }
|
||||||
|
@ -817,6 +817,8 @@ rpki_handle_end_of_data_pdu(struct rpki_cache *cache, const struct pdu_end_of_da
|
|||||||
cache->last_update = current_time();
|
cache->last_update = current_time();
|
||||||
cache->serial_num = pdu->serial_num;
|
cache->serial_num = pdu->serial_num;
|
||||||
rpki_cache_change_state(cache, RPKI_CS_ESTABLISHED);
|
rpki_cache_change_state(cache, RPKI_CS_ESTABLISHED);
|
||||||
|
|
||||||
|
reload_all();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user