1 1.19 joerg /* 2 1.19 joerg * $OpenBSD: inp.c,v 1.34 2006/03/11 19:41:30 otto Exp $ 3 1.19 joerg * $DragonFly: src/usr.bin/patch/inp.c,v 1.6 2007/09/29 23:11:10 swildner Exp $ 4 1.30 wiz * $NetBSD: inp.c,v 1.30 2023/06/16 23:36:26 wiz Exp $ 5 1.19 joerg */ 6 1.15 itojun 7 1.15 itojun /* 8 1.19 joerg * patch - a program to apply diffs to original files 9 1.29 wiz * 10 1.19 joerg * Copyright 1986, Larry Wall 11 1.29 wiz * 12 1.15 itojun * Redistribution and use in source and binary forms, with or without 13 1.19 joerg * modification, are permitted provided that the following condition is met: 14 1.19 joerg * 1. Redistributions of source code must retain the above copyright notice, 15 1.19 joerg * this condition and the following disclaimer. 16 1.29 wiz * 17 1.19 joerg * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY 18 1.19 joerg * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 19 1.19 joerg * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 20 1.19 joerg * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR 21 1.19 joerg * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 1.19 joerg * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 23 1.19 joerg * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 24 1.19 joerg * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 1.15 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 1.15 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 1.15 itojun * SUCH DAMAGE. 28 1.29 wiz * 29 1.19 joerg * -C option added in 1998, original code by Marc Espie, based on FreeBSD 30 1.19 joerg * behaviour 31 1.15 itojun */ 32 1.15 itojun 33 1.4 christos #include <sys/cdefs.h> 34 1.30 wiz __RCSID("$NetBSD: inp.c,v 1.30 2023/06/16 23:36:26 wiz Exp $"); 35 1.19 joerg 36 1.19 joerg #include <sys/types.h> 37 1.19 joerg #include <sys/file.h> 38 1.19 joerg #include <sys/stat.h> 39 1.19 joerg #include <sys/mman.h> 40 1.24 christos #include <sys/wait.h> 41 1.19 joerg 42 1.19 joerg #include <ctype.h> 43 1.24 christos #include <errno.h> 44 1.22 joerg #include <fcntl.h> 45 1.19 joerg #include <libgen.h> 46 1.19 joerg #include <limits.h> 47 1.19 joerg #include <stddef.h> 48 1.19 joerg #include <stdio.h> 49 1.19 joerg #include <stdlib.h> 50 1.19 joerg #include <string.h> 51 1.19 joerg #include <unistd.h> 52 1.1 cgd 53 1.1 cgd #include "common.h" 54 1.1 cgd #include "util.h" 55 1.1 cgd #include "pch.h" 56 1.1 cgd #include "inp.h" 57 1.1 cgd 58 1.4 christos 59 1.19 joerg /* Input-file-with-indexable-lines abstract type */ 60 1.19 joerg 61 1.19 joerg static off_t i_size; /* size of the input file */ 62 1.19 joerg static char *i_womp; /* plan a buffer for entire file */ 63 1.19 joerg static char **i_ptr; /* pointers to lines in i_womp */ 64 1.19 joerg static char empty_line[] = { '\0' }; 65 1.19 joerg 66 1.19 joerg static int tifd = -1; /* plan b virtual string array */ 67 1.19 joerg static char *tibuf[2]; /* plan b buffers */ 68 1.19 joerg static LINENUM tiline[2] = {-1, -1}; /* 1st line in each buffer */ 69 1.19 joerg static LINENUM lines_per_buf; /* how many lines per buffer */ 70 1.19 joerg static int tireclen; /* length of records in tmp file */ 71 1.19 joerg 72 1.19 joerg static bool rev_in_string(const char *); 73 1.19 joerg static bool reallocate_lines(size_t *); 74 1.19 joerg 75 1.19 joerg /* returns false if insufficient memory */ 76 1.19 joerg static bool plan_a(const char *); 77 1.10 kristerw 78 1.19 joerg static void plan_b(const char *); 79 1.1 cgd 80 1.19 joerg /* New patch--prepare to edit another file. */ 81 1.1 cgd 82 1.1 cgd void 83 1.7 kristerw re_input(void) 84 1.1 cgd { 85 1.19 joerg if (using_plan_a) { 86 1.19 joerg i_size = 0; 87 1.13 kristerw free(i_ptr); 88 1.19 joerg i_ptr = NULL; 89 1.19 joerg if (i_womp != NULL) { 90 1.19 joerg munmap(i_womp, i_size); 91 1.19 joerg i_womp = NULL; 92 1.19 joerg } 93 1.19 joerg } else { 94 1.19 joerg using_plan_a = true; /* maybe the next one is smaller */ 95 1.19 joerg close(tifd); 96 1.19 joerg tifd = -1; 97 1.19 joerg free(tibuf[0]); 98 1.19 joerg free(tibuf[1]); 99 1.19 joerg tibuf[0] = tibuf[1] = NULL; 100 1.19 joerg tiline[0] = tiline[1] = -1; 101 1.19 joerg tireclen = 0; 102 1.19 joerg } 103 1.1 cgd } 104 1.1 cgd 105 1.19 joerg /* Construct the line index, somehow or other. */ 106 1.19 joerg 107 1.1 cgd void 108 1.19 joerg scan_input(const char *filename) 109 1.19 joerg { 110 1.19 joerg if (!plan_a(filename)) 111 1.19 joerg plan_b(filename); 112 1.19 joerg if (verbose) { 113 1.19 joerg say("Patching file %s using Plan %s...\n", filename, 114 1.19 joerg (using_plan_a ? "A" : "B")); 115 1.19 joerg } 116 1.19 joerg } 117 1.19 joerg 118 1.19 joerg static bool 119 1.19 joerg reallocate_lines(size_t *lines_allocated) 120 1.1 cgd { 121 1.26 christos char **p; 122 1.19 joerg size_t new_size; 123 1.19 joerg 124 1.19 joerg new_size = *lines_allocated * 3 / 2; 125 1.26 christos p = pch_realloc(i_ptr, new_size + 2, sizeof(char *)); 126 1.26 christos if (p == NULL) { /* shucks, it was a near thing */ 127 1.19 joerg munmap(i_womp, i_size); 128 1.19 joerg i_womp = NULL; 129 1.19 joerg free(i_ptr); 130 1.19 joerg i_ptr = NULL; 131 1.19 joerg *lines_allocated = 0; 132 1.19 joerg return false; 133 1.19 joerg } 134 1.19 joerg *lines_allocated = new_size; 135 1.26 christos i_ptr = p; 136 1.19 joerg return true; 137 1.1 cgd } 138 1.1 cgd 139 1.19 joerg /* Try keeping everything in memory. */ 140 1.19 joerg 141 1.19 joerg static bool 142 1.19 joerg plan_a(const char *filename) 143 1.1 cgd { 144 1.24 christos int ifd, statfailed, devnull, pstat; 145 1.29 wiz char *p, *s, *lbuf; 146 1.19 joerg struct stat filestat; 147 1.19 joerg off_t i; 148 1.19 joerg ptrdiff_t sz; 149 1.27 cjep size_t iline, lines_allocated, lbufsz; 150 1.24 christos pid_t pid; 151 1.24 christos char *argp[4] = {NULL}; 152 1.19 joerg 153 1.19 joerg #ifdef DEBUGGING 154 1.19 joerg if (debug & 8) 155 1.19 joerg return false; 156 1.19 joerg #endif 157 1.19 joerg 158 1.19 joerg if (filename == NULL || *filename == '\0') 159 1.19 joerg return false; 160 1.9 kristerw 161 1.1 cgd statfailed = stat(filename, &filestat); 162 1.9 kristerw if (statfailed && ok_to_create_file) { 163 1.9 kristerw if (verbose) 164 1.19 joerg say("(Creating file %s...)\n", filename); 165 1.19 joerg 166 1.19 joerg /* 167 1.19 joerg * in check_patch case, we still display `Creating file' even 168 1.19 joerg * though we're not. The rule is that -C should be as similar 169 1.19 joerg * to normal patch behavior as possible 170 1.19 joerg */ 171 1.19 joerg if (check_only) 172 1.19 joerg return true; 173 1.19 joerg makedirs(filename, true); 174 1.19 joerg close(creat(filename, 0666)); 175 1.19 joerg statfailed = stat(filename, &filestat); 176 1.19 joerg } 177 1.19 joerg if (statfailed && check_only) 178 1.19 joerg fatal("%s not found, -C mode, can't probe further\n", filename); 179 1.24 christos /* For nonexistent or read-only files, look for RCS versions. */ 180 1.9 kristerw if (statfailed || 181 1.19 joerg /* No one can write to it. */ 182 1.9 kristerw (filestat.st_mode & 0222) == 0 || 183 1.19 joerg /* I can't write to it. */ 184 1.19 joerg ((filestat.st_mode & 0022) == 0 && filestat.st_uid != getuid())) { 185 1.24 christos char *filebase, *filedir; 186 1.19 joerg struct stat cstat; 187 1.19 joerg char *tmp_filename1, *tmp_filename2; 188 1.19 joerg 189 1.19 joerg tmp_filename1 = strdup(filename); 190 1.19 joerg tmp_filename2 = strdup(filename); 191 1.19 joerg if (tmp_filename1 == NULL || tmp_filename2 == NULL) 192 1.19 joerg fatal("strdupping filename"); 193 1.29 wiz 194 1.24 christos filebase = basename(tmp_filename1); 195 1.24 christos filedir = dirname(tmp_filename2); 196 1.27 cjep 197 1.28 cjep lbufsz = INITLINELEN; 198 1.28 cjep if ((lbuf = malloc(bufsz)) == NULL) 199 1.28 cjep pfatal("allocating line buffer"); 200 1.28 cjep lbuf[0] = '\0'; 201 1.29 wiz 202 1.19 joerg #define try(f, a1, a2, a3) \ 203 1.27 cjep (snprintf(lbuf, lbufsz, f, a1, a2, a3), stat(lbuf, &cstat) == 0) 204 1.19 joerg 205 1.9 kristerw /* 206 1.9 kristerw * else we can't write to it but it's not under a version 207 1.9 kristerw * control system, so just proceed. 208 1.9 kristerw */ 209 1.24 christos if (try("%s/RCS/%s%s", filedir, filebase, RCSSUFFIX) || 210 1.24 christos try("%s/RCS/%s%s", filedir, filebase, "") || 211 1.24 christos try("%s/%s%s", filedir, filebase, RCSSUFFIX)) { 212 1.9 kristerw if (!statfailed) { 213 1.9 kristerw if ((filestat.st_mode & 0222) != 0) 214 1.9 kristerw /* The owner can write to it. */ 215 1.19 joerg fatal("file %s seems to be locked " 216 1.24 christos "by somebody else under RCS\n", 217 1.24 christos filename); 218 1.9 kristerw /* 219 1.9 kristerw * It might be checked out unlocked. See if 220 1.9 kristerw * it's safe to check out the default version 221 1.9 kristerw * locked. 222 1.9 kristerw */ 223 1.9 kristerw if (verbose) 224 1.19 joerg say("Comparing file %s to default " 225 1.24 christos "RCS version...\n", filename); 226 1.24 christos 227 1.24 christos switch (pid = fork()) { 228 1.24 christos case -1: 229 1.24 christos fatal("can't fork: %s\n", 230 1.24 christos strerror(errno)); 231 1.24 christos case 0: 232 1.24 christos devnull = open("/dev/null", O_RDONLY); 233 1.24 christos if (devnull == -1) { 234 1.24 christos fatal("can't open /dev/null: %s", 235 1.24 christos strerror(errno)); 236 1.24 christos } 237 1.24 christos (void)dup2(devnull, STDOUT_FILENO); 238 1.24 christos argp[0] = __UNCONST(RCSDIFF); 239 1.24 christos argp[1] = __UNCONST(filename); 240 1.24 christos execv(RCSDIFF, argp); 241 1.24 christos exit(127); 242 1.24 christos } 243 1.24 christos pid = waitpid(pid, &pstat, 0); 244 1.24 christos if (pid == -1 || WEXITSTATUS(pstat) != 0) { 245 1.19 joerg fatal("can't check out file %s: " 246 1.24 christos "differs from default RCS version\n", 247 1.24 christos filename); 248 1.24 christos } 249 1.9 kristerw } 250 1.24 christos 251 1.9 kristerw if (verbose) 252 1.24 christos say("Checking out file %s from RCS...\n", 253 1.24 christos filename); 254 1.24 christos 255 1.24 christos switch (pid = fork()) { 256 1.24 christos case -1: 257 1.24 christos fatal("can't fork: %s\n", strerror(errno)); 258 1.24 christos case 0: 259 1.24 christos argp[0] = __UNCONST(CHECKOUT); 260 1.24 christos argp[1] = __UNCONST("-l"); 261 1.24 christos argp[2] = __UNCONST(filename); 262 1.24 christos execv(CHECKOUT, argp); 263 1.24 christos exit(127); 264 1.24 christos } 265 1.24 christos pid = waitpid(pid, &pstat, 0); 266 1.24 christos if (pid == -1 || WEXITSTATUS(pstat) != 0 || 267 1.24 christos stat(filename, &filestat)) { 268 1.24 christos fatal("can't check out file %s from RCS\n", 269 1.24 christos filename); 270 1.24 christos } 271 1.24 christos } else if (statfailed) { 272 1.24 christos fatal("can't find %s\n", filename); 273 1.9 kristerw } 274 1.30 wiz free(lbuf); 275 1.24 christos free(tmp_filename1); 276 1.24 christos free(tmp_filename2); 277 1.9 kristerw } 278 1.24 christos 279 1.9 kristerw filemode = filestat.st_mode; 280 1.9 kristerw if (!S_ISREG(filemode)) 281 1.9 kristerw fatal("%s is not a normal file--can't patch\n", filename); 282 1.9 kristerw i_size = filestat.st_size; 283 1.19 joerg if (out_of_mem) { 284 1.19 joerg set_hunkmax(); /* make sure dynamic arrays are allocated */ 285 1.19 joerg out_of_mem = false; 286 1.19 joerg return false; /* force plan b because plan a bombed */ 287 1.19 joerg } 288 1.21 lukem if ((uintmax_t)i_size > (uintmax_t)SIZE_MAX) { 289 1.19 joerg say("block too large to mmap\n"); 290 1.19 joerg return false; 291 1.19 joerg } 292 1.19 joerg if ((ifd = open(filename, O_RDONLY)) < 0) 293 1.19 joerg pfatal("can't open file %s", filename); 294 1.19 joerg 295 1.23 joerg if (i_size) { 296 1.23 joerg i_womp = mmap(NULL, i_size, PROT_READ, MAP_PRIVATE, ifd, 0); 297 1.23 joerg if (i_womp == MAP_FAILED) { 298 1.23 joerg perror("mmap failed"); 299 1.23 joerg i_womp = NULL; 300 1.23 joerg close(ifd); 301 1.23 joerg return false; 302 1.23 joerg } 303 1.23 joerg } else { 304 1.19 joerg i_womp = NULL; 305 1.19 joerg } 306 1.19 joerg 307 1.19 joerg close(ifd); 308 1.19 joerg if (i_size) 309 1.19 joerg madvise(i_womp, i_size, MADV_SEQUENTIAL); 310 1.19 joerg 311 1.19 joerg /* estimate the number of lines */ 312 1.19 joerg lines_allocated = i_size / 25; 313 1.19 joerg if (lines_allocated < 100) 314 1.19 joerg lines_allocated = 100; 315 1.9 kristerw 316 1.19 joerg if (!reallocate_lines(&lines_allocated)) 317 1.19 joerg return false; 318 1.19 joerg 319 1.19 joerg /* now scan the buffer and build pointer array */ 320 1.9 kristerw iline = 1; 321 1.9 kristerw i_ptr[iline] = i_womp; 322 1.19 joerg /* test for NUL too, to maintain the behavior of the original code */ 323 1.19 joerg for (s = i_womp, i = 0; i < i_size && *s != '\0'; s++, i++) { 324 1.9 kristerw if (*s == '\n') { 325 1.19 joerg if (iline == lines_allocated) { 326 1.19 joerg if (!reallocate_lines(&lines_allocated)) 327 1.19 joerg return false; 328 1.19 joerg } 329 1.19 joerg /* these are NOT NUL terminated */ 330 1.9 kristerw i_ptr[++iline] = s + 1; 331 1.9 kristerw } 332 1.9 kristerw } 333 1.19 joerg /* if the last line contains no EOL, append one */ 334 1.19 joerg if (i_size > 0 && i_womp[i_size - 1] != '\n') { 335 1.19 joerg last_line_missing_eol = true; 336 1.19 joerg /* fix last line */ 337 1.19 joerg sz = s - i_ptr[iline]; 338 1.19 joerg p = malloc(sz + 1); 339 1.19 joerg if (p == NULL) { 340 1.19 joerg free(i_ptr); 341 1.19 joerg i_ptr = NULL; 342 1.19 joerg munmap(i_womp, i_size); 343 1.19 joerg i_womp = NULL; 344 1.19 joerg return false; 345 1.19 joerg } 346 1.19 joerg 347 1.19 joerg memcpy(p, i_ptr[iline], sz); 348 1.19 joerg p[sz] = '\n'; 349 1.19 joerg i_ptr[iline] = p; 350 1.19 joerg /* count the extra line and make it point to some valid mem */ 351 1.19 joerg i_ptr[++iline] = empty_line; 352 1.19 joerg } else 353 1.19 joerg last_line_missing_eol = false; 354 1.19 joerg 355 1.9 kristerw input_lines = iline - 1; 356 1.1 cgd 357 1.19 joerg /* now check for revision, if any */ 358 1.19 joerg 359 1.19 joerg if (revision != NULL) { 360 1.9 kristerw if (!rev_in_string(i_womp)) { 361 1.9 kristerw if (force) { 362 1.9 kristerw if (verbose) 363 1.19 joerg say("Warning: this file doesn't appear " 364 1.19 joerg "to be the %s version--patching anyway.\n", 365 1.19 joerg revision); 366 1.19 joerg } else if (batch) { 367 1.19 joerg fatal("this file doesn't appear to be the " 368 1.19 joerg "%s version--aborting.\n", 369 1.19 joerg revision); 370 1.19 joerg } else { 371 1.19 joerg ask("This file doesn't appear to be the " 372 1.19 joerg "%s version--patch anyway? [n] ", 373 1.19 joerg revision); 374 1.19 joerg if (*buf != 'y') 375 1.19 joerg fatal("aborted\n"); 376 1.19 joerg } 377 1.19 joerg } else if (verbose) 378 1.19 joerg say("Good. This file appears to be the %s version.\n", 379 1.19 joerg revision); 380 1.19 joerg } 381 1.19 joerg return true; /* plan a will work */ 382 1.19 joerg } 383 1.19 joerg 384 1.19 joerg /* Keep (virtually) nothing in memory. */ 385 1.19 joerg 386 1.19 joerg static void 387 1.19 joerg plan_b(const char *filename) 388 1.19 joerg { 389 1.19 joerg FILE *ifp; 390 1.19 joerg size_t i = 0, j, maxlen = 1; 391 1.19 joerg char *p; 392 1.19 joerg bool found_revision = (revision == NULL); 393 1.19 joerg 394 1.19 joerg using_plan_a = false; 395 1.19 joerg if ((ifp = fopen(filename, "r")) == NULL) 396 1.19 joerg pfatal("can't open file %s", filename); 397 1.19 joerg unlink(TMPINNAME); 398 1.19 joerg if ((tifd = open(TMPINNAME, O_EXCL | O_CREAT | O_WRONLY, 0666)) < 0) 399 1.19 joerg pfatal("can't open file %s", TMPINNAME); 400 1.27 cjep while (getline(&buf, &bufsz, ifp) != -1) { 401 1.19 joerg if (revision != NULL && !found_revision && rev_in_string(buf)) 402 1.19 joerg found_revision = true; 403 1.19 joerg if ((i = strlen(buf)) > maxlen) 404 1.19 joerg maxlen = i; /* find longest line */ 405 1.19 joerg } 406 1.19 joerg last_line_missing_eol = i > 0 && buf[i - 1] != '\n'; 407 1.19 joerg if (last_line_missing_eol && maxlen == i) 408 1.19 joerg maxlen++; 409 1.19 joerg 410 1.19 joerg if (revision != NULL) { 411 1.19 joerg if (!found_revision) { 412 1.19 joerg if (force) { 413 1.19 joerg if (verbose) 414 1.19 joerg say("Warning: this file doesn't appear " 415 1.19 joerg "to be the %s version--patching anyway.\n", 416 1.19 joerg revision); 417 1.9 kristerw } else if (batch) { 418 1.19 joerg fatal("this file doesn't appear to be the " 419 1.19 joerg "%s version--aborting.\n", 420 1.19 joerg revision); 421 1.9 kristerw } else { 422 1.19 joerg ask("This file doesn't appear to be the %s " 423 1.19 joerg "version--patch anyway? [n] ", 424 1.19 joerg revision); 425 1.9 kristerw if (*buf != 'y') 426 1.9 kristerw fatal("aborted\n"); 427 1.9 kristerw } 428 1.9 kristerw } else if (verbose) 429 1.9 kristerw say("Good. This file appears to be the %s version.\n", 430 1.9 kristerw revision); 431 1.9 kristerw } 432 1.19 joerg fseek(ifp, 0L, SEEK_SET); /* rewind file */ 433 1.19 joerg lines_per_buf = BUFFERSIZE / maxlen; 434 1.19 joerg tireclen = maxlen; 435 1.19 joerg tibuf[0] = malloc(BUFFERSIZE + 1); 436 1.19 joerg if (tibuf[0] == NULL) 437 1.19 joerg fatal("out of memory\n"); 438 1.19 joerg tibuf[1] = malloc(BUFFERSIZE + 1); 439 1.19 joerg if (tibuf[1] == NULL) 440 1.19 joerg fatal("out of memory\n"); 441 1.19 joerg for (i = 1;; i++) { 442 1.19 joerg p = tibuf[0] + maxlen * (i % lines_per_buf); 443 1.19 joerg if (i % lines_per_buf == 0) /* new block */ 444 1.19 joerg if (write(tifd, tibuf[0], BUFFERSIZE) < BUFFERSIZE) 445 1.19 joerg pfatal("can't write temp file"); 446 1.19 joerg if (fgets(p, maxlen + 1, ifp) == NULL) { 447 1.19 joerg input_lines = i - 1; 448 1.19 joerg if (i % lines_per_buf != 0) 449 1.19 joerg if (write(tifd, tibuf[0], BUFFERSIZE) < BUFFERSIZE) 450 1.19 joerg pfatal("can't write temp file"); 451 1.19 joerg break; 452 1.19 joerg } 453 1.19 joerg j = strlen(p); 454 1.19 joerg /* These are '\n' terminated strings, so no need to add a NUL */ 455 1.19 joerg if (j == 0 || p[j - 1] != '\n') 456 1.19 joerg p[j] = '\n'; 457 1.19 joerg } 458 1.19 joerg fclose(ifp); 459 1.19 joerg close(tifd); 460 1.19 joerg if ((tifd = open(TMPINNAME, O_RDONLY)) < 0) 461 1.19 joerg pfatal("can't reopen file %s", TMPINNAME); 462 1.1 cgd } 463 1.1 cgd 464 1.9 kristerw /* 465 1.9 kristerw * Fetch a line from the input file, \n terminated, not necessarily \0. 466 1.9 kristerw */ 467 1.19 joerg char * 468 1.19 joerg ifetch(LINENUM line, int whichbuf) 469 1.1 cgd { 470 1.19 joerg if (line < 1 || line > input_lines) { 471 1.19 joerg if (warn_on_invalid_line) { 472 1.19 joerg say("No such line %ld in input file, ignoring\n", line); 473 1.19 joerg warn_on_invalid_line = false; 474 1.19 joerg } 475 1.19 joerg return NULL; 476 1.19 joerg } 477 1.19 joerg if (using_plan_a) 478 1.19 joerg return i_ptr[line]; 479 1.19 joerg else { 480 1.19 joerg LINENUM offline = line % lines_per_buf; 481 1.19 joerg LINENUM baseline = line - offline; 482 1.19 joerg 483 1.19 joerg if (tiline[0] == baseline) 484 1.19 joerg whichbuf = 0; 485 1.19 joerg else if (tiline[1] == baseline) 486 1.19 joerg whichbuf = 1; 487 1.19 joerg else { 488 1.19 joerg tiline[whichbuf] = baseline; 489 1.19 joerg 490 1.19 joerg if (lseek(tifd, (off_t) (baseline / lines_per_buf * 491 1.19 joerg BUFFERSIZE), SEEK_SET) < 0) 492 1.19 joerg pfatal("cannot seek in the temporary input file"); 493 1.13 kristerw 494 1.19 joerg if (read(tifd, tibuf[whichbuf], BUFFERSIZE) < 0) 495 1.19 joerg pfatal("error reading tmp file %s", TMPINNAME); 496 1.19 joerg } 497 1.19 joerg return tibuf[whichbuf] + (tireclen * offline); 498 1.19 joerg } 499 1.1 cgd } 500 1.1 cgd 501 1.9 kristerw /* 502 1.9 kristerw * True if the string argument contains the revision number we want. 503 1.9 kristerw */ 504 1.10 kristerw static bool 505 1.19 joerg rev_in_string(const char *string) 506 1.1 cgd { 507 1.19 joerg const char *s; 508 1.19 joerg size_t patlen; 509 1.1 cgd 510 1.9 kristerw if (revision == NULL) 511 1.19 joerg return true; 512 1.9 kristerw patlen = strlen(revision); 513 1.19 joerg if (strnEQ(string, revision, patlen) && isspace((unsigned char)string[patlen])) 514 1.19 joerg return true; 515 1.9 kristerw for (s = string; *s; s++) { 516 1.19 joerg if (isspace((unsigned char)*s) && strnEQ(s + 1, revision, patlen) && 517 1.19 joerg isspace((unsigned char)s[patlen + 1])) { 518 1.19 joerg return true; 519 1.9 kristerw } 520 1.1 cgd } 521 1.19 joerg return false; 522 1.1 cgd } 523