summaryrefslogtreecommitdiff
path: root/libopeniscsiusr/libopeniscsiusr/libopeniscsiusr.h
blob: a29d5b10cbb9759c17bb519824ab9bc752ee93f4 (plain)
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
/*
 * Copyright (C) 2017 Red Hat, Inc.
 *
 * 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 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Author: Gris Ge <fge@redhat.com>
 */
#ifndef _LIB_OPEN_ISCSI_USR_H_
#define _LIB_OPEN_ISCSI_USR_H_

#ifdef __cplusplus
extern "C" {
#endif

#include <stdint.h>
#include <stdarg.h>
#include <stdbool.h>

#include "libopeniscsiusr_common.h"
#include "libopeniscsiusr_session.h"
#include "libopeniscsiusr_iface.h"
#include "libopeniscsiusr_node.h"

/**
 * iscsi_log_priority_str() - Convert log priority to string.
 *
 * Convert log priority to string (const char *).
 *
 * @priority:
 *	int. Log priority.
 *
 * Return:
 *	const char *. Please don't free returned pointer. Valid string are:
 *
 *	* "ERROR" for LIBISCSI_LOG_PRIORITY_ERROR
 *
 *	* "WARN"  for LIBISCSI_LOG_PRIORITY_WARNING
 *
 *	* "INFO"  for LIBISCSI_LOG_PRIORITY_INFO
 *
 *	* "DEBUG" for LIBISCSI_LOG_PRIORITY_DEBUG
 *
 *	* "Invalid argument" for invalid log priority.
 */
__DLL_EXPORT const char *iscsi_log_priority_str(int priority);

/**
 * iscsi_strerror() - Convert error code to string.
 *
 * Convert error code (int) to string (const char *):
 *
 *	* LIBISCSI_OK -- "OK"
 *
 *	* LIBISCSI_ERR_BUG -- "BUG of libopeniscsiusr library"
 *
 *	* LIBISCSI_ERR_SESS_NOT_FOUND - "Specified iSCSI session not found"
 *
 *	* LIBISCSI_ERR_ACCESS - "Permission deny"
 *
 *	* LIBISCSI_ERR_NOMEM - "Out of memory"
 *
 *	* LIBISCSI_ERR_SYSFS_LOOKUP - "Could not lookup object in sysfs"
 *
 *	* Other invalid error number -- "Invalid argument"
 *
 * @rc:
 *	int. Return code by libiscsiur functions. When provided error code is
 *	not a valid error code, return "Invalid argument".
 *
 * Return:
 *	const char *. The meaning of provided error code. Don't free returned
 *	pointer.
 */
__DLL_EXPORT const char *iscsi_strerror(int rc);

/**
 * iscsi_context_new() - Create struct iscsi_context.
 *
 * The default logging level (LIBISCSI_LOG_PRIORITY_DEFAULT) is
 * LIBISCSI_LOG_PRIORITY_WARNING which means only warning and error message will
 * be forward to log handler function.  The default log handler function will
 * print log message to STDERR, to change so, please use
 * iscsi_context_log_func_set() to set your own log handler, check manpage
 * libopeniscsiusr.h(3) for detail.
 *
 * Return:
 *	Pointer of 'struct iscsi_context'. Should be freed by
 *	iscsi_context_free().
 */
__DLL_EXPORT struct iscsi_context *iscsi_context_new(void);

/**
 * iscsi_context_free() - Release the memory of struct iscsi_context.
 *
 * Release the memory of struct iscsi_context, but the userdata memory defined
 * via iscsi_context_userdata_set() will not be touched.
 *
 * @ctx:
 *	Pointer of 'struct iscsi_context'.
 * Return:
 *	void
 */
__DLL_EXPORT void iscsi_context_free(struct iscsi_context *ctx);

/**
 * iscsi_context_log_priority_set() - Set log priority.
 *
 *
 * When library generates log message, only equal or more important(less value)
 * message will be forwarded to log handler function. Valid log priority values
 * are:
 *
 *	* LIBISCSI_LOG_PRIORITY_ERROR -- 3
 *
 *	* LIBISCSI_LOG_PRIORITY_WARNING -- 4
 *
 *	* LIBISCSI_LOG_PRIORITY_INFO -- 6
 *
 *	* LIBISCSI_LOG_PRIORITY_DEBUG -- 7
 *
 * @ctx:
 *	Pointer of 'struct iscsi_context'.
 *	If this pointer is NULL, your program will be terminated by assert.
 *
 * @priority:
 *	int, log priority.
 *
 * Return:
 *	void
 */
__DLL_EXPORT void iscsi_context_log_priority_set(struct iscsi_context *ctx,
						 int priority);

/**
 * iscsi_context_log_priority_get() - Get log priority.
 *
 * Retrieve current log priority. Valid log priority values are:
 *
 *	* LIBISCSI_LOG_PRIORITY_ERROR -- 3
 *
 *	* LIBISCSI_LOG_PRIORITY_WARNING -- 4
 *
 *	* LIBISCSI_LOG_PRIORITY_INFO -- 5
 *
 *	* LIBISCSI_LOG_PRIORITY_DEBUG -- 7
 *
 * @ctx:
 *	Pointer of 'struct iscsi_context'.
 *	If this pointer is NULL, your program will be terminated by assert.
 *
 * Return:
 *	int, log priority.
 */
__DLL_EXPORT int iscsi_context_log_priority_get(struct iscsi_context *ctx);

/**
 * iscsi_context_log_func_set() - Set log handler function.
 *
 * Set custom log handler. The log handler will be invoked when log message
 * is equal or more important(less value) than log priority setting.
 * Please check manpage libopeniscsiusr.h(3) for detail usage.
 *
 * @ctx:
 *	Pointer of 'struct iscsi_context'.
 *	If this pointer is NULL, your program will be terminated by assert.
 * @log_func:
 *	Pointer of log handler function.
 *
 * Return:
 *	void
 */
__DLL_EXPORT void iscsi_context_log_func_set
	(struct iscsi_context *ctx,
	 void (*log_func) (struct iscsi_context *ctx, int priority,
			   const char *file, int line, const char *func_name,
			   const char *format, va_list args));

/**
 * iscsi_context_userdata_set() - Set user data pointer.
 *
 * Store user data pointer into 'struct iscsi_context'.
 *
 * @ctx:
 *	Pointer of 'struct iscsi_context'.
 *	If this pointer is NULL, your program will be terminated by assert.
 * @userdata:
 *	Pointer of user defined data.
 *
 * Return:
 *	void
 */
__DLL_EXPORT void iscsi_context_userdata_set(struct iscsi_context *ctx,
					     void *userdata);

/**
 * iscsi_context_userdata_get() - Get user data pointer.
 *
 * Retrieve user data pointer from 'struct iscsi_context'.
 *
 * @ctx:
 *	Pointer of 'struct iscsi_context'.
 *	If this pointer is NULL, your program will be terminated by assert.
 *
 * Return:
 *	void *. Pointer of user defined data.
 */
__DLL_EXPORT void *iscsi_context_userdata_get(struct iscsi_context *ctx);

/**
 * iscsi_sessions_get() - Retrieve all iSCSI sessions.
 *
 * Retrieves all iSCSI sessions. For the properties of 'struct iscsi_session',
 * please refer to the functions defined in 'libopeniscsiusr_session.h' file.
 *
 * @ctx:
 *	Pointer of 'struct iscsi_context'.
 *	If this pointer is NULL, your program will be terminated by assert.
 * @ses:
 *	Output pointer of 'struct iscsi_session' pointer array. Its memory
 *	should be freed by iscsi_sessions_free().
 *	If this pointer is NULL, your program will be terminated by assert.
 * @se_count:
 *	Output pointer of uint32_t. Will store the size of
 *	'struct iscsi_session' pointer array.
 *
 * Return:
 *	int. Valid error codes are:
 *
 *	* LIBISCSI_OK
 *
 *	* LIBISCSI_ERR_BUG
 *
 *	* LIBISCSI_ERR_NOMEM
 *
 *	* LIBISCSI_ERR_ACCESS
 *
 *	* LIBISCSI_ERR_SYSFS_LOOKUP
 *
 *	Error number could be converted to string by iscsi_strerror().
 */
__DLL_EXPORT int iscsi_sessions_get(struct iscsi_context *ctx,
				    struct iscsi_session ***ses,
				    uint32_t *se_count);

/**
 * iscsi_sessions_free() - Free the memory of 'struct iscsi_session' pointer
 * array
 *
 * Free the memory of 'iscsi_session' pointer array generated by
 * 'iscsi_sessions_get()'.
 * If provided 'ses' pointer is NULL or 'session_count' is 0, do nothing.
 *
 * @ses:
 *	Pointer of 'struct iscsi_session' pointer array.
 * @session_count:
 *	uint32_t, the size of 'struct iscsi_session' pointer array.
 *
 * Return:
 *	void
 */
__DLL_EXPORT void iscsi_sessions_free(struct iscsi_session **ses,
				      uint32_t session_count);

/**
 * iscsi_session_get() - Retrieve specified iSCSI sessions.
 *
 * Retrieves specified iSCSI sessions. For the properties of
 * 'struct iscsi_session', please refer to the functions defined in
 * 'libopeniscsiusr_session.h' file.
 *
 * @ctx:
 *	Pointer of 'struct iscsi_context'.
 *	If this pointer is NULL, your program will be terminated by assert.
 * @sid:
 *	uint32_t, iSCSI session ID.
 * @se:
 *	Output pointer of 'struct iscsi_session' pointer. Its memory
 *	should be freed by iscsi_session_free().
 *	If this pointer is NULL, your program will be terminated by assert.
 *	If specified iSCSI session does not exist, this pointer will be set to
 *	NULL with LIBISCSI_OK returned.
 *
 * Return:
 *	int. Valid error codes are:
 *
 *	* LIBISCSI_OK
 *
 *	* LIBISCSI_ERR_BUG
 *
 *	* LIBISCSI_ERR_NOMEM
 *
 *	* LIBISCSI_ERR_ACCESS
 *
 *	* LIBISCSI_ERR_SYSFS_LOOKUP
 *
 *	* LIBISCSI_ERR_SESS_NOT_FOUND
 *
 *	Error number could be converted to string by iscsi_strerror().
 */
__DLL_EXPORT int iscsi_session_get(struct iscsi_context *ctx, uint32_t sid,
				   struct iscsi_session **se);

/**
 * iscsi_session_free() - Free the memory of 'struct iscsi_session'.
 *
 * Free the memory of 'iscsi_session' pointer generated by
 * 'iscsi_sessions_get()'.
 * If provided 'se' pointer is NULL, do nothing.
 *
 * @se:
 *	Pointer of 'struct iscsi_session' pointer.
 *
 * Return:
 *	void
 */
__DLL_EXPORT void iscsi_session_free(struct iscsi_session *se);

/**
 * iscsi_default_iface_setup() - Setup default iSCSI interfaces.
 *
 * Setup default iSCSI interfaces for iSCSI TCP, iSER and iSCSI hardware offload
 * cards. It is required after new iSCSI hardware offload card installed.
 *
 * Below kernel modules will be loaded when required by this function:
 *
 *	* cxgb3i
 *	* cxgb4i
 *	* bnx2i
 *
 * It will also create configuration files for iSCSI hardware offload cards in
 * /etc/iscsi/ifaces/<iface_name>.
 *
 * @ctx:
 *	Pointer of 'struct iscsi_context'.
 *
 * Return:
 *	int. Valid error codes are:
 *
 *	* LIBISCSI_OK
 *
 *	* LIBISCSI_ERR_BUG
 *
 *	* LIBISCSI_ERR_NOMEM
 *
 *	* LIBISCSI_ERR_ACCESS
 *
 *	* LIBISCSI_ERR_SYSFS_LOOKUP
 *
 *	* LIBISCSI_ERR_IDBM
 *
 *	Error number could be converted to string by iscsi_strerror().
 */
__DLL_EXPORT int iscsi_default_iface_setup(struct iscsi_context *ctx);

/**
 * iscsi_ifaces_get() - Retrieve all iSCSI interfaces.
 *
 * Retrieves all iSCSI interfaces. For the properties of 'struct iscsi_iface',
 * please refer to the functions defined in 'libopeniscsiusr_iface.h' file.
 * The returned results contains default iSCSI interfaces(iser and iscsi_tcp)
 * and iSCSI interfaces configured in "/etc/iscsi/ifaces/".
 * Illegal configuration file will be skipped and warned.
 * To generate iSCSI interface configuration when new card installed, please
 * use iscsi_default_iface_setup().
 *
 * @ctx:
 *	Pointer of 'struct iscsi_context'.
 *	If this pointer is NULL, your program will be terminated by assert.
 * @ifaces:
 *	Output pointer of 'struct iscsi_iface' pointer array. Its memory
 *	should be freed by iscsi_ifaces_free().
 *	If this pointer is NULL, your program will be terminated by assert.
 * @iface_count:
 *	Output pointer of uint32_t. Will store the size of
 *	'struct iscsi_iface' pointer array.
 *
 * Return:
 *	int. Valid error codes are:
 *
 *	* LIBISCSI_OK
 *
 *	* LIBISCSI_ERR_BUG
 *
 *	* LIBISCSI_ERR_NOMEM
 *
 *	* LIBISCSI_ERR_ACCESS
 *
 *	* LIBISCSI_ERR_SYSFS_LOOKUP
 *
 *	Error number could be converted to string by iscsi_strerror().
 */
__DLL_EXPORT int iscsi_ifaces_get(struct iscsi_context *ctx,
				  struct iscsi_iface ***ifaces,
				  uint32_t *iface_count);

/**
 * iscsi_ifaces_free() - Free the memory of 'struct iscsi_iface' pointer
 * array
 *
 * Free the memory of 'iscsi_iface' pointer array generated by
 * 'iscsi_ifaces_get()'.
 * If provided 'ifaces' pointer is NULL or 'iface_count' is 0, do nothing.
 *
 * @ifaces:
 *	Pointer of 'struct iscsi_iface' pointer array.
 * @iface_count:
 *	uint32_t, the size of 'struct iscsi_iface' pointer array.
 *
 * Return:
 *	void
 */
__DLL_EXPORT void iscsi_ifaces_free(struct iscsi_iface **ifaces,
				    uint32_t iface_count);

/**
 * iscsi_iface_get() - Retrieve specified iSCSI interface.
 *
 * Retrieves specified iSCSI interfaces by reading configuration from
 * "/etc/iscsi/iface/<iface_name>".
 * To generate iSCSI interface configuration when new card installed, please
 * use iscsi_default_iface_setup().
 * Illegal configuration file will be treated as error LIBISCSI_ERR_IDBM.
 * Configuration file not found will be treated as error LIBISCSI_ERR_INVAL.
 *
 * @ctx:
 *	Pointer of 'struct iscsi_context'.
 *	If this pointer is NULL, your program will be terminated by assert.
 * @iface_name:
 *	String. Name of iSCSI interface. Also the file name of configuration
 *	file "/etc/iscsi/iface/<iface_name>".
 *	If this pointer is NULL or empty string, your program will be terminated
 *	by assert.
 * @iface:
 *	Output pointer of 'struct iscsi_iface'. Its memory should be freed by
 *	iscsi_iface_free().
 *	If this pointer is NULL, your program will be terminated by assert.
 *
 * Return:
 *	int. Valid error codes are:
 *
 *	* LIBISCSI_OK
 *
 *	* LIBISCSI_ERR_BUG
 *
 *	* LIBISCSI_ERR_NOMEM
 *
 *	* LIBISCSI_ERR_ACCESS
 *
 *	* LIBISCSI_ERR_SYSFS_LOOKUP
 *
 *	* LIBISCSI_ERR_IDBM
 *
 *	Error number could be converted to string by iscsi_strerror().
 */
__DLL_EXPORT int iscsi_iface_get(struct iscsi_context *ctx,
				 const char *iface_name,
				 struct iscsi_iface **iface);

/**
 * iscsi_iface_free() - Free the memory of 'struct iscsi_iface' pointer.
 *
 * Free the memory of 'iscsi_iface' pointer generated by 'iscsi_iface_get()'.
 * If provided 'iface' pointer is NULL, do nothing.
 *
 * @iface:
 *	Pointer of 'struct iscsi_iface' pointer.
 *
 * Return:
 *	void
 */
__DLL_EXPORT void iscsi_iface_free(struct iscsi_iface *iface);

/**
 * iscsi_nodes_get() - Retrieve all iSCSI nodes.
 *
 * Retrieves all iSCSI nodes. For the properties of 'struct iscsi_node',
 * please refer to the functions defined in 'libopeniscsiusr_node.h' file.
 * The returned results contains iSCSI nodes configured in "/etc/iscsi/nodes/".
 * Illegal configuration file will be skipped and warned.
 * The returned 'struct iscsi_node' pointer array is sorted by target name,
 * connection address, connection port and interface.
 *
 * @ctx:
 *	Pointer of 'struct iscsi_context'.
 *	If this pointer is NULL, your program will be terminated by assert.
 * @nodes:
 *	Output pointer of 'struct iscsi_node' pointer array. Its memory
 *	should be freed by iscsi_nodes_free().
 *	If this pointer is NULL, your program will be terminated by assert.
 * @node_count:
 *	Output pointer of uint32_t. Will store the size of
 *	'struct iscsi_node' pointer array.
 *
 * Return:
 *	int. Valid error codes are:
 *
 *	* LIBISCSI_OK
 *
 *	* LIBISCSI_ERR_BUG
 *
 *	* LIBISCSI_ERR_NOMEM
 *
 *	* LIBISCSI_ERR_ACCESS
 *
 *	* LIBISCSI_ERR_SYSFS_LOOKUP
 *
 *	* LIBISCSI_ERR_IDBM
 *
 *	Error number could be converted to string by iscsi_strerror().
 */
__DLL_EXPORT int iscsi_nodes_get(struct iscsi_context *ctx,
				 struct iscsi_node ***nodes,
				 uint32_t *node_count);

/**
 * iscsi_nodes_free() - Free the memory of 'struct iscsi_node' pointer
 * array
 *
 * Free the memory of 'iscsi_node' pointer array generated by
 * 'iscsi_nodes_get()'.
 * If provided 'nodes' pointer is NULL or 'node_count' is 0, do nothing.
 *
 * @nodes:
 *	Pointer of 'struct iscsi_node' pointer array.
 * @node_count:
 *	uint32_t, the size of 'struct iscsi_node' pointer array.
 *
 * Return:
 *	void
 */
__DLL_EXPORT void iscsi_nodes_free(struct iscsi_node **nodes,
				   uint32_t node_count);

#ifdef __cplusplus
} /* End of extern "C" */
#endif

#endif /* End of _LIB_OPEN_ISCSI_USR_H_ */