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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
|
/* $Id: hb_api.h,v 1.12.2.3 2004/09/11 20:52:32 alan Exp $ */
/*
* Client-side Low-level clustering API for heartbeat.
*
* Copyright (C) 2000 Alan Robertson <alanr@unix.sh>
*
* 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
*
*/
/*
* Currently the client-side heartbeat API needs to write in the /var/lock
* directory for non-casual (named) clients. This has implications for the
* euid, egid that we run as.
*
* Expect to set make your binaries setgid to uucp, or allow the uid
* they run as to join the group uucp (or whatever your local system
* has it set up as).
*
* Additionally, you must belong to the group hbapi. Fortunately, UNIX
* group permissions are quite flexible, and you can do both.
*/
/*
* Known deficiencies of this API:
*
* Each of the various set..callback functions should probably return
* the current callback and private data parameter, so the caller can
* restore them later.
*
*/
#ifndef __HB_API_H
# define __HB_API_H 1
#include <ha_msg.h>
#include <clplumbing/ipc.h>
#define LLC_PROTOCOL_VERSION 1
typedef void (*llc_msg_callback_t) (const struct ha_msg* msg
, void* private_data);
typedef void (*llc_nstatus_callback_t) (const char *node, const char * status
, void* private_data);
typedef void (*llc_ifstatus_callback_t) (const char *node
, const char * interface, const char * status
, void* private_data);
typedef void (*llc_cstatus_callback_t) (const char *node
, const char * client, const char * status
, void* private_date);
typedef struct ll_cluster {
void * ll_cluster_private;
struct llc_ops* llc_ops;
}ll_cluster_t;
struct llc_ops {
int (*signon) (ll_cluster_t*, const char * service);
int (*signoff) (ll_cluster_t*);
int (*delete) (ll_cluster_t*);
/*
*************************************************************************
* Status Update Callbacks
*************************************************************************
*/
/*
* set_msg_callback: Define callback for the given message type
*
* msgtype: Type of message being handled.
* Messages intercepted by nstatus_callback or
* ifstatus_callback functions won't be handled here.
*
* callback: callback function.
*
* p: private data - later passed to callback.
*/
int (*set_msg_callback) (ll_cluster_t*, const char * msgtype
, llc_msg_callback_t callback, void * p);
/*
* set_nstatus_callback: Define callback for node status messages
* This is a message of type "status"
*
* cbf: callback function.
*
* p: private data - later passed to callback.
*/
int (*set_nstatus_callback) (ll_cluster_t*
, llc_nstatus_callback_t cbf, void * p);
/*
* set_ifstatus_callback: Define callback for interface status messages
* This is a message of type "ifstat"
* These messages are received whenever an interface goes
* dead or becomes active again.
*
* cbf: callback function.
*
* p: private data - later passed to callback.
*/
int (*set_ifstatus_callback) (ll_cluster_t*
, llc_ifstatus_callback_t cbf, void * p);
/*
* set_cstatus_callback: Define callback from client status messages
* This is a message of type "hbapi-clstat"
* These messages are received whenever an client on
* other nodes goes dead or becomes active again.
*
* cbf callback function.
*
* p: private data - later passed to callback.
*/
int (*set_cstatus_callback) (ll_cluster_t*
, llc_cstatus_callback_t cbf, void * p);
/*************************************************************************
* Getting Current Information
*************************************************************************/
/*
* init_nodewalk: Initialize walk through list of list of known nodes
*/
int (*init_nodewalk)(ll_cluster_t*);
/*
* nextnode: Return next node in the list of known nodes
*/
const char * (*nextnode)(ll_cluster_t*);
/*
* end_nodewalk: End walk through the list of known nodes
*/
int (*end_nodewalk)(ll_cluster_t*);
/*
* node_status: Return most recent heartbeat status of the given node
*/
const char * (*node_status)(ll_cluster_t*, const char * nodename);
/*
* node_type: Return type of the given node
*/
const char * (*node_type)(ll_cluster_t*, const char * nodename);
/*
* init_ifwalk: Initialize walk through list of list of known interfaces
*/
int (*init_ifwalk)(ll_cluster_t*, const char * node);
/*
* nextif: Return next node in the list of known interfaces on node
*/
const char * (*nextif)(ll_cluster_t*);
/*
* end_ifwalk: End walk through the list of known interfaces
*/
int (*end_ifwalk)(ll_cluster_t*);
/*
* if_status: Return current status of the given interface
*/
const char* (*if_status)(ll_cluster_t*, const char * nodename
, const char *iface);
/*
* client_status: Return current status of the given client
*/
const char* (*client_status)(ll_cluster_t*, const char *host,
const char *clientid, int timeout);
/*************************************************************************
* Intracluster messaging
*************************************************************************/
/*
* sendclustermsg: Send the given message to all cluster members
*/
int (*sendclustermsg)(ll_cluster_t*
, struct ha_msg* msg);
/*
* sendnodemsg: Send the given message to the given node in cluster.
*/
int (*sendnodemsg)(ll_cluster_t*
, struct ha_msg* msg
, const char * nodename);
/*
* send_ordered_clustermsg: Send ordered message to all cluster members.
*/
int (*send_ordered_clustermsg)(ll_cluster_t*
, struct ha_msg* msg);
/*
* send_ordered_nodemsg: Send ordered message to node.
*/
int (*send_ordered_nodemsg)(ll_cluster_t*
, struct ha_msg* msg
, const char* nodename);
/*
* inputfd: Return fd which can be given to select(2) or poll(2)
* for determining when messages are ready to be read.
* Only to be used in select() or poll(), please...
* Note that due to IPC input buffering, always check
* msgready() before going into select() or poll()
* or you might hang there forever.
*/
int (*inputfd)(ll_cluster_t*);
/*
* ipcchan: Return IPC channel which can be given to
* G_main_add_IPC_Channel() for mainloop use.
* Please do not use send(), recv() directly.
* Feel free to use waitin(), waitout(),
* is_message_pending(), is_sending_blocked(),
* set_recv_qlen(), set_send_qlen(), resume_io(),
* verify_auth().
*/
IPC_Channel* (*ipcchan)(ll_cluster_t*);
/*
* msgready: Returns TRUE (1) when a message is ready to be read.
*/
int (*msgready)(ll_cluster_t*);
/*
* setmsgsignal: Associates the given signal with the "message waiting"
* condition.
*/
int (*setmsgsignal)(ll_cluster_t*, int signo);
/*
* rcvmsg: Cause the next message to be read - activating callbacks for
* processing the message. If no callback processes the message
* it will be ignored. The message is automatically disposed of.
* It returns 1 if a message was received.
*/
int (*rcvmsg)(ll_cluster_t*, int blocking);
/*
* Return next message not intercepted by a callback.
* NOTE: you must dispose of this message by calling ha_msg_del().
*/
struct ha_msg* (*readmsg)(ll_cluster_t*, int blocking);
/*
*************************************************************************
* Debugging
*************************************************************************
*
* setfmode: Set filter mode. Analagous to promiscous mode in TCP.
* Gotta be root to turn on debugging!
*
* LLC_FILTER_DEFAULT (default)
* In this mode, all messages destined for this pid
* are received, along with all that don't go to specific pids.
*
* LLC_FILTER_PMODE See all messages, but filter heart beats
*
* that don't tell us anything new.
* LLC_FILTER_ALLHB See all heartbeats, including those that
* don't change status.
* LLC_FILTER_RAW See all packets, from all interfaces, even
* dups. Pkts with auth errors are still ignored.
*
* Set filter mode. Analagous to promiscous mode in TCP.
*
*/
# define LLC_FILTER_DEFAULT 0
# define LLC_FILTER_PMODE 1
# define LLC_FILTER_ALLHB 2
# define LLC_FILTER_RAW 3
int (*setfmode)(ll_cluster_t*, unsigned mode);
/*
* Return the value of a heartbeat configuration parameter
* as a malloc-ed string(). You need to free() the result when
* you're done with it.
*/
char * (*get_parameter)(ll_cluster_t *, const char * paramname);
/*
* Return heartbeat's deadtime
*/
long (*get_deadtime)(ll_cluster_t *);
/*
* Return heartbeat's keepalive time
*/
long (*get_keepalive)(ll_cluster_t *);
/*
* Return my node id
*/
const char * (*get_mynodeid)(ll_cluster_t *);
/*
* Return a suggested logging facility for cluster things
*
* < 0 means we're not logging to syslog.
*/
int (*get_logfacility)(ll_cluster_t *);
/*
* Return the current resource ownership status.
*
* NOTE: this call will fail if heartbeat isn't
* managing resources. It can return "all", "local" or "foreign", "none"
* or "transition". This call will eventually go away when we rewrite
* the resource management code. "transition" means that things are
* currently changing.
*/
const char * (*get_resources)(ll_cluster_t *);
const char * (*errmsg)(ll_cluster_t*);
};
/* Parameters we can ask for via get_parameter */
#define KEY_HBVERSION "hbversion" /* Not a configuration parameter */
#define KEY_HOST "node"
#define KEY_HOPS "hopfudge"
#define KEY_KEEPALIVE "keepalive"
#define KEY_DEADTIME "deadtime"
#define KEY_DEADPING "deadping"
#define KEY_WARNTIME "warntime"
#define KEY_INITDEAD "initdead"
#define KEY_WATCHDOG "watchdog"
#define KEY_BAUDRATE "baud"
#define KEY_UDPPORT "udpport"
#define KEY_FACILITY "logfacility"
#define KEY_LOGFILE "logfile"
#define KEY_DBGFILE "debugfile"
#define KEY_FAILBACK "nice_failback"
#define KEY_AUTOFAIL "auto_failback"
#define KEY_STONITH "stonith"
#define KEY_STONITHHOST "stonith_host"
#define KEY_CLIENT_CHILD "respawn"
#define KEY_RT_PRIO "rtprio"
#define KEY_GEN_METH "hbgenmethod"
#define KEY_REALTIME "realtime"
#define KEY_DEBUGLEVEL "debug"
#define KEY_NORMALPOLL "normalpoll"
#define KEY_APIPERM "apiauth"
#define KEY_MSGFMT "msgfmt"
#define KEY_BADPACK "log_badpack"
#define KEY_REGAPPHBD "use_apphbd"
ll_cluster_t* ll_cluster_new(const char * llctype);
#endif /* __HB_API_H */
|