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 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
|
/** @file
File manipulation routines for libts
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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.
*/
#include <unistd.h>
#include <limits.h>
#include "ts/ink_platform.h"
#include "ts/ink_file.h"
#include "ts/ink_string.h"
#include "ts/ink_memory.h"
#if HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#if HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#if HAVE_SYS_DISK_H
#include <sys/disk.h>
#endif
#if HAVE_SYS_DISKLABEL_H
#include <sys/disklabel.h>
#endif
#if HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#if HAVE_LINUX_HDREG_H
#include <linux/hdreg.h> /* for struct hd_geometry */
#endif
#if HAVE_LINUX_FS_H
#include <linux/fs.h> /* for BLKGETSIZE. sys/mount.h is another candidate */
#endif
typedef union {
uint64_t u64;
uint32_t u32;
off_t off;
} ioctl_arg_t;
int
ink_fputln(FILE *stream, const char *s)
{
if (stream && s) {
int rc = fputs(s, stream);
if (rc > 0)
rc += fputc('\n', stream);
return rc;
} else
return -EINVAL;
} /* End ink_fgets */
/*---------------------------------------------------------------------------*
int ink_file_fd_readline(int fd, int bufsz, char *buf)
This routine reads bytes from <fd> into the buffer pointed to by <buf>.
The reading stops when (a) a LF is read into the buffer, (b) the end of
file is reached, or (c) <bufsz> - 1 bytes are read. The <bufsz> parameter
must be >= 2.
The data pointed to by <buf> is always NUL terminated, and the LF is
left in the data. This routine can be used as a replacement for
fgets-like functions. If the <bufsz> is too small to hold a complete line,
the partial line will be stored, and subsequent reads will read more data.
This routine returns the number of bytes read, 0 on end of file, or
a negative errno on error.
*---------------------------------------------------------------------------*/
int
ink_file_fd_readline(int fd, int bufsz, char *buf)
{
char c;
int i = 0;
if (bufsz < 2)
return (-EINVAL); /* bufsz must by >= 2 */
while (i < bufsz - 1) { /* leave 1 byte for NUL */
int n = read(fd, &c, 1); /* read 1 byte */
if (n == 0)
break; /* EOF */
if (n < 0)
return (n); /* error */
buf[i++] = c; /* store in buffer */
if (c == '\n')
break; /* stop if stored a LF */
}
buf[i] = '\0'; /* NUL terminate buffer */
return (i); /* number of bytes read */
} /* End ink_file_fd_readline */
/* Write until NUL */
int
ink_file_fd_writestring(int fd, const char *buf)
{
int len, i = 0;
if (buf && (len = strlen(buf)) > 0 && (i = (int)write(fd, buf, (size_t)len) != len))
i = -1;
return i; /* return chars written */
} /* End ink_file_fd_writestring */
int
ink_filepath_merge(char *path, int pathsz, const char *rootpath, const char *addpath, int flags)
{
size_t rootlen; // is the length of the src rootpath
size_t maxlen; // maximum total path length
size_t keptlen; // is the length of the retained rootpath
size_t pathlen; // is the length of the result path
size_t seglen; // is the end of the current segment
char curdir[PATH_NAME_MAX];
/* Treat null as an empty path.
*/
if (!addpath)
addpath = "";
if (addpath[0] == '/') {
// If addpath is rooted, then rootpath is unused.
// Ths violates any INK_FILEPATH_SECUREROOTTEST and
// INK_FILEPATH_NOTABSOLUTE flags specified.
//
if (flags & INK_FILEPATH_SECUREROOTTEST)
return EACCES; // APR_EABOVEROOT;
if (flags & INK_FILEPATH_NOTABSOLUTE)
return EISDIR; // APR_EABSOLUTE;
// If INK_FILEPATH_NOTABOVEROOT wasn't specified,
// we won't test the root again, it's ignored.
// Waste no CPU retrieving the working path.
//
if (!rootpath && !(flags & INK_FILEPATH_NOTABOVEROOT))
rootpath = "";
} else {
// If INK_FILEPATH_NOTABSOLUTE is specified, the caller
// requires a relative result. If the rootpath is
// ommitted, we do not retrieve the working path,
// if rootpath was supplied as absolute then fail.
//
if (flags & INK_FILEPATH_NOTABSOLUTE) {
if (!rootpath)
rootpath = "";
else if (rootpath[0] == '/')
return EISDIR; // APR_EABSOLUTE;
}
}
if (!rootpath) {
// Start with the current working path. This is bass akwards,
// but required since the compiler (at least vc) doesn't like
// passing the address of a char const* for a char** arg.
//
if (!getcwd(curdir, sizeof(curdir))) {
return errno;
}
rootpath = curdir;
}
rootlen = strlen(rootpath);
maxlen = rootlen + strlen(addpath) + 4; // 4 for slashes at start, after
// root, and at end, plus trailing
// null
if (maxlen > (size_t)pathsz) {
return E2BIG; // APR_ENAMETOOLONG;
}
if (addpath[0] == '/') {
// Ignore the given root path, strip off leading
// '/'s to a single leading '/' from the addpath,
// and leave addpath at the first non-'/' character.
//
keptlen = 0;
while (addpath[0] == '/')
++addpath;
path[0] = '/';
pathlen = 1;
} else {
// If both paths are relative, fail early
//
if (rootpath[0] != '/' && (flags & INK_FILEPATH_NOTRELATIVE))
return EBADF; // APR_ERELATIVE;
// Base the result path on the rootpath
//
keptlen = rootlen;
memcpy(path, rootpath, rootlen);
// Always '/' terminate the given root path
//
if (keptlen && path[keptlen - 1] != '/') {
path[keptlen++] = '/';
}
pathlen = keptlen;
}
while (*addpath) {
// Parse each segment, find the closing '/'
//
const char *next = addpath;
while (*next && (*next != '/')) {
++next;
}
seglen = next - addpath;
if (seglen == 0 || (seglen == 1 && addpath[0] == '.')) {
// noop segment (/ or ./) so skip it
//
} else if (seglen == 2 && addpath[0] == '.' && addpath[1] == '.') {
// backpath (../)
if (pathlen == 1 && path[0] == '/') {
// Attempt to move above root. Always die if the
// INK_FILEPATH_SECUREROOTTEST flag is specified.
//
if (flags & INK_FILEPATH_SECUREROOTTEST) {
return EACCES; // APR_EABOVEROOT;
}
// Otherwise this is simply a noop, above root is root.
// Flag that rootpath was entirely replaced.
//
keptlen = 0;
} else if (pathlen == 0 || (pathlen == 3 && !memcmp(path + pathlen - 3, "../", 3)) ||
(pathlen > 3 && !memcmp(path + pathlen - 4, "/../", 4))) {
// Path is already backpathed or empty, if the
// INK_FILEPATH_SECUREROOTTEST.was given die now.
//
if (flags & INK_FILEPATH_SECUREROOTTEST) {
return EACCES; // APR_EABOVEROOT;
}
// Otherwise append another backpath, including
// trailing slash if present.
//
memcpy(path + pathlen, "../", *next ? 3 : 2);
pathlen += *next ? 3 : 2;
} else {
// otherwise crop the prior segment
//
do {
--pathlen;
} while (pathlen && path[pathlen - 1] != '/');
}
// Now test if we are above where we started and back up
// the keptlen offset to reflect the added/altered path.
//
if (pathlen < keptlen) {
if (flags & INK_FILEPATH_SECUREROOTTEST) {
return EACCES; // APR_EABOVEROOT;
}
keptlen = pathlen;
}
} else {
// An actual segment, append it to the destination path
//
if (*next) {
seglen++;
}
memcpy(path + pathlen, addpath, seglen);
pathlen += seglen;
}
// Skip over trailing slash to the next segment
//
if (*next) {
++next;
}
addpath = next;
}
path[pathlen] = '\0';
if (pathlen > 1 && path[pathlen - 1] == '/') {
// Trim trailing slash unless requested
size_t es = strlen(addpath);
if (es == 0 || addpath[es - 1] != '/') {
--pathlen;
path[pathlen] = '\0';
}
}
// keptlen will be the rootlen unless the addpath contained
// backpath elements. If so, and INK_FILEPATH_NOTABOVEROOT
// is specified (INK_FILEPATH_SECUREROOTTEST was caught above),
// compare the original root to assure the result path is
// still within given root path.
//
if ((flags & INK_FILEPATH_NOTABOVEROOT) && keptlen < rootlen) {
if (strncmp(rootpath, path, rootlen)) {
return EACCES; // APR_EABOVEROOT;
}
if (rootpath[rootlen - 1] != '/' && path[rootlen] && path[rootlen] != '/') {
return EACCES; // APR_EABOVEROOT;
}
}
return 0;
}
int
ink_filepath_make(char *path, int pathsz, const char *rootpath, const char *addpath)
{
size_t rootlen; // is the length of the src rootpath
size_t maxlen; // maximum total path length
/* Treat null as an empty path.
*/
if (!addpath)
addpath = "";
if (addpath[0] == '/') {
// If addpath is rooted, then rootpath is unused.
ink_strlcpy(path, addpath, pathsz);
return 0;
}
if (!rootpath || !*rootpath) {
// If there's no rootpath return the addpath
ink_strlcpy(path, addpath, pathsz);
return 0;
}
rootlen = strlen(rootpath);
maxlen = strlen(addpath) + 2;
if (maxlen > (size_t)pathsz) {
*path = '\0';
return (int)maxlen;
}
ink_strlcpy(path, rootpath, pathsz);
path += rootlen;
pathsz -= rootlen;
if (*(path - 1) != '/') {
*(path++) = '/';
--pathsz;
}
ink_strlcpy(path, addpath, pathsz);
return 0;
}
int
ink_file_fd_zerofill(int fd, off_t size)
{
// Clear the file by truncating it to zero and then to the desired size.
if (ftruncate(fd, 0) < 0) {
return errno;
}
// ZFS does not implement posix_fallocate() and fails with EINVAL. As a general workaround,
// just fall back to ftrucate if the preallocation fails.
#if HAVE_POSIX_FALLOCATE
if (posix_fallocate(fd, 0, size) == 0) {
return 0;
}
#endif
if (ftruncate(fd, size) < 0) {
return errno;
}
return 0;
}
bool
ink_file_is_directory(const char *path)
{
struct stat sbuf;
if (stat(path, &sbuf) == -1) {
return false;
}
return S_ISDIR(sbuf.st_mode);
}
bool
ink_file_is_mmappable(mode_t st_mode)
{
// Regular files are always ok;
if (S_ISREG(st_mode)) {
return true;
}
#if defined(linux)
// Disks cannot be mmapped.
if (S_ISBLK(st_mode)) {
return false;
}
// At least some character devices can be mmapped. But should you?
if (S_ISCHR(st_mode)) {
return true;
}
#endif
#if defined(solaris)
// All file types on Solaris can be mmap(2)'ed.
return true;
#endif
return false;
}
bool
ink_file_get_geometry(int fd ATS_UNUSED, ink_device_geometry &geometry)
{
ink_zero(geometry);
#if defined(freebsd) || defined(darwin) || defined(openbsd)
ioctl_arg_t arg ATS_UNUSED;
// These IOCTLs are standard across the BSD family; Darwin has a different set though.
#if defined(DIOCGMEDIASIZE)
if (ioctl(fd, DIOCGMEDIASIZE, &arg.off) == 0) {
geometry.totalsz = arg.off;
}
#endif
#if defined(DIOCGSECTORSIZE)
if (ioctl(fd, DIOCGSECTORSIZE, &arg.u32) == 0) {
geometry.blocksz = arg.u32;
}
#endif
#if !defined(DIOCGMEDIASIZE) || !defined(DIOCGSECTORSIZE)
errno = ENOTSUP;
#endif
#elif defined(solaris)
struct stat sbuf;
if (fstat(fd, &sbuf) == 0) {
geometry.totalsz = sbuf.st_size;
geometry.blocksz = sbuf.st_blksize;
}
#elif defined(linux)
ioctl_arg_t arg;
// The following set of ioctls work for both block and character devices. You can use the
// test_geometry program to test what happens for any specific use case or kernel.
// BLKGETSIZE64 gets the block device size in bytes.
if (ioctl(fd, BLKGETSIZE64, &arg.u64) == 0) {
geometry.totalsz = arg.u64;
}
// BLKSSZGET gets the logical block size in bytes.
if (ioctl(fd, BLKSSZGET, &arg.u32) == 0) {
geometry.blocksz = arg.u32;
}
#if defined(BLKALIGNOFF)
// BLKALIGNOFF gets the number of bytes needed to align the I/Os to the block device with
// and underlying block devices. This might be non-zero when you are using a logical volume
// backed by JBOD or RAID device(s). BLKALIGNOFF was addeed in 2.6.32, so it's not present in
// RHEL 5.
if (ioctl(fd, BLKALIGNOFF, &arg.u32) == 0) {
geometry.alignsz = arg.u32;
}
#endif
#else /* No raw device support on this platform. */
errno = ENOTSUP;
return false;
#endif
if (geometry.totalsz == 0 || geometry.blocksz == 0) {
return false;
}
return true;
}
size_t
ink_file_namemax(const char *path)
{
long namemax = pathconf(path, _PC_NAME_MAX);
if (namemax > 0) {
return namemax;
}
#if defined(NAME_MAX)
return NAME_MAX;
#else
return 255;
#endif
}
int
ink_fileperm_parse(const char *perms)
{
if (perms && strlen(perms) == 9) {
int re = 0;
char *c = (char *)perms;
if (*c == 'r')
re |= S_IRUSR;
c++;
if (*c == 'w')
re |= S_IWUSR;
c++;
if (*c == 'x')
re |= S_IXUSR;
c++;
if (*c == 'r')
re |= S_IRGRP;
c++;
if (*c == 'w')
re |= S_IWGRP;
c++;
if (*c == 'x')
re |= S_IXGRP;
c++;
if (*c == 'r')
re |= S_IROTH;
c++;
if (*c == 'w')
re |= S_IWOTH;
c++;
if (*c == 'x')
re |= S_IXOTH;
return re;
}
return -1;
}
|