cmp.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Mini cmp implementation for busybox
  4. *
  5. * Copyright (C) 2000,2001 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. *
  21. */
  22. /* BB_AUDIT SUSv3 (virtually) compliant -- uses nicer GNU format for -l. */
  23. /* http://www.opengroup.org/onlinepubs/007904975/utilities/cmp.html */
  24. /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
  25. *
  26. * Original version majorly reworked for SUSv3 compliance, bug fixes, and
  27. * size optimizations. Changes include:
  28. * 1) Now correctly distinguishes between errors and actual file differences.
  29. * 2) Proper handling of '-' args.
  30. * 3) Actual error checking of i/o.
  31. * 4) Accept SUSv3 -l option. Note that we use the slightly nicer gnu format
  32. * in the '-l' case.
  33. */
  34. #include <stdio.h>
  35. #include <stdlib.h>
  36. #include <unistd.h>
  37. #include "busybox.h"
  38. static FILE *cmp_xfopen_input(const char *filename)
  39. {
  40. FILE *fp;
  41. if ((fp = bb_wfopen_input(filename)) != NULL) {
  42. return fp;
  43. }
  44. exit(bb_default_error_retval); /* We already output an error message. */
  45. }
  46. static const char fmt_eof[] = "cmp: EOF on %s\n";
  47. static const char fmt_differ[] = "%s %s differ: char %d, line %d\n";
  48. // This fmt_l_opt uses gnu-isms. SUSv3 would be "%.0s%.0s%d %o %o\n"
  49. static const char fmt_l_opt[] = "%.0s%.0s%d %3o %3o\n";
  50. static const char opt_chars[] = "sl";
  51. enum {
  52. OPT_s = 1,
  53. OPT_l = 2
  54. };
  55. int cmp_main(int argc, char **argv)
  56. {
  57. FILE *fp1, *fp2, *outfile = stdout;
  58. const char *filename1, *filename2;
  59. const char *fmt;
  60. int c1, c2, char_pos, line_pos;
  61. int opt_flags;
  62. int exit_val = 0;
  63. bb_default_error_retval = 2; /* 1 is returned if files are different. */
  64. opt_flags = bb_getopt_ulflags(argc, argv, opt_chars);
  65. if ((opt_flags == 3) || (((unsigned int)(--argc - optind)) > 1)) {
  66. bb_show_usage();
  67. }
  68. fp1 = cmp_xfopen_input(filename1 = *(argv += optind));
  69. filename2 = "-";
  70. if (*++argv) {
  71. filename2 = *argv;
  72. }
  73. fp2 = cmp_xfopen_input(filename2);
  74. if (fp1 == fp2) { /* Paranioa check... stdin == stdin? */
  75. /* Note that we don't bother reading stdin. Neither does gnu wc.
  76. * But perhaps we should, so that other apps down the chain don't
  77. * get the input. Consider 'echo hello | (cmp - - && cat -)'.
  78. */
  79. return 0;
  80. }
  81. fmt = fmt_differ;
  82. if (opt_flags == OPT_l) {
  83. fmt = fmt_l_opt;
  84. }
  85. char_pos = 0;
  86. line_pos = 1;
  87. do {
  88. c1 = getc(fp1);
  89. c2 = getc(fp2);
  90. ++char_pos;
  91. if (c1 != c2) { /* Remember -- a read error may have occurred. */
  92. exit_val = 1; /* But assume the files are different for now. */
  93. if (c2 == EOF) {
  94. /* We know that fp1 isn't at EOF or in an error state. But to
  95. * save space below, things are setup to expect an EOF in fp1
  96. * if an EOF occurred. So, swap things around.
  97. */
  98. fp1 = fp2;
  99. filename1 = filename2;
  100. c1 = c2;
  101. }
  102. if (c1 == EOF) {
  103. bb_xferror(fp1, filename1);
  104. fmt = fmt_eof; /* Well, no error, so it must really be EOF. */
  105. outfile = stderr;
  106. /* There may have been output to stdout (option -l), so
  107. * make sure we fflush before writing to stderr. */
  108. bb_xfflush_stdout();
  109. }
  110. if (opt_flags != OPT_s) {
  111. if (opt_flags == OPT_l) {
  112. line_pos = c1; /* line_pos is unused in the -l case. */
  113. }
  114. bb_fprintf(outfile, fmt, filename1, filename2, char_pos, line_pos, c2);
  115. if (opt_flags) { /* This must be -l since not -s. */
  116. /* If we encountered and EOF, the while check will catch it. */
  117. continue;
  118. }
  119. }
  120. break;
  121. }
  122. if (c1 == '\n') {
  123. ++line_pos;
  124. }
  125. } while (c1 != EOF);
  126. bb_xferror(fp1, filename1);
  127. bb_xferror(fp2, filename2);
  128. bb_fflush_stdout_and_exit(exit_val);
  129. }