1 /* $NetBSD: cat.c,v 1.43 2004/01/04 03:31:28 jschauma Exp $ */ 2 3 /* 4 * Copyright (c) 1989, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley by 8 * Kevin Fall. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 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. 21 * 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 32 * SUCH DAMAGE. 33 */ 34 35 #if HAVE_NBTOOL_CONFIG_H 36 #include "nbtool_config.h" 37 #endif 38 39 #include <sys/cdefs.h> 40 #if !defined(lint) 41 __COPYRIGHT( 42 "@(#) Copyright (c) 1989, 1993\n\ 43 The Regents of the University of California. All rights reserved.\n"); 44 #if 0 45 static char sccsid[] = "@(#)cat.c 8.2 (Berkeley) 4/27/95"; 46 #else 47 __RCSID("$NetBSD: cat.c,v 1.43 2004/01/04 03:31:28 jschauma Exp $"); 48 #endif 49 #endif /* not lint */ 50 51 #include <sys/param.h> 52 #include <sys/stat.h> 53 54 #include <ctype.h> 55 #include <err.h> 56 #include <errno.h> 57 #include <fcntl.h> 58 #include <locale.h> 59 #include <stdio.h> 60 #include <stdlib.h> 61 #include <string.h> 62 #include <unistd.h> 63 64 int bflag, eflag, fflag, lflag, nflag, sflag, tflag, vflag; 65 int rval; 66 const char *filename; 67 68 int main(int, char *[]); 69 void cook_args(char *argv[]); 70 void cook_buf(FILE *); 71 void raw_args(char *argv[]); 72 void raw_cat(int); 73 74 int 75 main(int argc, char *argv[]) 76 { 77 int ch; 78 struct flock stdout_lock; 79 80 setprogname(argv[0]); 81 (void)setlocale(LC_ALL, ""); 82 83 while ((ch = getopt(argc, argv, "beflnstuv")) != -1) 84 switch (ch) { 85 case 'b': 86 bflag = nflag = 1; /* -b implies -n */ 87 break; 88 case 'e': 89 eflag = vflag = 1; /* -e implies -v */ 90 break; 91 case 'f': 92 fflag = 1; 93 break; 94 case 'l': 95 lflag = 1; 96 break; 97 case 'n': 98 nflag = 1; 99 break; 100 case 's': 101 sflag = 1; 102 break; 103 case 't': 104 tflag = vflag = 1; /* -t implies -v */ 105 break; 106 case 'u': 107 setbuf(stdout, NULL); 108 break; 109 case 'v': 110 vflag = 1; 111 break; 112 default: 113 case '?': 114 (void)fprintf(stderr, 115 "usage: cat [-beflnstuv] [-] [file ...]\n"); 116 exit(1); 117 /* NOTREACHED */ 118 } 119 argv += optind; 120 121 if (lflag) { 122 stdout_lock.l_len = 0; 123 stdout_lock.l_start = 0; 124 stdout_lock.l_type = F_WRLCK; 125 stdout_lock.l_whence = SEEK_SET; 126 if (fcntl(STDOUT_FILENO, F_SETLKW, &stdout_lock) == -1) 127 err(EXIT_FAILURE, "stdout"); 128 } 129 130 if (bflag || eflag || nflag || sflag || tflag || vflag) 131 cook_args(argv); 132 else 133 raw_args(argv); 134 if (fclose(stdout)) 135 err(1, "stdout"); 136 exit(rval); 137 /* NOTREACHED */ 138 } 139 140 void 141 cook_args(char **argv) 142 { 143 FILE *fp; 144 145 fp = stdin; 146 filename = "stdin"; 147 do { 148 if (*argv) { 149 if (!strcmp(*argv, "-")) 150 fp = stdin; 151 else if ((fp = fopen(*argv, 152 fflag ? "rf" : "r")) == NULL) { 153 warn("%s", *argv); 154 rval = 1; 155 ++argv; 156 continue; 157 } 158 filename = *argv++; 159 } 160 cook_buf(fp); 161 if (fp != stdin) 162 (void)fclose(fp); 163 } while (*argv); 164 } 165 166 void 167 cook_buf(FILE *fp) 168 { 169 int ch, gobble, line, prev; 170 171 line = gobble = 0; 172 for (prev = '\n'; (ch = getc(fp)) != EOF; prev = ch) { 173 if (prev == '\n') { 174 if (ch == '\n') { 175 if (sflag) { 176 if (!gobble && putchar(ch) == EOF) 177 break; 178 gobble = 1; 179 continue; 180 } 181 if (nflag) { 182 if (!bflag) { 183 (void)fprintf(stdout, 184 "%6d\t", ++line); 185 if (ferror(stdout)) 186 break; 187 } else if (eflag) { 188 (void)fprintf(stdout, 189 "%6s\t", ""); 190 if (ferror(stdout)) 191 break; 192 } 193 } 194 } else if (nflag) { 195 (void)fprintf(stdout, "%6d\t", ++line); 196 if (ferror(stdout)) 197 break; 198 } 199 } 200 gobble = 0; 201 if (ch == '\n') { 202 if (eflag) 203 if (putchar('$') == EOF) 204 break; 205 } else if (ch == '\t') { 206 if (tflag) { 207 if (putchar('^') == EOF || putchar('I') == EOF) 208 break; 209 continue; 210 } 211 } else if (vflag) { 212 if (!isascii(ch)) { 213 if (putchar('M') == EOF || putchar('-') == EOF) 214 break; 215 ch = toascii(ch); 216 } 217 if (iscntrl(ch)) { 218 if (putchar('^') == EOF || 219 putchar(ch == '\177' ? '?' : 220 ch | 0100) == EOF) 221 break; 222 continue; 223 } 224 } 225 if (putchar(ch) == EOF) 226 break; 227 } 228 if (ferror(fp)) { 229 warn("%s", filename); 230 rval = 1; 231 clearerr(fp); 232 } 233 if (ferror(stdout)) 234 err(1, "stdout"); 235 } 236 237 void 238 raw_args(char **argv) 239 { 240 int fd; 241 242 fd = fileno(stdin); 243 filename = "stdin"; 244 do { 245 if (*argv) { 246 if (!strcmp(*argv, "-")) 247 fd = fileno(stdin); 248 else if (fflag) { 249 struct stat st; 250 fd = open(*argv, O_RDONLY|O_NONBLOCK, 0); 251 if (fd < 0) 252 goto skip; 253 254 if (fstat(fd, &st) == -1) { 255 close(fd); 256 goto skip; 257 } 258 if (!S_ISREG(st.st_mode)) { 259 close(fd); 260 warnx("%s: not a regular file", *argv); 261 goto skipnomsg; 262 } 263 } 264 else if ((fd = open(*argv, O_RDONLY, 0)) < 0) { 265 skip: 266 warn("%s", *argv); 267 skipnomsg: 268 rval = 1; 269 ++argv; 270 continue; 271 } 272 filename = *argv++; 273 } 274 raw_cat(fd); 275 if (fd != fileno(stdin)) 276 (void)close(fd); 277 } while (*argv); 278 } 279 280 void 281 raw_cat(int rfd) 282 { 283 static char *buf; 284 static char fb_buf[BUFSIZ]; 285 static size_t bsize; 286 287 struct stat sbuf; 288 ssize_t nr, nw, off; 289 int wfd; 290 291 wfd = fileno(stdout); 292 if (buf == NULL) { 293 if (fstat(wfd, &sbuf) == 0) { 294 bsize = sbuf.st_blksize > BUFSIZ ? 295 sbuf.st_blksize : BUFSIZ; 296 buf = malloc(bsize); 297 } 298 if (buf == NULL) { 299 buf = fb_buf; 300 bsize = BUFSIZ; 301 } 302 } 303 while ((nr = read(rfd, buf, bsize)) > 0) 304 for (off = 0; nr; nr -= nw, off += nw) 305 if ((nw = write(wfd, buf + off, (size_t)nr)) < 0) 306 err(1, "stdout"); 307 if (nr < 0) { 308 warn("%s", filename); 309 rval = 1; 310 } 311 } 312