blob: cf2e714b8790930d03bf4c554fd7f7c58c4096db (
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
|
#ifndef SESSION_INFO_H
#define SESSION_INFO_H
#include <sys/types.h>
#include <libopeniscsiusr/libopeniscsiusr.h>
#include "sysfs.h"
#include "types.h"
#include "iscsi_proto.h"
#include "config.h"
struct list;
struct session_timeout {
int abort_tmo;
int lu_reset_tmo;
int recovery_tmo;
int tgt_reset_tmo;
};
struct session_CHAP {
char username[AUTH_STR_MAX_LEN];
char password[AUTH_STR_MAX_LEN];
char username_in[AUTH_STR_MAX_LEN];
char password_in[AUTH_STR_MAX_LEN];
};
struct session_info {
struct list_head list;
/* local info */
struct iface_rec iface;
int sid;
int iscsid_req_tmo;
struct session_timeout tmo;
struct session_CHAP chap;
/* remote info */
char targetname[TARGET_NAME_MAXLEN + 1];
int tpgt;
char address[NI_MAXHOST + 1];
int port;
char persistent_address[NI_MAXHOST + 1];
int persistent_port;
};
typedef int (session_match_info_fn_t)(void *data, struct session_info *info);
struct session_link_info {
struct list_head *list;
session_match_info_fn_t *match_fn;
void *data;
};
#define SESSION_INFO_IFACE 0x1
#define SESSION_INFO_ISCSI_PARAMS 0x2
#define SESSION_INFO_ISCSI_STATE 0x4
#define SESSION_INFO_SCSI_DEVS 0x8
#define SESSION_INFO_HOST_DEVS 0x10
#define SESSION_INFO_ISCSI_TIM 0x20
#define SESSION_INFO_ISCSI_AUTH 0x40
extern int session_info_create_list(void *data, struct session_info *info);
extern void session_info_free_list(struct list_head *list);
extern int session_info_print(int info_level, struct iscsi_session **ses,
uint32_t se_count, int do_show);
extern void session_info_print_tree(struct iscsi_session **ses,
uint32_t se_count, char *prefix,
unsigned int flags, int do_show);
#endif
|