pacemaker  2.1.5-b7adf64e51
Scalable High-Availability cluster resource manager
lrmd.h
Go to the documentation of this file.
1 /*
2  * Copyright 2012-2022 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 PCMK__CRM_LRMD__H
11 # define PCMK__CRM_LRMD__H
12 
13 #include <stdbool.h> // bool
14 #include <glib.h> // guint, GList
15 #include <crm_config.h>
16 #include <crm/services.h>
17 
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21 
28 typedef struct lrmd_s lrmd_t;
29 typedef struct lrmd_key_value_s {
30  char *key;
31  char *value;
34 
35 /* This should be bumped every time there is an incompatible change that
36  * prevents older clients from connecting to this version of the server.
37  */
38 #define LRMD_PROTOCOL_VERSION "1.1"
39 
40 /* This is the version that the client version will actually be compared
41  * against. This should be identical to LRMD_PROTOCOL_VERSION. However, we
42  * accidentally bumped LRMD_PROTOCOL_VERSION in 6424a647 (1.1.15) when we didn't
43  * need to, so for now it's different. If we ever have a truly incompatible
44  * bump, we can drop this and compare against LRMD_PROTOCOL_VERSION.
45  */
46 #define LRMD_MIN_PROTOCOL_VERSION "1.0"
47 
48 /* *INDENT-OFF* */
49 #define DEFAULT_REMOTE_KEY_LOCATION PACEMAKER_CONFIG_DIR "/authkey"
50 #define ALT_REMOTE_KEY_LOCATION "/etc/corosync/authkey"
51 #define DEFAULT_REMOTE_PORT 3121
52 #define DEFAULT_REMOTE_USERNAME "lrmd"
53 
54 #define F_LRMD_OPERATION "lrmd_op"
55 #define F_LRMD_CLIENTNAME "lrmd_clientname"
56 #define F_LRMD_IS_IPC_PROVIDER "lrmd_is_ipc_provider"
57 #define F_LRMD_CLIENTID "lrmd_clientid"
58 #define F_LRMD_PROTOCOL_VERSION "lrmd_protocol_version"
59 #define F_LRMD_REMOTE_MSG_TYPE "lrmd_remote_msg_type"
60 #define F_LRMD_REMOTE_MSG_ID "lrmd_remote_msg_id"
61 #define F_LRMD_CALLBACK_TOKEN "lrmd_async_id"
62 #define F_LRMD_CALLID "lrmd_callid"
63 #define F_LRMD_CALLOPTS "lrmd_callopt"
64 #define F_LRMD_CALLDATA "lrmd_calldata"
65 #define F_LRMD_RC "lrmd_rc"
66 #define F_LRMD_EXEC_RC "lrmd_exec_rc"
67 #define F_LRMD_OP_STATUS "lrmd_exec_op_status"
68 #define F_LRMD_TIMEOUT "lrmd_timeout"
69 #define F_LRMD_WATCHDOG "lrmd_watchdog"
70 #define F_LRMD_CLASS "lrmd_class"
71 #define F_LRMD_PROVIDER "lrmd_provider"
72 #define F_LRMD_TYPE "lrmd_type"
73 #define F_LRMD_ORIGIN "lrmd_origin"
74 
75 #define F_LRMD_RSC_RUN_TIME "lrmd_run_time"
76 #define F_LRMD_RSC_RCCHANGE_TIME "lrmd_rcchange_time"
77 #define F_LRMD_RSC_EXEC_TIME "lrmd_exec_time"
78 #define F_LRMD_RSC_QUEUE_TIME "lrmd_queue_time"
79 
80 #define F_LRMD_RSC_ID "lrmd_rsc_id"
81 #define F_LRMD_RSC_ACTION "lrmd_rsc_action"
82 #define F_LRMD_RSC_USERDATA_STR "lrmd_rsc_userdata_str"
83 #define F_LRMD_RSC_OUTPUT "lrmd_rsc_output"
84 #define F_LRMD_RSC_EXIT_REASON "lrmd_rsc_exit_reason"
85 #define F_LRMD_RSC_START_DELAY "lrmd_rsc_start_delay"
86 #define F_LRMD_RSC_INTERVAL "lrmd_rsc_interval"
87 #define F_LRMD_RSC_DELETED "lrmd_rsc_deleted"
88 #define F_LRMD_RSC "lrmd_rsc"
89 
90 #define F_LRMD_ALERT_ID "lrmd_alert_id"
91 #define F_LRMD_ALERT_PATH "lrmd_alert_path"
92 #define F_LRMD_ALERT "lrmd_alert"
93 
94 #define LRMD_OP_RSC_REG "lrmd_rsc_register"
95 #define LRMD_OP_RSC_EXEC "lrmd_rsc_exec"
96 #define LRMD_OP_RSC_CANCEL "lrmd_rsc_cancel"
97 #define LRMD_OP_RSC_UNREG "lrmd_rsc_unregister"
98 #define LRMD_OP_RSC_INFO "lrmd_rsc_info"
99 #define LRMD_OP_RSC_METADATA "lrmd_rsc_metadata"
100 #define LRMD_OP_POKE "lrmd_rsc_poke"
101 #define LRMD_OP_NEW_CLIENT "lrmd_rsc_new_client"
102 #define LRMD_OP_CHECK "lrmd_check"
103 #define LRMD_OP_ALERT_EXEC "lrmd_alert_exec"
104 #define LRMD_OP_GET_RECURRING "lrmd_get_recurring"
105 
106 #define LRMD_IPC_OP_NEW "new"
107 #define LRMD_IPC_OP_DESTROY "destroy"
108 #define LRMD_IPC_OP_EVENT "event"
109 #define LRMD_IPC_OP_REQUEST "request"
110 #define LRMD_IPC_OP_RESPONSE "response"
111 #define LRMD_IPC_OP_SHUTDOWN_REQ "shutdown_req"
112 #define LRMD_IPC_OP_SHUTDOWN_ACK "shutdown_ack"
113 #define LRMD_IPC_OP_SHUTDOWN_NACK "shutdown_nack"
114 
115 #define F_LRMD_IPC_OP "lrmd_ipc_op"
116 #define F_LRMD_IPC_IPC_SERVER "lrmd_ipc_server"
117 #define F_LRMD_IPC_SESSION "lrmd_ipc_session"
118 #define F_LRMD_IPC_CLIENT "lrmd_ipc_client"
119 #define F_LRMD_IPC_USER "lrmd_ipc_user"
120 #define F_LRMD_IPC_MSG "lrmd_ipc_msg"
121 #define F_LRMD_IPC_MSG_ID "lrmd_ipc_msg_id"
122 #define F_LRMD_IPC_MSG_FLAGS "lrmd_ipc_msg_flags"
123 
124 #define T_LRMD "lrmd"
125 #define T_LRMD_REPLY "lrmd_reply"
126 #define T_LRMD_NOTIFY "lrmd_notify"
127 #define T_LRMD_IPC_PROXY "lrmd_ipc_proxy"
128 #define T_LRMD_RSC_OP "lrmd_rsc_op"
129 /* *INDENT-ON* */
130 
134 lrmd_t *lrmd_api_new(void);
135 
148 lrmd_t *lrmd_remote_api_new(const char *nodename, const char *server, int port);
149 
157 bool lrmd_dispatch(lrmd_t *lrmd);
158 
171 int lrmd_poll(lrmd_t *lrmd, int timeout);
172 
178 void lrmd_api_delete(lrmd_t *lrmd);
179 
180 lrmd_key_value_t *lrmd_key_value_add(lrmd_key_value_t * kvp, const char *key, const char *value);
181 
184 
187 
201 
204 };
205 
214 };
215 
216 typedef struct lrmd_event_data_s {
219 
221  const char *rsc_id;
223  const char *op_type;
225  const char *user_data;
226 
228  int call_id;
230  int timeout;
232  guint interval_ms;
237 
243  const char *output;
245  unsigned int t_run;
247  unsigned int t_rcchange;
249  unsigned int exec_time;
251  unsigned int queue_time;
252 
255 
256  /* This is a GHashTable containing the
257  * parameters given to the operation */
258  void *params;
259 
263  const char *remote_nodename;
264 
266  const char *exit_reason;
268 
269 lrmd_event_data_t *lrmd_new_event(const char *rsc_id, const char *task,
270  guint interval_ms);
272 void lrmd_free_event(lrmd_event_data_t * event);
273 
274 typedef struct lrmd_rsc_info_s {
275  char *id;
276  char *type;
277  char *standard;
278  char *provider;
280 
281 typedef struct lrmd_op_info_s {
282  char *rsc_id;
283  char *action;
287 
288 lrmd_rsc_info_t *lrmd_new_rsc_info(const char *rsc_id, const char *standard,
289  const char *provider, const char *type);
291 void lrmd_free_rsc_info(lrmd_rsc_info_t * rsc_info);
292 void lrmd_free_op_info(lrmd_op_info_t *op_info);
293 
294 typedef void (*lrmd_event_callback) (lrmd_event_data_t * event);
295 
296 typedef struct lrmd_list_s {
297  const char *val;
298  struct lrmd_list_s *next;
299 } lrmd_list_t;
300 
301 void lrmd_list_freeall(lrmd_list_t * head);
303 
304 typedef struct lrmd_api_operations_s {
315  int (*connect) (lrmd_t *lrmd, const char *client_name, int *fd);
316 
329  int (*connect_async) (lrmd_t *lrmd, const char *client_name,
330  int timeout /*ms */ );
331 
339  int (*is_connected) (lrmd_t *lrmd);
340 
351  int (*poke_connection) (lrmd_t *lrmd);
352 
360  int (*disconnect) (lrmd_t *lrmd);
361 
376  int (*register_rsc) (lrmd_t *lrmd, const char *rsc_id, const char *standard,
377  const char *provider, const char *agent,
378  enum lrmd_call_options options);
379 
389  lrmd_rsc_info_t *(*get_rsc_info) (lrmd_t *lrmd, const char *rsc_id,
390  enum lrmd_call_options options);
391 
403  int (*get_recurring_ops) (lrmd_t *lrmd, const char *rsc_id, int timeout_ms,
404  enum lrmd_call_options options, GList **output);
405 
420  int (*unregister_rsc) (lrmd_t *lrmd, const char *rsc_id,
421  enum lrmd_call_options options);
422 
429  void (*set_callback) (lrmd_t *lrmd, lrmd_event_callback callback);
430 
456  int (*exec) (lrmd_t *lrmd, const char *rsc_id, const char *action,
457  const char *userdata, guint interval_ms, int timeout,
458  int start_delay, enum lrmd_call_options options,
459  lrmd_key_value_t *params);
460 
479  int (*cancel) (lrmd_t *lrmd, const char *rsc_id, const char *action,
480  guint interval_ms);
481 
503  int (*get_metadata) (lrmd_t *lrmd, const char *standard,
504  const char *provider, const char *agent,
505  char **output, enum lrmd_call_options options);
506 
521  int (*list_agents) (lrmd_t *lrmd, lrmd_list_t **agents,
522  const char *standard, const char *provider);
523 
536  int (*list_ocf_providers) (lrmd_t *lrmd, const char *agent,
537  lrmd_list_t **providers);
538 
550  int (*list_standards) (lrmd_t *lrmd, lrmd_list_t **standards);
551 
570  int (*exec_alert) (lrmd_t *lrmd, const char *alert_id,
571  const char *alert_path, int timeout,
572  lrmd_key_value_t *params);
573 
590  int (*get_metadata_params) (lrmd_t *lrmd, const char *standard,
591  const char *provider, const char *agent,
592  char **output, enum lrmd_call_options options,
593  lrmd_key_value_t *params);
594 
596 
597 struct lrmd_s {
600 };
601 
602 static inline const char *
603 lrmd_event_type2str(enum lrmd_callback_event type)
604 {
605  switch (type) {
606  case lrmd_event_register:
607  return "register";
609  return "unregister";
611  return "exec_complete";
613  return "disconnect";
614  case lrmd_event_connect:
615  return "connect";
616  case lrmd_event_poke:
617  return "poke";
619  return "new_client";
620  }
621  return "unknown";
622 }
623 
624 #ifdef __cplusplus
625 }
626 #endif
627 
628 #endif
Services API.
char * rsc_id
Definition: lrmd.h:282
struct lrmd_rsc_info_s lrmd_rsc_info_t
ocf_exitcode
Exit status codes for resource agents.
Definition: results.h:163
lrmd_call_options
Definition: lrmd.h:182
int(* get_recurring_ops)(lrmd_t *lrmd, const char *rsc_id, int timeout_ms, enum lrmd_call_options options, GList **output)
Retrieve recurring operations registered for a resource.
Definition: lrmd.h:403
lrmd_callback_event
Definition: lrmd.h:206
const char * user_data
Definition: lrmd.h:225
const char * rsc_id
Definition: lrmd.h:221
int(* connect_async)(lrmd_t *lrmd, const char *client_name, int timeout)
Initiate an executor connection without blocking.
Definition: lrmd.h:329
unsigned int queue_time
Definition: lrmd.h:251
void(* lrmd_event_callback)(lrmd_event_data_t *event)
Definition: lrmd.h:294
void lrmd_free_op_info(lrmd_op_info_t *op_info)
Definition: lrmd_client.c:1793
char * id
Definition: lrmd.h:275
void lrmd_list_freeall(lrmd_list_t *head)
Definition: lrmd_client.c:131
void lrmd_free_event(lrmd_event_data_t *event)
Free an executor event.
Definition: lrmd_client.c:243
unsigned int t_rcchange
Definition: lrmd.h:247
const char * output
Definition: lrmd.h:243
struct lrmd_event_data_s lrmd_event_data_t
enum crm_ais_msg_types type
Definition: cpg.c:48
enum ocf_exitcode rc
Definition: lrmd.h:239
int(* cancel)(lrmd_t *lrmd, const char *rsc_id, const char *action, guint interval_ms)
Cancel a recurring resource action.
Definition: lrmd.h:479
lrmd_t * lrmd_remote_api_new(const char *nodename, const char *server, int port)
Create a new TLS connection to a remote executor.
Definition: lrmd_client.c:2311
Send notifications for recurring operations only when the result changes.
Definition: lrmd.h:203
int connection_rc
Definition: lrmd.h:254
const char * action
Definition: pcmk_fence.c:30
const char * val
Definition: lrmd.h:297
struct lrmd_api_operations_s lrmd_api_operations_t
unsigned int exec_time
Definition: lrmd.h:249
int(* exec)(lrmd_t *lrmd, const char *rsc_id, const char *action, const char *userdata, guint interval_ms, int timeout, int start_delay, enum lrmd_call_options options, lrmd_key_value_t *params)
Request execution of a resource action.
Definition: lrmd.h:456
char * interval_ms_s
Definition: lrmd.h:284
void * params
Definition: lrmd.h:258
lrmd_rsc_info_t * lrmd_new_rsc_info(const char *rsc_id, const char *standard, const char *provider, const char *type)
Definition: lrmd_client.c:1722
lrmd_rsc_info_t * lrmd_copy_rsc_info(lrmd_rsc_info_t *rsc_info)
Definition: lrmd_client.c:1736
int(* exec_alert)(lrmd_t *lrmd, const char *alert_id, const char *alert_path, int timeout, lrmd_key_value_t *params)
Execute an alert agent.
Definition: lrmd.h:570
int(* poke_connection)(lrmd_t *lrmd)
Poke executor connection to verify it is still active.
Definition: lrmd.h:351
const char * exit_reason
Definition: lrmd.h:266
char * key
Definition: lrmd.h:30
struct lrmd_list_s * next
Definition: lrmd.h:298
int(* connect)(lrmd_t *lrmd, const char *client_name, int *fd)
Connect to an executor.
Definition: lrmd.h:315
int rsc_deleted
Definition: lrmd.h:236
lrmd_t * lrmd_api_new(void)
Create a new connection to the local executor.
Definition: lrmd_client.c:2302
bool lrmd_dispatch(lrmd_t *lrmd)
Use after lrmd_poll returns 1 to read and dispatch a message.
Definition: lrmd_client.c:481
lrmd_key_value_t * lrmd_key_value_add(lrmd_key_value_t *kvp, const char *key, const char *value)
Definition: lrmd_client.c:146
int(* get_metadata_params)(lrmd_t *lrmd, const char *standard, const char *provider, const char *agent, char **output, enum lrmd_call_options options, lrmd_key_value_t *params)
Retrieve resource agent metadata synchronously with parameters.
Definition: lrmd.h:590
Notify only the client that made the request (rather than all clients)
Definition: lrmd.h:186
struct lrmd_key_value_s * next
Definition: lrmd.h:32
int(* list_agents)(lrmd_t *lrmd, lrmd_list_t **agents, const char *standard, const char *provider)
Retrieve a list of installed resource agents.
Definition: lrmd.h:521
int start_delay
Definition: lrmd.h:234
int(* unregister_rsc)(lrmd_t *lrmd, const char *rsc_id, enum lrmd_call_options options)
Unregister a resource from the executor.
Definition: lrmd.h:420
int(* disconnect)(lrmd_t *lrmd)
Disconnect from the executor.
Definition: lrmd.h:360
const char * op_type
Definition: lrmd.h:223
char * action
Definition: lrmd.h:283
unsigned int t_run
Definition: lrmd.h:245
void lrmd_key_value_freeall(lrmd_key_value_t *head)
Definition: lrmd_client.c:169
void * lrmd_private
Definition: lrmd.h:599
lrmd_event_data_t * lrmd_new_event(const char *rsc_id, const char *task, guint interval_ms)
Definition: lrmd_client.c:195
char * type
Definition: lrmd.h:276
struct lrmd_key_value_s lrmd_key_value_t
const char * remote_nodename
Definition: lrmd.h:263
lrmd_api_operations_t * cmds
Definition: lrmd.h:598
enum lrmd_callback_event type
Definition: lrmd.h:218
int(* list_standards)(lrmd_t *lrmd, lrmd_list_t **standards)
Retrieve a list of supported standards.
Definition: lrmd.h:550
char * standard
Definition: lrmd.h:277
lrmd_event_data_t * lrmd_copy_event(lrmd_event_data_t *event)
Definition: lrmd_client.c:207
char * provider
Definition: lrmd.h:278
Definition: lrmd.h:597
int lrmd_poll(lrmd_t *lrmd, int timeout)
Check whether a message is available on an executor connection.
Definition: lrmd_client.c:447
int(* list_ocf_providers)(lrmd_t *lrmd, const char *agent, lrmd_list_t **providers)
Retrieve a list of resource agent providers.
Definition: lrmd.h:536
struct lrmd_list_s lrmd_list_t
int(* register_rsc)(lrmd_t *lrmd, const char *rsc_id, const char *standard, const char *provider, const char *agent, enum lrmd_call_options options)
Register a resource with the executor.
Definition: lrmd.h:376
void lrmd_free_rsc_info(lrmd_rsc_info_t *rsc_info)
Definition: lrmd_client.c:1743
struct lrmd_op_info_s lrmd_op_info_t
void lrmd_api_delete(lrmd_t *lrmd)
Destroy executor connection object.
Definition: lrmd_client.c:2320
char * timeout_ms_s
Definition: lrmd.h:285
unsigned int timeout
Definition: pcmk_fence.c:32
char * value
Definition: lrmd.h:31
int(* is_connected)(lrmd_t *lrmd)
Check whether connection to executor daemon is (still) active.
Definition: lrmd.h:339
int(* get_metadata)(lrmd_t *lrmd, const char *standard, const char *provider, const char *agent, char **output, enum lrmd_call_options options)
Retrieve resource agent metadata synchronously.
Definition: lrmd.h:503
void(* set_callback)(lrmd_t *lrmd, lrmd_event_callback callback)
Set a callback for executor events.
Definition: lrmd.h:429
guint interval_ms
Definition: lrmd.h:232