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 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645
|
/*
Authors:
John Dennis <jdennis.redhat.com>
Copyright (C) 2009 Red Hat
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; 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 Lesser 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, see <http://www.gnu.org/licenses/>.
*/
/*****************************************************************************/
/******************************** Documentation ******************************/
/*****************************************************************************/
/*****************************************************************************/
/******************************* Include Files *******************************/
/*****************************************************************************/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <dirent.h>
#include <sys/errno.h>
#include <sys/stat.h>
#include <libgen.h>
#include "path_utils.h"
/*****************************************************************************/
/****************************** Internal Defines *****************************/
/*****************************************************************************/
/*****************************************************************************/
/************************** Internal Type Definitions ************************/
/*****************************************************************************/
/*****************************************************************************/
/********************** External Function Declarations *********************/
/*****************************************************************************/
/*****************************************************************************/
/********************** Internal Function Declarations *********************/
/*****************************************************************************/
/*****************************************************************************/
/************************* External Global Variables ***********************/
/*****************************************************************************/
/*****************************************************************************/
/************************* Internal Global Variables ***********************/
/*****************************************************************************/
/*****************************************************************************/
/**************************** Inline Functions *****************************/
/*****************************************************************************/
/*****************************************************************************/
/*************************** Internal Functions ****************************/
/*****************************************************************************/
/*****************************************************************************/
/**************************** Exported Functions ***************************/
/*****************************************************************************/
const char *path_utils_error_string(int error)
{
switch(error) {
case SUCCESS: return _("Success");
case PATH_UTILS_ERROR_NOT_FULLY_NORMALIZED: return _("Path could not be fully normalized");
}
return NULL;
}
static int dot_to_absolute(char *rel_path, int rel_path_size)
{
char tmp_path[PATH_MAX];
if (strcmp(rel_path, ".") == 0) {
if (getcwd(rel_path, rel_path_size) == NULL) {
if (errno == ERANGE)
return ENOBUFS;
else
return errno;
}
} else if (strcmp(rel_path, "..") == 0) {
if (getcwd(tmp_path, sizeof(tmp_path)) == NULL) {
if (errno == ERANGE)
return ENOBUFS;
else
return errno;
}
strncpy(rel_path, dirname(tmp_path), rel_path_size);
if (rel_path[rel_path_size-1] != '\0') return ENOBUFS;
}
return SUCCESS;
}
int get_basename(char *base_name, size_t base_name_size, const char *path)
{
char tmp_path[PATH_MAX];
int ret;
if (!path) return EINVAL;
if (!base_name || base_name_size < 1) return ENOBUFS;
/* coverity[buffer_size_warning : SUPPRESS] */ /* false positive warning */
strncpy(tmp_path, path, sizeof(tmp_path));
if (tmp_path[sizeof(tmp_path)-1] != '\0') return ENOBUFS;
strncpy(base_name, basename(tmp_path), base_name_size);
if (base_name[base_name_size-1] != '\0') return ENOBUFS;
ret = dot_to_absolute(base_name, base_name_size);
if (ret != SUCCESS) {
return ret;
}
return SUCCESS;
}
int get_dirname(char *dir_path, size_t dir_path_size, const char *path)
{
char tmp_path[PATH_MAX];
int ret;
if (!path) return EINVAL;
if (!dir_path || dir_path_size < 1) return ENOBUFS;
/* coverity[buffer_size_warning : SUPPRESS] */ /* false positive warning */
strncpy(tmp_path, path, sizeof(tmp_path));
if (tmp_path[sizeof(tmp_path)-1] != '\0') return ENOBUFS;
strncpy(dir_path, dirname(tmp_path), dir_path_size);
if (dir_path[dir_path_size-1] != '\0') return ENOBUFS;
ret = dot_to_absolute(dir_path, dir_path_size);
if (ret != SUCCESS) {
return ret;
}
return SUCCESS;
}
int get_directory_and_base_name(char *dir_path, size_t dir_path_size,
char *base_name, size_t base_name_size,
const char *path)
{
char tmp_path[PATH_MAX];
int ret;
if (!path) return EINVAL;
if (!dir_path || dir_path_size < 1) return ENOBUFS;
if (!base_name || base_name_size < 1) return ENOBUFS;
/* coverity[buffer_size_warning : SUPPRESS] */ /* false positive warning */
strncpy(tmp_path, path, sizeof(tmp_path));
if (tmp_path[sizeof(tmp_path)-1] != '\0') return ENOBUFS;
strncpy(base_name, basename(tmp_path), base_name_size);
if (base_name[base_name_size-1] != '\0') return ENOBUFS;
/* coverity[buffer_size_warning : SUPPRESS] */ /* false positive warning */
strncpy(tmp_path, path, sizeof(tmp_path));
if (tmp_path[sizeof(tmp_path)-1] != '\0') return ENOBUFS;
strncpy(dir_path, dirname(tmp_path), dir_path_size);
if (dir_path[dir_path_size-1] != '\0') return ENOBUFS;
ret = dot_to_absolute(dir_path, dir_path_size);
if (ret != SUCCESS) {
return ret;
}
if (strcmp(base_name, ".") == 0) {
strncpy(base_name, "", base_name_size);
if (base_name[base_name_size-1] != '\0') return ENOBUFS;
}
return SUCCESS;
}
bool is_absolute_path(const char *path)
{
if (!path) return false;
return path[0] == '/';
}
int path_concat(char *path, size_t path_size, const char *head, const char *tail)
{
int ret;
const char *p, *src;
char *dst, *dst_end;
if (!path || path_size < 1) return ENOBUFS;
dst = path;
dst_end = path + path_size - 1; /* -1 allows for NULL terminator */
if (head && *head) {
/* walk to end of head */
for (p = head; *p; p++);
/* skip any trailing slashes in head */
for (p--; p > head && *p == '/'; p--);
/* If the length of head exceeds the buffer size, fail */
if ((p - head) > path_size-1) {
ret = ENOBUFS;
goto fail;
}
/* Copy head into path */
for (src = head; src <= p && dst < dst_end;) {
*dst++ = *src++;
}
}
if (tail && *tail) {
/* skip any leading slashes in tail */
for (p = tail; *p && *p == '/'; p++);
if (dst > path)
/* insert single slash between head & tail
* Making sure not to add an extra if the
* preceding character is also a slash
* (such as the case where head was the
* special-case "/".
*/
if (dst < dst_end && *(dst-1) != '/') {
*dst++ = '/';
}
/* Copy the tail into the path */
for (src = p; *src && dst < dst_end;) {
*dst++ = *src++;
}
/* If we got past dst_end and there is more data
* in the src buffer, we should return ENOBUFS
*/
if (*src) {
ret = ENOBUFS; /* failed to copy everything */
goto fail;
}
}
*dst = 0;
return SUCCESS;
fail:
/* On failure, set the buffer to the empty string for safety */
*path = '\0';
return ret;
}
int make_path_absolute(char *absolute_path, size_t absolute_path_size, const char *path)
{
int result = SUCCESS;
const char *src;
char *dst, *dst_end;
if (!absolute_path || absolute_path_size < 1) return ENOBUFS;
dst = absolute_path;
dst_end = absolute_path + absolute_path_size - 1; /* -1 allows for NULL terminator */
if (is_absolute_path(path)) {
for (src = path; *src && dst < dst_end;) *dst++ = *src++;
*dst = 0;
if (dst > dst_end || *src) result = ENOBUFS;
return result;
}
if ((getcwd(absolute_path, absolute_path_size) == NULL)) {
if (errno == ERANGE)
return ENOBUFS;
else
return errno;
}
for (dst = absolute_path; *dst && dst < dst_end; dst++);
if (!(path && *path)) return result;
if (dst > dst_end) {
*absolute_path = 0;
return ENOBUFS;
}
*dst++ = '/';
if (dst > dst_end) {
*absolute_path = 0;
return ENOBUFS;
}
for (src = path; *src && dst < dst_end;) *dst++ = *src++;
if (*src) return ENOBUFS; /* failed to copy everything */
*dst = 0;
return result;
}
char **split_path(const char *path, int *count)
{
int n_components, component_len, total_component_len, alloc_len;
const char *start, *end;
char *mem_block, **array_ptr, *component_ptr;
if (count) *count = 0;
if (!path) return NULL;
/* If path is absolute add in special "/" root component */
if (*path == '/') {
n_components = 1;
total_component_len = 2;
} else {
n_components = 0;
total_component_len = 0;
}
/* Scan for components, keep several counts */
for (start = end = path; *start; start = end) {
for (start = end; *start && *start == '/'; start++);
for (end = start; *end && *end != '/'; end++);
if ((component_len = end - start) == 0) break;
n_components++;
total_component_len += component_len + 1;
}
/*
* Allocate a block big enough for component array (with trailing NULL
* entry, hence n_components+1) and enough room for a copy of each NULL
* terminated component. We'll copy the components into the same allocation
* block after the end of the pointer array.
*/
alloc_len = ((n_components+1) * sizeof(char *)) + total_component_len;
if ((mem_block = malloc(alloc_len)) == NULL) {
if (count) *count = -1;
return NULL;
}
/* component array */
array_ptr = (char **)mem_block;
/* components copied after end of array */
component_ptr = mem_block + ((n_components+1)*sizeof(char *));
/* If path is absolute add in special "/" root component */
if (*path == '/') {
*array_ptr++ = component_ptr;
*component_ptr++ = '/';
*component_ptr++ = 0;
}
for (start = end = path; *start; start = end) {
for (start = end; *start && *start == '/'; start++);
for (end = start; *end && *end != '/'; end++);
if ((end - start) == 0) break;
*array_ptr++ = component_ptr;
while (start < end) *component_ptr++ = *start++;
*component_ptr++ = 0;
}
*array_ptr = NULL;
if (count) *count = n_components;
return (char **)mem_block;
}
int normalize_path(char *normalized_path, size_t normalized_path_size, const char *path)
{
int result = SUCCESS;
int component_len;
bool is_absolute, can_backup;
const char *start, *end;
char *dst, *dst_end, *p, *limit;
if (!normalized_path || normalized_path_size < 1) return ENOBUFS;
dst = normalized_path;
dst_end = normalized_path + normalized_path_size - 1; /* -1 allows for NULL terminator */
can_backup = true;
if (!path || !*path) {
if (dst > dst_end) {
*dst = 0;
return ENOBUFS;
}
*dst++ = '.';
*dst = 0;
return result;
}
if ((is_absolute = *path == '/')) {
if (dst < dst_end) {
*dst++ = '/';
} else {
*dst = 0;
return ENOBUFS;
}
}
for (start = end = path; *start; start = end) {
for (start = end; *start && *start == '/'; start++);
for (end = start; *end && *end != '/'; end++);
if ((component_len = end - start) == 0) break;
if (component_len == 1 && start[0] == '.') continue;
if (component_len == 2 && start[0] == '.' && start[1] == '.' && can_backup) {
/* back up one level */
if ((is_absolute && dst == normalized_path+1) || (!is_absolute && dst == normalized_path)) {
if (is_absolute) continue;
can_backup = false;
result = PATH_UTILS_ERROR_NOT_FULLY_NORMALIZED;
} else {
if (is_absolute)
limit = normalized_path+1;
else
limit = normalized_path;
for (p = dst-1; p >= limit && *p != '/'; p--);
if (p < limit)
dst = limit;
else
dst = p;
continue;
}
}
if ((end-start) > (dst_end-dst)) {
return ENOBUFS;
}
if ((dst > normalized_path) && (dst < dst_end) && (dst[-1] != '/')) *dst++ = '/';
while ((start < end) && (dst < dst_end)) *dst++ = *start++;
}
if (dst == normalized_path) {
if (is_absolute)
*dst++ = '/';
else
*dst++ = '.';
}
*dst = 0;
return result;
}
int common_path_prefix(char *common_path,
size_t common_path_size,
int *common_count,
const char *path1, const char *path2)
{
int count1, count2, min_count, i, n_common, result;
char **split1, **split2;
char *dst, *dst_end, *src;
if (!common_path || common_path_size < 1) return ENOBUFS;
result = SUCCESS;
n_common = 0;
split1 = split_path(path1, &count1);
split2 = split_path(path2, &count2);
if (count1 <= count2)
min_count = count1;
else
min_count = count2;
if (min_count <= 0 || !split1 || !split2 ) {
result = SUCCESS;
*common_path = 0;
goto done;
}
for (n_common = 0; n_common < min_count; n_common++) {
if (strcmp(split1[n_common], split2[n_common]) != 0) break;
}
if (n_common == 0) {
result = SUCCESS;
*common_path = 0;
goto done;
}
dst = common_path;
dst_end = common_path + common_path_size - 1; /* -1 allows for NULL terminator */
for (i = 0; i < n_common; i++) {
for (src = split1[i]; *src && dst < dst_end;) *dst++ = *src++;
if (dst == dst_end && *src) {
*dst = 0;
result = ENOBUFS;
goto done;
}
if (dst[-1] != '/' && i < n_common-1) { /* insert path separator */
if (dst == dst_end) {
*dst = 0;
result = ENOBUFS;
goto done;
}
*dst++ = '/';
}
}
*dst = 0;
done:
free(split1);
free(split2);
if (common_count) *common_count = n_common;
return result;
}
int make_normalized_absolute_path(char *result_path, size_t result_path_size, const char *path)
{
int error;
char absolute_path[PATH_MAX];
if (!result_path || result_path_size < 1) return ENOBUFS;
*result_path = 0;
if ((error = make_path_absolute(absolute_path, sizeof(absolute_path), path)) != SUCCESS) return error;
if ((error = normalize_path(result_path, result_path_size, absolute_path)) != SUCCESS) return error;
return SUCCESS;
}
int find_existing_directory_ancestor(char *ancestor, size_t ancestor_size, const char *path)
{
int error;
char dir_path[PATH_MAX];
struct stat info;
if (!ancestor || ancestor_size < 1) return ENOBUFS;
*ancestor = 0;
/* coverity[buffer_size_warning : SUPPRESS] */ /* false positive warning */
strncpy(dir_path, path, sizeof(dir_path));
if (dir_path[sizeof(dir_path)-1] != '\0') return ENOBUFS;
while (strcmp(dir_path, "/") != 0) {
if (lstat(dir_path, &info) < 0) {
error = errno;
if (error != ENOENT) return error;
} else {
if (S_ISDIR(info.st_mode)) break;
}
error = get_dirname(dir_path, sizeof(dir_path), dir_path);
if (error != SUCCESS) {
return error;
}
}
strncpy(ancestor, dir_path, ancestor_size);
if (ancestor[ancestor_size-1] != '\0') return ENOBUFS;
return SUCCESS;
}
int directory_list(const char *path, bool recursive,
directory_list_callback_t callback, void *user_data)
{
DIR *dir;
struct dirent *entry;
struct stat info;
int error = 0;
char entry_path[PATH_MAX];
bool prune = false;
if (!(dir = opendir(path))) {
error = errno;
return error;
}
for (entry = readdir(dir); entry; entry = readdir(dir)) {
if (strcmp(entry->d_name, ".") == 0 ||
strcmp(entry->d_name, "..") == 0) {
continue;
}
error = path_concat(entry_path, sizeof(entry_path),
path, entry->d_name);
if (error != SUCCESS) {
closedir(dir);
/* Don't bother checking the return here.
* The path_concat error is more important
*/
return error;
}
if (lstat(entry_path, &info) < 0) {
continue;
}
prune = !callback(path, entry->d_name, entry_path, &info, user_data);
if (S_ISDIR(info.st_mode)) {
if (recursive && !prune) {
error = directory_list(entry_path, recursive,
callback, user_data);
if (error != SUCCESS) {
closedir(dir);
/* Don't bother checking the return here.
* The directory_list error is more important
*/
return error;
}
}
}
}
error = closedir(dir);
if (error) {
return error;
}
return SUCCESS;
}
bool is_ancestor_path(const char *ancestor, const char *path)
{
char **path_components, **ancestor_components;
int i, path_count, ancestor_count;
bool result = false;
path_components = split_path(path, &path_count);
ancestor_components = split_path(ancestor, &ancestor_count);
if (!path_components || !ancestor_components) {
goto exit;
}
if (ancestor_count >= path_count) {
goto exit;
}
for (i = 0; i < ancestor_count; i++) {
if (strcmp(path_components[i], ancestor_components[i]) != 0) {
goto exit;
}
}
result = true;
exit:
free(path_components);
free(ancestor_components);
return result;
}
|