touch.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Mini touch implementation for busybox
  4. *
  5. * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  6. *
  7. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  8. */
  9. /* BB_AUDIT SUSv3 _NOT_ compliant -- options -a, -m not supported. */
  10. /* http://www.opengroup.org/onlinepubs/007904975/utilities/touch.html */
  11. /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
  12. *
  13. * Previous version called open() and then utime(). While this will be
  14. * be necessary to implement -r and -t, it currently only makes things bigger.
  15. * Also, exiting on a failure was a bug. All args should be processed.
  16. */
  17. #include "libbb.h"
  18. //config:config TOUCH
  19. //config: bool "touch"
  20. //config: default y
  21. //config: help
  22. //config: touch is used to create or change the access and/or
  23. //config: modification timestamp of specified files.
  24. //config:
  25. //config:config FEATURE_TOUCH_SUSV3
  26. //config: bool "Add support for SUSV3 features (-d -t -r)"
  27. //config: default y
  28. //config: depends on TOUCH
  29. //config: help
  30. //config: Enable touch to use a reference file or a given date/time argument.
  31. //applet:IF_TOUCH(APPLET_NOFORK(touch, touch, BB_DIR_BIN, BB_SUID_DROP, touch))
  32. //kbuild:lib-$(CONFIG_TOUCH) += touch.o
  33. //usage:#define touch_trivial_usage
  34. //usage: "[-c]" IF_FEATURE_TOUCH_SUSV3(" [-d DATE] [-t DATE] [-r FILE]") " FILE..."
  35. //usage:#define touch_full_usage "\n\n"
  36. //usage: "Update the last-modified date on the given FILE[s]\n"
  37. //usage: "\n -c Don't create files"
  38. //usage: IF_FEATURE_TOUCH_SUSV3(
  39. //usage: "\n -d DT Date/time to use"
  40. //usage: "\n -t DT Date/time to use"
  41. //usage: "\n -r FILE Use FILE's date/time"
  42. //usage: )
  43. //usage:
  44. //usage:#define touch_example_usage
  45. //usage: "$ ls -l /tmp/foo\n"
  46. //usage: "/bin/ls: /tmp/foo: No such file or directory\n"
  47. //usage: "$ touch /tmp/foo\n"
  48. //usage: "$ ls -l /tmp/foo\n"
  49. //usage: "-rw-rw-r-- 1 andersen andersen 0 Apr 15 01:11 /tmp/foo\n"
  50. /* This is a NOFORK applet. Be very careful! */
  51. /* coreutils implements:
  52. * -a change only the access time
  53. * -c, --no-create
  54. * do not create any files
  55. * -d, --date=STRING
  56. * parse STRING and use it instead of current time
  57. * -f (ignored, BSD compat)
  58. * -m change only the modification time
  59. * -r, --reference=FILE
  60. * use this file's times instead of current time
  61. * -t STAMP
  62. * use [[CC]YY]MMDDhhmm[.ss] instead of current time
  63. * --time=WORD
  64. * change the specified time: WORD is access, atime, or use
  65. */
  66. int touch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  67. int touch_main(int argc UNUSED_PARAM, char **argv)
  68. {
  69. int fd;
  70. int status = EXIT_SUCCESS;
  71. int opts;
  72. #if ENABLE_FEATURE_TOUCH_SUSV3
  73. # if ENABLE_LONG_OPTS
  74. static const char touch_longopts[] ALIGN1 =
  75. /* name, has_arg, val */
  76. "no-create\0" No_argument "c"
  77. "reference\0" Required_argument "r"
  78. "date\0" Required_argument "d"
  79. ;
  80. # endif
  81. char *reference_file = NULL;
  82. char *date_str = NULL;
  83. struct timeval timebuf[2];
  84. timebuf[1].tv_usec = timebuf[0].tv_usec = 0;
  85. #else
  86. # define reference_file NULL
  87. # define date_str NULL
  88. # define timebuf ((struct timeval*)NULL)
  89. #endif
  90. #if ENABLE_FEATURE_TOUCH_SUSV3 && ENABLE_LONG_OPTS
  91. applet_long_options = touch_longopts;
  92. #endif
  93. /* -d and -t both set time. In coreutils,
  94. * accepted data format differs a bit between -d and -t.
  95. * We accept the same formats for both */
  96. opts = getopt32(argv, "c" IF_FEATURE_TOUCH_SUSV3("r:d:t:")
  97. /*ignored:*/ "fma"
  98. IF_FEATURE_TOUCH_SUSV3(, &reference_file)
  99. IF_FEATURE_TOUCH_SUSV3(, &date_str)
  100. IF_FEATURE_TOUCH_SUSV3(, &date_str)
  101. );
  102. opts &= 1; /* only -c bit is left */
  103. argv += optind;
  104. if (!*argv) {
  105. bb_show_usage();
  106. }
  107. if (reference_file) {
  108. struct stat stbuf;
  109. xstat(reference_file, &stbuf);
  110. timebuf[1].tv_sec = timebuf[0].tv_sec = stbuf.st_mtime;
  111. }
  112. if (date_str) {
  113. struct tm tm_time;
  114. time_t t;
  115. //memset(&tm_time, 0, sizeof(tm_time));
  116. /* Better than memset: makes "HH:MM" dates meaningful */
  117. time(&t);
  118. localtime_r(&t, &tm_time);
  119. parse_datestr(date_str, &tm_time);
  120. /* Correct any day of week and day of year etc. fields */
  121. tm_time.tm_isdst = -1; /* Be sure to recheck dst */
  122. t = validate_tm_time(date_str, &tm_time);
  123. timebuf[1].tv_sec = timebuf[0].tv_sec = t;
  124. }
  125. do {
  126. if (utimes(*argv, (reference_file || date_str) ? timebuf : NULL) != 0) {
  127. if (errno == ENOENT) { /* no such file */
  128. if (opts) { /* creation is disabled, so ignore */
  129. continue;
  130. }
  131. /* Try to create the file */
  132. fd = open(*argv, O_RDWR | O_CREAT, 0666);
  133. if (fd >= 0) {
  134. xclose(fd);
  135. if (reference_file || date_str)
  136. utimes(*argv, timebuf);
  137. continue;
  138. }
  139. }
  140. status = EXIT_FAILURE;
  141. bb_simple_perror_msg(*argv);
  142. }
  143. } while (*++argv);
  144. return status;
  145. }