1 /* $NetBSD: cat.c,v 1.57 2016/06/16 00:52:37 sevan Exp $ */
4 * Copyright (c) 1989, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #if HAVE_NBTOOL_CONFIG_H
36 #include "nbtool_config.h"
39 #include <sys/cdefs.h>
42 "@(#) Copyright (c) 1989, 1993\
43 The Regents of the University of California. All rights reserved.");
45 static char sccsid
[] = "@(#)cat.c 8.2 (Berkeley) 4/27/95";
47 __RCSID("$NetBSD: cat.c,v 1.57 2016/06/16 00:52:37 sevan Exp $");
51 #include <sys/param.h>
64 static int bflag
, eflag
, fflag
, lflag
, nflag
, sflag
, tflag
, vflag
;
67 static const char *filename
;
69 void cook_args(char *argv
[]);
70 void cook_buf(FILE *);
71 void raw_args(char *argv
[]);
75 main(int argc
, char *argv
[])
78 struct flock stdout_lock
;
81 (void)setlocale(LC_ALL
, "");
83 while ((ch
= getopt(argc
, argv
, "B:beflnstuv")) != -1)
86 bsize
= (size_t)strtol(optarg
, NULL
, 0);
89 bflag
= nflag
= 1; /* -b implies -n */
92 eflag
= vflag
= 1; /* -e implies -v */
107 tflag
= vflag
= 1; /* -t implies -v */
110 setbuf(stdout
, NULL
);
117 (void)fprintf(stderr
,
118 "Usage: %s [-beflnstuv] [-B bsize] [-] "
119 "[file ...]\n", getprogname());
125 stdout_lock
.l_len
= 0;
126 stdout_lock
.l_start
= 0;
127 stdout_lock
.l_type
= F_WRLCK
;
128 stdout_lock
.l_whence
= SEEK_SET
;
129 if (fcntl(STDOUT_FILENO
, F_SETLKW
, &stdout_lock
) == -1)
130 err(EXIT_FAILURE
, "stdout");
133 if (bflag
|| eflag
|| nflag
|| sflag
|| tflag
|| vflag
)
138 err(EXIT_FAILURE
, "stdout");
143 cook_args(char **argv
)
151 if (!strcmp(*argv
, "-"))
153 else if ((fp
= fopen(*argv
,
154 fflag
? "rf" : "r")) == NULL
) {
173 int ch
, gobble
, line
, prev
;
176 for (prev
= '\n'; (ch
= getc(fp
)) != EOF
; prev
= ch
) {
187 if (!bflag
|| ch
!= '\n') {
188 (void)fprintf(stdout
,
193 (void)fprintf(stdout
,
202 if (putchar('$') == EOF
)
204 } else if (ch
== '\t') {
206 if (putchar('^') == EOF
|| putchar('I') == EOF
)
212 if (putchar('M') == EOF
|| putchar('-') == EOF
)
217 if (putchar('^') == EOF
||
218 putchar(ch
== '\177' ? '?' :
224 if (putchar(ch
) == EOF
)
228 warn("%s", filename
);
233 err(EXIT_FAILURE
, "stdout");
237 raw_args(char **argv
)
245 if (!strcmp(*argv
, "-")) {
251 fd
= open(*argv
, O_RDONLY
|O_NONBLOCK
, 0);
255 if (fstat(fd
, &st
) == -1) {
259 if (!S_ISREG(st
.st_mode
)) {
261 warnx("%s: not a regular file", *argv
);
265 else if ((fd
= open(*argv
, O_RDONLY
, 0)) < 0) {
275 err(EXIT_FAILURE
, "stdin");
278 if (fd
!= fileno(stdin
))
287 static char fb_buf
[BUFSIZ
];
292 wfd
= fileno(stdout
);
294 err(EXIT_FAILURE
, "stdout");
299 if (fstat(wfd
, &sbuf
) == 0 && sbuf
.st_blksize
> 0 &&
300 (size_t)sbuf
.st_blksize
> sizeof(fb_buf
))
301 bsize
= sbuf
.st_blksize
;
303 if (bsize
> sizeof(fb_buf
)) {
306 warnx("malloc, using %zu buffer", bsize
);
309 bsize
= sizeof(fb_buf
);
313 while ((nr
= read(rfd
, buf
, bsize
)) > 0)
314 for (off
= 0; nr
; nr
-= nw
, off
+= nw
)
315 if ((nw
= write(wfd
, buf
+ off
, (size_t)nr
)) < 0)
316 err(EXIT_FAILURE
, "stdout");
318 warn("%s", filename
);