1 /* 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 $ 5 */ 6 7 /* 8 * patch - a program to apply diffs to original files 9 * 10 * Copyright 1986, Larry Wall 11 * 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. 16 * 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 27 * SUCH DAMAGE. 28 * 29 * -C option added in 1998, original code by Marc Espie, based on FreeBSD 30 * behaviour 31 */ 32 33 #include <sys/cdefs.h> 34 __RCSID("$NetBSD: inp.c,v 1.22 2009/06/05 19:55:43 joerg Exp $"); 35 36 #include <sys/types.h> 37 #include <sys/file.h> 38 #include <sys/stat.h> 39 #include <sys/mman.h> 40 41 #include <ctype.h> 42 #include <fcntl.h> 43 #include <libgen.h> 44 #include <limits.h> 45 #include <stddef.h> 46 #include <stdio.h> 47 #include <stdlib.h> 48 #include <string.h> 49 #include <unistd.h> 50 51 #include "common.h" 52 #include "util.h" 53 #include "pch.h" 54 #include "inp.h" 55 56 57 /* Input-file-with-indexable-lines abstract type */ 58 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' }; 63 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 */ 69 70 static bool rev_in_string(const char *); 71 static bool reallocate_lines(size_t *); 72 73 /* returns false if insufficient memory */ 74 static bool plan_a(const char *); 75 76 static void plan_b(const char *); 77 78 /* New patch--prepare to edit another file. */ 79 80 void 81 re_input(void) 82 { 83 if (using_plan_a) { 84 i_size = 0; 85 free(i_ptr); 86 i_ptr = NULL; 87 if (i_womp != NULL) { 88 munmap(i_womp, i_size); 89 i_womp = NULL; 90 } 91 } else { 92 using_plan_a = true; /* maybe the next one is smaller */ 93 close(tifd); 94 tifd = -1; 95 free(tibuf[0]); 96 free(tibuf[1]); 97 tibuf[0] = tibuf[1] = NULL; 98 tiline[0] = tiline[1] = -1; 99 tireclen = 0; 100 } 101 } 102 103 /* Construct the line index, somehow or other. */ 104 105 void 106 scan_input(const char *filename) 107 { 108 if (!plan_a(filename)) 109 plan_b(filename); 110 if (verbose) { 111 say("Patching file %s using Plan %s...\n", filename, 112 (using_plan_a ? "A" : "B")); 113 } 114 } 115 116 static bool 117 reallocate_lines(size_t *lines_allocated) 118 { 119 char **p; 120 size_t new_size; 121 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); 126 i_womp = NULL; 127 free(i_ptr); 128 i_ptr = NULL; 129 *lines_allocated = 0; 130 return false; 131 } 132 *lines_allocated = new_size; 133 i_ptr = p; 134 return true; 135 } 136 137 /* Try keeping everything in memory. */ 138 139 static bool 140 plan_a(const char *filename) 141 { 142 int ifd, statfailed; 143 char *p, *s, lbuf[MAXLINELEN]; 144 struct stat filestat; 145 off_t i; 146 ptrdiff_t sz; 147 size_t iline, lines_allocated; 148 149 #ifdef DEBUGGING 150 if (debug & 8) 151 return false; 152 #endif 153 154 if (filename == NULL || *filename == '\0') 155 return false; 156 157 statfailed = stat(filename, &filestat); 158 if (statfailed && ok_to_create_file) { 159 if (verbose) 160 say("(Creating file %s...)\n", filename); 161 162 /* 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 166 */ 167 if (check_only) 168 return true; 169 makedirs(filename, true); 170 close(creat(filename, 0666)); 171 statfailed = stat(filename, &filestat); 172 } 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. */ 176 if (statfailed || 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; 182 struct stat cstat; 183 char *tmp_filename1, *tmp_filename2; 184 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); 191 192 /* Leave room in lbuf for the diff command. */ 193 s = lbuf + 20; 194 195 #define try(f, a1, a2, a3) \ 196 (snprintf(s, sizeof lbuf - 20, f, a1, a2, a3), stat(s, &cstat) == 0) 197 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); 203 cs = "RCS"; 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); 208 cs = "SCCS"; 209 } else if (statfailed) 210 fatal("can't find %s\n", filename); 211 212 free(tmp_filename1); 213 free(tmp_filename2); 214 215 /* 216 * else we can't write to it but it's not under a version 217 * control system, so just proceed. 218 */ 219 if (cs) { 220 if (!statfailed) { 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", 225 filename, cs); 226 /* 227 * It might be checked out unlocked. See if 228 * it's safe to check out the default version 229 * locked. 230 */ 231 if (verbose) 232 say("Comparing file %s to default " 233 "%s version...\n", 234 filename, cs); 235 if (system(lbuf)) 236 fatal("can't check out file %s: " 237 "differs from default %s version\n", 238 filename, cs); 239 } 240 if (verbose) 241 say("Checking out file %s from %s...\n", 242 filename, cs); 243 if (system(buf) || stat(filename, &filestat)) 244 fatal("can't check out file %s from %s\n", 245 filename, cs); 246 } 247 } 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; 252 if (out_of_mem) { 253 set_hunkmax(); /* make sure dynamic arrays are allocated */ 254 out_of_mem = false; 255 return false; /* force plan b because plan a bombed */ 256 } 257 if ((uintmax_t)i_size > (uintmax_t)SIZE_MAX) { 258 say("block too large to mmap\n"); 259 return false; 260 } 261 if ((ifd = open(filename, O_RDONLY)) < 0) 262 pfatal("can't open file %s", filename); 263 264 i_womp = mmap(NULL, i_size, PROT_READ, MAP_PRIVATE, ifd, 0); 265 if (i_womp == MAP_FAILED) { 266 perror("mmap failed"); 267 i_womp = NULL; 268 close(ifd); 269 return false; 270 } 271 272 close(ifd); 273 if (i_size) 274 madvise(i_womp, i_size, MADV_SEQUENTIAL); 275 276 /* estimate the number of lines */ 277 lines_allocated = i_size / 25; 278 if (lines_allocated < 100) 279 lines_allocated = 100; 280 281 if (!reallocate_lines(&lines_allocated)) 282 return false; 283 284 /* now scan the buffer and build pointer array */ 285 iline = 1; 286 i_ptr[iline] = i_womp; 287 /* test for NUL too, to maintain the behavior of the original code */ 288 for (s = i_womp, i = 0; i < i_size && *s != '\0'; s++, i++) { 289 if (*s == '\n') { 290 if (iline == lines_allocated) { 291 if (!reallocate_lines(&lines_allocated)) 292 return false; 293 } 294 /* these are NOT NUL terminated */ 295 i_ptr[++iline] = s + 1; 296 } 297 } 298 /* if the last line contains no EOL, append one */ 299 if (i_size > 0 && i_womp[i_size - 1] != '\n') { 300 last_line_missing_eol = true; 301 /* fix last line */ 302 sz = s - i_ptr[iline]; 303 p = malloc(sz + 1); 304 if (p == NULL) { 305 free(i_ptr); 306 i_ptr = NULL; 307 munmap(i_womp, i_size); 308 i_womp = NULL; 309 return false; 310 } 311 312 memcpy(p, i_ptr[iline], sz); 313 p[sz] = '\n'; 314 i_ptr[iline] = p; 315 /* count the extra line and make it point to some valid mem */ 316 i_ptr[++iline] = empty_line; 317 } else 318 last_line_missing_eol = false; 319 320 input_lines = iline - 1; 321 322 /* now check for revision, if any */ 323 324 if (revision != NULL) { 325 if (!rev_in_string(i_womp)) { 326 if (force) { 327 if (verbose) 328 say("Warning: this file doesn't appear " 329 "to be the %s version--patching anyway.\n", 330 revision); 331 } else if (batch) { 332 fatal("this file doesn't appear to be the " 333 "%s version--aborting.\n", 334 revision); 335 } else { 336 ask("This file doesn't appear to be the " 337 "%s version--patch anyway? [n] ", 338 revision); 339 if (*buf != 'y') 340 fatal("aborted\n"); 341 } 342 } else if (verbose) 343 say("Good. This file appears to be the %s version.\n", 344 revision); 345 } 346 return true; /* plan a will work */ 347 } 348 349 /* Keep (virtually) nothing in memory. */ 350 351 static void 352 plan_b(const char *filename) 353 { 354 FILE *ifp; 355 size_t i = 0, j, maxlen = 1; 356 char *p; 357 bool found_revision = (revision == NULL); 358 359 using_plan_a = false; 360 if ((ifp = fopen(filename, "r")) == NULL) 361 pfatal("can't open file %s", filename); 362 unlink(TMPINNAME); 363 if ((tifd = open(TMPINNAME, O_EXCL | O_CREAT | O_WRONLY, 0666)) < 0) 364 pfatal("can't open file %s", TMPINNAME); 365 while (fgets(buf, buf_len, ifp) != NULL) { 366 if (revision != NULL && !found_revision && rev_in_string(buf)) 367 found_revision = true; 368 if ((i = strlen(buf)) > maxlen) 369 maxlen = i; /* find longest line */ 370 } 371 last_line_missing_eol = i > 0 && buf[i - 1] != '\n'; 372 if (last_line_missing_eol && maxlen == i) 373 maxlen++; 374 375 if (revision != NULL) { 376 if (!found_revision) { 377 if (force) { 378 if (verbose) 379 say("Warning: this file doesn't appear " 380 "to be the %s version--patching anyway.\n", 381 revision); 382 } else if (batch) { 383 fatal("this file doesn't appear to be the " 384 "%s version--aborting.\n", 385 revision); 386 } else { 387 ask("This file doesn't appear to be the %s " 388 "version--patch anyway? [n] ", 389 revision); 390 if (*buf != 'y') 391 fatal("aborted\n"); 392 } 393 } else if (verbose) 394 say("Good. This file appears to be the %s version.\n", 395 revision); 396 } 397 fseek(ifp, 0L, SEEK_SET); /* rewind file */ 398 lines_per_buf = BUFFERSIZE / maxlen; 399 tireclen = maxlen; 400 tibuf[0] = malloc(BUFFERSIZE + 1); 401 if (tibuf[0] == NULL) 402 fatal("out of memory\n"); 403 tibuf[1] = malloc(BUFFERSIZE + 1); 404 if (tibuf[1] == NULL) 405 fatal("out of memory\n"); 406 for (i = 1;; i++) { 407 p = tibuf[0] + maxlen * (i % lines_per_buf); 408 if (i % lines_per_buf == 0) /* new block */ 409 if (write(tifd, tibuf[0], BUFFERSIZE) < BUFFERSIZE) 410 pfatal("can't write temp file"); 411 if (fgets(p, maxlen + 1, ifp) == NULL) { 412 input_lines = i - 1; 413 if (i % lines_per_buf != 0) 414 if (write(tifd, tibuf[0], BUFFERSIZE) < BUFFERSIZE) 415 pfatal("can't write temp file"); 416 break; 417 } 418 j = strlen(p); 419 /* These are '\n' terminated strings, so no need to add a NUL */ 420 if (j == 0 || p[j - 1] != '\n') 421 p[j] = '\n'; 422 } 423 fclose(ifp); 424 close(tifd); 425 if ((tifd = open(TMPINNAME, O_RDONLY)) < 0) 426 pfatal("can't reopen file %s", TMPINNAME); 427 } 428 429 /* 430 * Fetch a line from the input file, \n terminated, not necessarily \0. 431 */ 432 char * 433 ifetch(LINENUM line, int whichbuf) 434 { 435 if (line < 1 || line > input_lines) { 436 if (warn_on_invalid_line) { 437 say("No such line %ld in input file, ignoring\n", line); 438 warn_on_invalid_line = false; 439 } 440 return NULL; 441 } 442 if (using_plan_a) 443 return i_ptr[line]; 444 else { 445 LINENUM offline = line % lines_per_buf; 446 LINENUM baseline = line - offline; 447 448 if (tiline[0] == baseline) 449 whichbuf = 0; 450 else if (tiline[1] == baseline) 451 whichbuf = 1; 452 else { 453 tiline[whichbuf] = baseline; 454 455 if (lseek(tifd, (off_t) (baseline / lines_per_buf * 456 BUFFERSIZE), SEEK_SET) < 0) 457 pfatal("cannot seek in the temporary input file"); 458 459 if (read(tifd, tibuf[whichbuf], BUFFERSIZE) < 0) 460 pfatal("error reading tmp file %s", TMPINNAME); 461 } 462 return tibuf[whichbuf] + (tireclen * offline); 463 } 464 } 465 466 /* 467 * True if the string argument contains the revision number we want. 468 */ 469 static bool 470 rev_in_string(const char *string) 471 { 472 const char *s; 473 size_t patlen; 474 475 if (revision == NULL) 476 return true; 477 patlen = strlen(revision); 478 if (strnEQ(string, revision, patlen) && isspace((unsigned char)string[patlen])) 479 return true; 480 for (s = string; *s; s++) { 481 if (isspace((unsigned char)*s) && strnEQ(s + 1, revision, patlen) && 482 isspace((unsigned char)s[patlen + 1])) { 483 return true; 484 } 485 } 486 return false; 487 } 488