1999-12-09 18:54:20 +00:00
|
|
|
/*
|
|
|
|
* BIRD Object Locks
|
|
|
|
*
|
|
|
|
* (c) 1999 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_LOCKS_H_
|
|
|
|
#define _BIRD_LOCKS_H_
|
|
|
|
|
|
|
|
#include "lib/resource.h"
|
2023-04-21 13:26:06 +00:00
|
|
|
#include "lib/lists.h"
|
1999-12-09 18:54:20 +00:00
|
|
|
#include "lib/event.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The object locks are used for controlling exclusive access
|
|
|
|
* to various physical resources like UDP ports on specific devices.
|
|
|
|
* When you want to access such resource, you ask for a object lock
|
|
|
|
* structure, fill in specification of the object and your function
|
|
|
|
* you want to have called when the object is available and invoke
|
|
|
|
* olock_acquire() afterwards. When the object becomes free, the lock
|
|
|
|
* manager calls your function. To free the object lock, just call rfree
|
|
|
|
* on its resource.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct object_lock {
|
|
|
|
resource r;
|
|
|
|
ip_addr addr; /* Identification of a object: IP address */
|
2014-07-18 16:24:12 +00:00
|
|
|
uint type; /* ... object type (OBJLOCK_xxx) */
|
|
|
|
uint port; /* ... port number */
|
|
|
|
uint inst; /* ... instance ID */
|
1999-12-09 18:54:20 +00:00
|
|
|
struct iface *iface; /* ... interface */
|
2017-09-12 13:49:36 +00:00
|
|
|
struct iface *vrf; /* ... or VRF (if iface is unknown) */
|
2023-01-24 10:01:34 +00:00
|
|
|
event event; /* Enqueued when the lock succeeds */
|
|
|
|
event_list *target; /* Where to put the event */
|
1999-12-09 18:54:20 +00:00
|
|
|
/* ... internal to lock manager, don't touch ... */
|
|
|
|
node n; /* Node in list of olocks */
|
|
|
|
int state; /* OLOCK_STATE_xxx */
|
|
|
|
list waiters; /* Locks waiting for the same resource */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct object_lock *olock_new(pool *);
|
|
|
|
void olock_acquire(struct object_lock *);
|
|
|
|
void olock_init(void);
|
|
|
|
|
|
|
|
#define OBJLOCK_UDP 1 /* UDP port */
|
|
|
|
#define OBJLOCK_TCP 2 /* TCP port */
|
2000-06-06 11:50:48 +00:00
|
|
|
#define OBJLOCK_IP 3 /* IP protocol */
|
1999-12-09 18:54:20 +00:00
|
|
|
|
|
|
|
#define OLOCK_STATE_FREE 0
|
|
|
|
#define OLOCK_STATE_LOCKED 1
|
|
|
|
#define OLOCK_STATE_WAITING 2
|
|
|
|
|
|
|
|
#endif
|