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 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
|
/*
* create_inode.c --- create an inode
*
* Copyright (C) 2014 Robert Yang <liezhi.yang@windriver.com>
*
* %Begin-Header%
* This file may be redistributed under the terms of the GNU library
* General Public License, version 2.
* %End-Header%
*/
#define _LARGEFILE64_SOURCE 1
#define _GNU_SOURCE 1
#include "config.h"
#include <time.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <limits.h> /* for PATH_MAX */
#include <dirent.h> /* for scandir() and alphasort() */
#if defined HAVE_SYS_XATTR_H
#include <sys/xattr.h>
#elif defined HAVE_ATTR_XATTR_H
#include <attr/xattr.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef HAVE_SYS_SYSMACROS_H
#include <sys/sysmacros.h>
#endif
#include <ext2fs/ext2fs.h>
#include <ext2fs/ext2_types.h>
#include <ext2fs/fiemap.h>
#include "create_inode.h"
#include "support/nls-enable.h"
#include "create_inode_libarchive.h"
/* 64KiB is the minimum blksize to best minimize system call overhead. */
#define COPY_FILE_BUFLEN 65536
static int ext2_file_type(unsigned int mode)
{
if (LINUX_S_ISREG(mode))
return EXT2_FT_REG_FILE;
if (LINUX_S_ISDIR(mode))
return EXT2_FT_DIR;
if (LINUX_S_ISCHR(mode))
return EXT2_FT_CHRDEV;
if (LINUX_S_ISBLK(mode))
return EXT2_FT_BLKDEV;
if (LINUX_S_ISLNK(mode))
return EXT2_FT_SYMLINK;
if (LINUX_S_ISFIFO(mode))
return EXT2_FT_FIFO;
if (LINUX_S_ISSOCK(mode))
return EXT2_FT_SOCK;
return 0;
}
/* Link an inode number to a directory */
errcode_t add_link(ext2_filsys fs, ext2_ino_t parent_ino,
ext2_ino_t ino, const char *name)
{
struct ext2_inode inode;
errcode_t retval;
retval = ext2fs_read_inode(fs, ino, &inode);
if (retval) {
com_err(__func__, retval, _("while reading inode %u"), ino);
return retval;
}
retval = ext2fs_link(fs, parent_ino, name, ino,
ext2_file_type(inode.i_mode));
if (retval == EXT2_ET_DIR_NO_SPACE) {
retval = ext2fs_expand_dir(fs, parent_ino);
if (retval) {
com_err(__func__, retval,
_("while expanding directory"));
return retval;
}
retval = ext2fs_link(fs, parent_ino, name, ino,
ext2_file_type(inode.i_mode));
}
if (retval) {
com_err(__func__, retval, _("while linking \"%s\""), name);
return retval;
}
inode.i_links_count++;
retval = ext2fs_write_inode(fs, ino, &inode);
if (retval)
com_err(__func__, retval, _("while writing inode %u"), ino);
return retval;
}
static time_t clamped_time(ext2_filsys fs, time_t t)
{
if ((fs->flags2 & EXT2_FLAG2_USE_FAKE_TIME) && t > fs->now)
return fs->now;
return t;
}
/* Set the uid, gid, mode and time for the inode */
errcode_t set_inode_extra(ext2_filsys fs, ext2_ino_t ino,
const struct stat *st)
{
errcode_t retval;
struct ext2_inode inode;
retval = ext2fs_read_inode(fs, ino, &inode);
if (retval) {
com_err(__func__, retval, _("while reading inode %u"), ino);
return retval;
}
inode.i_uid = st->st_uid;
ext2fs_set_i_uid_high(inode, st->st_uid >> 16);
inode.i_gid = st->st_gid;
ext2fs_set_i_gid_high(inode, st->st_gid >> 16);
inode.i_mode = (LINUX_S_IFMT & inode.i_mode) | (~S_IFMT & st->st_mode);
ext2fs_inode_xtime_set(&inode, i_atime, clamped_time(fs, st->st_atime));
ext2fs_inode_xtime_set(&inode, i_ctime, clamped_time(fs, st->st_ctime));
ext2fs_inode_xtime_set(&inode, i_mtime, clamped_time(fs, st->st_mtime));
retval = ext2fs_write_inode(fs, ino, &inode);
if (retval)
com_err(__func__, retval, _("while writing inode %u"), ino);
return retval;
}
#ifdef HAVE_LLISTXATTR
static errcode_t set_inode_xattr(ext2_filsys fs, ext2_ino_t ino,
const char *filename)
{
errcode_t retval, close_retval;
struct ext2_xattr_handle *handle;
ssize_t size, value_size;
char *list = NULL;
int i;
if (no_copy_xattrs)
return 0;
size = llistxattr(filename, NULL, 0);
if (size == -1) {
if (errno == ENOTSUP)
return 0;
retval = errno;
com_err(__func__, retval, _("while listing attributes of \"%s\""),
filename);
return retval;
} else if (size == 0) {
return 0;
}
retval = ext2fs_xattrs_open(fs, ino, &handle);
if (retval) {
if (retval == EXT2_ET_MISSING_EA_FEATURE)
return 0;
com_err(__func__, retval, _("while opening inode %u"), ino);
return retval;
}
retval = ext2fs_xattrs_read(handle);
if (retval) {
com_err(__func__, retval,
_("while reading xattrs for inode %u"), ino);
goto out;
}
retval = ext2fs_get_mem(size, &list);
if (retval) {
com_err(__func__, retval, _("while allocating memory"));
goto out;
}
size = llistxattr(filename, list, size);
if (size == -1) {
retval = errno;
com_err(__func__, retval, _("while listing attributes of \"%s\""),
filename);
goto out;
}
for (i = 0; i < size; i += strlen(&list[i]) + 1) {
const char *name = &list[i];
char *value;
value_size = lgetxattr(filename, name, NULL, 0);
if (value_size == -1) {
retval = errno;
com_err(__func__, retval,
_("while reading attribute \"%s\" of \"%s\""),
name, filename);
break;
}
retval = ext2fs_get_mem(value_size, &value);
if (retval) {
com_err(__func__, retval, _("while allocating memory"));
break;
}
value_size = lgetxattr(filename, name, value, value_size);
if (value_size == -1) {
ext2fs_free_mem(&value);
retval = errno;
com_err(__func__, retval,
_("while reading attribute \"%s\" of \"%s\""),
name, filename);
break;
}
retval = ext2fs_xattr_set(handle, name, value, value_size);
ext2fs_free_mem(&value);
if (retval) {
com_err(__func__, retval,
_("while writing attribute \"%s\" to inode %u"),
name, ino);
break;
}
}
out:
ext2fs_free_mem(&list);
close_retval = ext2fs_xattrs_close(&handle);
if (close_retval) {
com_err(__func__, retval, _("while closing inode %u"), ino);
retval = retval ? retval : close_retval;
}
return retval;
}
#else /* HAVE_LLISTXATTR */
static errcode_t set_inode_xattr(ext2_filsys fs EXT2FS_ATTR((unused)),
ext2_ino_t ino EXT2FS_ATTR((unused)),
const char *filename EXT2FS_ATTR((unused)))
{
return 0;
}
#endif /* HAVE_LLISTXATTR */
#ifndef _WIN32
/* Make a special files (block and character devices), fifo's, and sockets */
errcode_t do_mknod_internal(ext2_filsys fs, ext2_ino_t cwd, const char *name,
unsigned int st_mode, unsigned int st_rdev)
{
ext2_ino_t ino;
errcode_t retval;
struct ext2_inode inode;
unsigned long devmajor, devminor, mode;
int filetype;
time_t now;
switch(st_mode & S_IFMT) {
case S_IFCHR:
mode = LINUX_S_IFCHR;
filetype = EXT2_FT_CHRDEV;
break;
case S_IFBLK:
mode = LINUX_S_IFBLK;
filetype = EXT2_FT_BLKDEV;
break;
case S_IFIFO:
mode = LINUX_S_IFIFO;
filetype = EXT2_FT_FIFO;
break;
#ifndef _WIN32
case S_IFSOCK:
mode = LINUX_S_IFSOCK;
filetype = EXT2_FT_SOCK;
break;
#endif
default:
return EXT2_ET_INVALID_ARGUMENT;
}
retval = ext2fs_new_inode(fs, cwd, 010755, 0, &ino);
if (retval) {
com_err(__func__, retval, _("while allocating inode \"%s\""),
name);
return retval;
}
#ifdef DEBUGFS
printf("Allocated inode: %u\n", ino);
#endif
retval = ext2fs_link(fs, cwd, name, ino, filetype);
if (retval == EXT2_ET_DIR_NO_SPACE) {
retval = ext2fs_expand_dir(fs, cwd);
if (retval) {
com_err(__func__, retval,
_("while expanding directory"));
return retval;
}
retval = ext2fs_link(fs, cwd, name, ino, filetype);
}
if (retval) {
com_err(name, retval, _("while creating inode \"%s\""), name);
return retval;
}
if (ext2fs_test_inode_bitmap2(fs->inode_map, ino))
com_err(__func__, 0, "Warning: inode already set");
ext2fs_inode_alloc_stats2(fs, ino, +1, 0);
memset(&inode, 0, sizeof(inode));
inode.i_mode = mode;
now = fs->now ? fs->now : time(0);
ext2fs_inode_xtime_set(&inode, i_atime, now);
ext2fs_inode_xtime_set(&inode, i_ctime, now);
ext2fs_inode_xtime_set(&inode, i_mtime, now);
if (filetype != S_IFIFO) {
devmajor = major(st_rdev);
devminor = minor(st_rdev);
if ((devmajor < 256) && (devminor < 256)) {
inode.i_block[0] = devmajor * 256 + devminor;
inode.i_block[1] = 0;
} else {
inode.i_block[0] = 0;
inode.i_block[1] = (devminor & 0xff) | (devmajor << 8) |
((devminor & ~0xff) << 12);
}
}
inode.i_links_count = 1;
retval = ext2fs_write_new_inode(fs, ino, &inode);
if (retval)
com_err(__func__, retval, _("while writing inode %u"), ino);
return retval;
}
#endif
/* Make a symlink name -> target */
errcode_t do_symlink_internal(ext2_filsys fs, ext2_ino_t cwd, const char *name,
char *target, ext2_ino_t root)
{
char *cp;
ext2_ino_t parent_ino;
errcode_t retval;
cp = strrchr(name, '/');
if (cp) {
*cp = 0;
retval = ext2fs_namei(fs, root, cwd, name, &parent_ino);
if (retval) {
com_err(name, retval, 0);
return retval;
}
name = cp+1;
} else
parent_ino = cwd;
retval = ext2fs_symlink(fs, parent_ino, 0, name, target);
if (retval == EXT2_ET_DIR_NO_SPACE) {
retval = ext2fs_expand_dir(fs, parent_ino);
if (retval) {
com_err("do_symlink_internal", retval,
_("while expanding directory"));
return retval;
}
retval = ext2fs_symlink(fs, parent_ino, 0, name, target);
}
if (retval)
com_err("ext2fs_symlink", retval,
_("while creating symlink \"%s\""), name);
return retval;
}
/* Make a directory in the fs */
errcode_t do_mkdir_internal(ext2_filsys fs, ext2_ino_t cwd, const char *name,
ext2_ino_t root)
{
char *cp;
ext2_ino_t parent_ino;
errcode_t retval;
cp = strrchr(name, '/');
if (cp) {
*cp = 0;
retval = ext2fs_namei(fs, root, cwd, name, &parent_ino);
if (retval) {
com_err(name, retval, _("while looking up \"%s\""),
name);
return retval;
}
name = cp+1;
} else
parent_ino = cwd;
retval = ext2fs_mkdir(fs, parent_ino, 0, name);
if (retval == EXT2_ET_DIR_NO_SPACE) {
retval = ext2fs_expand_dir(fs, parent_ino);
if (retval) {
com_err(__func__, retval,
_("while expanding directory"));
return retval;
}
retval = ext2fs_mkdir(fs, parent_ino, 0, name);
}
if (retval)
com_err("ext2fs_mkdir", retval,
_("while creating directory \"%s\""), name);
return retval;
}
#if !defined HAVE_PREAD64 && !defined HAVE_PREAD
static ssize_t my_pread(int fd, void *buf, size_t count, off_t offset)
{
if (lseek(fd, offset, SEEK_SET) < 0)
return 0;
return read(fd, buf, count);
}
#endif /* !defined HAVE_PREAD64 && !defined HAVE_PREAD */
static errcode_t copy_file_chunk(ext2_filsys fs, int fd, ext2_file_t e2_file,
off_t start, off_t end, char *buf,
char *zerobuf)
{
off_t off, bpos;
ssize_t got, blen;
unsigned int written;
char *ptr;
errcode_t err = 0;
for (off = start; off < end; off += COPY_FILE_BUFLEN) {
#ifdef HAVE_PREAD64
got = pread64(fd, buf, COPY_FILE_BUFLEN, off);
#elif HAVE_PREAD
got = pread(fd, buf, COPY_FILE_BUFLEN, off);
#else
got = my_pread(fd, buf, COPY_FILE_BUFLEN, off);
#endif
if (got < 0) {
err = errno;
goto fail;
}
for (bpos = 0, ptr = buf; bpos < got; bpos += fs->blocksize) {
blen = fs->blocksize;
if (blen > got - bpos)
blen = got - bpos;
if (memcmp(ptr, zerobuf, blen) == 0) {
ptr += blen;
continue;
}
err = ext2fs_file_llseek(e2_file, off + bpos,
EXT2_SEEK_SET, NULL);
if (err)
goto fail;
while (blen > 0) {
err = ext2fs_file_write(e2_file, ptr, blen,
&written);
if (err)
goto fail;
if (written == 0) {
err = EIO;
goto fail;
}
blen -= written;
ptr += written;
}
}
}
fail:
return err;
}
#if defined(SEEK_DATA) && defined(SEEK_HOLE)
static errcode_t try_lseek_copy(ext2_filsys fs, int fd, struct stat *statbuf,
ext2_file_t e2_file, char *buf, char *zerobuf)
{
off_t data = 0, hole;
off_t data_blk, hole_blk;
errcode_t err = 0;
/* Try to use SEEK_DATA and SEEK_HOLE */
while (data < statbuf->st_size) {
data = lseek(fd, data, SEEK_DATA);
if (data < 0) {
if (errno == ENXIO)
break;
return EXT2_ET_UNIMPLEMENTED;
}
hole = lseek(fd, data, SEEK_HOLE);
if (hole < 0)
return EXT2_ET_UNIMPLEMENTED;
data_blk = data & ~(off_t)(fs->blocksize - 1);
hole_blk = ((hole + (off_t)(fs->blocksize - 1)) &
~(off_t)(fs->blocksize - 1));
err = copy_file_chunk(fs, fd, e2_file, data_blk, hole_blk, buf,
zerobuf);
if (err)
return err;
data = hole;
}
return err;
}
#endif /* SEEK_DATA and SEEK_HOLE */
#if defined(FS_IOC_FIEMAP)
static errcode_t try_fiemap_copy(ext2_filsys fs, int fd, ext2_file_t e2_file,
char *buf, char *zerobuf)
{
#define EXTENT_MAX_COUNT 512
struct fiemap *fiemap_buf;
struct fiemap_extent *ext_buf, *ext;
int ext_buf_size, fie_buf_size;
off_t pos = 0;
unsigned int i;
errcode_t err;
ext_buf_size = EXTENT_MAX_COUNT * sizeof(struct fiemap_extent);
fie_buf_size = sizeof(struct fiemap) + ext_buf_size;
err = ext2fs_get_memzero(fie_buf_size, &fiemap_buf);
if (err)
return err;
ext_buf = fiemap_buf->fm_extents;
memset(fiemap_buf, 0, fie_buf_size);
fiemap_buf->fm_length = FIEMAP_MAX_OFFSET;
fiemap_buf->fm_flags |= FIEMAP_FLAG_SYNC;
fiemap_buf->fm_extent_count = EXTENT_MAX_COUNT;
do {
fiemap_buf->fm_start = pos;
memset(ext_buf, 0, ext_buf_size);
err = ioctl(fd, FS_IOC_FIEMAP, fiemap_buf);
if (err < 0 && (errno == EOPNOTSUPP || errno == ENOTTY)) {
err = EXT2_ET_UNIMPLEMENTED;
goto out;
} else if (err < 0) {
err = errno;
goto out;
} else if (fiemap_buf->fm_mapped_extents == 0)
goto out;
for (i = 0, ext = ext_buf; i < fiemap_buf->fm_mapped_extents;
i++, ext++) {
err = copy_file_chunk(fs, fd, e2_file, ext->fe_logical,
ext->fe_logical + ext->fe_length,
buf, zerobuf);
if (err)
goto out;
}
ext--;
/* Record file's logical offset this time */
pos = ext->fe_logical + ext->fe_length;
/*
* If fm_extents array has been filled and
* there are extents left, continue to cycle.
*/
} while (fiemap_buf->fm_mapped_extents == EXTENT_MAX_COUNT &&
!(ext->fe_flags & FIEMAP_EXTENT_LAST));
out:
ext2fs_free_mem(&fiemap_buf);
return err;
}
#endif /* FS_IOC_FIEMAP */
static errcode_t copy_file(ext2_filsys fs, int fd, struct stat *statbuf,
ext2_ino_t ino)
{
ext2_file_t e2_file;
char *buf = NULL, *zerobuf = NULL;
errcode_t err, close_err;
err = ext2fs_file_open(fs, ino, EXT2_FILE_WRITE, &e2_file);
if (err)
return err;
err = ext2fs_get_mem(COPY_FILE_BUFLEN, &buf);
if (err)
goto out;
err = ext2fs_get_memzero(fs->blocksize, &zerobuf);
if (err)
goto out;
#if defined(SEEK_DATA) && defined(SEEK_HOLE)
err = try_lseek_copy(fs, fd, statbuf, e2_file, buf, zerobuf);
if (err != EXT2_ET_UNIMPLEMENTED)
goto out;
#endif
#if defined(FS_IOC_FIEMAP)
err = try_fiemap_copy(fs, fd, e2_file, buf, zerobuf);
if (err != EXT2_ET_UNIMPLEMENTED)
goto out;
#endif
err = copy_file_chunk(fs, fd, e2_file, 0, statbuf->st_size, buf,
zerobuf);
out:
ext2fs_free_mem(&zerobuf);
ext2fs_free_mem(&buf);
close_err = ext2fs_file_close(e2_file);
if (err == 0)
err = close_err;
return err;
}
static int is_hardlink(struct hdlinks_s *hdlinks, dev_t dev, ino_t ino)
{
int i;
for (i = 0; i < hdlinks->count; i++) {
if (hdlinks->hdl[i].src_dev == dev &&
hdlinks->hdl[i].src_ino == ino)
return i;
}
return -1;
}
/* Copy the native file to the fs */
errcode_t do_write_internal(ext2_filsys fs, ext2_ino_t cwd, const char *src,
const char *dest, ext2_ino_t root)
{
int fd;
struct stat statbuf;
ext2_ino_t newfile, parent_ino;
errcode_t retval;
struct ext2_inode inode;
char *cp;
time_t now;
fd = ext2fs_open_file(src, O_RDONLY, 0);
if (fd < 0) {
retval = errno;
com_err(__func__, retval, _("while opening \"%s\" to copy"),
src);
return retval;
}
if (fstat(fd, &statbuf) < 0) {
retval = errno;
goto out;
}
cp = strrchr(dest, '/');
if (cp) {
*cp = 0;
retval = ext2fs_namei(fs, root, cwd, dest, &parent_ino);
if (retval) {
com_err(dest, retval, _("while looking up \"%s\""),
dest);
goto out;
}
dest = cp+1;
} else
parent_ino = cwd;
retval = ext2fs_namei(fs, root, parent_ino, dest, &newfile);
if (retval == 0) {
retval = EXT2_ET_FILE_EXISTS;
goto out;
}
retval = ext2fs_new_inode(fs, parent_ino, 010755, 0, &newfile);
if (retval)
goto out;
#ifdef DEBUGFS
printf("Allocated inode: %u\n", newfile);
#endif
retval = ext2fs_link(fs, parent_ino, dest, newfile, EXT2_FT_REG_FILE);
if (retval == EXT2_ET_DIR_NO_SPACE) {
retval = ext2fs_expand_dir(fs, parent_ino);
if (retval)
goto out;
retval = ext2fs_link(fs, parent_ino, dest, newfile,
EXT2_FT_REG_FILE);
}
if (retval)
goto out;
if (ext2fs_test_inode_bitmap2(fs->inode_map, newfile))
com_err(__func__, 0, "Warning: inode already set");
ext2fs_inode_alloc_stats2(fs, newfile, +1, 0);
memset(&inode, 0, sizeof(inode));
inode.i_mode = (statbuf.st_mode & ~S_IFMT) | LINUX_S_IFREG;
now = fs->now ? fs->now : time(0);
ext2fs_inode_xtime_set(&inode, i_atime, now);
ext2fs_inode_xtime_set(&inode, i_ctime, now);
ext2fs_inode_xtime_set(&inode, i_mtime, now);
inode.i_links_count = 1;
retval = ext2fs_inode_size_set(fs, &inode, statbuf.st_size);
if (retval)
goto out;
if (ext2fs_has_feature_inline_data(fs->super)) {
inode.i_flags |= EXT4_INLINE_DATA_FL;
} else if (ext2fs_has_feature_extents(fs->super)) {
ext2_extent_handle_t handle;
inode.i_flags &= ~EXT4_EXTENTS_FL;
retval = ext2fs_extent_open2(fs, newfile, &inode, &handle);
if (retval)
goto out;
ext2fs_extent_free(handle);
}
retval = ext2fs_write_new_inode(fs, newfile, &inode);
if (retval)
goto out;
if (inode.i_flags & EXT4_INLINE_DATA_FL) {
retval = ext2fs_inline_data_init(fs, newfile);
if (retval)
goto out;
}
if (LINUX_S_ISREG(inode.i_mode)) {
retval = copy_file(fs, fd, &statbuf, newfile);
if (retval)
goto out;
}
out:
close(fd);
return retval;
}
static errcode_t path_append(struct file_info *target, const char *file)
{
if (strlen(file) + target->path_len + 1 > target->path_max_len) {
void *p;
target->path_max_len *= 2;
p = realloc(target->path, target->path_max_len);
if (p == NULL)
return EXT2_ET_NO_MEMORY;
target->path = p;
}
target->path_len += sprintf(target->path + target->path_len, "/%s",
file);
return 0;
}
#ifdef _WIN32
static int scandir(const char *dir_name, struct dirent ***name_list,
int (*filter)(const struct dirent*),
int (*compar)(const struct dirent**, const struct dirent**)) {
DIR *dir;
struct dirent *dent;
struct dirent **temp_list = NULL;
size_t temp_list_size = 0; // unit: num of dirent
size_t num_dent = 0;
dir = opendir(dir_name);
if (dir == NULL) {
return -1;
}
while ((dent = readdir(dir))) {
if (filter != NULL && !(*filter)(dent))
continue;
// re-allocate the list
if (num_dent == temp_list_size) {
size_t new_list_size = temp_list_size + 32;
struct dirent **new_list = (struct dirent**)realloc(
temp_list, new_list_size * sizeof(struct dirent*));
if (new_list == NULL)
goto out_err;
temp_list_size = new_list_size;
temp_list = new_list;
}
// add the copy of dirent to the list
temp_list[num_dent] = (struct dirent*)malloc((dent->d_reclen + 3) & ~3);
if (!temp_list[num_dent])
goto out_err;
memcpy(temp_list[num_dent], dent, dent->d_reclen);
num_dent++;
}
closedir(dir);
if (compar != NULL) {
qsort(temp_list, num_dent, sizeof(struct dirent*),
(int (*)(const void*, const void*))compar);
}
*name_list = temp_list;
return num_dent;
out_err:
closedir(dir);
while (num_dent > 0)
free(temp_list[--num_dent]);
free(temp_list);
return -1;
}
static int alphasort(const struct dirent **a, const struct dirent **b) {
return strcoll((*a)->d_name, (*b)->d_name);
}
#endif
/* Copy files from source_dir to fs in alphabetical order */
static errcode_t __populate_fs(ext2_filsys fs, ext2_ino_t parent_ino,
const char *source_dir, ext2_ino_t root,
struct hdlinks_s *hdlinks,
struct file_info *target,
struct fs_ops_callbacks *fs_callbacks)
{
const char *name;
struct dirent **dent;
struct stat st;
unsigned int save_inode;
ext2_ino_t ino;
errcode_t retval = 0;
int hdlink;
size_t cur_dir_path_len;
int i, num_dents;
if (chdir(source_dir) < 0) {
retval = errno;
com_err(__func__, retval,
_("while changing working directory to \"%s\""),
source_dir);
return retval;
}
num_dents = scandir(".", &dent, NULL, alphasort);
if (num_dents < 0) {
retval = errno;
com_err(__func__, retval,
_("while scanning directory \"%s\""), source_dir);
return retval;
}
for (i = 0; i < num_dents; free(dent[i]), i++) {
name = dent[i]->d_name;
if ((!strcmp(name, ".")) || (!strcmp(name, "..")))
continue;
if (lstat(name, &st)) {
retval = errno;
com_err(__func__, retval, _("while lstat \"%s\""),
name);
goto out;
}
/* Check for hardlinks */
save_inode = 0;
if (!S_ISDIR(st.st_mode) && !S_ISLNK(st.st_mode) &&
st.st_nlink > 1) {
hdlink = is_hardlink(hdlinks, st.st_dev, st.st_ino);
if (hdlink >= 0) {
retval = add_link(fs, parent_ino,
hdlinks->hdl[hdlink].dst_ino,
name);
if (retval) {
com_err(__func__, retval,
"while linking %s", name);
goto out;
}
continue;
} else
save_inode = 1;
}
cur_dir_path_len = target->path_len;
retval = path_append(target, name);
if (retval) {
com_err(__func__, retval,
"while appending %s", name);
goto out;
}
if (fs_callbacks && fs_callbacks->create_new_inode) {
retval = fs_callbacks->create_new_inode(fs,
target->path, name, parent_ino, root,
st.st_mode & S_IFMT);
if (retval)
goto out;
}
switch(st.st_mode & S_IFMT) {
case S_IFCHR:
case S_IFBLK:
case S_IFIFO:
#ifndef _WIN32
case S_IFSOCK:
retval = do_mknod_internal(fs, parent_ino, name,
st.st_mode, st.st_rdev);
if (retval) {
com_err(__func__, retval,
_("while creating special file "
"\"%s\""), name);
goto out;
}
break;
case S_IFLNK: {
char *ln_target;
int read_cnt;
ln_target = malloc(st.st_size + 1);
if (ln_target == NULL) {
com_err(__func__, retval,
_("malloc failed"));
goto out;
}
read_cnt = readlink(name, ln_target,
st.st_size + 1);
if (read_cnt == -1) {
retval = errno;
com_err(__func__, retval,
_("while trying to read link \"%s\""),
name);
free(ln_target);
goto out;
}
if (read_cnt > st.st_size) {
com_err(__func__, retval,
_("symlink increased in size "
"between lstat() and readlink()"));
free(ln_target);
goto out;
}
ln_target[read_cnt] = '\0';
retval = do_symlink_internal(fs, parent_ino, name,
ln_target, root);
free(ln_target);
if (retval) {
com_err(__func__, retval,
_("while writing symlink\"%s\""),
name);
goto out;
}
break;
}
#endif /* !_WIN32 */
case S_IFREG:
retval = do_write_internal(fs, parent_ino, name, name,
root);
if (retval) {
com_err(__func__, retval,
_("while writing file \"%s\""), name);
goto out;
}
break;
case S_IFDIR:
/* Don't choke on /lost+found */
if (parent_ino == EXT2_ROOT_INO &&
strcmp(name, "lost+found") == 0)
goto find_lnf;
retval = do_mkdir_internal(fs, parent_ino, name,
root);
if (retval) {
com_err(__func__, retval,
_("while making dir \"%s\""), name);
goto out;
}
find_lnf:
retval = ext2fs_namei(fs, root, parent_ino,
name, &ino);
if (retval) {
com_err(name, retval, 0);
goto out;
}
/* Populate the dir recursively*/
retval = __populate_fs(fs, ino, name, root, hdlinks,
target, fs_callbacks);
if (retval)
goto out;
if (chdir("..")) {
retval = errno;
com_err(__func__, retval,
_("while changing directory"));
goto out;
}
break;
default:
com_err(__func__, 0,
_("ignoring entry \"%s\""), name);
}
retval = ext2fs_namei(fs, root, parent_ino, name, &ino);
if (retval) {
com_err(name, retval, _("while looking up \"%s\""),
name);
goto out;
}
retval = set_inode_extra(fs, ino, &st);
if (retval) {
com_err(__func__, retval,
_("while setting inode for \"%s\""), name);
goto out;
}
retval = set_inode_xattr(fs, ino, name);
if (retval) {
com_err(__func__, retval,
_("while setting xattrs for \"%s\""), name);
goto out;
}
if (fs_callbacks && fs_callbacks->end_create_new_inode) {
retval = fs_callbacks->end_create_new_inode(fs,
target->path, name, parent_ino, root,
st.st_mode & S_IFMT);
if (retval)
goto out;
}
/* Save the hardlink ino */
if (save_inode) {
/*
* Check whether need more memory, and we don't need
* free() since the lifespan will be over after the fs
* populated.
*/
if (hdlinks->count == hdlinks->size) {
void *p = realloc(hdlinks->hdl,
(hdlinks->size + HDLINK_CNT) *
sizeof(struct hdlink_s));
if (p == NULL) {
retval = EXT2_ET_NO_MEMORY;
com_err(name, retval,
_("while saving inode data"));
goto out;
}
hdlinks->hdl = p;
hdlinks->size += HDLINK_CNT;
}
hdlinks->hdl[hdlinks->count].src_dev = st.st_dev;
hdlinks->hdl[hdlinks->count].src_ino = st.st_ino;
hdlinks->hdl[hdlinks->count].dst_ino = ino;
hdlinks->count++;
}
target->path_len = cur_dir_path_len;
target->path[target->path_len] = 0;
}
out:
for (; i < num_dents; free(dent[i]), i++);
free(dent);
return retval;
}
errcode_t populate_fs2(ext2_filsys fs, ext2_ino_t parent_ino,
const char *source, ext2_ino_t root,
struct fs_ops_callbacks *fs_callbacks)
{
struct file_info file_info;
struct hdlinks_s hdlinks;
errcode_t retval;
if (!(fs->flags & EXT2_FLAG_RW)) {
com_err(__func__, 0, "Filesystem opened readonly");
return EROFS;
}
hdlinks.count = 0;
hdlinks.size = HDLINK_CNT;
hdlinks.hdl = realloc(NULL, hdlinks.size * sizeof(struct hdlink_s));
if (hdlinks.hdl == NULL) {
retval = errno;
com_err(__func__, retval, _("while allocating memory"));
return retval;
}
file_info.path_len = 0;
file_info.path_max_len = 255;
file_info.path = calloc(file_info.path_max_len, 1);
/* interpret input as tarball either if it's "-" (stdin) or if it's
* a regular file (or a symlink pointing to a regular file)
*/
if (strcmp(source, "-") == 0) {
retval = __populate_fs_from_tar(fs, parent_ino, NULL, root, &hdlinks,
&file_info, fs_callbacks);
goto out;
}
struct stat st;
if (stat(source, &st)) {
retval = errno;
com_err(__func__, retval, _("while calling stat"));
return retval;
}
if (S_ISREG(st.st_mode)) {
retval = __populate_fs_from_tar(fs, parent_ino, source, root, &hdlinks,
&file_info, fs_callbacks);
goto out;
}
retval = set_inode_xattr(fs, root, source);
if (retval) {
com_err(__func__, retval,
_("while copying xattrs on root directory"));
goto out;
}
retval = __populate_fs(fs, parent_ino, source, root, &hdlinks,
&file_info, fs_callbacks);
out:
free(file_info.path);
free(hdlinks.hdl);
return retval;
}
errcode_t populate_fs(ext2_filsys fs, ext2_ino_t parent_ino,
const char *source, ext2_ino_t root)
{
return populate_fs2(fs, parent_ino, source, root, NULL);
}
|