33 typedef struct cib_native_opaque_s {
36 void (*dnotify_fn) (gpointer user_data);
42 xmlNode *
data, xmlNode ** output_data,
int call_options);
45 const char *section, xmlNode *
data, xmlNode ** output_data,
46 int call_options,
const char *user_name);
67 native->source = NULL;
68 native->dnotify_fn = NULL;
90 cib_native_dispatch_internal(
const char *buffer, ssize_t length, gpointer userdata)
92 const char *
type = NULL;
95 cib_t *cib = userdata;
107 crm_warn(
"Received a NULL message from the CIB manager");
113 crm_trace(
"Activating %s callbacks...", type);
123 crm_err(
"Unknown message type: %s", type);
131 cib_native_destroy(
void *userdata)
133 cib_t *cib = userdata;
138 native->source = NULL;
141 if (native->dnotify_fn) {
142 native->dnotify_fn(userdata);
150 const char *channel = NULL;
154 .
dispatch = cib_native_dispatch_internal,
155 .destroy = cib_native_destroy
176 crm_trace(
"Connecting %s channel", channel);
178 if (async_fd != NULL) {
184 }
else if (native->ipc) {
196 crm_info(
"Could not connect to CIB manager for %s", name);
201 xmlNode *reply = NULL;
216 crm_info(
"Reply to CIB registration message has "
217 "unknown type '%s'", msg_type);
222 if (native->token == NULL) {
236 crm_info(
"Successfully connected to CIB manager for %s", name);
240 crm_info(
"Connection to CIB manager for %s failed: %s",
251 crm_debug(
"Disconnecting from the CIB manager");
256 if (native->source != NULL) {
259 native->source = NULL;
262 }
else if (native->ipc) {
300 xmlNode *
data, xmlNode ** output_data,
int call_options)
303 data, output_data, call_options, NULL);
308 xmlNode *
data, xmlNode ** output_data,
int call_options,
309 const char *user_name)
315 xmlNode *op_msg = NULL;
316 xmlNode *op_reply = NULL;
324 if (output_data != NULL) {
329 crm_err(
"No operation specified");
347 if (op_msg == NULL) {
356 crm_err(
"Couldn't perform %s operation (timeout=%ds): %s (%d)", op,
364 if (!(call_options & cib_sync_call)) {
373 if (reply_id == cib->
call_id) {
376 crm_trace(
"Synchronous reply %d received", reply_id);
384 }
else if (tmp != NULL) {
388 }
else if (reply_id <= 0) {
389 crm_err(
"Received bad reply: No id set");
395 crm_err(
"Received bad reply: %d (wanted %d)", reply_id, cib->
call_id);
404 }
else if (rc ==
pcmk_ok && op_reply == NULL) {
435 crm_err(
"The CIB manager disconnected");
454 native->dnotify_fn = dnotify;
473 crm_trace(
"Notification not registered: %d", rc);
#define CRM_CHECK(expr, failure_action)
#define PCMK__SERVER_BASED_RW
bool crm_ipc_connect(crm_ipc_t *client)
Establish an IPC connection to a Pacemaker component.
xmlNode * get_message_xml(xmlNode *msg, const char *field)
const char * pcmk_strerror(int rc)
int crm_ipc_get_fd(crm_ipc_t *client)
const char * crm_xml_add_int(xmlNode *node, const char *name, int value)
Create an XML attribute with specified name and integer value.
struct mainloop_io_s mainloop_io_t
void remove_cib_op_callback(int call_id, gboolean all_callbacks)
const char * crm_xml_add(xmlNode *node, const char *name, const char *value)
Create an XML attribute with specified name and value.
int(* signon_raw)(cib_t *cib, const char *name, enum cib_conn_type type, int *event_fd)
void cib_free_notify(cib_t *cib)
enum crm_ais_msg_types type
int(* set_connection_dnotify)(cib_t *cib, void(*dnotify)(gpointer user_data))
int crm_element_value_int(const xmlNode *data, const char *name, int *dest)
Retrieve the integer value of an XML attribute.
Wrappers for and extensions to glib mainloop.
xmlNode * string2xml(const char *input)
#define F_CIB_NOTIFY_ACTIVATE
xmlNode * cib_create_op(int call_id, const char *token, const char *op, const char *host, const char *section, xmlNode *data, int call_options, const char *user_name)
void cib_native_notify(gpointer data, gpointer user_data)
xmlNode * copy_xml(xmlNode *src_node)
int cib_native_set_connection_dnotify(cib_t *cib, void(*dnotify)(gpointer user_data))
cib_t * cib_new_variant(void)
#define crm_warn(fmt, args...)
cib_api_operations_t * cmds
#define crm_debug(fmt, args...)
struct crm_ipc_s crm_ipc_t
char * crm_element_value_copy(const xmlNode *data, const char *name)
Retrieve a copy of the value of an XML attribute.
const char * crm_element_value(const xmlNode *data, const char *name)
Retrieve the value of an XML attribute.
int cib_native_register_notification(cib_t *cib, const char *callback, int enabled)
int cib_native_signoff(cib_t *cib)
#define crm_trace(fmt, args...)
#define crm_log_xml_explicit(xml, text)
int(* register_notification)(cib_t *cib, const char *callback, int enabled)
xmlNode * create_xml_node(xmlNode *parent, const char *name)
#define PCMK__IPC_TIMEOUT
void mainloop_del_ipc_client(mainloop_io_t *client)
void crm_ipc_destroy(crm_ipc_t *client)
cib_t * cib_native_new(void)
void free_xml(xmlNode *child)
#define PCMK__SERVER_BASED_RO
int cib_native_signon(cib_t *cib, const char *name, enum cib_conn_type type)
#define F_CIB_NOTIFY_TYPE
bool crm_ipc_connected(crm_ipc_t *client)
int cib_native_perform_op_delegate(cib_t *cib, const char *op, const char *host, const char *section, xmlNode *data, xmlNode **output_data, int call_options, const char *user_name)
int cib_native_free(cib_t *cib)
#define pcmk_err_diff_resync
#define crm_log_xml_err(xml, text)
#define pcmk__set_ipc_flags(ipc_flags, ipc_name, flags_to_set)
crm_ipc_t * mainloop_get_ipc_client(mainloop_io_t *client)
#define crm_err(fmt, args...)
int cib_native_perform_op(cib_t *cib, const char *op, const char *host, const char *section, xmlNode *data, xmlNode **output_data, int call_options)
struct cib_native_opaque_s cib_native_opaque_t
int crm_ipc_send(crm_ipc_t *client, xmlNode *message, enum crm_ipc_flags flags, int32_t ms_timeout, xmlNode **reply)
Send an IPC XML message.
crm_ipc_t * crm_ipc_new(const char *name, size_t max_size)
Create a new (legacy) object for using Pacemaker daemon IPC.
int(* signon)(cib_t *cib, const char *name, enum cib_conn_type type)
void cib_native_callback(cib_t *cib, xmlNode *msg, int call_id, int rc)
#define crm_log_xml_trace(xml, text)
int(* signoff)(cib_t *cib)
#define PCMK__SERVER_BASED_SHM
mainloop_io_t * mainloop_add_ipc_client(const char *name, int priority, size_t max_size, void *userdata, struct ipc_client_callbacks *callbacks)
int cib_native_signon_raw(cib_t *cib, const char *name, enum cib_conn_type type, int *event_fd)
void crm_ipc_close(crm_ipc_t *client)
#define crm_info(fmt, args...)
int(* dispatch)(const char *buffer, ssize_t length, gpointer userdata)
Dispatch function for an IPC connection used as mainloop source.