1
2
3
4
5
6
7
8
9
10 #ifndef PACEMAKER_ATTRD__H
11 # define PACEMAKER_ATTRD__H
12
13 #include <regex.h>
14 #include <glib.h>
15 #include <crm/crm.h>
16 #include <crm/cluster.h>
17 #include <crm/cluster/election_internal.h>
18 #include <crm/common/messages_internal.h>
19 #include <crm/cib/internal.h>
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 #define ATTRD_PROTOCOL_VERSION "5"
47
48 #define ATTRD_SUPPORTS_MULTI_MESSAGE(x) ((x) >= 4)
49 #define ATTRD_SUPPORTS_CONFIRMATION(x) ((x) >= 5)
50
51 #define attrd_send_ack(client, id, flags) \
52 pcmk__ipc_send_ack((client), (id), (flags), "ack", ATTRD_PROTOCOL_VERSION, CRM_EX_INDETERMINATE)
53
54 void attrd_init_mainloop(void);
55 void attrd_run_mainloop(void);
56
57 void attrd_set_requesting_shutdown(void);
58 void attrd_clear_requesting_shutdown(void);
59 void attrd_free_waitlist(void);
60 bool attrd_shutting_down(bool if_requested);
61 void attrd_shutdown(int nsig);
62 void attrd_init_ipc(void);
63 void attrd_ipc_fini(void);
64
65 int attrd_cib_connect(int max_retry);
66 void attrd_cib_disconnect(void);
67 void attrd_cib_init(void);
68
69 bool attrd_value_needs_expansion(const char *value);
70 int attrd_expand_value(const char *value, const char *old_value);
71
72
73 #define ATTRD_RE_CLEAR_ALL \
74 "^(" PCMK__FAIL_COUNT_PREFIX "|" PCMK__LAST_FAILURE_PREFIX ")-"
75
76
77
78
79
80
81
82 #define ATTRD_RE_CLEAR_ONE ATTRD_RE_CLEAR_ALL "%s(#.+_[0-9]+)?$"
83
84
85
86
87
88
89
90 #define ATTRD_RE_CLEAR_OP ATTRD_RE_CLEAR_ALL "%s(#%s_%u)?$"
91
92 int attrd_failure_regex(regex_t *regex, const char *rsc, const char *op,
93 guint interval_ms);
94
95 extern cib_t *the_cib;
96 extern crm_exit_t attrd_exit_status;
97
98
99
100 extern lrmd_t *the_lrmd;
101 extern crm_trigger_t *attrd_config_read;
102
103 void attrd_lrmd_disconnect(void);
104 gboolean attrd_read_options(gpointer user_data);
105 int attrd_send_attribute_alert(const char *node, int nodeid,
106 const char *attr, const char *value);
107
108
109 void attrd_election_init(void);
110 void attrd_election_fini(void);
111 void attrd_start_election_if_needed(void);
112 bool attrd_election_won(void);
113 void attrd_handle_election_op(const crm_node_t *peer, xmlNode *xml);
114 bool attrd_check_for_new_writer(const crm_node_t *peer, const xmlNode *xml);
115 void attrd_declare_winner(void);
116 void attrd_remove_voter(const crm_node_t *peer);
117 void attrd_xml_add_writer(xmlNode *xml);
118
119 typedef struct attribute_s {
120 char *uuid;
121 char *id;
122 char *set_id;
123 char *set_type;
124 GHashTable *values;
125 int update;
126 int timeout_ms;
127
128
129 bool changed;
130 bool unknown_peer_uuids;
131 gboolean is_private;
132
133 mainloop_timer_t *timer;
134
135 char *user;
136
137 gboolean force_write;
138
139 } attribute_t;
140
141 typedef struct attribute_value_s {
142 uint32_t nodeid;
143 gboolean is_remote;
144 char *nodename;
145 char *current;
146 char *requested;
147 gboolean seen;
148 } attribute_value_t;
149
150 extern crm_cluster_t *attrd_cluster;
151 extern GHashTable *attributes;
152 extern GHashTable *peer_protocol_vers;
153
154 #define CIB_OP_TIMEOUT_S 120
155
156 int attrd_cluster_connect(void);
157 void attrd_peer_update(const crm_node_t *peer, xmlNode *xml, const char *host,
158 bool filter);
159 void attrd_peer_sync(crm_node_t *peer, xmlNode *xml);
160 void attrd_peer_remove(const char *host, bool uncache, const char *source);
161 void attrd_peer_clear_failure(pcmk__request_t *request);
162 void attrd_peer_sync_response(const crm_node_t *peer, bool peer_won,
163 xmlNode *xml);
164
165 void attrd_broadcast_protocol(void);
166 xmlNode *attrd_client_peer_remove(pcmk__request_t *request);
167 xmlNode *attrd_client_clear_failure(pcmk__request_t *request);
168 xmlNode *attrd_client_update(pcmk__request_t *request);
169 xmlNode *attrd_client_refresh(pcmk__request_t *request);
170 xmlNode *attrd_client_query(pcmk__request_t *request);
171 gboolean attrd_send_message(crm_node_t *node, xmlNode *data, bool confirm);
172
173 xmlNode *attrd_add_value_xml(xmlNode *parent, const attribute_t *a,
174 const attribute_value_t *v, bool force_write);
175 void attrd_clear_value_seen(void);
176 void attrd_free_attribute(gpointer data);
177 void attrd_free_attribute_value(gpointer data);
178 attribute_t *attrd_populate_attribute(xmlNode *xml, const char *attr);
179
180 enum attrd_write_options {
181 attrd_write_changed = 0,
182 attrd_write_all = (1 << 0),
183 attrd_write_no_delay = (1 << 1),
184 };
185
186 void attrd_write_attributes(uint32_t options);
187 void attrd_write_or_elect_attribute(attribute_t *a);
188
189 extern int minimum_protocol_version;
190 void attrd_remove_peer_protocol_ver(const char *host);
191 void attrd_update_minimum_protocol_ver(const char *host, const char *value);
192
193 mainloop_timer_t *attrd_add_timer(const char *id, int timeout_ms, attribute_t *attr);
194
195 void attrd_unregister_handlers(void);
196 void attrd_handle_request(pcmk__request_t *request);
197
198 enum attrd_sync_point {
199 attrd_sync_point_local,
200 attrd_sync_point_cluster,
201 };
202
203 typedef int (*attrd_confirmation_action_fn)(xmlNode *);
204
205 void attrd_add_client_to_waitlist(pcmk__request_t *request);
206 void attrd_ack_waitlist_clients(enum attrd_sync_point sync_point, const xmlNode *xml);
207 int attrd_cluster_sync_point_update(xmlNode *xml);
208 void attrd_do_not_expect_from_peer(const char *host);
209 void attrd_do_not_wait_for_client(pcmk__client_t *client);
210 void attrd_expect_confirmations(pcmk__request_t *request, attrd_confirmation_action_fn fn);
211 void attrd_free_confirmations(void);
212 void attrd_handle_confirmation(int callid, const char *host);
213 void attrd_remove_client_from_waitlist(pcmk__client_t *client);
214 const char *attrd_request_sync_point(xmlNode *xml);
215 bool attrd_request_has_sync_point(xmlNode *xml);
216
217 void attrd_copy_xml_attributes(xmlNode *src, xmlNode *dest);
218
219 extern gboolean stand_alone;
220
221 #endif