This file is indexed.

/usr/include/pacemaker/crm/cib.h is in libcrmcluster1-dev 1.1.6-2ubuntu3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/* 
 * Copyright (C) 2004 Andrew Beekhof <andrew@beekhof.net>
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 * 
 * This software 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
 * General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
#ifndef CIB__H
#define CIB__H

#include <crm/common/ipc.h>
#include <crm/common/xml.h>

#define CIB_FEATURE_SET "2.0"
#define USE_PESKY_FRAGMENTS 1

/* use compare_version() for doing comparisons */

enum cib_variant {
	cib_undefined,
	cib_native,
	cib_file,
	cib_remote,
	cib_database,
	cib_edir
};

enum cib_state {
	cib_connected_command,
	cib_connected_query,
	cib_disconnected
};

enum cib_conn_type {
	cib_command,
	cib_query,
	cib_no_connection
};

/* *INDENT-OFF* */
enum cib_call_options {
	cib_none            = 0x00000000,
	cib_verbose         = 0x00000001,
	cib_xpath           = 0x00000002,
	cib_multiple        = 0x00000004,
	cib_can_create      = 0x00000008,
	cib_discard_reply   = 0x00000010,
	cib_no_children     = 0x00000020,
	cib_scope_local     = 0x00000100,
	cib_dryrun    	    = 0x00000200,
	cib_sync_call       = 0x00001000,
	cib_inhibit_notify  = 0x00010000,
 	cib_quorum_override = 0x00100000,
	cib_inhibit_bcast   = 0x01000000,
	cib_force_diff	    = 0x10000000
};

#define cib_default_options = cib_none

enum cib_errors {
	cib_ok			=  0,
	cib_operation		= -1,
	cib_create_msg		= -2,
	cib_not_connected	= -3,
	cib_not_authorized	= -4,
	cib_send_failed		= -5,
	cib_reply_failed	= -6,
	cib_return_code		= -7,
	cib_output_ptr		= -8,
	cib_output_data		= -9,
	cib_connection		= -10,
	cib_authentication	= -11,
	cib_missing		= -12,
	cib_variant		= -28,
	CIBRES_MISSING_ID	= -13,
	CIBRES_MISSING_TYPE	= -14,
	CIBRES_MISSING_FIELD	= -15,
	CIBRES_OBJTYPE_MISMATCH	= -16,
	CIBRES_CORRUPT		= -17,	
	CIBRES_OTHER		= -18,
	cib_unknown		= -19,
	cib_STALE		= -20,
	cib_EXISTS		= -21,
	cib_NOTEXISTS		= -22,
	cib_ACTIVATION		= -23,
	cib_NOSECTION		= -24,
	cib_NOOBJECT		= -25,
	cib_NOPARENT		= -26,
	cib_NODECOPY		= -27,
	cib_NOTSUPPORTED	= -29,
	cib_registration_msg	= -30,
	cib_callback_token	= -31,
	cib_callback_register	= -32,
	cib_msg_field_add	= -33,
	cib_client_gone		= -34,
	cib_not_master		= -35,
	cib_client_corrupt	= -36,
	cib_master_timeout	= -37,
	cib_revision_unsupported= -38,
	cib_revision_unknown	= -39,
	cib_missing_data	= -40,
	cib_remote_timeout	= -41,
	cib_no_quorum		= -42,
	cib_diff_failed		= -43,
	cib_diff_resync		= -44,
	cib_old_data		= -45,
	cib_id_check		= -46,
	cib_dtd_validation	= -47,
	cib_bad_section		= -48,
	cib_bad_digest		= -49,
	cib_bad_permissions	= -50,
	cib_bad_config		= -51,
	cib_invalid_argument	= -52,
	cib_transform_failed    = -53,
	cib_permission_denied	= -54,
};
/* *INDENT-ON* */

enum cib_update_op {
	CIB_UPDATE_OP_NONE = 0,
	CIB_UPDATE_OP_ADD,
	CIB_UPDATE_OP_MODIFY,
	CIB_UPDATE_OP_DELETE,
	CIB_UPDATE_OP_MAX
};

