2 * $OpenBSD: inp.c,v 1.34 2006/03/11 19:41:30 otto Exp $
3 * $DragonFly: src/usr.bin/patch/inp.c,v 1.6 2007/09/29 23:11:10 swildner Exp $
4 * $NetBSD: inp.c,v 1.22 2009/06/05 19:55:43 joerg Exp $
8 * patch - a program to apply diffs to original files
10 * Copyright 1986, Larry Wall
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following condition is met:
14 * 1. Redistributions of source code must retain the above copyright notice,
15 * this condition and the following disclaimer.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
21 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
24 * 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
29 * -C option added in 1998, original code by Marc Espie, based on FreeBSD
33 #include <sys/cdefs.h>
34 __RCSID("$NetBSD: inp.c,v 1.22 2009/06/05 19:55:43 joerg Exp $");
36 #include <sys/types.h>
57 /* Input-file-with-indexable-lines abstract type */
59 static off_t i_size
; /* size of the input file */
60 static char *i_womp
; /* plan a buffer for entire file */
61 static char **i_ptr
; /* pointers to lines in i_womp */
62 static char empty_line
[] = { '\0' };
64 static int tifd
= -1; /* plan b virtual string array */
65 static char *tibuf
[2]; /* plan b buffers */
66 static LINENUM tiline
[2] = {-1, -1}; /* 1st line in each buffer */
67 static LINENUM lines_per_buf
; /* how many lines per buffer */
68 static int tireclen
; /* length of records in tmp file */
70 static bool rev_in_string(const char *);
71 static bool reallocate_lines(size_t *);
73 /* returns false if insufficient memory */
74 static bool plan_a(const char *);
76 static void plan_b(const char *);
78 /* New patch--prepare to edit another file. */
88 munmap(i_womp
, i_size
);
92 using_plan_a
= true; /* maybe the next one is smaller */
97 tibuf
[0] = tibuf
[1] = NULL
;
98 tiline
[0] = tiline
[1] = -1;
103 /* Construct the line index, somehow or other. */
106 scan_input(const char *filename
)
108 if (!plan_a(filename
))
111 say("Patching file %s using Plan %s...\n", filename
,
112 (using_plan_a
? "A" : "B"));
117 reallocate_lines(size_t *lines_allocated
)
122 new_size
= *lines_allocated
* 3 / 2;
123 p
= realloc(i_ptr
, (new_size
+ 2) * sizeof(char *));
124 if (p
== NULL
) { /* shucks, it was a near thing */
125 munmap(i_womp
, i_size
);
129 *lines_allocated
= 0;
132 *lines_allocated
= new_size
;
137 /* Try keeping everything in memory. */
140 plan_a(const char *filename
)
143 char *p
, *s
, lbuf
[MAXLINELEN
];
144 struct stat filestat
;
147 size_t iline
, lines_allocated
;
154 if (filename
== NULL
|| *filename
== '\0')
157 statfailed
= stat(filename
, &filestat
);
158 if (statfailed
&& ok_to_create_file
) {
160 say("(Creating file %s...)\n", filename
);
163 * in check_patch case, we still display `Creating file' even
164 * though we're not. The rule is that -C should be as similar
165 * to normal patch behavior as possible
169 makedirs(filename
, true);
170 close(creat(filename
, 0666));
171 statfailed
= stat(filename
, &filestat
);
173 if (statfailed
&& check_only
)
174 fatal("%s not found, -C mode, can't probe further\n", filename
);
175 /* For nonexistent or read-only files, look for RCS or SCCS versions. */
177 /* No one can write to it. */
178 (filestat
.st_mode
& 0222) == 0 ||
179 /* I can't write to it. */
180 ((filestat
.st_mode
& 0022) == 0 && filestat
.st_uid
!= getuid())) {
181 const char *cs
= NULL
, *filebase
, *filedir
;
183 char *tmp_filename1
, *tmp_filename2
;
185 tmp_filename1
= strdup(filename
);
186 tmp_filename2
= strdup(filename
);
187 if (tmp_filename1
== NULL
|| tmp_filename2
== NULL
)
188 fatal("strdupping filename");
189 filebase
= basename(tmp_filename1
);
190 filedir
= dirname(tmp_filename2
);
192 /* Leave room in lbuf for the diff command. */
195 #define try(f, a1, a2, a3) \
196 (snprintf(s, sizeof lbuf - 20, f, a1, a2, a3), stat(s, &cstat) == 0)
198 if (try("%s/RCS/%s%s", filedir
, filebase
, RCSSUFFIX
) ||
199 try("%s/RCS/%s%s", filedir
, filebase
, "") ||
200 try("%s/%s%s", filedir
, filebase
, RCSSUFFIX
)) {
201 snprintf(buf
, buf_len
, CHECKOUT
, filename
);
202 snprintf(lbuf
, sizeof lbuf
, RCSDIFF
, filename
);
204 } else if (try("%s/SCCS/%s%s", filedir
, SCCSPREFIX
, filebase
) ||
205 try("%s/%s%s", filedir
, SCCSPREFIX
, filebase
)) {
206 snprintf(buf
, buf_len
, GET
, s
);
207 snprintf(lbuf
, sizeof lbuf
, SCCSDIFF
, s
, filename
);
209 } else if (statfailed
)
210 fatal("can't find %s\n", filename
);
216 * else we can't write to it but it's not under a version
217 * control system, so just proceed.
221 if ((filestat
.st_mode
& 0222) != 0)
222 /* The owner can write to it. */
223 fatal("file %s seems to be locked "
224 "by somebody else under %s\n",
227 * It might be checked out unlocked. See if
228 * it's safe to check out the default version
232 say("Comparing file %s to default "
236 fatal("can't check out file %s: "
237 "differs from default %s version\n",
241 say("Checking out file %s from %s...\n",
243 if (system(buf
) || stat(filename
, &filestat
))
244 fatal("can't check out file %s from %s\n",
248 filemode
= filestat
.st_mode
;
249 if (!S_ISREG(filemode
))
250 fatal("%s is not a normal file--can't patch\n", filename
);
251 i_size
= filestat
.st_size
;
253 set_hunkmax(); /* make sure dynamic arrays are allocated */
255 return false; /* force plan b because plan a bombed */
257 if ((uintmax_t)i_size
> (uintmax_t)SIZE_MAX
) {
258 say("block too large to mmap\n");
261 if ((ifd
= open(filename
, O_RDONLY
)) < 0)
262 pfatal("can't open file %s", filename
);
265 i_womp
= mmap(NULL
, i_size
, PROT_READ
, MAP_PRIVATE
, ifd
, 0);
266 if (i_womp
== MAP_FAILED
) {
267 perror("mmap failed");
278 madvise(i_womp
, i_size
, MADV_SEQUENTIAL
);
280 /* estimate the number of lines */
281 lines_allocated
= i_size
/ 25;
282 if (lines_allocated
< 100)
283 lines_allocated
= 100;
285 if (!reallocate_lines(&lines_allocated
))
288 /* now scan the buffer and build pointer array */
290 i_ptr
[iline
] = i_womp
;
291 /* test for NUL too, to maintain the behavior of the original code */
292 for (s
= i_womp
, i
= 0; i
< i_size
&& *s
!= '\0'; s
++, i
++) {
294 if (iline
== lines_allocated
) {
295 if (!reallocate_lines(&lines_allocated
))
298 /* these are NOT NUL terminated */
299 i_ptr
[++iline
] = s
+ 1;
302 /* if the last line contains no EOL, append one */
303 if (i_size
> 0 && i_womp
[i_size
- 1] != '\n') {
304 last_line_missing_eol
= true;
306 sz
= s
- i_ptr
[iline
];
311 munmap(i_womp
, i_size
);
316 memcpy(p
, i_ptr
[iline
], sz
);
319 /* count the extra line and make it point to some valid mem */
320 i_ptr
[++iline
] = empty_line
;
322 last_line_missing_eol
= false;
324 input_lines
= iline
- 1;
326 /* now check for revision, if any */
328 if (revision
!= NULL
) {
329 if (!rev_in_string(i_womp
)) {
332 say("Warning: this file doesn't appear "
333 "to be the %s version--patching anyway.\n",
336 fatal("this file doesn't appear to be the "
337 "%s version--aborting.\n",
340 ask("This file doesn't appear to be the "
341 "%s version--patch anyway? [n] ",
347 say("Good. This file appears to be the %s version.\n",
350 return true; /* plan a will work */
353 /* Keep (virtually) nothing in memory. */
356 plan_b(const char *filename
)
359 size_t i
= 0, j
, maxlen
= 1;
361 bool found_revision
= (revision
== NULL
);
363 using_plan_a
= false;
364 if ((ifp
= fopen(filename
, "r")) == NULL
)
365 pfatal("can't open file %s", filename
);
367 if ((tifd
= open(TMPINNAME
, O_EXCL
| O_CREAT
| O_WRONLY
, 0666)) < 0)
368 pfatal("can't open file %s", TMPINNAME
);
369 while (fgets(buf
, buf_len
, ifp
) != NULL
) {
370 if (revision
!= NULL
&& !found_revision
&& rev_in_string(buf
))
371 found_revision
= true;
372 if ((i
= strlen(buf
)) > maxlen
)
373 maxlen
= i
; /* find longest line */
375 last_line_missing_eol
= i
> 0 && buf
[i
- 1] != '\n';
376 if (last_line_missing_eol
&& maxlen
== i
)
379 if (revision
!= NULL
) {
380 if (!found_revision
) {
383 say("Warning: this file doesn't appear "
384 "to be the %s version--patching anyway.\n",
387 fatal("this file doesn't appear to be the "
388 "%s version--aborting.\n",
391 ask("This file doesn't appear to be the %s "
392 "version--patch anyway? [n] ",
398 say("Good. This file appears to be the %s version.\n",
401 fseek(ifp
, 0L, SEEK_SET
); /* rewind file */
402 lines_per_buf
= BUFFERSIZE
/ maxlen
;
404 tibuf
[0] = malloc(BUFFERSIZE
+ 1);
405 if (tibuf
[0] == NULL
)
406 fatal("out of memory\n");
407 tibuf
[1] = malloc(BUFFERSIZE
+ 1);
408 if (tibuf
[1] == NULL
)
409 fatal("out of memory\n");
411 p
= tibuf
[0] + maxlen
* (i
% lines_per_buf
);
412 if (i
% lines_per_buf
== 0) /* new block */
413 if (write(tifd
, tibuf
[0], BUFFERSIZE
) < BUFFERSIZE
)
414 pfatal("can't write temp file");
415 if (fgets(p
, maxlen
+ 1, ifp
) == NULL
) {
417 if (i
% lines_per_buf
!= 0)
418 if (write(tifd
, tibuf
[0], BUFFERSIZE
) < BUFFERSIZE
)
419 pfatal("can't write temp file");
423 /* These are '\n' terminated strings, so no need to add a NUL */
424 if (j
== 0 || p
[j
- 1] != '\n')
429 if ((tifd
= open(TMPINNAME
, O_RDONLY
)) < 0)
430 pfatal("can't reopen file %s", TMPINNAME
);
434 * Fetch a line from the input file, \n terminated, not necessarily \0.
437 ifetch(LINENUM line
, int whichbuf
)
439 if (line
< 1 || line
> input_lines
) {
440 if (warn_on_invalid_line
) {
441 say("No such line %ld in input file, ignoring\n", line
);
442 warn_on_invalid_line
= false;
449 LINENUM offline
= line
% lines_per_buf
;
450 LINENUM baseline
= line
- offline
;
452 if (tiline
[0] == baseline
)
454 else if (tiline
[1] == baseline
)
457 tiline
[whichbuf
] = baseline
;
459 if (lseek(tifd
, (off_t
) (baseline
/ lines_per_buf
*
460 BUFFERSIZE
), SEEK_SET
) < 0)
461 pfatal("cannot seek in the temporary input file");
463 if (read(tifd
, tibuf
[whichbuf
], BUFFERSIZE
) < 0)
464 pfatal("error reading tmp file %s", TMPINNAME
);
466 return tibuf
[whichbuf
] + (tireclen
* offline
);
471 * True if the string argument contains the revision number we want.
474 rev_in_string(const char *string
)
479 if (revision
== NULL
)
481 patlen
= strlen(revision
);
482 if (strnEQ(string
, revision
, patlen
) && isspace((unsigned char)string
[patlen
]))
484 for (s
= string
; *s
; s
++) {
485 if (isspace((unsigned char)*s
) && strnEQ(s
+ 1, revision
, patlen
) &&
486 isspace((unsigned char)s
[patlen
+ 1])) {