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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
/*
Unix SMB/CIFS implementation.
Wrap VxFS xattr calls.
Copyright (C) Veritas Technologies LLC <www.veritas.com> 2016
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any 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
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "includes.h"
#include "smbd/smbd.h"
#include "system/filesys.h"
#include "string.h"
/*
* Available under GPL at
* http://www.veritas.com/community/downloads/vxfsmisc-library
*/
#define LIBVXFS "/usr/lib64/vxfsmisc.so"
static int (*vxfs_setxattr_fd_func) (int fd, const char *name,
const void *value, size_t len, int flags);
static int (*vxfs_getxattr_fd_func) (int fd, const char *name, void *value,
size_t *len);
static int (*vxfs_removexattr_fd_func) (int fd, const char *name);
static int (*vxfs_listxattr_fd_func) (int fd, void *value, size_t *len);
int vxfs_setxattr_fd(int fd, const char *name, const void *value,
size_t len, int flags)
{
int ret = -1;
if (vxfs_setxattr_fd_func == NULL) {
errno = ENOSYS;
return ret;
}
DEBUG(10, ("Calling vxfs_setxattr_fd\n"));
ret = vxfs_setxattr_fd_func(fd, name, value, len, flags);
if (ret) {
errno = ret;
ret = -1;
}
return ret;
}
int vxfs_setxattr_path(const char *path, const char *name, const void *value,
size_t len, int flags, bool is_dir)
{
int ret, fd = -1;
if (is_dir) {
fd = open(path, O_RDONLY|O_DIRECTORY);
} else {
fd = open(path, O_WRONLY);
}
if (fd == -1) {
DEBUG(10, ("error in vxfs_setxattr_path: %s\n",
strerror(errno)));
return -1;
}
ret = vxfs_setxattr_fd(fd, name, value, len, flags);
close(fd);
return ret;
}
int vxfs_getxattr_fd(int fd, const char *name, void *value, size_t len)
{
int ret;
size_t size = len;
if (vxfs_getxattr_fd_func == NULL) {
errno = ENOSYS;
return -1;
}
DEBUG(10, ("Calling vxfs_getxattr_fd with %s\n", name));
ret = vxfs_getxattr_fd_func(fd, name, value, &size);
if (ret) {
errno = ret;
if (ret == EFBIG) {
errno = ERANGE;
}
return -1;
}
return size;
}
int vxfs_getxattr_path(const char *path, const char *name, void *value,
size_t len)
{
int ret, fd = -1;
fd = open(path, O_RDONLY);
if (fd == -1) {
DEBUG(10, ("file not opened: vxfs_getxattr_path for %s\n",
path));
return -1;
}
ret = vxfs_getxattr_fd(fd, name, value, len);
close(fd);
return ret;
}
int vxfs_removexattr_fd(int fd, const char *name)
{
int ret = 0;
if (vxfs_removexattr_fd_func == NULL) {
errno = ENOSYS;
return -1;
}
DEBUG(10, ("Calling vxfs_removexattr_fd with %s\n", name));
ret = vxfs_removexattr_fd_func(fd, name);
if (ret) {
errno = ret;
ret = -1;
}
return ret;
}
int vxfs_removexattr_path(const char *path, const char *name, bool is_dir)
{
int ret, fd = -1;
if (is_dir) {
fd = open(path, O_RDONLY|O_DIRECTORY);
} else {
fd = open(path, O_WRONLY);
}
if (fd == -1) {
DEBUG(10, ("file not opened: vxfs_removexattr_path for %s\n",
path));
return -1;
}
ret = vxfs_removexattr_fd(fd, name);
close(fd);
return ret;
}
int vxfs_listxattr_fd(int fd, char *list, size_t size)
{
int ret;
size_t len = size;
if (vxfs_listxattr_fd_func == NULL) {
errno = ENOSYS;
return -1;
}
ret = vxfs_listxattr_fd_func(fd, list, &len);
DEBUG(10, ("vxfs_listxattr_fd: returned ret = %d\n", ret));
if (ret) {
errno = ret;
if (ret == EFBIG) {
errno = ERANGE;
}
return -1;
}
return len;
}
int vxfs_listxattr_path(const char *path, char *list, size_t size)
{
int ret, fd = -1;
fd = open(path, O_RDONLY);
if (fd == -1) {
DEBUG(10, ("file not opened: vxfs_listxattr_path for %s\n",
path));
return -1;
}
ret = vxfs_listxattr_fd(fd, list, size);
close(fd);
return ret;
}
static bool load_lib_vxfs_function(void *lib_handle, void *fn_ptr,
const char *fnc_name)
{
void **vlib_handle = (void **)lib_handle;
void **fn_pointer = (void **)fn_ptr;
*fn_pointer = dlsym(*vlib_handle, fnc_name);
if (*fn_pointer == NULL) {
DEBUG(10, ("Cannot find symbol for %s\n", fnc_name));
return true;
}
return false;
}
void vxfs_init()
{
static void *lib_handle = NULL;
if (lib_handle != NULL ) {
return;
}
lib_handle = dlopen(LIBVXFS, RTLD_LAZY);
if (lib_handle == NULL) {
DEBUG(10, ("Cannot get lib handle\n"));
return;
}
DEBUG(10, ("Calling vxfs_init\n"));
load_lib_vxfs_function(&lib_handle, &vxfs_setxattr_fd_func,
"vxfs_nxattr_set");
load_lib_vxfs_function(&lib_handle, &vxfs_getxattr_fd_func,
"vxfs_nxattr_get");
load_lib_vxfs_function(&lib_handle, &vxfs_removexattr_fd_func,
"vxfs_nxattr_remove");
load_lib_vxfs_function(&lib_handle, &vxfs_listxattr_fd_func,
"vxfs_nxattr_list");
}
|