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 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
|
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include "ppport.h"
#include "portable.h"
#define MAX_INITIAL_VALUELEN_VARNAME "File::ExtAttr::MAX_INITIAL_VALUELEN"
/* Richard, fixme! */
MODULE = File::ExtAttr PACKAGE = File::ExtAttr
PROTOTYPES: ENABLE
int
_setfattr (path, attrname, attrvalueSV, flags = 0)
const char *path
const char *attrname
SV * attrvalueSV
HV * flags
PREINIT:
STRLEN slen;
char * attrvalue;
int rc;
CODE:
attrvalue = SvPV(attrvalueSV, slen);
rc = portable_setxattr(path, attrname, attrvalue, slen, flags);
if (rc < 0)
errno = -rc;
RETVAL = (rc == 0);
OUTPUT:
RETVAL
int
_fsetfattr (fd, attrname, attrvalueSV, flags = 0)
int fd
const char *attrname
SV * attrvalueSV
HV * flags
PREINIT:
STRLEN slen;
char * attrvalue;
int rc;
CODE:
attrvalue = SvPV(attrvalueSV, slen);
rc = portable_fsetxattr(fd, attrname, attrvalue, slen, flags);
if (rc < 0)
errno = -rc;
RETVAL = (rc == 0);
OUTPUT:
RETVAL
SV *
_getfattr(path, attrname, flags = 0)
const char *path
const char *attrname
HV * flags
PREINIT:
char * attrvalue;
int attrlen;
ssize_t buflen;
CODE:
buflen = portable_lenxattr(path, attrname, flags);
if (buflen <= 0)
buflen = SvIV(get_sv(MAX_INITIAL_VALUELEN_VARNAME, FALSE));
attrvalue = NULL;
Newz(1, attrvalue, buflen, char);
attrlen = portable_getxattr(path, attrname, attrvalue, buflen, flags);
if (attrlen < 0){
//key not found, just return undef
if(errno == ENOATTR){
Safefree(attrvalue);
errno = -attrlen;
XSRETURN_UNDEF;
//return undef
}else{
Safefree(attrvalue);
errno = -attrlen;
XSRETURN_UNDEF;
}
}
RETVAL = newSVpv(attrvalue, attrlen);
Safefree(attrvalue);
OUTPUT:
RETVAL
SV *
_fgetfattr(fd, attrname, flags = 0)
int fd
const char *attrname
HV * flags
PREINIT:
char * attrvalue;
int attrlen;
ssize_t buflen;
CODE:
buflen = portable_flenxattr(fd, attrname, flags);
if (buflen <= 0)
buflen = SvIV(get_sv(MAX_INITIAL_VALUELEN_VARNAME, FALSE));
attrvalue = NULL;
Newz(1, attrvalue, buflen, char);
attrlen = portable_fgetxattr(fd, attrname, attrvalue, buflen, flags);
if (attrlen < 0){
//key not found, just return undef
if(errno == ENOATTR){
Safefree(attrvalue);
errno = -attrlen;
XSRETURN_UNDEF;
//return undef
}else{
Safefree(attrvalue);
errno = -attrlen;
XSRETURN_UNDEF;
}
}
RETVAL = newSVpv(attrvalue, attrlen);
Safefree(attrvalue);
OUTPUT:
RETVAL
int
_delfattr (path, attrname, flags = 0)
const char *path
const char *attrname
HV * flags
PREINIT:
int rc;
CODE:
rc = portable_removexattr(path, attrname, flags);
if (rc < 0)
errno = -rc;
RETVAL = (rc == 0);
OUTPUT:
RETVAL
int
_fdelfattr (fd, attrname, flags = 0)
int fd
const char *attrname
HV * flags
PREINIT:
int rc;
CODE:
rc = portable_fremovexattr(fd, attrname, flags);
if (rc < 0)
errno = -rc;
RETVAL = (rc == 0);
OUTPUT:
RETVAL
void
_listfattr (path, fd, flags = 0)
const char *path
int fd
HV * flags
PREINIT:
ssize_t size, ret;
char *namebuf = NULL;
char *nameptr;
PPCODE:
if(fd == -1)
size = portable_listxattr(path, NULL, 0, flags);
else
size = portable_flistxattr(fd, NULL, 0, flags);
if (size < 0)
{
errno = -(int) size;
XSRETURN_UNDEF;
} else if (size == 0)
{
XSRETURN_EMPTY;
}
namebuf = malloc(size);
if (fd == -1)
ret = portable_listxattr(path, namebuf, size, flags);
else
ret = portable_flistxattr(fd, namebuf, size, flags);
// There could be a race condition here, if someone adds a new
// attribute between the two listxattr calls. However it just means we
// might return ERANGE.
if (ret < 0)
{
free(namebuf);
errno = -ret;
XSRETURN_UNDEF;
} else if (ret == 0)
{
free(namebuf);
XSRETURN_EMPTY;
}
nameptr = namebuf;
while(nameptr < namebuf + ret)
{
char *endptr = nameptr;
while(*endptr++ != '\0');
// endptr will now point one past the end..
XPUSHs(sv_2mortal(newSVpvn(nameptr, endptr - nameptr - 1)));
// nameptr could now point past the end of namebuf
nameptr = endptr;
}
free(namebuf);
void
_listfattrns (path, fd, flags = 0)
const char *path
int fd
HV * flags
PREINIT:
ssize_t size, ret;
char *namebuf = NULL;
char *nameptr;
PPCODE:
if(fd == -1)
size = portable_listxattrns(path, NULL, 0, flags);
else
size = portable_flistxattrns(fd, NULL, 0, flags);
if (size < 0)
{
errno = -(int) size;
XSRETURN_UNDEF;
} else if (size == 0)
{
XSRETURN_EMPTY;
}
namebuf = malloc(size);
if (fd == -1)
ret = portable_listxattrns(path, namebuf, size, flags);
else
ret = portable_flistxattrns(fd, namebuf, size, flags);
// There could be a race condition here, if someone adds a new
// attribute between the two listxattr calls. However it just means we
// might return ERANGE.
if (ret < 0)
{
free(namebuf);
errno = -ret;
XSRETURN_UNDEF;
} else if (ret == 0)
{
free(namebuf);
XSRETURN_EMPTY;
}
nameptr = namebuf;
while(nameptr < namebuf + ret)
{
char *endptr = nameptr;
while(*endptr++ != '\0');
// endptr will now point one past the end..
XPUSHs(sv_2mortal(newSVpvn(nameptr, endptr - nameptr - 1)));
// nameptr could now point past the end of namebuf
nameptr = endptr;
}
free(namebuf);
|