2 * Copyright (c) 2013 Johann 'Myrkraverk' Oskarsson <johann@myrkraverk.com>
3 * Copyright (c) 2011 Gary Mills
4 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
5 * Copyright (c) 1992 Diomidis Spinellis.
6 * Copyright (c) 1992, 1993
7 * The Regents of the University of California. All rights reserved.
9 * This code is derived from software contributed to Berkeley by
10 * Diomidis Spinellis of Imperial College, University of London.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 #include <sys/types.h>
39 #include <sys/param.h>
61 * Linked list of units (strings and files) to be compiled
64 struct s_compunit
*next
;
65 enum e_cut
{CU_FILE
, CU_STRING
} type
;
66 char *s
; /* Pointer to string or fname */
70 * Linked list pointer to compilation units and pointer to current
73 static struct s_compunit
*script
, **cu_nextp
= &script
;
76 * Linked list of files to be processed
84 * Linked list pointer to files and pointer to current
87 static struct s_flist
*files
, **fl_nextp
= &files
;
89 FILE *infile
; /* Current input file */
90 FILE *outfile
; /* Current output file */
92 int aflag
, eflag
, nflag
;
94 static int rval
; /* Exit status */
96 static int ispan
; /* Whether inplace editing spans across files */
99 * Current file and line number; line numbers restart across compilation
100 * units, but span across input files. The latter is optional if editing
103 const char *fname
; /* File name. */
104 const char *outfname
; /* Output file name */
105 static char oldfname
[PATH_MAX
]; /* Old file name (for in-place editing) */
106 static char tmpfname
[PATH_MAX
]; /* Temporary file name (for in-place editing) */
107 static const char *inplace
; /* Inplace edit file extension. */
110 static const struct option lopts
[] = {
111 {"in-place", optional_argument
, NULL
, 'i'},
115 static void add_compunit(enum e_cut
, char *);
116 static void add_file(char *);
117 static void usage(void);
121 main(int argc
, char *argv
[])
126 (void) setlocale(LC_ALL
, "");
129 #define TEXT_DOMAIN "SYS_TEST"
131 (void) textdomain(TEXT_DOMAIN
);
136 while ((c
= getopt_long(argc
, argv
, "EI::ae:f:i::lnr", lopts
, NULL
)) !=
139 case 'r': /* Gnu sed compat */
141 rflags
= REG_EXTENDED
;
148 ispan
= 1; /* span across input files */
155 if (asprintf(&temp_arg
, "%s\n", optarg
) < 1)
157 add_compunit(CU_STRING
, temp_arg
);
161 add_compunit(CU_FILE
, optarg
);
168 ispan
= 0; /* don't span across input files */
171 /* On SunOS, setlinebuf "returns no useful value */
172 (void) setlinebuf(stdout
);
184 /* First usage case; script is the first arg */
185 if (!eflag
&& !fflag
&& *argv
) {
186 add_compunit(CU_STRING
, *argv
);
192 /* Continue with first and start second usage */
194 for (; *argv
; argv
++)
208 (void) fputs(_("usage: sed script [-Ealn] [-i[extension]] [file...]\n"
209 " sed [-Ealn] [-i[extension]] [-e script]... "
210 "[-f script_file]... [file...]\n"),
216 * Like fgets, but go through the chain of compilation units chaining them
217 * together. Empty strings and files are ignored.
220 cu_fgets(char *buf
, int n
, int *more
)
222 static enum {ST_EOF
, ST_FILE
, ST_STRING
} state
= ST_EOF
;
223 static FILE *f
; /* Current open file */
224 static char *s
; /* Current pointer inside string */
225 static char string_ident
[30];
231 if (script
== NULL
) {
237 switch (script
->type
) {
239 if ((f
= fopen(script
->s
, "r")) == NULL
)
240 err(1, "%s", script
->s
);
245 if (((size_t)snprintf(string_ident
,
246 sizeof (string_ident
), "\"%s\"", script
->s
)) >=
247 sizeof (string_ident
) - 1)
248 (void) strcpy(string_ident
+
249 sizeof (string_ident
) - 6, " ...\"");
250 fname
= string_ident
;
258 if ((p
= fgets(buf
, n
, f
)) != NULL
) {
260 if (linenum
== 1 && buf
[0] == '#' && buf
[1] == 'n')
266 script
= script
->next
;
271 if (linenum
== 0 && s
[0] == '#' && s
[1] == 'n')
285 if (s
== script
->s
) {
286 script
= script
->next
;
289 script
= script
->next
;
314 * Like fgets, but go through the list of files chaining them together.
315 * Set len to the length of the line.
318 mf_fgets(SPACE
*sp
, enum e_spflag spflag
)
322 static char *p
= NULL
;
323 static size_t plen
= 0;
325 static int firstfile
;
327 if (infile
== NULL
) {
329 if (files
->fname
== NULL
) {
332 _("-I or -i may not be used with stdin"));
342 if (infile
!= NULL
&& (c
= getc(infile
)) != EOF
) {
343 (void) ungetc(c
, infile
);
346 /* If we are here then either eof or no files are open yet */
347 if (infile
== stdin
) {
351 if (infile
!= NULL
) {
352 (void) fclose(infile
);
353 if (*oldfname
!= '\0') {
354 /* if there was a backup file, remove it */
355 (void) unlink(oldfname
);
357 * Backup the original. Note that hard links
358 * are not supported on all filesystems.
360 if ((link(fname
, oldfname
) != 0) &&
361 (rename(fname
, oldfname
) != 0)) {
364 (void) unlink(tmpfname
);
369 if (*tmpfname
!= '\0') {
370 if (outfile
!= NULL
&& outfile
!= stdout
)
371 if (fclose(outfile
) != 0) {
373 (void) unlink(tmpfname
);
377 if (rename(tmpfname
, fname
) != 0) {
378 /* this should not happen really! */
380 (void) unlink(tmpfname
);
395 fname
= files
->fname
;
396 if (inplace
!= NULL
) {
399 (void) strlcpy(bn
, fname
, sizeof (bn
));
400 (void) strlcpy(dn
, fname
, sizeof (dn
));
401 if (lstat(fname
, &sb
) != 0)
403 if (!(sb
.st_mode
& S_IFREG
))
404 fatal(_("in-place editing only "
405 "works for regular files"));
406 if (*inplace
!= '\0') {
407 (void) strlcpy(oldfname
, fname
,
409 len
= strlcat(oldfname
, inplace
,
411 if (len
> sizeof (oldfname
))
412 fatal(_("name too long"));
414 len
= snprintf(tmpfname
, sizeof (tmpfname
),
415 "%s/.!%ld!%s", dirname(dn
), (long)getpid(),
417 if (len
>= sizeof (tmpfname
))
418 fatal(_("name too long"));
419 (void) unlink(tmpfname
);
420 if ((outfile
= fopen(tmpfname
, "w")) == NULL
)
423 * Some file systems don't support chown or
424 * chmod fully. On those, the owner/group and
425 * permissions will already be set to what
428 if (fstat(fileno(outfile
), &nsb
) != 0) {
431 if (((sb
.st_uid
!= nsb
.st_uid
) ||
432 (sb
.st_gid
!= nsb
.st_gid
)) &&
433 (fchown(fileno(outfile
), sb
.st_uid
, sb
.st_gid
)
436 if ((sb
.st_mode
!= nsb
.st_mode
) &&
437 (fchmod(fileno(outfile
), sb
.st_mode
& 07777) != 0))
448 if ((infile
= fopen(fname
, "r")) == NULL
) {
455 * We are here only when infile is open and we still have something
458 * Use getline() so that we can handle essentially infinite
459 * input data. The p and plen are static so each invocation gives
460 * getline() the same buffer which is expanded as needed.
462 len
= getline(&p
, &plen
, infile
);
465 if (len
!= 0 && p
[len
- 1] == '\n')
467 cspace(sp
, p
, len
, spflag
);
475 * Add a compilation unit to the linked list
478 add_compunit(enum e_cut type
, char *s
)
480 struct s_compunit
*cu
;
482 if ((cu
= malloc(sizeof (struct s_compunit
))) == NULL
)
488 cu_nextp
= &cu
->next
;
492 * Add a file to the linked list
499 if ((fp
= malloc(sizeof (struct s_flist
))) == NULL
)
504 fl_nextp
= &fp
->next
;
512 if (files
->next
!= NULL
&& (inplace
== NULL
|| ispan
))
514 if ((ch
= getc(infile
)) == EOF
)
516 (void) ungetc(ch
, infile
);