/usr/include/ocf/oc_event.h is in libheartbeat2-dev 1:3.0.6-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | /*
* oc_event.h
*
* Definition of the Open Cluster Framework event notification API
*
* Copyright (C) 2002 Mark Haverkamp, Joe DiMartino
* 2002 Open Source Development Lab
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#ifndef OC_EVENT_H
#define OC_EVENT_H
#include <sys/types.h>
#include <inttypes.h>
/*
* An opaque token into the membership service is
* defined as an int for portability.
*/
typedef int oc_ev_t;
/*
* oc_ed_t is the event descriptor for a callback event. An event
* descriptor is unique for all events across all event classes.
*/
typedef uint32_t oc_ed_t;
/*
* Event descriptors:
* upper 10 bits for Class
* lower 22 bits for Event
*/
#define OC_EV_CLASS_SHIFT 22
#define OC_EV_EVENT_SHIFT 10
#define OC_EV_EVENT_MASK (~ (~((uint)0) << OC_EV_CLASS_SHIFT))
#define OC_EV_GET_CLASS(ed) ((uint)(ed) >> OC_EV_CLASS_SHIFT)
#define OC_EV_GET_EVENT(ed) ((uint)(ed) & OC_EV_EVENT_MASK)
#define OC_EV_SET_CLASS(cl,ev) (cl << OC_EV_CLASS_SHIFT | \
(ev & OC_EV_EVENT_MASK))
/*
* The following event classes are defined:
*/
typedef enum {
OC_EV_CONN_CLASS = 1, /* Connectivity Event Class */
OC_EV_MEMB_CLASS, /* Node Membership Event Class */
OC_EV_GROUP_CLASS /* Group Messaging Event Class */
} oc_ev_class_t;
/*
* Within each event class, event types are defined.
*/
/*
* Connectivity Events
*/
typedef enum {
OC_EV_CS_INVALID = OC_EV_SET_CLASS(OC_EV_CONN_CLASS, 0),
OC_EV_CS_INTERFACE,
OC_EV_CS_ELIGIBLE,
OC_EV_CS_CONNECT
} oc_conn_event_t;
/* Node Membership Events
*
*OC_EV_MS_NEW_MEMBERSHIP
* CCM: membership with quorum
* CRM/CIB quorum: true
* CRM/CIB actions: update membership instance & contents
* CRM actions: none.
* We wait for the CRMd on that node to become active before any CRM
* action is taken. The TE monitors CIB updates and detects and nodes that
* unexpectedly left - starting/restarting a transition if required
*
*OC_EV_MS_MS_INVALID
* CCM: membership without quorum
* CRM/CIB quorum: false
* CRM/CIB actions: update membership instance & contents
* DC actions: Invoke the PolicyEngine,
* to ensure the "No Quorum Policy" is observed
*
*OC_EV_MS_NOT_PRIMARY
* CCM: old membership (not valid any longer)
* CRM/CIB quorum: no change
* DC actions: cancel the transition if one is in progress
*
*OC_EV_MS_PRIMARY_RESTORED
* This event mean the cluster restores to a stable state that has the
* same membership as before. It also implies it has the same quorum as
* before.
* CCM: old membership restored (same membership as before)
* CRM/CIB quorum: no change
* CRM/CIB actions: update membership instance
* DC actions: Start/restart a transition now that everything is now
* stable. In theory we would have gotten a OC_EV_MS_NOT_PRIMARY before
* this which would have cancelled the transition.
*
*OC_EV_MS_EVICTED
* CCM: the client is evicted from ccm.
* CRM/CIB quorum: false
* CRM/CIB actions: update membership instance & contents, shut down
* This should not happen if correct startup/shutdown order is observed.
*
*/
typedef enum {
OC_EV_MS_INVALID = OC_EV_SET_CLASS(OC_EV_MEMB_CLASS, 0),
OC_EV_MS_NEW_MEMBERSHIP,
OC_EV_MS_NOT_PRIMARY,
OC_EV_MS_PRIMARY_RESTORED,
OC_EV_MS_EVICTED
} oc_memb_event_t;
/*
* For events OC_EV_MS_NEW_MEMBERSHIP, OC_EV_MS_NOT_PRIMARY, and
* OC_EV_MS_PRIMARY_RESTORED, the event handlers 'data' member points
* to an oc_ev_mebership_t structure. For OC_EV_MS_EVICTED, 'data' is
* NULL.
*/
/*
* member node information
*/
typedef struct oc_node_s {
char *node_uname; /* unique */
uint node_id; /* unique */
uint node_born_on; /* membership instance number */
} oc_node_t;
/*
* membership event information
*/
typedef struct oc_ev_membership_s {
uint m_instance; /* instance # of current membership */
uint m_n_member; /* # of current members */
uint m_memb_idx; /* index into m_array for members */
uint m_n_out; /* # of previous members lost */
uint m_out_idx; /* index into m_array for lost */
uint m_n_in; /* # of new members in this instance */
uint m_in_idx; /* index into m_array for new */
oc_node_t m_array[1]; /* array of members (see above) */
} oc_ev_membership_t;
/*
* Group Events
*/
typedef enum {
OC_EV_GS_INVALID = OC_EV_SET_CLASS(OC_EV_GROUP_CLASS, 0),
OC_EV_GS_JOIN,
OC_EV_GS_LEAVE,
OC_EV_GS_CAST,
OC_EV_GS_REPLY
} oc_group_event_t;
/*
* This is the initial call to register for cluster event
* notification service. Callers receive an opaque token.
* Implementations define the contents of the opaque token.
* Failure returns an appropriate value.
*/
int oc_ev_register(oc_ev_t **token);
/*
* Event service will terminate after calling oc_ev_unregister().
* This routine can be safely called from a callback routine.
* Pending events may be dropped at the discression of the cluster
* implementation.
*/
int oc_ev_unregister(oc_ev_t *token);
/*
* callback function definition
*/
typedef void oc_ev_callback_t(oc_ed_t event,
void *cookie,
size_t size,
const void *data);
/*
* Event notification is performed through callbacks. Events are
* delivered only for those event classes in which a callback has
* been registered. The callback function is registered using
* oc_ev_set_callback(). A callback is delivered when an event in
* the corresponding event class occurs.
*/
int oc_ev_set_callback(const oc_ev_t *token,
oc_ev_class_t class,
oc_ev_callback_t *fn,
oc_ev_callback_t **prev_fn);
/*
* For calls within the kernel only the event service token is
* used and all other arguments are ignored. After activation,
* kernel callbacks may be delivered immediately. All kernel
* callbacks will be performed in a process context supplied by the
* kernel compliant event notification service.
*/
int oc_ev_activate(const oc_ev_t *token, int *fd);
/*
* A user-level process determines that an event is pending using
* select/poll on the file descriptor returned by oc_ev_activate().
* A callback will deliver the event in the context of this process
* after calling oc_ev_handle_event().
*/
int oc_ev_handle_event(const oc_ev_t *token);
/*
* It is necessary to inform the notification service that callback
* processing is complete. Any data associated with this completed
* callback is no longer valid upon successful return.
*/
int oc_ev_callback_done(void *cookie);
/*
* This is a synchronous call to return the event notification
* service version number. It is safe to call anytime.
int oc_ev_get_version(const oc_ev_t *token, oc_ver_t *ver);
*/
/*
* This is a synchronous call to determine the local node identifier.
*/
int oc_ev_is_my_nodeid(const oc_ev_t *token, const oc_node_t *node);
#endif /* OC_EVENT_H */
|