forked from open-iscsi/tcmu-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tcmu-runner.h
82 lines (68 loc) · 2.27 KB
/
tcmu-runner.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
80
81
82
/*
* 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 the interface between tcmu-runner and its loadable
* subtype handlers.
*/
#ifndef __TCMU_RUNNER_H
#define __TCMU_RUNNER_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdbool.h>
#include <stdint.h>
#include <sys/uio.h>
#include "scsi_defs.h"
struct tcmu_device {
int fd;
void *map;
size_t map_len;
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[256];
struct tcmu_handler *handler;
void *hm_private; /* private ptr for handler module */
};
struct tcmu_handler {
const char *name; /* Human-friendly name */
const char *subtype; /* Name for cfgstring matching */
/* Per-device added/removed callbacks */
int (*open)(struct tcmu_device *dev);
void (*close)(struct tcmu_device *dev);
#define TCMU_NOT_HANDLED -1
/*
* Returns SCSI status if handled (either good/bad), or TCMU_NOT_HANDLED
* if opcode is not handled.
*/
int (*handle_cmd)(struct tcmu_device *dev, uint8_t *cdb,
struct iovec *iovec, size_t iov_cnt, uint8_t *sense);
};
void handler_init(void);
/* handler->core API */
void tcmu_register_handler(struct tcmu_handler *handler);
int tcmu_get_attribute(struct tcmu_device *dev, const char *name);
long long tcmu_get_device_size(struct tcmu_device *dev);
uint64_t tcmu_get_lba(uint8_t *cdb);
uint32_t tcmu_get_xfer_length(uint8_t *cdb);
off_t tcmu_compare_with_iovec(void *mem, struct iovec *iovec, size_t size);
void tcmu_seek_in_iovec(struct iovec *iovec, size_t count);
size_t tcmu_iovec_length(struct iovec *iovec, size_t iov_cnt);
void tcmu_set_sense_data(uint8_t *sense_buf, uint8_t key, uint16_t asc_ascq, uint32_t *info);
#ifdef __cplusplus
}
#endif
#endif