forked from open-iscsi/tcmu-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibtcmu_priv.h
79 lines (62 loc) · 1.84 KB
/
libtcmu_priv.h
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
/*
* Copyright 2014, Red Hat, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
/*
* This header defines structures private to libtcmu, and should not
* be used by anyone else.
*/
#ifndef __LIBTCMU_PRIV_H
#define __LIBTCMU_PRIV_H
#include <stdbool.h>
#include <stdint.h>
#include <sys/uio.h>
#include <gio/gio.h>
#include <pthread.h>
#include "scsi_defs.h"
#include "darray.h"
#include "ccan/list/list.h"
#include "tcmur_aio.h"
#include "tcmu-runner.h"
#define KERN_IFACE_VER 2
// The full (private) declaration
struct tcmulib_context {
darray(struct tcmulib_handler) handlers;
/* Just keep ptrs b/c we hand these to clients */
darray(struct tcmu_device*) devices;
struct nl_sock *nl_sock;
GDBusConnection *connection;
};
struct tcmu_device {
int fd;
struct tcmu_mailbox *map;
size_t map_len;
uint32_t cmd_tail;
uint64_t num_lbas;
uint32_t block_size;
uint32_t max_xfer_len;
uint32_t opt_unmap_gran;
uint32_t unmap_gran_align;
unsigned int write_cache_enabled:1;
unsigned int solid_state_media:1;
char dev_name[16]; /* e.g. "uio14" */
char tcm_hba_name[16]; /* e.g. "user_8" */
char tcm_dev_name[128]; /* e.g. "backup2" */
char cfgstring[PATH_MAX];
struct tcmulib_handler *handler;
struct tcmulib_context *ctx;
void *d_private; /* private ptr for the daemon */
void *hm_private; /* private ptr for handler module */
};
#endif