pacemaker  2.1.3-ea053b43a
Scalable High-Availability cluster resource manager
lrmd_internal.h
Go to the documentation of this file.
1 /*
2  * Copyright 2015-2021 the Pacemaker project contributors
3  *
4  * The version control history for this file may have further details.
5  *
6  * This source code is licensed under the GNU Lesser General Public License
7  * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
8  */
9 
10 #ifndef LRMD_INTERNAL__H
11 #define LRMD_INTERNAL__H
12 
13 #include <stdint.h> // uint32_t
14 #include <glib.h> // GList, GHashTable, gpointer
15 #include <libxml/tree.h> // xmlNode
16 #include <crm/common/ipc.h> // crm_ipc_t
17 #include <crm/common/mainloop.h> // mainloop_io_t, ipc_client_callbacks
18 #include <crm/common/output_internal.h> // pcmk__output_t
19 #include <crm/common/remote_internal.h> // pcmk__remote_t
20 #include <crm/lrmd.h> // lrmd_t, lrmd_event_data_t
21 
22 int lrmd__new(lrmd_t **api, const char *nodename, const char *server, int port);
23 
24 int lrmd_send_attribute_alert(lrmd_t *lrmd, GList *alert_list,
25  const char *node, uint32_t nodeid,
26  const char *attr_name, const char *attr_value);
27 int lrmd_send_node_alert(lrmd_t *lrmd, GList *alert_list,
28  const char *node, uint32_t nodeid, const char *state);
29 int lrmd_send_fencing_alert(lrmd_t *lrmd, GList *alert_list,
30  const char *target, const char *task,
31  const char *desc, int op_rc);
32 int lrmd_send_resource_alert(lrmd_t *lrmd, GList *alert_list,
33  const char *node, lrmd_event_data_t *op);
34 
35 int lrmd__remote_send_xml(pcmk__remote_t *session, xmlNode *msg, uint32_t id,
36  const char *msg_type);
37 
39  int op_status, const char *exit_reason);
40 
42 
43 /* Shared functions for IPC proxy back end */
44 
45 typedef struct remote_proxy_s {
46  char *node_name;
47  char *session_id;
48 
49  gboolean is_local;
50 
53  uint32_t last_request_id;
55 
57 
59  struct ipc_client_callbacks *proxy_callbacks,
60  const char *node_name, const char *session_id,
61  const char *channel);
62 
63 int lrmd__validate_remote_settings(lrmd_t *lrmd, GHashTable *hash);
64 void remote_proxy_cb(lrmd_t *lrmd, const char *node_name, xmlNode *msg);
67 
68 int remote_proxy_dispatch(const char *buffer, ssize_t length,
69  gpointer userdata);
70 void remote_proxy_disconnected(gpointer data);
71 void remote_proxy_free(gpointer data);
72 
73 void remote_proxy_relay_event(remote_proxy_t *proxy, xmlNode *msg);
74 void remote_proxy_relay_response(remote_proxy_t *proxy, xmlNode *msg,
75  int msg_id);
76 
78 
79 #ifdef HAVE_GNUTLS_GNUTLS_H
80 int lrmd__init_remote_key(gnutls_datum_t *key);
81 #endif
82 
83 #endif
ocf_exitcode
Exit status codes for resource agents.
Definition: results.h:161
char data[0]
Definition: cpg.c:55
int lrmd_send_resource_alert(lrmd_t *lrmd, GList *alert_list, const char *node, lrmd_event_data_t *op)
Definition: lrmd_alerts.c:345
void remote_proxy_disconnected(gpointer data)
Definition: proxy_common.c:148
int lrmd__validate_remote_settings(lrmd_t *lrmd, GHashTable *hash)
Definition: lrmd_client.c:932
uint32_t last_request_id
Definition: lrmd_internal.h:53
struct mainloop_io_s mainloop_io_t
Definition: mainloop.h:33
void remote_proxy_relay_event(remote_proxy_t *proxy, xmlNode *msg)
Definition: proxy_common.c:69
Resource agent executor.
int remote_proxy_dispatch(const char *buffer, ssize_t length, gpointer userdata)
Definition: proxy_common.c:119
Wrappers for and extensions to glib mainloop.
Formatted output for pacemaker tools.
int lrmd_send_node_alert(lrmd_t *lrmd, GList *alert_list, const char *node, uint32_t nodeid, const char *state)
Definition: lrmd_alerts.c:275
op_status
struct crm_ipc_s crm_ipc_t
Definition: ipc.h:163
int lrmd_send_attribute_alert(lrmd_t *lrmd, GList *alert_list, const char *node, uint32_t nodeid, const char *attr_name, const char *attr_value)
Definition: lrmd_alerts.c:237
struct remote_proxy_s remote_proxy_t
int lrmd__new(lrmd_t **api, const char *nodename, const char *server, int port)
Definition: lrmd_client.c:2214
void lrmd__reset_result(lrmd_event_data_t *event)
Definition: lrmd_client.c:2375
void lrmd__register_messages(pcmk__output_t *out)
Definition: lrmd_output.c:144
void remote_proxy_cb(lrmd_t *lrmd, const char *node_name, xmlNode *msg)
Definition: proxy_common.c:206
remote_proxy_t * remote_proxy_new(lrmd_t *lrmd, struct ipc_client_callbacks *proxy_callbacks, const char *node_name, const char *session_id, const char *channel)
Definition: proxy_common.c:166
crm_ipc_t * ipc
Definition: lrmd_internal.h:51
const char * target
Definition: pcmk_fence.c:28
void lrmd__set_result(lrmd_event_data_t *event, enum ocf_exitcode rc, int op_status, const char *exit_reason)
Definition: lrmd_client.c:2356
void remote_proxy_nack_shutdown(lrmd_t *lrmd)
We&#39;re not going to shutdown as response to a remote proxy shutdown request.
Definition: proxy_common.c:60
mainloop_io_t * source
Definition: lrmd_internal.h:52
This structure contains everything that makes up a single output formatter.
void remote_proxy_free(gpointer data)
Definition: proxy_common.c:108
void remote_proxy_relay_response(remote_proxy_t *proxy, xmlNode *msg, int msg_id)
Definition: proxy_common.c:82
int lrmd__remote_send_xml(pcmk__remote_t *session, xmlNode *msg, uint32_t id, const char *msg_type)
Definition: lrmd.h:510
IPC interface to Pacemaker daemons.
void remote_proxy_ack_shutdown(lrmd_t *lrmd)
Send an acknowledgment of a remote proxy shutdown request.
Definition: proxy_common.c:45
int lrmd_send_fencing_alert(lrmd_t *lrmd, GList *alert_list, const char *target, const char *task, const char *desc, int op_rc)
Definition: lrmd_alerts.c:310
gboolean is_local
Definition: lrmd_internal.h:49