enum cib_section {
	cib_section_none,
	cib_section_all,
	cib_section_nodes,
	cib_section_constraints,
	cib_section_resources,
	cib_section_crmconfig,
	cib_section_status
};

#define CIB_OP_SLAVE	"cib_slave"
#define CIB_OP_SLAVEALL	"cib_slave_all"
#define CIB_OP_MASTER	"cib_master"
#define CIB_OP_SYNC	"cib_sync"
#define CIB_OP_SYNC_ONE	"cib_sync_one"
#define CIB_OP_ISMASTER	"cib_ismaster"
#define CIB_OP_BUMP	"cib_bump"
#define CIB_OP_QUERY	"cib_query"
#define CIB_OP_CREATE	"cib_create"
#define CIB_OP_UPDATE	"cib_update"
#define CIB_OP_MODIFY	"cib_modify"
#define CIB_OP_DELETE	"cib_delete"
#define CIB_OP_ERASE	"cib_erase"
#define CIB_OP_REPLACE	"cib_replace"
#define CIB_OP_NOTIFY	"cib_notify"
#define CIB_OP_APPLY_DIFF "cib_apply_diff"
#define CIB_OP_UPGRADE    "cib_upgrade"
#define CIB_OP_DELETE_ALT	"cib_delete_alt"

#define F_CIB_CLIENTID  "cib_clientid"
#define F_CIB_CALLOPTS  "cib_callopt"
#define F_CIB_CALLID    "cib_callid"
#define F_CIB_CALLDATA  "cib_calldata"
#define F_CIB_OPERATION "cib_op"
#define F_CIB_ISREPLY   "cib_isreplyto"
#define F_CIB_SECTION   "cib_section"
#define F_CIB_HOST	"cib_host"
#define F_CIB_RC	"cib_rc"
#define F_CIB_DELEGATED	"cib_delegated_from"
#define F_CIB_OBJID	"cib_object"
#define F_CIB_OBJTYPE	"cib_object_type"
#define F_CIB_EXISTING	"cib_existing_object"
#define F_CIB_SEENCOUNT	"cib_seen"
#define F_CIB_TIMEOUT	"cib_timeout"
#define F_CIB_UPDATE	"cib_update"
#define F_CIB_CALLBACK_TOKEN	"cib_async_id"
#define F_CIB_GLOBAL_UPDATE	"cib_update"
#define F_CIB_UPDATE_RESULT	"cib_update_result"
#define F_CIB_CLIENTNAME	"cib_clientname"
#define F_CIB_NOTIFY_TYPE	"cib_notify_type"
#define F_CIB_NOTIFY_ACTIVATE	"cib_notify_activate"
#define F_CIB_UPDATE_DIFF	"cib_update_diff"
#define F_CIB_USER		"cib_user"

#define T_CIB			"cib"
#define T_CIB_NOTIFY		"cib_notify"
/* notify sub-types */
#define T_CIB_PRE_NOTIFY	"cib_pre_notify"
#define T_CIB_POST_NOTIFY	"cib_post_notify"
#define T_CIB_UPDATE_CONFIRM	"cib_update_confirmation"
#define T_CIB_DIFF_NOTIFY	"cib_diff_notify"
#define T_CIB_REPLACE_NOTIFY	"cib_refresh_notify"

#define cib_channel_ro		"cib_ro"
#define cib_channel_rw		"cib_rw"
#define cib_channel_callback	"cib_callback"
#define cib_channel_ro_synchronous	"cib_ro_syncronous"
#define cib_channel_rw_synchronous	"cib_rw_syncronous"

typedef struct cib_s cib_t;

