tune2fs.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * tune2fs: utility to modify EXT2 filesystem
  4. *
  5. * Busybox'ed (2009) by Vladimir Dronnikov <dronnikov@gmail.com>
  6. *
  7. * Licensed under GPLv2, see file LICENSE in this tarball for details.
  8. */
  9. #include "libbb.h"
  10. #include <linux/fs.h>
  11. #include <linux/ext2_fs.h>
  12. #include "volume_id/volume_id_internal.h"
  13. // storage helpers
  14. char BUG_wrong_field_size(void);
  15. #define STORE_LE(field, value) \
  16. do { \
  17. if (sizeof(field) == 4) \
  18. field = cpu_to_le32(value); \
  19. else if (sizeof(field) == 2) \
  20. field = cpu_to_le16(value); \
  21. else if (sizeof(field) == 1) \
  22. field = (value); \
  23. else \
  24. BUG_wrong_field_size(); \
  25. } while (0)
  26. #define FETCH_LE32(field) \
  27. (sizeof(field) == 4 ? cpu_to_le32(field) : BUG_wrong_field_size())
  28. enum {
  29. OPT_L = 1 << 0, // label
  30. };
  31. int tune2fs_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  32. int tune2fs_main(int argc UNUSED_PARAM, char **argv)
  33. {
  34. unsigned opts;
  35. const char *label;
  36. struct ext2_super_block *sb;
  37. int fd;
  38. opt_complementary = "=1";
  39. opts = getopt32(argv, "L:", &label);
  40. argv += optind; // argv[0] -- device
  41. if (!opts)
  42. bb_show_usage();
  43. // read superblock
  44. fd = xopen(argv[0], O_RDWR);
  45. xlseek(fd, 1024, SEEK_SET);
  46. sb = xzalloc(1024);
  47. xread(fd, sb, 1024);
  48. // mangle superblock
  49. //STORE_LE(sb->s_wtime, time(NULL)); - why bother?
  50. // set the label
  51. if (1 /*opts & OPT_L*/)
  52. safe_strncpy((char *)sb->s_volume_name, label, sizeof(sb->s_volume_name));
  53. // write superblock
  54. xlseek(fd, 1024, SEEK_SET);
  55. xwrite(fd, sb, 1024);
  56. if (ENABLE_FEATURE_CLEAN_UP) {
  57. free(sb);
  58. }
  59. xclose(fd);
  60. return EXIT_SUCCESS;
  61. }