mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-09 22:03:12 +00:00
Merge pull request #1614 from qlyoung/imp-bgpd-pthread-startup-sync
improve bgpd thread startup characteristics
This commit is contained in:
commit
49323fd71e
@ -51,20 +51,38 @@ static bool validate_header(struct peer *);
|
|||||||
#define BGP_IO_TRANS_ERR (1 << 0) // EAGAIN or similar occurred
|
#define BGP_IO_TRANS_ERR (1 << 0) // EAGAIN or similar occurred
|
||||||
#define BGP_IO_FATAL_ERR (1 << 1) // some kind of fatal TCP error
|
#define BGP_IO_FATAL_ERR (1 << 1) // some kind of fatal TCP error
|
||||||
|
|
||||||
/* Start and stop routines for I/O pthread + control variables
|
/* Plumbing & control variables for thread lifecycle
|
||||||
* ------------------------------------------------------------------------ */
|
* ------------------------------------------------------------------------ */
|
||||||
_Atomic bool bgp_io_thread_run;
|
bool bgp_io_thread_run;
|
||||||
_Atomic bool bgp_io_thread_started;
|
pthread_mutex_t *running_cond_mtx;
|
||||||
|
pthread_cond_t *running_cond;
|
||||||
void bgp_io_init()
|
|
||||||
{
|
|
||||||
bgp_io_thread_run = false;
|
|
||||||
bgp_io_thread_started = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Unused callback for thread_add_read() */
|
/* Unused callback for thread_add_read() */
|
||||||
static int bgp_io_dummy(struct thread *thread) { return 0; }
|
static int bgp_io_dummy(struct thread *thread) { return 0; }
|
||||||
|
|
||||||
|
/* Poison pill task */
|
||||||
|
static int bgp_io_finish(struct thread *thread)
|
||||||
|
{
|
||||||
|
bgp_io_thread_run = false;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Extern lifecycle control functions. init -> start -> stop
|
||||||
|
* ------------------------------------------------------------------------ */
|
||||||
|
void bgp_io_init()
|
||||||
|
{
|
||||||
|
bgp_io_thread_run = false;
|
||||||
|
|
||||||
|
running_cond_mtx = XCALLOC(MTYPE_PTHREAD_PRIM, sizeof(pthread_mutex_t));
|
||||||
|
running_cond = XCALLOC(MTYPE_PTHREAD_PRIM, sizeof(pthread_cond_t));
|
||||||
|
|
||||||
|
pthread_mutex_init(running_cond_mtx, NULL);
|
||||||
|
pthread_cond_init(running_cond, NULL);
|
||||||
|
|
||||||
|
/* unlocked in bgp_io_wait_running() */
|
||||||
|
pthread_mutex_lock(running_cond_mtx);
|
||||||
|
}
|
||||||
|
|
||||||
void *bgp_io_start(void *arg)
|
void *bgp_io_start(void *arg)
|
||||||
{
|
{
|
||||||
struct frr_pthread *fpt = frr_pthread_get(PTHREAD_IO);
|
struct frr_pthread *fpt = frr_pthread_get(PTHREAD_IO);
|
||||||
@ -80,9 +98,12 @@ void *bgp_io_start(void *arg)
|
|||||||
|
|
||||||
struct thread task;
|
struct thread task;
|
||||||
|
|
||||||
atomic_store_explicit(&bgp_io_thread_run, true, memory_order_seq_cst);
|
pthread_mutex_lock(running_cond_mtx);
|
||||||
atomic_store_explicit(&bgp_io_thread_started, true,
|
{
|
||||||
memory_order_seq_cst);
|
bgp_io_thread_run = true;
|
||||||
|
pthread_cond_signal(running_cond);
|
||||||
|
}
|
||||||
|
pthread_mutex_unlock(running_cond_mtx);
|
||||||
|
|
||||||
while (bgp_io_thread_run) {
|
while (bgp_io_thread_run) {
|
||||||
if (thread_fetch(fpt->master, &task)) {
|
if (thread_fetch(fpt->master, &task)) {
|
||||||
@ -96,29 +117,35 @@ void *bgp_io_start(void *arg)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int bgp_io_finish(struct thread *thread)
|
void bgp_io_wait_running()
|
||||||
{
|
{
|
||||||
atomic_store_explicit(&bgp_io_thread_run, false, memory_order_seq_cst);
|
while (!bgp_io_thread_run)
|
||||||
return 0;
|
pthread_cond_wait(running_cond, running_cond_mtx);
|
||||||
|
|
||||||
|
/* locked in bgp_io_init() */
|
||||||
|
pthread_mutex_unlock(running_cond_mtx);
|
||||||
}
|
}
|
||||||
|
|
||||||
int bgp_io_stop(void **result, struct frr_pthread *fpt)
|
int bgp_io_stop(void **result, struct frr_pthread *fpt)
|
||||||
{
|
{
|
||||||
thread_add_event(fpt->master, &bgp_io_finish, NULL, 0, NULL);
|
thread_add_event(fpt->master, &bgp_io_finish, NULL, 0, NULL);
|
||||||
pthread_join(fpt->thread, result);
|
pthread_join(fpt->thread, result);
|
||||||
|
|
||||||
|
pthread_mutex_destroy(running_cond_mtx);
|
||||||
|
pthread_cond_destroy(running_cond);
|
||||||
|
|
||||||
|
XFREE(MTYPE_PTHREAD_PRIM, running_cond_mtx);
|
||||||
|
XFREE(MTYPE_PTHREAD_PRIM, running_cond);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Extern API -------------------------------------------------------------- */
|
/* Extern API -------------------------------------------------------------- */
|
||||||
void bgp_io_running(void)
|
|
||||||
{
|
|
||||||
while (!atomic_load_explicit(&bgp_io_thread_started,
|
|
||||||
memory_order_seq_cst))
|
|
||||||
frr_pthread_yield();
|
|
||||||
}
|
|
||||||
|
|
||||||
void bgp_writes_on(struct peer *peer)
|
void bgp_writes_on(struct peer *peer)
|
||||||
{
|
{
|
||||||
|
assert(bgp_io_thread_run);
|
||||||
|
|
||||||
assert(peer->status != Deleted);
|
assert(peer->status != Deleted);
|
||||||
assert(peer->obuf);
|
assert(peer->obuf);
|
||||||
assert(peer->ibuf);
|
assert(peer->ibuf);
|
||||||
@ -136,6 +163,8 @@ void bgp_writes_on(struct peer *peer)
|
|||||||
|
|
||||||
void bgp_writes_off(struct peer *peer)
|
void bgp_writes_off(struct peer *peer)
|
||||||
{
|
{
|
||||||
|
assert(bgp_io_thread_run);
|
||||||
|
|
||||||
struct frr_pthread *fpt = frr_pthread_get(PTHREAD_IO);
|
struct frr_pthread *fpt = frr_pthread_get(PTHREAD_IO);
|
||||||
|
|
||||||
thread_cancel_async(fpt->master, &peer->t_write, NULL);
|
thread_cancel_async(fpt->master, &peer->t_write, NULL);
|
||||||
@ -146,6 +175,8 @@ void bgp_writes_off(struct peer *peer)
|
|||||||
|
|
||||||
void bgp_reads_on(struct peer *peer)
|
void bgp_reads_on(struct peer *peer)
|
||||||
{
|
{
|
||||||
|
assert(bgp_io_thread_run);
|
||||||
|
|
||||||
assert(peer->status != Deleted);
|
assert(peer->status != Deleted);
|
||||||
assert(peer->ibuf);
|
assert(peer->ibuf);
|
||||||
assert(peer->fd);
|
assert(peer->fd);
|
||||||
@ -165,6 +196,8 @@ void bgp_reads_on(struct peer *peer)
|
|||||||
|
|
||||||
void bgp_reads_off(struct peer *peer)
|
void bgp_reads_off(struct peer *peer)
|
||||||
{
|
{
|
||||||
|
assert(bgp_io_thread_run);
|
||||||
|
|
||||||
struct frr_pthread *fpt = frr_pthread_get(PTHREAD_IO);
|
struct frr_pthread *fpt = frr_pthread_get(PTHREAD_IO);
|
||||||
|
|
||||||
thread_cancel_async(fpt->master, &peer->t_read, NULL);
|
thread_cancel_async(fpt->master, &peer->t_read, NULL);
|
||||||
|
@ -31,21 +31,11 @@
|
|||||||
/**
|
/**
|
||||||
* Initializes data structures and flags for the write thread.
|
* Initializes data structures and flags for the write thread.
|
||||||
*
|
*
|
||||||
* This function should be called from the main thread before
|
* This function must be called from the main thread before
|
||||||
* bgp_writes_start() is invoked.
|
* bgp_writes_start() is invoked.
|
||||||
*/
|
*/
|
||||||
extern void bgp_io_init(void);
|
extern void bgp_io_init(void);
|
||||||
|
|
||||||
/**
|
|
||||||
* Ensure that the BGP IO thread is actually up and running
|
|
||||||
*
|
|
||||||
* This function must be called immediately after the thread
|
|
||||||
* has been created for running. This is because we want
|
|
||||||
* to make sure that the io thread is ready before other
|
|
||||||
* threads start attempting to use it.
|
|
||||||
*/
|
|
||||||
extern void bgp_io_running(void);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Start function for write thread.
|
* Start function for write thread.
|
||||||
*
|
*
|
||||||
@ -53,6 +43,15 @@ extern void bgp_io_running(void);
|
|||||||
*/
|
*/
|
||||||
extern void *bgp_io_start(void *arg);
|
extern void *bgp_io_start(void *arg);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wait until the IO thread is ready to accept jobs.
|
||||||
|
*
|
||||||
|
* This function must be called immediately after the thread has been created
|
||||||
|
* for running. Use of other functions before calling this one will result in
|
||||||
|
* undefined behavior.
|
||||||
|
*/
|
||||||
|
extern void bgp_io_wait_running(void);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Start function for write thread.
|
* Start function for write thread.
|
||||||
*
|
*
|
||||||
|
@ -7486,13 +7486,11 @@ void bgp_pthreads_run()
|
|||||||
pthread_attr_setschedpolicy(&attr, SCHED_FIFO);
|
pthread_attr_setschedpolicy(&attr, SCHED_FIFO);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Please ensure that the io thread is running
|
* I/O related code assumes the thread is ready for work at all times,
|
||||||
* by calling bgp_io_running. The BGP threads
|
* so we wait until it is.
|
||||||
* depend on it being running when we start
|
|
||||||
* looking for it.
|
|
||||||
*/
|
*/
|
||||||
frr_pthread_run(PTHREAD_IO, &attr, NULL);
|
frr_pthread_run(PTHREAD_IO, &attr, NULL);
|
||||||
bgp_io_running();
|
bgp_io_wait_running();
|
||||||
|
|
||||||
frr_pthread_run(PTHREAD_KEEPALIVES, &attr, NULL);
|
frr_pthread_run(PTHREAD_KEEPALIVES, &attr, NULL);
|
||||||
}
|
}
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include "hash.h"
|
#include "hash.h"
|
||||||
|
|
||||||
DEFINE_MTYPE_STATIC(LIB, FRR_PTHREAD, "FRR POSIX Thread");
|
DEFINE_MTYPE_STATIC(LIB, FRR_PTHREAD, "FRR POSIX Thread");
|
||||||
|
DEFINE_MTYPE(LIB, PTHREAD_PRIM, "POSIX synchronization primitives");
|
||||||
|
|
||||||
static unsigned int next_id = 0;
|
static unsigned int next_id = 0;
|
||||||
|
|
||||||
|
@ -21,8 +21,11 @@
|
|||||||
#define _FRR_PTHREAD_H
|
#define _FRR_PTHREAD_H
|
||||||
|
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
|
#include "memory.h"
|
||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
|
|
||||||
|
DECLARE_MTYPE(PTHREAD_PRIM);
|
||||||
|
|
||||||
struct frr_pthread {
|
struct frr_pthread {
|
||||||
|
|
||||||
/* pthread id */
|
/* pthread id */
|
||||||
|
Loading…
Reference in New Issue
Block a user