/usr/include/blktap/tapdisk-message.h is in blktap-dev 2.0.90-1.
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 | /* Copyright (c) 2008, XenSource Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of XenSource Inc. nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _TAPDISK_MESSAGE_H_
#define _TAPDISK_MESSAGE_H_
#include <inttypes.h>
#include <sys/types.h>
#define TAPDISK_MESSAGE_MAX_PATH_LENGTH 256
#define TAPDISK_MESSAGE_STRING_LENGTH 256
#define TAPDISK_MESSAGE_MAX_MINORS \
((TAPDISK_MESSAGE_MAX_PATH_LENGTH / sizeof(int)) - 1)
#define TAPDISK_MESSAGE_FLAG_SHARED 0x001
#define TAPDISK_MESSAGE_FLAG_RDONLY 0x002
#define TAPDISK_MESSAGE_FLAG_ADD_CACHE 0x004
#define TAPDISK_MESSAGE_FLAG_VHD_INDEX 0x008
#define TAPDISK_MESSAGE_FLAG_LOG_DIRTY 0x010
#define TAPDISK_MESSAGE_FLAG_ADD_LCACHE 0x020
#define TAPDISK_MESSAGE_FLAG_REUSE_PRT 0x040
#define TAPDISK_MESSAGE_FLAG_SECONDARY 0x080
#define TAPDISK_MESSAGE_FLAG_STANDBY 0x100
typedef struct tapdisk_message tapdisk_message_t;
typedef uint32_t tapdisk_message_flag_t;
typedef struct tapdisk_message_image tapdisk_message_image_t;
typedef struct tapdisk_message_params tapdisk_message_params_t;
typedef struct tapdisk_message_string tapdisk_message_string_t;
typedef struct tapdisk_message_response tapdisk_message_response_t;
typedef struct tapdisk_message_minors tapdisk_message_minors_t;
typedef struct tapdisk_message_list tapdisk_message_list_t;
typedef struct tapdisk_message_stat tapdisk_message_stat_t;
struct tapdisk_message_params {
tapdisk_message_flag_t flags;
uint32_t devnum;
uint32_t domid;
char path[TAPDISK_MESSAGE_MAX_PATH_LENGTH];
uint32_t prt_devnum;
char secondary[TAPDISK_MESSAGE_MAX_PATH_LENGTH];
};
struct tapdisk_message_image {
uint64_t sectors;
uint32_t sector_size;
uint32_t info;
};
struct tapdisk_message_string {
char text[TAPDISK_MESSAGE_STRING_LENGTH];
};
struct tapdisk_message_response {
int error;
char message[TAPDISK_MESSAGE_STRING_LENGTH];
};
struct tapdisk_message_minors {
int count;
int list[TAPDISK_MESSAGE_MAX_MINORS];
};
struct tapdisk_message_list {
int count;
int minor;
int state;
char path[TAPDISK_MESSAGE_MAX_PATH_LENGTH];
};
struct tapdisk_message_stat {
uint16_t type;
uint16_t cookie;
size_t length;
};
struct tapdisk_message {
uint16_t type;
uint16_t cookie;
union {
pid_t tapdisk_pid;
tapdisk_message_image_t image;
tapdisk_message_params_t params;
tapdisk_message_string_t string;
tapdisk_message_minors_t minors;
tapdisk_message_response_t response;
tapdisk_message_list_t list;
tapdisk_message_stat_t info;
} u;
};
enum tapdisk_message_id {
TAPDISK_MESSAGE_ERROR = 1,
TAPDISK_MESSAGE_RUNTIME_ERROR,
TAPDISK_MESSAGE_PID,
TAPDISK_MESSAGE_PID_RSP,
TAPDISK_MESSAGE_ATTACH,
TAPDISK_MESSAGE_ATTACH_RSP,
TAPDISK_MESSAGE_OPEN,
TAPDISK_MESSAGE_OPEN_RSP,
TAPDISK_MESSAGE_PAUSE,
TAPDISK_MESSAGE_PAUSE_RSP,
TAPDISK_MESSAGE_RESUME,
TAPDISK_MESSAGE_RESUME_RSP,
TAPDISK_MESSAGE_CLOSE,
TAPDISK_MESSAGE_CLOSE_RSP,
TAPDISK_MESSAGE_DETACH,
TAPDISK_MESSAGE_DETACH_RSP,
TAPDISK_MESSAGE_LIST_MINORS,
TAPDISK_MESSAGE_LIST_MINORS_RSP,
TAPDISK_MESSAGE_LIST,
TAPDISK_MESSAGE_LIST_RSP,
TAPDISK_MESSAGE_STATS,
TAPDISK_MESSAGE_STATS_RSP,
TAPDISK_MESSAGE_FORCE_SHUTDOWN,
TAPDISK_MESSAGE_EXIT,
};
#define TAPDISK_MESSAGE_MAX TAPDISK_MESSAGE_EXIT
static inline char *
tapdisk_message_name(enum tapdisk_message_id id)
{
switch (id) {
case TAPDISK_MESSAGE_ERROR:
return "error";
case TAPDISK_MESSAGE_PID:
return "pid";
case TAPDISK_MESSAGE_PID_RSP:
return "pid response";
case TAPDISK_MESSAGE_OPEN:
return "open";
case TAPDISK_MESSAGE_OPEN_RSP:
return "open response";
case TAPDISK_MESSAGE_PAUSE:
return "pause";
case TAPDISK_MESSAGE_PAUSE_RSP:
return "pause response";
case TAPDISK_MESSAGE_RESUME:
return "resume";
case TAPDISK_MESSAGE_RESUME_RSP:
return "resume response";
case TAPDISK_MESSAGE_CLOSE:
return "close";
case TAPDISK_MESSAGE_FORCE_SHUTDOWN:
return "force shutdown";
case TAPDISK_MESSAGE_CLOSE_RSP:
return "close response";
case TAPDISK_MESSAGE_ATTACH:
return "attach";
case TAPDISK_MESSAGE_ATTACH_RSP:
return "attach response";
case TAPDISK_MESSAGE_DETACH:
return "detach";
case TAPDISK_MESSAGE_DETACH_RSP:
return "detach response";
case TAPDISK_MESSAGE_LIST_MINORS:
return "list minors";
case TAPDISK_MESSAGE_LIST_MINORS_RSP:
return "list minors response";
case TAPDISK_MESSAGE_LIST:
return "list";
case TAPDISK_MESSAGE_LIST_RSP:
return "list response";
case TAPDISK_MESSAGE_STATS:
return "stats";
case TAPDISK_MESSAGE_STATS_RSP:
return "stats response";
case TAPDISK_MESSAGE_EXIT:
return "exit";
default:
return "unknown";
}
}
#endif
|