touch.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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_NODEREF
  26. //config: bool "Add support for -h"
  27. //config: default y
  28. //config: depends on TOUCH
  29. //config: help
  30. //config: Enable touch to have the -h option.
  31. //config: This requires libc support for lutimes() function.
  32. //config:
  33. //config:config FEATURE_TOUCH_SUSV3
  34. //config: bool "Add support for SUSV3 features (-d -t -r)"
  35. //config: default y
  36. //config: depends on TOUCH
  37. //config: help
  38. //config: Enable touch to use a reference file or a given date/time argument.
  39. //applet:IF_TOUCH(APPLET_NOFORK(touch, touch, BB_DIR_BIN, BB_SUID_DROP, touch))
  40. //kbuild:lib-$(CONFIG_TOUCH) += touch.o
  41. //usage:#define touch_trivial_usage
  42. //usage: "[-c]" IF_FEATURE_TOUCH_SUSV3(" [-d DATE] [-t DATE] [-r FILE]") " FILE..."
  43. //usage:#define touch_full_usage "\n\n"
  44. //usage: "Update the last-modified date on the given FILE[s]\n"
  45. //usage: "\n -c Don't create files"
  46. //usage: IF_FEATURE_TOUCH_NODEREF(
  47. //usage: "\n -h Don't follow links"
  48. //usage: )
  49. //usage: IF_FEATURE_TOUCH_SUSV3(
  50. //usage: "\n -d DT Date/time to use"
  51. //usage: "\n -t DT Date/time to use"
  52. //usage: "\n -r FILE Use FILE's date/time"
  53. //usage: )
  54. //usage:
  55. //usage:#define touch_example_usage
  56. //usage: "$ ls -l /tmp/foo\n"
  57. //usage: "/bin/ls: /tmp/foo: No such file or directory\n"
  58. //usage: "$ touch /tmp/foo\n"
  59. //usage: "$ ls -l /tmp/foo\n"
  60. //usage: "-rw-rw-r-- 1 andersen andersen 0 Apr 15 01:11 /tmp/foo\n"
  61. /* This is a NOFORK applet. Be very careful! */
  62. /* coreutils implements:
  63. * -a change only the access time
  64. * -c, --no-create
  65. * do not create any files
  66. * -d, --date=STRING
  67. * parse STRING and use it instead of current time
  68. * -f (ignored, BSD compat)
  69. * -m change only the modification time
  70. * -h, --no-dereference
  71. * -r, --reference=FILE
  72. * use this file's times instead of current time
  73. * -t STAMP
  74. * use [[CC]YY]MMDDhhmm[.ss] instead of current time
  75. * --time=WORD
  76. * change the specified time: WORD is access, atime, or use
  77. */
  78. int touch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  79. int touch_main(int argc UNUSED_PARAM, char **argv)
  80. {
  81. int fd;
  82. int status = EXIT_SUCCESS;
  83. int opts;
  84. enum {
  85. OPT_c = (1 << 0),
  86. OPT_r = (1 << 1) * ENABLE_FEATURE_TOUCH_SUSV3,
  87. OPT_d = (1 << 2) * ENABLE_FEATURE_TOUCH_SUSV3,
  88. OPT_t = (1 << 3) * ENABLE_FEATURE_TOUCH_SUSV3,
  89. OPT_h = (1 << 4) * ENABLE_FEATURE_TOUCH_NODEREF,
  90. };
  91. #if ENABLE_FEATURE_TOUCH_SUSV3
  92. # if ENABLE_LONG_OPTS
  93. static const char touch_longopts[] ALIGN1 =
  94. /* name, has_arg, val */
  95. "no-create\0" No_argument "c"
  96. "reference\0" Required_argument "r"
  97. "date\0" Required_argument "d"
  98. IF_FEATURE_TOUCH_NODEREF("no-dereference\0" No_argument "h")
  99. ;
  100. # endif
  101. char *reference_file = NULL;
  102. char *date_str = NULL;
  103. struct timeval timebuf[2];
  104. timebuf[1].tv_usec = timebuf[0].tv_usec = 0;
  105. #else
  106. # define reference_file NULL
  107. # define date_str NULL
  108. # define timebuf ((struct timeval*)NULL)
  109. #endif
  110. #if ENABLE_FEATURE_TOUCH_SUSV3 && ENABLE_LONG_OPTS
  111. applet_long_options = touch_longopts;
  112. #endif
  113. /* -d and -t both set time. In coreutils,
  114. * accepted data format differs a bit between -d and -t.
  115. * We accept the same formats for both */
  116. opts = getopt32(argv, "c" IF_FEATURE_TOUCH_SUSV3("r:d:t:")
  117. IF_FEATURE_TOUCH_NODEREF("h")
  118. /*ignored:*/ "fma"
  119. IF_FEATURE_TOUCH_SUSV3(, &reference_file)
  120. IF_FEATURE_TOUCH_SUSV3(, &date_str)
  121. IF_FEATURE_TOUCH_SUSV3(, &date_str)
  122. );
  123. argv += optind;
  124. if (!*argv) {
  125. bb_show_usage();
  126. }
  127. if (reference_file) {
  128. struct stat stbuf;
  129. xstat(reference_file, &stbuf);
  130. timebuf[1].tv_sec = timebuf[0].tv_sec = stbuf.st_mtime;
  131. /* Can use .st_mtim.tv_nsec
  132. * (or is it .st_mtimensec?? see date.c)
  133. * to set microseconds too.
  134. */
  135. }
  136. if (date_str) {
  137. struct tm tm_time;
  138. time_t t;
  139. //memset(&tm_time, 0, sizeof(tm_time));
  140. /* Better than memset: makes "HH:MM" dates meaningful */
  141. time(&t);
  142. localtime_r(&t, &tm_time);
  143. parse_datestr(date_str, &tm_time);
  144. /* Correct any day of week and day of year etc. fields */
  145. tm_time.tm_isdst = -1; /* Be sure to recheck dst */
  146. t = validate_tm_time(date_str, &tm_time);
  147. timebuf[1].tv_sec = timebuf[0].tv_sec = t;
  148. }
  149. do {
  150. int result;
  151. result = (
  152. #if ENABLE_FEATURE_TOUCH_NODEREF
  153. (opts & OPT_h) ? lutimes :
  154. #endif
  155. utimes)(*argv, (reference_file || date_str) ? timebuf : NULL);
  156. if (result != 0) {
  157. if (errno == ENOENT) { /* no such file? */
  158. if (opts & OPT_c) {
  159. /* Creation is disabled, so ignore */
  160. continue;
  161. }
  162. /* Try to create the file */
  163. fd = open(*argv, O_RDWR | O_CREAT, 0666);
  164. if (fd >= 0) {
  165. xclose(fd);
  166. if (reference_file || date_str)
  167. utimes(*argv, timebuf);
  168. continue;
  169. }
  170. }
  171. status = EXIT_FAILURE;
  172. bb_simple_perror_msg(*argv);
  173. }
  174. } while (*++argv);
  175. return status;
  176. }