typedef struct cib_api_operations_s
{
		int (*variant_op)(
			cib_t *cib, const char *op, const char *host,
			const char *section, xmlNode *data,
			xmlNode **output_data, int call_options);
		
		int (*signon) (
			cib_t *cib, const char *name, enum cib_conn_type type);
		int (*signon_raw)(cib_t* cib, const char *name, enum cib_conn_type type, int *async_fd, int *sync_fd);
		int (*signoff)(cib_t *cib);
		int (*free) (cib_t *cib);

		int (*set_op_callback)(
			cib_t *cib, void (*callback)(
				const xmlNode *msg, int callid ,
				int rc, xmlNode *output));

		int (*add_notify_callback)(
			cib_t *cib, const char *event, void (*callback)(
				const char *event, xmlNode *msg));

		int (*del_notify_callback)(
			cib_t *cib, const char *event, void (*callback)(
				const char *event, xmlNode *msg));

		int (*set_connection_dnotify)(
			cib_t *cib, void (*dnotify)(gpointer user_data));
		
		int (*inputfd)(cib_t* cib);

		int (*noop)(cib_t *cib, int call_options);
		int (*ping)(cib_t *cib, xmlNode **output_data, int call_options);

		int (*query)(cib_t *cib, const char *section,
			     xmlNode **output_data, int call_options);
		int (*query_from)(
			cib_t *cib, const char *host, const char *section,
			xmlNode **output_data, int call_options);

		int (*is_master) (cib_t *cib);
		int (*set_master)(cib_t *cib, int call_options);
		int (*set_slave) (cib_t *cib, int call_options);
		int (*set_slave_all)(cib_t *cib, int call_options);
		
		int (*sync)(cib_t *cib, const char *section, int call_options);
		int (*sync_from)(
			cib_t *cib, const char *host, const char *section, int call_options);

		int (*upgrade)(cib_t *cib, int call_options);
		int (*bump_epoch)(cib_t *cib, int call_options);
		
		int (*create)(cib_t *cib, const char *section, xmlNode *data, int call_options);
		int (*modify)(cib_t *cib, const char *section, xmlNode *data, int call_options);
		int (*update)(cib_t *cib, const char *section, xmlNode *data, int call_options);
		int (*replace)(cib_t *cib, const char *section, xmlNode *data, int call_options);
		int (*delete)(cib_t *cib, const char *section, xmlNode *data, int call_options);

		int (*erase)(cib_t *cib, xmlNode **output_data, int call_options);
		int (*delete_absolute)(cib_t *cib, const char *section, xmlNode *data, int call_options);
	
		int (*quit)(cib_t *cib,   int call_options);
		
		int (*register_notification)(
			cib_t* cib, const char *callback, int enabled);

		gboolean (*register_callback)(
		    cib_t *cib, int call_id, int timeout, gboolean only_success, void *user_data,
		    const char *callback_name, void (*callback)(xmlNode*, int, int, xmlNode*,void*));

		int (*delegated_variant_op)(
			cib_t *cib, const char *op, const char *host,
			const char *section, xmlNode *data,
			xmlNode **output_data, int call_options, const char *user_name);
	
} cib_api_operations_t;

struct cib_s
{
		enum cib_state	   state;
		enum cib_conn_type type;
		enum cib_variant   variant;

		int   call_id;
		int   call_timeout;
		void  *variant_opaque;

		GList *notify_list;
		void (*op_callback)(const xmlNode *msg, int call_id,
				    int rc, xmlNode *output);

		cib_api_operations_t *cmds;
};

/* Core functions */
extern cib_t *cib_new(void);
extern cib_t *cib_native_new(void);
extern cib_t *cib_file_new(const char *filename);
extern cib_t *cib_remote_new(const char *server, const char *user, const char *passwd, int port, gboolean encrypted);

extern cib_t *cib_new_no_shadow(void);
extern char *get_shadow_file(const char *name);
extern cib_t *cib_shadow_new(const char *name);

extern void cib_delete(cib_t *cib);

extern void cib_dump_pending_callbacks(void);
extern int num_cib_op_callbacks(void);
extern void remove_cib_op_callback(int call_id, gboolean all_callbacks);

#define add_cib_op_callback(cib, id, flag, data, fn) cib->cmds->register_callback(cib, id, 120, flag, data, #fn, fn)

#include <crm/cib_util.h>
#include <crm/cib_ops.h>

#endif