/usr/src/open-vm-tools-10.0.7/vmblock/linux/vmblock.h is in open-vm-tools-dkms 2:10.0.7-3227872-2ubuntu1.
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 | /*********************************************************
* Copyright (C) 2006-2015 VMware, Inc. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation version 2.1 and no 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 Lesser GNU General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
*********************************************************/
/*********************************************************
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
*
*********************************************************/
/*********************************************************
* The contents of this file are subject to the terms of the Common
* Development and Distribution License (the "License") version 1.0
* and no later version. You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at
* http://www.opensource.org/licenses/cddl1.php
*
* See the License for the specific language governing permissions
* and limitations under the License.
*
*********************************************************/
/*
* vmblock.h --
*
* User-level interface to the vmblock device.
*
* VMBLOCK_DEVICE should be opened with VMBLOCK_DEVICE_MODE mode. Then
* VMBLOCK_CONTROL should be called to perform blocking operations.
* The links which can be blocked are in the directory VMBLOCK_MOUNT_POINT.
*
* VMBLOCK_CONTROL takes the file descriptor of the VMBLOCK_DEVICE, an
* operation, and the path of the target of the file being operated on (if
* applicable).
*
* The operation should be one of:
* VMBLOCK_ADD_FILEBLOCK
* VMBLOCK_DEL_FILEBLOCK
* VMBLOCK_LIST_FILEBLOCKS
*
* path should be something in /tmp/VMwareDnD/ rather than in
* VMBLOCK_MOUNT_POINT.
*
* VMBLOCK_CONTROL returns 0 on success or returns -1 and sets errno on
* failure.
*/
#ifndef _VMBLOCK_H_
#define _VMBLOCK_H_
#if defined(sun) || defined(__FreeBSD__)
# include <sys/ioccom.h>
#endif
#if defined(__FreeBSD__)
# include <sys/param.h>
#endif
/*
* FUSE definitions. They are supposed to be used by userspace code and
* therefore not guarded by ARCH defines since FUSE can potentially
* be used on different operating systems.
*/
#define VMBLOCK_FUSE_ADD_FILEBLOCK 'a'
#define VMBLOCK_FUSE_DEL_FILEBLOCK 'd'
#ifdef VMX86_DEVEL
# define VMBLOCK_FUSE_LIST_FILEBLOCKS 'l'
#endif /* VMX86_DEVEL */
/*
* If you try 'read'-ing from file descriptor vmblock-fuse is supposed
* to respond with the following. It is used to check whether we deal
* with FUSE or in-kernel implementation.
*/
#define VMBLOCK_FUSE_READ_RESPONSE "I am VMBLOCK-FUSE"
#define VMBLOCK_FUSE_FS_NAME "fuse.vmware-vmblock"
#define VMBLOCK_FUSE_MOUNT_POINT "/var/run/vmblock-fuse"
#define VMBLOCK_FUSE_CTRL_MNTPNT "blockdir"
#define VMBLOCK_FUSE_FS_ROOT VMBLOCK_FUSE_MOUNT_POINT "/" VMBLOCK_FUSE_CTRL_MNTPNT
#define VMBLOCK_FUSE_DEVICE_NAME "dev"
#define VMBLOCK_FUSE_DEVICE VMBLOCK_FUSE_MOUNT_POINT "/" VMBLOCK_FUSE_DEVICE_NAME
#define VMBLOCK_FUSE_DEVICE_MODE O_RDWR
/* Commands for the control half of vmblock driver */
#if defined(vmblock_fuse)
/* These definitions are for vmblock-fuse module itself */
# include <unistd.h>
# include <limits.h>
# include <string.h>
# include <errno.h>
# include "vm_basic_types.h"
# define VMBLOCK_ADD_FILEBLOCK VMBLOCK_FUSE_ADD_FILEBLOCK
# define VMBLOCK_DEL_FILEBLOCK VMBLOCK_FUSE_DEL_FILEBLOCK
# ifdef VMX86_DEVEL
# define VMBLOCK_LIST_FILEBLOCKS VMBLOCK_FUSE_LIST_FILEBLOCKS
# endif /* VMX86_DEVEL */
/*
* Some of the following names don't actually make much sense on their own.
* They're used for consistency with the other ports. See the file header for
* explanations of what they're used for.
*/
# define VMBLOCK_FS_NAME VMBLOCK_FUSE_FS_NAME
# define VMBLOCK_DEVICE_NAME VMBLOCK_FUSE_DEVICE_NAME
# define VMBLOCK_CONTROL_MOUNTPOINT VMBLOCK_FUSE_CTRL_MNTPNT
# define VMBLOCK_FS_ROOT VMBLOCK_FUSE_FS_ROOT
# define VMBLOCK_DEVICE VMBLOCK_FUSE_DEVICE
# define VMBLOCK_DEVICE_MODE VMBLOCK_FUSE_DEVICE_MODE
# define VMBLOCK_MOUNT_POINT VMBLOCK_FUSE_MOUNT_POINT
#elif defined(linux)
# define VMBLOCK_ADD_FILEBLOCK 98
# define VMBLOCK_DEL_FILEBLOCK 99
# ifdef VMX86_DEVEL
# define VMBLOCK_LIST_FILEBLOCKS 100
# endif
# define VMBLOCK_FS_NAME "vmblock"
# define VMBLOCK_CONTROL_DIRNAME VMBLOCK_FS_NAME
# define VMBLOCK_CONTROL_DEVNAME "dev"
# define VMBLOCK_CONTROL_MOUNTPOINT "mountPoint"
# define VMBLOCK_CONTROL_PROC_DIRNAME "fs/" VMBLOCK_CONTROL_DIRNAME
# define VMBLOCK_MOUNT_POINT "/proc/" VMBLOCK_CONTROL_PROC_DIRNAME \
"/" VMBLOCK_CONTROL_MOUNTPOINT
# define VMBLOCK_FS_ROOT VMBLOCK_MOUNT_POINT
# define VMBLOCK_DEVICE "/proc/" VMBLOCK_CONTROL_PROC_DIRNAME \
"/" VMBLOCK_CONTROL_DEVNAME
# define VMBLOCK_DEVICE_MODE O_WRONLY
#elif defined(sun) || defined(__FreeBSD__)
# define VMBLOCK_FS_NAME "vmblock"
# define VMBLOCK_MOUNT_POINT "/var/run/" VMBLOCK_FS_NAME
# define VMBLOCK_FS_ROOT VMBLOCK_MOUNT_POINT
# define VMBLOCK_DEVICE VMBLOCK_MOUNT_POINT
# define VMBLOCK_DEVICE_MODE O_RDONLY
# if defined(sun) /* if (sun) { */
/*
* Construct ioctl(2) commands for blocks. _IO() is a helper macro to
* construct unique command values more easily. I chose 'v' because I
* didn't see it being used elsewhere, and the command numbers begin at one.
*/
# define VMBLOCK_ADD_FILEBLOCK _IO('v', 1)
# define VMBLOCK_DEL_FILEBLOCK _IO('v', 2)
# ifdef VMX86_DEVEL
# define VMBLOCK_LIST_FILEBLOCKS _IO('v', 3)
# endif
# elif defined(__FreeBSD__) /* } else if (FreeBSD) { */
/*
* Similar to Solaris, construct ioctl(2) commands for block operations.
* Since the FreeBSD implementation does not change the user's passed-in
* data (pathname), we use the _IOW macro to define commands which write
* to the kernel. (As opposed to _IOR or _IOWR.) Groups 'v' and 'V'
* are taken by terminal drivers, so I opted for group 'Z'.
*/
# define VMBLOCK_ADD_FILEBLOCK _IOW('Z', 1, char[MAXPATHLEN] )
# define VMBLOCK_DEL_FILEBLOCK _IOW('Z', 2, char[MAXPATHLEN] )
# ifdef VMX86_DEVEL
# define VMBLOCK_LIST_FILEBLOCKS _IO('Z', 3)
# define VMBLOCK_PURGE_FILEBLOCKS _IO('Z', 4)
# endif
# endif /* } */
#else
# error "Unknown platform for vmblock."
#endif
#endif /* _VMBLOCK_H_ */
|