Loading...
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 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 | // SPDX-License-Identifier: GPL-2.0+ /* * U-Boot interface for ext4l filesystem (Linux port) * * Copyright 2025 Canonical Ltd * Written by Simon Glass <simon.glass@canonical.com> * * This provides the interface between U-Boot's filesystem layer and * the ext4l driver. */ #include <blk.h> #include <dm.h> #include <env.h> #include <ext4l.h> #include <fs.h> #include <fs_legacy.h> #include <part.h> #include <malloc.h> #include <u-boot/uuid.h> #include <linux/errno.h> #include <linux/jbd2.h> #include <linux/math64.h> #include <linux/types.h> #include "ext4_uboot.h" #include "ext4.h" #include "ext4_jbd2.h" #include "xattr.h" /* Global state for the legacy filesystem interface */ static struct ext4l_state efs; /** * ext4l_get_uuid() - Get the filesystem UUID * * @state: Per-mount state * @uuid: Buffer to receive the 16-byte UUID * Return: 0 on success, -ENODEV if not mounted */ int ext4l_get_uuid(struct ext4l_state *state, u8 *uuid) { if (!state->sb) return -ENODEV; memcpy(uuid, state->sb->s_uuid.b, 16); return 0; } /** * ext4l_uuid() - Get the filesystem UUID as a string * * @uuid_str: Buffer to receive the UUID string (must be at least 37 bytes) * Return: 0 on success, -ENODEV if not mounted */ int ext4l_uuid(char *uuid_str) { u8 uuid[16]; int ret; ret = ext4l_get_uuid_legacy(uuid); if (ret) return ret; uuid_bin_to_str(uuid, uuid_str, UUID_STR_FORMAT_STD); return 0; } /** * ext4l_statfs() - Get filesystem statistics * * @state: Per-mount state * @stats: Pointer to fs_statfs structure to fill * Return: 0 on success, -ENODEV if not mounted */ int ext4l_statfs(struct ext4l_state *state, struct fs_statfs *stats) { struct ext4_super_block *es; if (!state->sb) return -ENODEV; es = EXT4_SB(state->sb)->s_es; stats->bsize = state->sb->s_blocksize; stats->blocks = ext4_blocks_count(es); stats->bfree = ext4_free_blocks_count(es); return 0; } /** * ext4l_free_sb() - Free superblock and associated resources * @sb: Superblock to free * @skip_io: If true, skip all I/O operations (for forced close) * * Releases all resources associated with the superblock including the journal, * caches, inodes, and the superblock structure itself. */ static void ext4l_free_sb(struct super_block *sb, bool skip_io) { struct ext4_sb_info *sbi = EXT4_SB(sb); /* * Destroy journal first to properly clean up all buffers. * If skip_io is set, the device may be invalid so skip * journal destroy entirely - it will be recovered on next mount. */ if (sbi->s_journal && !skip_io) ext4_journal_destroy(sbi, sbi->s_journal); /* Commit superblock if device is valid and I/O is allowed */ if (!skip_io) ext4_commit_super(sb); /* Release superblock buffer */ brelse(sbi->s_sbh); /* Unregister lazy init and free if no longer needed */ ext4_unregister_li_request(sb); ext4_destroy_lazy_init(); /* Free mballoc data */ ext4_mb_release(sb); /* Release system zone */ ext4_release_system_zone(sb); /* Destroy xattr caches */ ext4_xattr_destroy_cache(sbi->s_ea_inode_cache); sbi->s_ea_inode_cache = NULL; ext4_xattr_destroy_cache(sbi->s_ea_block_cache); sbi->s_ea_block_cache = NULL; /* Free group descriptors and flex groups */ ext4_group_desc_free(sbi); ext4_flex_groups_free(sbi); /* Evict all inodes before destroying caches */ while (!list_empty(&sb->s_inodes)) { struct inode *inode; struct ext4_inode_info *ei; inode = list_first_entry(&sb->s_inodes, struct inode, i_sb_list); list_del_init(&inode->i_sb_list); /* Clear extent status and free the inode */ ext4_es_remove_extent(inode, 0, EXT_MAX_BLOCKS); ei = EXT4_I(inode); kfree(ei); } /* Free root dentry */ if (sb->s_root) { kfree(sb->s_root); sb->s_root = NULL; } /* Free sbi */ kfree(sbi->s_blockgroup_lock); kfree(sbi); /* Clear cached buffers for this device before freeing it */ bh_cache_release_jbd(sb->s_bdev); bh_cache_clear(sb->s_bdev); /* Free structures allocated in ext4l_mount() */ kfree(sb->s_bdev->bd_mapping); kfree(sb->s_bdev); kfree(sb); } /** * ext4l_umount_internal() - Internal close function * @state: Per-mount state to initialise * @skip_io: If true, skip all I/O operations (for forced close) * * When called from the safeguard in ext4l_mount(), the device may be * invalid (rebound to a different file), so skip_io should be true to * avoid crashes when trying to write to the device. */ static void ext4l_umount_internal(struct ext4l_state *state, bool skip_io) { struct super_block *sb = state->sb; if (state->open_dirs > 0) return; if (sb) ext4l_free_sb(sb, skip_io); state->sb = NULL; state->blk = NULL; state->mounted = false; /* * Clean up ext4 and JBD2 global state so it can be properly * reinitialised on the next mount. This is important in U-Boot * where we may mount/unmount filesystems multiple times in a * single session. * * Even when skip_io is true (journal wasn't properly destroyed), * we must destroy the caches to free all orphaned journal_heads. * The next mount will reinitialise fresh caches. */ ext4_exit_system_zone(); ext4_exit_es(); if (IS_ENABLED(CONFIG_EXT4_WRITE)) ext4_exit_mballoc(); if (IS_ENABLED(CONFIG_EXT4_JOURNAL)) jbd2_journal_exit_global(); destroy_inodecache(); } int ext4l_mount(struct ext4l_state *state, struct udevice *dev, struct disk_partition *fs_partition) { struct blk_desc *desc = dev_get_uclass_plat(dev); struct ext4_fs_context *ctx; struct super_block *sb; struct fs_context *fc; loff_t part_offset; __le16 *magic; u8 *buf; int ret; memset(state, '\0', sizeof(*state)); if (!dev) return -EINVAL; /* Initialise message buffer for recording ext4 messages */ ext4l_msg_init(); /* Initialise CRC32C table for checksum verification */ ext4l_crc32c_init(); /* Initialise journal subsystem if enabled */ if (IS_ENABLED(CONFIG_EXT4_JOURNAL)) { ret = jbd2_journal_init_global(); if (ret) return ret; } /* Initialise multi-block allocator for write support */ if (IS_ENABLED(CONFIG_EXT4_WRITE)) { ret = ext4_init_mballoc(); if (ret) return ret; } /* Initialise extent status cache */ ret = ext4_init_es(); if (ret) return ret; /* Initialise system zone for block validity checking */ ret = ext4_init_system_zone(); if (ret) goto err_exit_es; /* Allocate super_block */ sb = kzalloc(sizeof(struct super_block), GFP_KERNEL); if (!sb) { ret = -ENOMEM; goto err_exit_es; } INIT_LIST_HEAD(&sb->s_inodes); /* Allocate block_device */ sb->s_bdev = kzalloc(sizeof(struct block_device), GFP_KERNEL); if (!sb->s_bdev) { ret = -ENOMEM; goto err_free_sb; } sb->s_bdev->bd_mapping = kzalloc(sizeof(struct address_space), GFP_KERNEL); if (!sb->s_bdev->bd_mapping) { ret = -ENOMEM; goto err_free_bdev; } /* Initialise super_block fields */ sb->s_bdev->bd_super = sb; sb->s_bdev->bd_blk = dev; sb->s_bdev->bd_part_start = fs_partition ? fs_partition->start : 0; sb->s_blocksize = 1024; sb->s_blocksize_bits = 10; snprintf(sb->s_id, sizeof(sb->s_id), "ext4l_mmc%d", desc->devnum); sb->s_flags = 0; sb->s_fs_info = NULL; /* Allocate fs_context */ fc = kzalloc(sizeof(struct fs_context), GFP_KERNEL); if (!fc) { ret = -ENOMEM; goto err_free_mapping; } /* Allocate ext4_fs_context */ ctx = kzalloc(sizeof(struct ext4_fs_context), GFP_KERNEL); if (!ctx) { ret = -ENOMEM; goto err_free_fc; } /* Initialise fs_context fields */ fc->fs_private = ctx; fc->sb_flags |= SB_I_VERSION; fc->root = (struct dentry *)sb; /* Hack: store sb for ext4_fill_super */ buf = malloc(BLOCK_SIZE + 512); if (!buf) { ret = -ENOMEM; goto err_free_ctx; } /* Calculate partition offset in bytes */ part_offset = fs_partition ? (loff_t)fs_partition->start * desc->blksz : 0; /* Read sectors containing the superblock */ if (blk_read(dev, div_u64(part_offset + BLOCK_SIZE, desc->blksz), 2, buf) != 2) { ret = -EIO; goto err_free_buf; } /* Check magic number within superblock */ magic = (__le16 *)(buf + (BLOCK_SIZE % desc->blksz) + offsetof(struct ext4_super_block, s_magic)); if (le16_to_cpu(*magic) != EXT4_SUPER_MAGIC) { ret = -EINVAL; goto err_free_buf; } /* Set block device for buffer I/O */ state->blk = dev; if (fs_partition) memcpy(&state->partition, fs_partition, sizeof(state->partition)); else memset(&state->partition, 0, sizeof(state->partition)); state->mounted = true; /* * Test if device supports writes by writing back the same data. * If write returns 0, the device is read-only (e.g. LUKS/blkmap_crypt) */ if (blk_write(dev, div_u64(part_offset + BLOCK_SIZE, desc->blksz), 2, buf) != 2) { sb->s_bdev->read_only = true; sb->s_flags |= SB_RDONLY; } free(buf); /* Mount the filesystem */ ret = ext4_fill_super(sb, fc); if (ret) { printf("ext4l: ext4_fill_super failed: %d\n", ret); goto err_free_ctx; } /* Store super_block for later operations */ state->sb = sb; /* Free mount context - no longer needed after successful mount */ kfree(ctx); kfree(fc); /* Print messages if ext4l_msgs environment variable is set */ if (env_get_yesno("ext4l_msgs") == 1) ext4l_print_msgs(); return 0; err_free_buf: free(buf); err_free_ctx: kfree(ctx); err_free_fc: kfree(fc); err_free_mapping: kfree(sb->s_bdev->bd_mapping); err_free_bdev: kfree(sb->s_bdev); err_free_sb: kfree(sb); err_exit_es: ext4_exit_es(); return ret; } int ext4l_probe(struct blk_desc *fs_dev_desc, struct disk_partition *fs_partition) { if (!fs_dev_desc) return -EINVAL; /* * The legacy interface may call probe without a preceding close. * Clean up any previous mount to prevent resource leaks. Use * skip_io=true because the old device may have been rebound. */ if (efs.sb) ext4l_umount_internal(&efs, true); return ext4l_mount(&efs, fs_dev_desc->bdev, fs_partition); } /** * ext4l_read_symlink() - Read the target of a symlink inode * * @inode: Symlink inode * @target: Buffer to store target * @max_len: Maximum length of target buffer * Return: Length of target on success, negative on error */ static int ext4l_read_symlink(struct inode *inode, char *target, size_t max_len) { struct buffer_head *bh; size_t len; if (!S_ISLNK(inode->i_mode)) return -EINVAL; if (ext4_inode_is_fast_symlink(inode)) { /* Fast symlink: target stored in i_data */ len = inode->i_size; if (len >= max_len) len = max_len - 1; memcpy(target, EXT4_I(inode)->i_data, len); target[len] = '\0'; return len; } /* Slow symlink: target stored in data block */ bh = ext4_bread(NULL, inode, 0, 0); if (IS_ERR(bh)) return PTR_ERR(bh); if (!bh) return -EIO; len = inode->i_size; if (len >= max_len) len = max_len - 1; memcpy(target, bh->b_data, len); target[len] = '\0'; brelse(bh); return len; } /** * ext4l_resolve_path_internal() - Resolve path with symlink following * * @state: Per-mount state * @path: Path to resolve * @inodep: Output inode pointer * @depth: Current recursion depth (for symlink loop detection) * Return: 0 on success, negative on error */ static int ext4l_resolve_path_internal(struct ext4l_state *state, const char *path, struct inode **inodep, int depth) { struct inode *dir; struct dentry *dentry, *result; char *path_copy, *component, *next_component; int ret; /* Prevent symlink loops */ if (depth > 8) return -ELOOP; if (!state->mounted) { ext4_debug("ext4l_resolve_path: filesystem not mounted\n"); return -ENODEV; } dir = state->sb->s_root->d_inode; if (!path || !*path || (strcmp(path, "/") == 0)) { *inodep = dir; return 0; } path_copy = strdup(path); if (!path_copy) return -ENOMEM; component = path_copy; /* Skip leading slash */ if (*component == '/') component++; while (component && *component) { next_component = strchr(component, '/'); if (next_component) { *next_component = '\0'; next_component++; } if (!*component) { component = next_component; continue; } /* Handle special directory entries */ if (strcmp(component, ".") == 0) { component = next_component; continue; } if (strcmp(component, "..") == 0) { /* Parent directory - look up ".." entry */ dentry = kzalloc(sizeof(struct dentry), GFP_KERNEL); if (!dentry) { free(path_copy); return -ENOMEM; } dentry->d_name.name = ".."; dentry->d_name.len = 2; dentry->d_sb = state->sb; dentry->d_parent = NULL; result = ext4_lookup(dir, dentry, 0); if (IS_ERR(result)) { kfree(dentry); free(path_copy); return PTR_ERR(result); } if (result && result->d_inode) { dir = result->d_inode; if (result != dentry) kfree(dentry); kfree(result); } else if (dentry->d_inode) { dir = dentry->d_inode; kfree(dentry); } else { /* ".." not found - stay at root */ kfree(dentry); if (result && result != dentry) kfree(result); } component = next_component; continue; } dentry = kzalloc(sizeof(struct dentry), GFP_KERNEL); if (!dentry) { free(path_copy); return -ENOMEM; } dentry->d_name.name = component; dentry->d_name.len = strlen(component); dentry->d_sb = state->sb; dentry->d_parent = NULL; result = ext4_lookup(dir, dentry, 0); if (IS_ERR(result)) { kfree(dentry); free(path_copy); return PTR_ERR(result); } if (result) { if (!result->d_inode) { if (result != dentry) kfree(dentry); kfree(result); free(path_copy); return -ENOENT; } dir = result->d_inode; if (result != dentry) kfree(dentry); kfree(result); } else { if (!dentry->d_inode) { kfree(dentry); free(path_copy); return -ENOENT; } dir = dentry->d_inode; kfree(dentry); } if (!dir) { free(path_copy); return -ENOENT; } /* Check if this is a symlink and follow it */ if (S_ISLNK(dir->i_mode)) { char link_target[256]; char *new_path; ret = ext4l_read_symlink(dir, link_target, sizeof(link_target)); if (ret < 0) { free(path_copy); return ret; } /* Build new path: link_target + remaining path */ if (next_component && *next_component) { size_t target_len = strlen(link_target); size_t remaining_len = strlen(next_component); new_path = malloc(target_len + 1 + remaining_len + 1); if (!new_path) { free(path_copy); return -ENOMEM; } strcpy(new_path, link_target); strcat(new_path, "/"); strcat(new_path, next_component); } else { new_path = strdup(link_target); if (!new_path) { free(path_copy); return -ENOMEM; } } free(path_copy); /* Recursively resolve the new path */ ret = ext4l_resolve_path_internal(state, new_path, inodep, depth + 1); free(new_path); return ret; } component = next_component; } free(path_copy); *inodep = dir; return 0; } /** * ext4l_resolve_path() - Resolve path to inode * * @state: Per-mount state * @path: Path to resolve * @inodep: Output inode pointer * Return: 0 on success, negative on error */ static int ext4l_resolve_path(struct ext4l_state *state, const char *path, struct inode **inodep) { return ext4l_resolve_path_internal(state, path, inodep, 0); } /* Context for ext4l_dir_actor carrying the superblock */ struct ext4l_ls_ctx { struct dir_context ctx; struct super_block *sb; }; /** * ext4l_dir_actor() - Directory entry callback for ext4_readdir * * @ctx: Directory context * @name: Entry name * @namelen: Length of name * @offset: Directory offset * @ino: Inode number * @d_type: Entry type * Return: 0 to continue iteration */ static int ext4l_dir_actor(struct dir_context *ctx, const char *name, int namelen, loff_t offset, u64 ino, unsigned int d_type) { struct ext4l_ls_ctx *ls_ctx = container_of(ctx, struct ext4l_ls_ctx, ctx); struct inode *inode; char namebuf[256]; /* Copy the name to a null-terminated buffer */ if (namelen >= sizeof(namebuf)) namelen = sizeof(namebuf) - 1; memcpy(namebuf, name, namelen); namebuf[namelen] = '\0'; /* Look up the inode to get file size */ inode = ext4_iget(ls_ctx->sb, ino, 0); if (IS_ERR(inode)) { printf(" %8s %s\n", "?", namebuf); return 0; } if (d_type == DT_DIR || S_ISDIR(inode->i_mode)) printf(" %s/\n", namebuf); else if (d_type == DT_LNK || S_ISLNK(inode->i_mode)) printf(" <SYM> %s\n", namebuf); else printf(" %8lld %s\n", (long long)inode->i_size, namebuf); return 0; } int ext4l_ls(struct ext4l_state *state, const char *dirname) { struct ext4l_ls_ctx ls_ctx; struct inode *dir; struct file file; int ret; ret = ext4l_resolve_path(state, dirname, &dir); if (ret) return ret; if (!S_ISDIR(dir->i_mode)) return -ENOTDIR; memset(&file, 0, sizeof(file)); file.f_inode = dir; file.f_mapping = dir->i_mapping; /* Allocate private_data for readdir */ file.private_data = kzalloc(sizeof(struct dir_private_info), GFP_KERNEL); if (!file.private_data) return -ENOMEM; memset(&ls_ctx, 0, sizeof(ls_ctx)); ls_ctx.ctx.actor = ext4l_dir_actor; ls_ctx.sb = state->sb; ret = ext4_readdir(&file, &ls_ctx.ctx); if (file.private_data) ext4_htree_free_dir_info(file.private_data); return ret; } int ext4l_exists(struct ext4l_state *state, const char *filename) { struct inode *inode; if (!filename) return 0; if (ext4l_resolve_path(state, filename, &inode)) return 0; return 1; } int ext4l_size(struct ext4l_state *state, const char *filename, loff_t *sizep) { struct inode *inode; int ret; ret = ext4l_resolve_path(state, filename, &inode); if (ret) return ret; *sizep = inode->i_size; return 0; } int ext4l_read(struct ext4l_state *state, const char *filename, void *buf, loff_t offset, loff_t len, loff_t *actread) { uint copy_len, blk_off, blksize; loff_t bytes_left, file_size; struct buffer_head *bh; struct inode *inode; ext4_lblk_t block; char *dst; int ret; *actread = 0; ret = ext4l_resolve_path(state, filename, &inode); if (ret) { printf("** File not found %s **\n", filename); return ret; } file_size = inode->i_size; if (offset >= file_size) return 0; /* If len is 0, read the whole file from offset */ if (!len) len = file_size - offset; /* Clamp to file size */ if (offset + len > file_size) len = file_size - offset; blksize = inode->i_sb->s_blocksize; bytes_left = len; dst = buf; while (bytes_left > 0) { u32 rem; /* Calculate logical block number and offset within block */ block = div_u64_rem(offset, blksize, &rem); blk_off = rem; /* Read the block */ bh = ext4_bread(NULL, inode, block, 0); if (IS_ERR(bh)) return PTR_ERR(bh); if (!bh) return -EIO; /* Calculate how much to copy from this block */ copy_len = blksize - blk_off; if (copy_len > bytes_left) copy_len = bytes_left; memcpy(dst, bh->b_data + blk_off, copy_len); brelse(bh); dst += copy_len; offset += copy_len; bytes_left -= copy_len; *actread += copy_len; } return 0; } /* Legacy wrappers that pass the global state */ int ext4l_ls_legacy(const char *dirname) { return ext4l_ls(&efs, dirname); } int ext4l_exists_legacy(const char *filename) { return ext4l_exists(&efs, filename); } int ext4l_size_legacy(const char *filename, loff_t *sizep) { return ext4l_size(&efs, filename, sizep); } int ext4l_read_legacy(const char *filename, void *buf, loff_t offset, loff_t len, loff_t *actread) { return ext4l_read(&efs, filename, buf, offset, len, actread); } /** * ext4l_resolve_file() - Resolve a file path for write operations * @path: Path to process * @dir_dentryp: Returns parent directory dentry (caller must kfree) * @dentryp: Returns file dentry after lookup (caller must kfree) * @path_copyp: Returns path copy (caller must free) * * Common setup for write operations. Validates inputs, checks read-write * mount, parses path, resolves parent directory, creates dentries, and * performs lookup. * * Return: 0 on success, negative on error */ static int ext4l_resolve_file(struct ext4l_state *state, const char *path, struct dentry **dir_dentryp, struct dentry **dentryp, char **path_copyp) { char *path_copy, *dir_path, *last_slash; struct dentry *dir_dentry, *dentry, *result; struct inode *dir_inode; const char *basename; int ret; if (!state->sb) return -ENODEV; if (!path) return -EINVAL; /* Check if filesystem is mounted read-write */ if (state->sb->s_flags & SB_RDONLY) return -EROFS; /* Parse path to get parent directory and basename */ path_copy = strdup(path); if (!path_copy) return -ENOMEM; last_slash = strrchr(path_copy, '/'); if (last_slash) { *last_slash = '\0'; dir_path = path_copy; basename = last_slash + 1; if (*dir_path == '\0') dir_path = "/"; } else { dir_path = "/"; basename = path; } /* Resolve parent directory */ ret = ext4l_resolve_path(state, dir_path, &dir_inode); if (ret) { free(path_copy); return ret; } if (!S_ISDIR(dir_inode->i_mode)) { free(path_copy); return -ENOTDIR; } /* Create dentry for parent directory */ dir_dentry = kzalloc(sizeof(struct dentry), GFP_KERNEL); if (!dir_dentry) { free(path_copy); return -ENOMEM; } dir_dentry->d_inode = dir_inode; dir_dentry->d_sb = dir_inode->i_sb; /* Create dentry for the file */ dentry = kzalloc(sizeof(struct dentry), GFP_KERNEL); if (!dentry) { kfree(dir_dentry); free(path_copy); return -ENOMEM; } dentry->d_name.name = basename; dentry->d_name.len = strlen(basename); dentry->d_sb = dir_inode->i_sb; dentry->d_parent = dir_dentry; /* Look up the file */ result = ext4_lookup(dir_inode, dentry, 0); if (IS_ERR(result)) { kfree(dentry); kfree(dir_dentry); free(path_copy); return PTR_ERR(result); } *dir_dentryp = dir_dentry; *dentryp = dentry; *path_copyp = path_copy; return 0; } static int ext4l_write_file(struct dentry *dir_dentry, struct dentry *dentry, void *buf, loff_t offset, loff_t len, loff_t *actwrite) { struct inode *dir = dir_dentry->d_inode; handle_t *handle = NULL; struct buffer_head *bh; struct inode *inode; loff_t pos, end; umode_t mode; int ret; if (dentry->d_inode) { /* File exists - use the existing inode for overwrite */ inode = dentry->d_inode; } else { /* File does not exist, create it */ /* Mode: 0644 (rw-r--r--) | S_IFREG */ mode = S_IFREG | 0644; ret = ext4_create(&nop_mnt_idmap, dir, dentry, mode, true); if (ret) return ret; inode = dentry->d_inode; } if (!inode) return -EIO; /* * Attach jinode for journaling if needed (like ext4_file_open does). * This is required for ordered data mode. */ ret = ext4_inode_attach_jinode(inode); if (ret < 0) return ret; /* * Start a journal handle for the write operation. * U-Boot uses a synchronous single-transaction model where * ext4_journal_stop() commits immediately for crash safety. */ handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, EXT4_DATA_TRANS_BLOCKS(inode->i_sb)); if (IS_ERR(handle)) return PTR_ERR(handle); /* Write data to file */ pos = offset; end = offset + len; while (pos < end) { ext4_lblk_t block = pos >> inode->i_blkbits; uint block_offset = pos & (inode->i_sb->s_blocksize - 1); uint bytes_to_write = inode->i_sb->s_blocksize - block_offset; int needed_credits = EXT4_DATA_TRANS_BLOCKS(inode->i_sb); if (pos + bytes_to_write > end) bytes_to_write = end - pos; /* * Ensure we have enough journal credits for this block. * Each block allocation can use up to EXT4_DATA_TRANS_BLOCKS * credits. Try to extend, or restart the transaction if needed. */ ret = ext4_journal_ensure_credits(handle, needed_credits, 0); if (ret < 0) goto out_handle; bh = ext4_getblk(handle, inode, block, 0); if (IS_ERR(bh)) { ret = PTR_ERR(bh); goto out_handle; } if (!bh) { /* Block doesn't exist, allocate it */ bh = ext4_getblk(handle, inode, block, EXT4_GET_BLOCKS_CREATE); if (IS_ERR(bh)) { ret = PTR_ERR(bh); goto out_handle; } if (!bh) { ret = -EIO; goto out_handle; } } /* Get write access for journaling */ ret = ext4_journal_get_write_access(handle, inode->i_sb, bh, EXT4_JTR_NONE); if (ret) { brelse(bh); goto out_handle; } /* Copy data to buffer */ memcpy(bh->b_data + block_offset, buf + (pos - offset), bytes_to_write); /* * In data=journal mode, file data goes through the journal. * In data=ordered mode, write directly to disk. */ if (ext4_should_journal_data(inode)) { /* data=journal: write through journal */ ret = ext4_handle_dirty_metadata(handle, inode, bh); if (ret) { brelse(bh); goto out_handle; } } else { /* data=ordered: write directly to disk */ mark_buffer_dirty(bh); ret = sync_dirty_buffer(bh); if (ret) { brelse(bh); goto out_handle; } } brelse(bh); pos += bytes_to_write; } /* Update inode size */ if (end > inode->i_size) { i_size_write(inode, end); /* * Also update i_disksize in ext4_inode_info - this is what gets * written to disk via ext4_fill_raw_inode -> ext4_isize_set */ EXT4_I(inode)->i_disksize = end; /* Mark inode dirty to update on disk */ ext4_mark_inode_dirty(handle, inode); } *actwrite = len; ret = 0; out_handle: /* Stop handle - this commits the transaction synchronously in U-Boot */ if (handle) { int stop_ret = ext4_journal_stop(handle); if (stop_ret && !ret) ret = stop_ret; } return ret; } int ext4l_write(struct ext4l_state *state, const char *filename, void *buf, loff_t offset, loff_t len, loff_t *actwrite) { struct dentry *dir_dentry, *dentry; char *path_copy; int ret; if (!buf || !actwrite) return -EINVAL; ret = ext4l_resolve_file(state, filename, &dir_dentry, &dentry, &path_copy); if (ret) return ret; /* Call write implementation */ ret = ext4l_write_file(dir_dentry, dentry, buf, offset, len, actwrite); /* Sync all dirty buffers - U-Boot has no journal thread */ if (!ret) { int sync_ret = bh_cache_sync(); if (sync_ret) ret = sync_ret; } kfree(dentry); kfree(dir_dentry); free(path_copy); return ret; } int ext4l_unlink(struct ext4l_state *state, const char *filename) { struct dentry *dentry, *dir_dentry; char *path_copy; int ret; ret = ext4l_resolve_file(state, filename, &dir_dentry, &dentry, &path_copy); if (ret) return ret; /* Check if file exists */ if (!dentry->d_inode) { ret = -ENOENT; goto out; } /* Cannot unlink directories with unlink - use rmdir */ if (S_ISDIR(dentry->d_inode->i_mode)) { ret = -EISDIR; goto out; } /* Unlink the file */ ret = __ext4_unlink(dir_dentry->d_inode, &dentry->d_name, dentry->d_inode, dentry); /* * Release inode - this triggers ext4_evict_inode for nlink=0 inodes, * which frees the data blocks and inode. */ if (dentry->d_inode) { iput(dentry->d_inode); dentry->d_inode = NULL; } /* Sync all dirty buffers after inode eviction */ if (!ret) { int sync_ret = bh_cache_sync(); if (sync_ret) ret = sync_ret; /* Commit superblock with updated free counts */ ext4_commit_super(state->sb); } out: kfree(dentry); kfree(dir_dentry); free(path_copy); return ret; } int ext4l_mkdir(struct ext4l_state *state, const char *dirname) { struct dentry *dentry, *dir_dentry, *result; char *path_copy; int ret; ret = ext4l_resolve_file(state, dirname, &dir_dentry, &dentry, &path_copy); if (ret) return ret; if (dentry->d_inode) { /* Directory already exists */ ret = -EEXIST; goto out; } /* Create the directory with mode 0755 (rwxr-xr-x) */ result = ext4_mkdir(&nop_mnt_idmap, dir_dentry->d_inode, dentry, S_IFDIR | 0755); if (IS_ERR(result)) { ret = PTR_ERR(result); goto out; } ret = 0; /* Sync all dirty buffers */ { int sync_ret = bh_cache_sync(); if (sync_ret) ret = sync_ret; /* Commit superblock with updated free counts */ ext4_commit_super(state->sb); } out: kfree(dentry); kfree(dir_dentry); free(path_copy); return ret; } int ext4l_ln(struct ext4l_state *state, const char *filename, const char *linkname) { struct dentry *dentry, *dir_dentry; char *path_copy; int ret; /* * Note: The parameter naming follows U-Boot's convention: * - filename: the target file the link should point to * - linkname: the path of the symlink to create */ if (!filename) return -EINVAL; ret = ext4l_resolve_file(state, linkname, &dir_dentry, &dentry, &path_copy); if (ret) return ret; if (dentry->d_inode) { /* File already exists - delete it first (like ln -sf) */ if (S_ISDIR(dentry->d_inode->i_mode)) { /* Cannot replace a directory with a symlink */ ret = -EISDIR; goto out; } ret = __ext4_unlink(dir_dentry->d_inode, &dentry->d_name, dentry->d_inode, dentry); if (ret) goto out; /* Release inode to free data blocks */ iput(dentry->d_inode); dentry->d_inode = NULL; } /* Create the symlink - filename is what the link points to */ ret = ext4_symlink(&nop_mnt_idmap, dir_dentry->d_inode, dentry, filename); if (ret) goto out; /* Sync all dirty buffers */ { int sync_ret = bh_cache_sync(); if (sync_ret) ret = sync_ret; /* Commit superblock with updated free counts */ ext4_commit_super(state->sb); } out: kfree(dentry); kfree(dir_dentry); free(path_copy); return ret; } int ext4l_rename(struct ext4l_state *state, const char *old_path, const char *new_path) { struct dentry *old_dentry, *new_dentry; struct dentry *old_dir_dentry, *new_dir_dentry; char *old_path_copy, *new_path_copy; int ret; /* Check new_path before ext4l_resolve_file checks old_path */ if (!new_path) return -EINVAL; ret = ext4l_resolve_file(state, old_path, &old_dir_dentry, &old_dentry, &old_path_copy); if (ret) return ret; if (!old_dentry->d_inode) { /* Source file doesn't exist */ ret = -ENOENT; goto out_old; } ret = ext4l_resolve_file(state, new_path, &new_dir_dentry, &new_dentry, &new_path_copy); if (ret) goto out_old; /* Perform the rename */ ret = ext4_rename(&nop_mnt_idmap, old_dir_dentry->d_inode, old_dentry, new_dir_dentry->d_inode, new_dentry, 0); if (ret) goto out_new; /* Sync all dirty buffers */ { int sync_ret = bh_cache_sync(); if (sync_ret) ret = sync_ret; /* Commit superblock with updated free counts */ ext4_commit_super(state->sb); } out_new: kfree(new_dentry); kfree(new_dir_dentry); free(new_path_copy); out_old: kfree(old_dentry); kfree(old_dir_dentry); free(old_path_copy); return ret; } void ext4l_umount(struct ext4l_state *state) { ext4l_umount_internal(state, false); } void ext4l_close(void) { ext4l_umount(&efs); } /** * struct ext4l_dir - ext4l directory stream state * @parent: base fs_dir_stream structure * @dirent: directory entry to return to caller * @dir_inode: pointer to directory inode * @file: file structure for ext4_readdir * @entry_found: flag set by actor when entry is captured * @last_ino: inode number of last returned entry (to skip on next call) * @skip_last: true if we need to skip the last_ino entry * * The filesystem stays mounted while directory streams are open (ext4l_close * checks efs.open_dirs), so we can keep direct pointers to inodes. */ struct ext4l_dir { struct fs_dir_stream parent; struct fs_dirent dirent; struct inode *dir_inode; struct file file; bool entry_found; u64 last_ino; bool skip_last; }; /** * struct ext4l_readdir_ctx - Extended dir_context with back-pointer * @ctx: base dir_context structure (must be first) * @dir: pointer to ext4l_dir for state updates */ struct ext4l_readdir_ctx { struct dir_context ctx; struct ext4l_dir *dir; struct super_block *sb; }; /** * ext4l_opendir_actor() - dir_context actor that captures single entry * * This actor is called by ext4_readdir for each directory entry. It captures * the first entry found (skipping the previously returned entry if needed) * and returns non-zero to stop iteration. */ static int ext4l_opendir_actor(struct dir_context *ctx, const char *name, int namelen, loff_t offset, u64 ino, unsigned int d_type) { struct ext4l_readdir_ctx *rctx; struct ext4l_dir *dir; struct fs_dirent *dent; struct inode *inode; rctx = container_of(ctx, struct ext4l_readdir_ctx, ctx); dir = rctx->dir; /* * Skip the entry we returned last time. The htree code may call us * with the same entry again due to its extra_fname handling. */ if (dir->skip_last && ino == dir->last_ino) { dir->skip_last = false; return 0; /* Continue to next entry */ } dent = &dir->dirent; /* Copy name */ if (namelen >= FS_DIRENT_NAME_LEN) namelen = FS_DIRENT_NAME_LEN - 1; memcpy(dent->name, name, namelen); dent->name[namelen] = '\0'; /* Set type based on d_type hint */ switch (d_type) { case DT_DIR: dent->type = FS_DT_DIR; break; case DT_LNK: dent->type = FS_DT_LNK; break; default: dent->type = FS_DT_REG; break; } /* Look up inode to get size and other attributes */ inode = ext4_iget(rctx->sb, ino, 0); if (!IS_ERR(inode)) { dent->size = inode->i_size; /* Refine type from inode mode if needed */ if (S_ISDIR(inode->i_mode)) dent->type = FS_DT_DIR; else if (S_ISLNK(inode->i_mode)) dent->type = FS_DT_LNK; else dent->type = FS_DT_REG; } else { dent->size = 0; } dir->entry_found = true; dir->last_ino = ino; /* * Return non-zero to stop iteration after one entry. * dir_emit() returns (actor(...) == 0), so: * actor returns 0 -> dir_emit returns 1 (continue) * actor returns non-zero -> dir_emit returns 0 (stop) */ return 1; } int ext4l_opendir(struct ext4l_state *state, const char *filename, struct fs_dir_stream **dirsp) { struct ext4l_dir *dir; struct inode *inode; int ret; if (!state->mounted) return -ENODEV; ret = ext4l_resolve_path(state, filename, &inode); if (ret) return ret; if (!S_ISDIR(inode->i_mode)) return -ENOTDIR; dir = calloc(1, sizeof(*dir)); if (!dir) return -ENOMEM; dir->dir_inode = inode; dir->entry_found = false; /* Set up file structure for ext4_readdir */ dir->file.f_inode = inode; dir->file.f_mapping = inode->i_mapping; dir->file.private_data = kzalloc(sizeof(struct dir_private_info), GFP_KERNEL); if (!dir->file.private_data) { free(dir); return -ENOMEM; } /* Increment open dir count to prevent unmount */ state->open_dirs++; *dirsp = (struct fs_dir_stream *)dir; return 0; } int ext4l_readdir(struct ext4l_state *state, struct fs_dir_stream *dirs, struct fs_dirent **dentp) { struct ext4l_dir *dir = (struct ext4l_dir *)dirs; struct ext4l_readdir_ctx ctx; int ret; if (!state->mounted) return -ENODEV; memset(&dir->dirent, '\0', sizeof(dir->dirent)); dir->entry_found = false; /* Skip the entry we returned last time (htree may re-emit it) */ if (dir->last_ino) dir->skip_last = true; /* Set up extended dir_context for this iteration */ memset(&ctx, '\0', sizeof(ctx)); ctx.ctx.actor = ext4l_opendir_actor; ctx.sb = state->sb; ctx.ctx.pos = dir->file.f_pos; ctx.dir = dir; ret = ext4_readdir(&dir->file, &ctx.ctx); /* Update file position for next call */ dir->file.f_pos = ctx.ctx.pos; if (ret < 0) return ret; if (!dir->entry_found) return -ENOENT; *dentp = &dir->dirent; return 0; } void ext4l_closedir(struct ext4l_state *state, struct fs_dir_stream *dirs) { struct ext4l_dir *dir = (struct ext4l_dir *)dirs; if (dir) { if (dir->file.private_data) ext4_htree_free_dir_info(dir->file.private_data); free(dir); } /* Decrement open dir count */ if (state->open_dirs > 0) state->open_dirs--; } /* Legacy wrappers for write, dir, uuid, and statfs functions */ int ext4l_get_uuid_legacy(u8 *uuid) { return ext4l_get_uuid(&efs, uuid); } int ext4l_statfs_legacy(struct fs_statfs *stats) { return ext4l_statfs(&efs, stats); } int ext4l_write_legacy(const char *filename, void *buf, loff_t offset, loff_t len, loff_t *actwrite) { return ext4l_write(&efs, filename, buf, offset, len, actwrite); } int ext4l_unlink_legacy(const char *filename) { return ext4l_unlink(&efs, filename); } int ext4l_mkdir_legacy(const char *dirname) { return ext4l_mkdir(&efs, dirname); } int ext4l_ln_legacy(const char *filename, const char *linkname) { return ext4l_ln(&efs, filename, linkname); } int ext4l_rename_legacy(const char *old_path, const char *new_path) { return ext4l_rename(&efs, old_path, new_path); } int ext4l_opendir_legacy(const char *filename, struct fs_dir_stream **dirsp) { return ext4l_opendir(&efs, filename, dirsp); } int ext4l_readdir_legacy(struct fs_dir_stream *dirs, struct fs_dirent **dentp) { return ext4l_readdir(&efs, dirs, dentp); } void ext4l_closedir_legacy(struct fs_dir_stream *dirs) { ext4l_closedir(&efs, dirs); } |