cmp(1): fix some build nits (to build on FreeBSD)
[dragonfly.git] / usr.bin / cmp / cmp.c
1 /*
2  * Copyright (c) 1987, 1990, 1993, 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD: src/usr.bin/cmp/cmp.c,v 1.6.6.4 2001/11/21 10:47:54 dwmalone Exp $
30  * $DragonFly: src/usr.bin/cmp/cmp.c,v 1.3 2003/10/02 17:42:27 hmp Exp $
31  *
32  * @(#) Copyright (c) 1987, 1990, 1993, 1994 The Regents of the University of California.  All rights reserved.
33  * @(#)cmp.c    8.3 (Berkeley) 4/2/94
34  */
35
36 #include <sys/types.h>
37 #include <sys/stat.h>
38
39 #include <err.h>
40 #include <fcntl.h>
41 #include <stdio.h>
42 #include <stdint.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include <unistd.h>
46
47 #include "extern.h"
48
49 int     lflag, sflag, xflag;
50 static int zflag;
51
52 static void usage (void);
53
54 int
55 main(int argc, char **argv)
56 {
57         struct stat sb1, sb2;
58         off_t skip1, skip2;
59         int ch, fd1, fd2, special;
60         const char *file1, *file2;
61
62         while ((ch = getopt(argc, argv, "-lsxz")) != -1)
63                 switch (ch) {
64                 case 'l':               /* print all differences */
65                         lflag = 1;
66                         break;
67                 case 's':               /* silent run */
68                         sflag = 1;
69                         zflag = 1;
70                         break;
71                 case 'x':               /* hex output */
72                         lflag = 1;
73                         xflag = 1;
74                         break;
75                 case 'z':               /* compare size first */
76                         zflag = 1;
77                         break;
78                 case '-':               /* stdin (must be after options) */
79                         --optind;
80                         goto endargs;
81                 case '?':
82                 default:
83                         usage();
84                 }
85 endargs:
86         argv += optind;
87         argc -= optind;
88
89         if (lflag && sflag)
90                 errx(ERR_EXIT, "specifying -s with -l or -x is not permitted");
91
92         if (argc < 2 || argc > 4)
93                 usage();
94
95         /* Backward compatibility -- handle "-" meaning stdin. */
96         special = 0;
97         if (strcmp(file1 = argv[0], "-") == 0) {
98                 special = 1;
99                 fd1 = 0;
100                 file1 = "stdin";
101         }
102         else if ((fd1 = open(file1, O_RDONLY, 0)) < 0) {
103                 if (!sflag)
104                         err(ERR_EXIT, "%s", file1);
105                 else
106                         exit(1);
107         }
108         if (strcmp(file2 = argv[1], "-") == 0) {
109                 if (special)
110                         errx(ERR_EXIT,
111                                 "standard input may only be specified once");
112                 special = 1;
113                 fd2 = 0;
114                 file2 = "stdin";
115         }
116         else if ((fd2 = open(file2, O_RDONLY, 0)) < 0) {
117                 if (!sflag)
118                         err(ERR_EXIT, "%s", file2);
119                 else
120                         exit(1);
121         }
122
123         skip1 = argc > 2 ? strtol(argv[2], NULL, 0) : 0;
124         skip2 = argc == 4 ? strtol(argv[3], NULL, 0) : 0;
125
126         if (!special) {
127                 if (fstat(fd1, &sb1)) {
128                         if (!sflag)
129                                 err(ERR_EXIT, "%s", file1);
130                         else
131                                 exit(1);
132                 }
133                 if (!S_ISREG(sb1.st_mode))
134                         special = 1;
135                 else {
136                         if (fstat(fd2, &sb2)) {
137                                 if (!sflag)
138                                         err(ERR_EXIT, "%s", file2);
139                                 else
140                                         exit(1);
141                         }
142                         if (!S_ISREG(sb2.st_mode))
143                                 special = 1;
144                 }
145         }
146
147         if (special)
148                 c_special(fd1, file1, skip1, fd2, file2, skip2);
149         else {
150                 if (zflag && sb1.st_size != sb2.st_size) {
151                         if (!sflag)
152                                 (void) printf("%s %s differ: size\n",
153                                     file1, file2);
154                         exit(DIFF_EXIT);
155                 }
156                 c_regular(fd1, file1, skip1, sb1.st_size,
157                     fd2, file2, skip2, sb2.st_size);
158         }
159         exit(0);
160 }
161
162 static void
163 usage(void)
164 {
165
166         (void)fprintf(stderr,
167             "usage: cmp [-l | -s | -x] [-z] file1 file2 [skip1 [skip2]]\n");
168         exit(ERR_EXIT);
169 }