1 /*- 2 * Copyright (c) 1992, 1993, 1994 3 * The Regents of the University of California. All rights reserved. 4 * Copyright (c) 1992, 1993, 1994, 1995, 1996 5 * Keith Bostic. All rights reserved. 6 * 7 * See the LICENSE file for redistribution information. 8 * 9 */ 10 11 #include "config.h" 12 13 #ifndef lint 14 #if 0 15 static const char sccsid[] = "@(#)exf.c 10.49 (Berkeley) 10/10/96"; 16 #endif 17 static const char rcsid[] = 18 "$FreeBSD$"; 19 #endif /* not lint */ 20 21 #include <sys/param.h> 22 #include <sys/types.h> /* XXX: param.h may not have included types.h */ 23 #include <sys/queue.h> 24 #include <sys/stat.h> 25 26 /* 27 * We include <sys/file.h>, because the flock(2) and open(2) #defines 28 * were found there on historical systems. We also include <fcntl.h> 29 * because the open(2) #defines are found there on newer systems. 30 */ 31 #include <sys/file.h> 32 33 #include <bitstring.h> 34 #include <dirent.h> 35 #include <errno.h> 36 #include <fcntl.h> 37 #include <limits.h> 38 #include <stdio.h> 39 #include <stdlib.h> 40 #include <string.h> 41 #include <unistd.h> 42 43 #include "common.h" 44 45 static int file_backup __P((SCR *, char *, char *)); 46 static void file_cinit __P((SCR *)); 47 static void file_comment __P((SCR *)); 48 static int file_spath __P((SCR *, FREF *, struct stat *, int *)); 49 50 /* 51 * file_add -- 52 * Insert a file name into the FREF list, if it doesn't already 53 * appear in it. 54 * 55 * !!! 56 * The "if it doesn't already appear" changes vi's semantics slightly. If 57 * you do a "vi foo bar", and then execute "next bar baz", the edit of bar 58 * will reflect the line/column of the previous edit session. Historic nvi 59 * did not do this. The change is a logical extension of the change where 60 * vi now remembers the last location in any file that it has ever edited, 61 * not just the previously edited file. 62 * 63 * PUBLIC: FREF *file_add __P((SCR *, CHAR_T *)); 64 */ 65 FREF * 66 file_add(sp, name) 67 SCR *sp; 68 CHAR_T *name; 69 { 70 GS *gp; 71 FREF *frp, *tfrp; 72 73 /* 74 * Return it if it already exists. Note that we test against the 75 * user's name, whatever that happens to be, including if it's a 76 * temporary file. 77 * 78 * If the user added a file but was unable to initialize it, there 79 * can be file list entries where the name field is NULL. Discard 80 * them the next time we see them. 81 */ 82 gp = sp->gp; 83 if (name != NULL) 84 for (frp = gp->frefq.cqh_first; 85 frp != (FREF *)&gp->frefq; frp = frp->q.cqe_next) { 86 if (frp->name == NULL) { 87 tfrp = frp->q.cqe_next; 88 CIRCLEQ_REMOVE(&gp->frefq, frp, q); 89 if (frp->name != NULL) 90 free(frp->name); 91 free(frp); 92 frp = tfrp; 93 continue; 94 } 95 if (!strcmp(frp->name, name)) 96 return (frp); 97 } 98 99 /* Allocate and initialize the FREF structure. */ 100 CALLOC(sp, frp, FREF *, 1, sizeof(FREF)); 101 if (frp == NULL) 102 return (NULL); 103 104 /* 105 * If no file name specified, or if the file name is a request 106 * for something temporary, file_init() will allocate the file 107 * name. Temporary files are always ignored. 108 */ 109 if (name != NULL && strcmp(name, TEMPORARY_FILE_STRING) && 110 (frp->name = strdup(name)) == NULL) { 111 free(frp); 112 msgq(sp, M_SYSERR, NULL); 113 return (NULL); 114 } 115 116 /* Append into the chain of file names. */ 117 CIRCLEQ_INSERT_TAIL(&gp->frefq, frp, q); 118 119 return (frp); 120 } 121 122 /* 123 * file_init -- 124 * Start editing a file, based on the FREF structure. If successsful, 125 * let go of any previous file. Don't release the previous file until 126 * absolutely sure we have the new one. 127 * 128 * PUBLIC: int file_init __P((SCR *, FREF *, char *, int)); 129 */ 130 int 131 file_init(sp, frp, rcv_name, flags) 132 SCR *sp; 133 FREF *frp; 134 char *rcv_name; 135 int flags; 136 { 137 EXF *ep; 138 RECNOINFO oinfo; 139 struct stat sb; 140 size_t psize; 141 int fd, exists, open_err, readonly; 142 char *oname, tname[MAXPATHLEN]; 143 144 open_err = readonly = 0; 145 146 /* 147 * If the file is a recovery file, let the recovery code handle it. 148 * Clear the FR_RECOVER flag first -- the recovery code does set up, 149 * and then calls us! If the recovery call fails, it's probably 150 * because the named file doesn't exist. So, move boldly forward, 151 * presuming that there's an error message the user will get to see. 152 */ 153 if (F_ISSET(frp, FR_RECOVER)) { 154 F_CLR(frp, FR_RECOVER); 155 return (rcv_read(sp, frp)); 156 } 157 158 /* 159 * Required FRP initialization; the only flag we keep is the 160 * cursor information. 161 */ 162 F_CLR(frp, ~FR_CURSORSET); 163 164 /* 165 * Required EXF initialization: 166 * Flush the line caches. 167 * Default recover mail file fd to -1. 168 * Set initial EXF flag bits. 169 */ 170 CALLOC_RET(sp, ep, EXF *, 1, sizeof(EXF)); 171 ep->c_lno = ep->c_nlines = OOBLNO; 172 ep->rcv_fd = ep->fcntl_fd = -1; 173 F_SET(ep, F_FIRSTMODIFY); 174 175 /* 176 * Scan the user's path to find the file that we're going to 177 * try and open. 178 */ 179 if (file_spath(sp, frp, &sb, &exists)) 180 return (1); 181 182 /* 183 * If no name or backing file, for whatever reason, create a backing 184 * temporary file, saving the temp file name so we can later unlink 185 * it. If the user never named this file, copy the temporary file name 186 * to the real name (we display that until the user renames it). 187 */ 188 oname = frp->name; 189 if (LF_ISSET(FS_OPENERR) || oname == NULL || !exists) { 190 if (opts_empty(sp, O_DIRECTORY, 0)) 191 goto err; 192 (void)snprintf(tname, sizeof(tname), 193 "%s/vi.XXXXXXXXXX", O_STR(sp, O_DIRECTORY)); 194 if ((fd = mkstemp(tname)) == -1) { 195 msgq(sp, M_SYSERR, 196 "237|Unable to create temporary file"); 197 goto err; 198 } 199 (void)close(fd); 200 201 if (frp->name == NULL) 202 F_SET(frp, FR_TMPFILE); 203 if ((frp->tname = strdup(tname)) == NULL || 204 frp->name == NULL && (frp->name = strdup(tname)) == NULL) { 205 if (frp->tname != NULL) 206 free(frp->tname); 207 msgq(sp, M_SYSERR, NULL); 208 (void)unlink(tname); 209 goto err; 210 } 211 oname = frp->tname; 212 psize = 1024; 213 if (!LF_ISSET(FS_OPENERR)) 214 F_SET(frp, FR_NEWFILE); 215 216 time(&ep->mtime); 217 } else { 218 /* 219 * XXX 220 * A seat of the pants calculation: try to keep the file in 221 * 15 pages or less. Don't use a page size larger than 10K 222 * (vi should have good locality) or smaller than 1K. 223 */ 224 psize = ((sb.st_size / 15) + 1023) / 1024; 225 if (psize > 10) 226 psize = 10; 227 if (psize == 0) 228 psize = 1; 229 psize *= 1024; 230 231 F_SET(ep, F_DEVSET); 232 ep->mdev = sb.st_dev; 233 ep->minode = sb.st_ino; 234 235 ep->mtime = sb.st_mtime; 236 237 if (!S_ISREG(sb.st_mode)) 238 msgq_str(sp, M_ERR, oname, 239 "238|Warning: %s is not a regular file"); 240 } 241 242 /* Set up recovery. */ 243 memset(&oinfo, 0, sizeof(RECNOINFO)); 244 oinfo.bval = '\n'; /* Always set. */ 245 oinfo.psize = psize; 246 oinfo.flags = F_ISSET(sp->gp, G_SNAPSHOT) ? R_SNAPSHOT : 0; 247 if (rcv_name == NULL) { 248 if (!rcv_tmp(sp, ep, frp->name)) 249 oinfo.bfname = ep->rcv_path; 250 } else { 251 if ((ep->rcv_path = strdup(rcv_name)) == NULL) { 252 msgq(sp, M_SYSERR, NULL); 253 goto err; 254 } 255 oinfo.bfname = ep->rcv_path; 256 F_SET(ep, F_MODIFIED); 257 } 258 259 /* Open a db structure. */ 260 if ((ep->db = dbopen(rcv_name == NULL ? oname : NULL, 261 O_NONBLOCK | O_RDONLY, 262 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH, 263 DB_RECNO, &oinfo)) == NULL) { 264 msgq_str(sp, 265 M_SYSERR, rcv_name == NULL ? oname : rcv_name, "%s"); 266 /* 267 * !!! 268 * Historically, vi permitted users to edit files that couldn't 269 * be read. This isn't useful for single files from a command 270 * line, but it's quite useful for "vi *.c", since you can skip 271 * past files that you can't read. 272 */ 273 open_err = 1; 274 goto oerr; 275 } 276 277 /* 278 * Do the remaining things that can cause failure of the new file, 279 * mark and logging initialization. 280 */ 281 if (mark_init(sp, ep) || log_init(sp, ep)) 282 goto err; 283 284 /* 285 * Set the alternate file name to be the file we're discarding. 286 * 287 * !!! 288 * Temporary files can't become alternate files, so there's no file 289 * name. This matches historical practice, although it could only 290 * happen in historical vi as the result of the initial command, i.e. 291 * if vi was executed without a file name. 292 */ 293 if (LF_ISSET(FS_SETALT)) 294 set_alt_name(sp, sp->frp == NULL || 295 F_ISSET(sp->frp, FR_TMPFILE) ? NULL : sp->frp->name); 296 297 /* 298 * Close the previous file; if that fails, close the new one and run 299 * for the border. 300 * 301 * !!! 302 * There's a nasty special case. If the user edits a temporary file, 303 * and then does an ":e! %", we need to re-initialize the backing 304 * file, but we can't change the name. (It's worse -- we're dealing 305 * with *names* here, we can't even detect that it happened.) Set a 306 * flag so that the file_end routine ignores the backing information 307 * of the old file if it happens to be the same as the new one. 308 * 309 * !!! 310 * Side-effect: after the call to file_end(), sp->frp may be NULL. 311 */ 312 if (sp->ep != NULL) { 313 F_SET(frp, FR_DONTDELETE); 314 if (file_end(sp, NULL, LF_ISSET(FS_FORCE))) { 315 (void)file_end(sp, ep, 1); 316 goto err; 317 } 318 F_CLR(frp, FR_DONTDELETE); 319 } 320 321 /* 322 * Lock the file; if it's a recovery file, it should already be 323 * locked. Note, we acquire the lock after the previous file 324 * has been ended, so that we don't get an "already locked" error 325 * for ":edit!". 326 * 327 * XXX 328 * While the user can't interrupt us between the open and here, 329 * there's a race between the dbopen() and the lock. Not much 330 * we can do about it. 331 * 332 * XXX 333 * We don't make a big deal of not being able to lock the file. As 334 * locking rarely works over NFS, and often fails if the file was 335 * mmap(2)'d, it's far too common to do anything like print an error 336 * message, let alone make the file readonly. At some future time, 337 * when locking is a little more reliable, this should change to be 338 * an error. 339 */ 340 if (rcv_name == NULL) 341 switch (file_lock(sp, oname, 342 &ep->fcntl_fd, ep->db->fd(ep->db), 0)) { 343 case LOCK_FAILED: 344 F_SET(frp, FR_UNLOCKED); 345 break; 346 case LOCK_UNAVAIL: 347 readonly = 1; 348 msgq_str(sp, M_INFO, oname, 349 "239|%s already locked, session is read-only"); 350 break; 351 case LOCK_SUCCESS: 352 break; 353 } 354 355 /* 356 * Historically, the readonly edit option was set per edit buffer in 357 * vi, unless the -R command-line option was specified or the program 358 * was executed as "view". (Well, to be truthful, if the letter 'w' 359 * occurred anywhere in the program name, but let's not get into that.) 360 * So, the persistant readonly state has to be stored in the screen 361 * structure, and the edit option value toggles with the contents of 362 * the edit buffer. If the persistant readonly flag is set, set the 363 * readonly edit option. 364 * 365 * Otherwise, try and figure out if a file is readonly. This is a 366 * dangerous thing to do. The kernel is the only arbiter of whether 367 * or not a file is writeable, and the best that a user program can 368 * do is guess. Obvious loopholes are files that are on a file system 369 * mounted readonly (access catches this one on a few systems), or 370 * alternate protection mechanisms, ACL's for example, that we can't 371 * portably check. Lots of fun, and only here because users whined. 372 * 373 * !!! 374 * Historic vi displayed the readonly message if none of the file 375 * write bits were set, or if an an access(2) call on the path 376 * failed. This seems reasonable. If the file is mode 444, root 377 * users may want to know that the owner of the file did not expect 378 * it to be written. 379 * 380 * Historic vi set the readonly bit if no write bits were set for 381 * a file, even if the access call would have succeeded. This makes 382 * the superuser force the write even when vi expects that it will 383 * succeed. I'm less supportive of this semantic, but it's historic 384 * practice and the conservative approach to vi'ing files as root. 385 * 386 * It would be nice if there was some way to update this when the user 387 * does a "^Z; chmod ...". The problem is that we'd first have to 388 * distinguish between readonly bits set because of file permissions 389 * and those set for other reasons. That's not too hard, but deciding 390 * when to reevaluate the permissions is trickier. An alternative 391 * might be to turn off the readonly bit if the user forces a write 392 * and it succeeds. 393 * 394 * XXX 395 * Access(2) doesn't consider the effective uid/gid values. This 396 * probably isn't a problem for vi when it's running standalone. 397 */ 398 if (readonly || F_ISSET(sp, SC_READONLY) || 399 !F_ISSET(frp, FR_NEWFILE) && 400 (!(sb.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH)) || 401 access(frp->name, W_OK))) 402 O_SET(sp, O_READONLY); 403 else 404 O_CLR(sp, O_READONLY); 405 406 /* Switch... */ 407 ++ep->refcnt; 408 sp->ep = ep; 409 sp->frp = frp; 410 411 /* Set the initial cursor position, queue initial command. */ 412 file_cinit(sp); 413 414 /* Redraw the screen from scratch, schedule a welcome message. */ 415 F_SET(sp, SC_SCR_REFORMAT | SC_STATUS); 416 417 return (0); 418 419 err: if (frp->name != NULL) { 420 free(frp->name); 421 frp->name = NULL; 422 } 423 if (frp->tname != NULL) { 424 (void)unlink(frp->tname); 425 free(frp->tname); 426 frp->tname = NULL; 427 } 428 429 oerr: if (F_ISSET(ep, F_RCV_ON)) 430 (void)unlink(ep->rcv_path); 431 if (ep->rcv_path != NULL) { 432 free(ep->rcv_path); 433 ep->rcv_path = NULL; 434 } 435 if (ep->db != NULL) 436 (void)ep->db->close(ep->db); 437 free(ep); 438 439 return (open_err ? 440 file_init(sp, frp, rcv_name, flags | FS_OPENERR) : 1); 441 } 442 443 /* 444 * file_spath -- 445 * Scan the user's path to find the file that we're going to 446 * try and open. 447 */ 448 static int 449 file_spath(sp, frp, sbp, existsp) 450 SCR *sp; 451 FREF *frp; 452 struct stat *sbp; 453 int *existsp; 454 { 455 CHAR_T savech; 456 size_t len; 457 int found; 458 char *name, *p, *t, path[MAXPATHLEN]; 459 460 /* 461 * If the name is NULL or an explicit reference (i.e., the first 462 * component is . or ..) ignore the O_PATH option. 463 */ 464 name = frp->name; 465 if (name == NULL) { 466 *existsp = 0; 467 return (0); 468 } 469 if (name[0] == '/' || name[0] == '.' && 470 (name[1] == '/' || name[1] == '.' && name[2] == '/')) { 471 *existsp = !stat(name, sbp); 472 return (0); 473 } 474 475 /* Try . */ 476 if (!stat(name, sbp)) { 477 *existsp = 1; 478 return (0); 479 } 480 481 /* Try the O_PATH option values. */ 482 for (found = 0, p = t = O_STR(sp, O_PATH);; ++p) 483 if (*p == ':' || *p == '\0') { 484 if (t < p - 1) { 485 savech = *p; 486 *p = '\0'; 487 len = snprintf(path, 488 sizeof(path), "%s/%s", t, name); 489 *p = savech; 490 if (!stat(path, sbp)) { 491 found = 1; 492 break; 493 } 494 } 495 t = p + 1; 496 if (*p == '\0') 497 break; 498 } 499 500 /* If we found it, build a new pathname and discard the old one. */ 501 if (found) { 502 MALLOC_RET(sp, p, char *, len + 1); 503 memcpy(p, path, len + 1); 504 free(frp->name); 505 frp->name = p; 506 } 507 *existsp = found; 508 return (0); 509 } 510 511 /* 512 * file_cinit -- 513 * Set up the initial cursor position. 514 */ 515 static void 516 file_cinit(sp) 517 SCR *sp; 518 { 519 GS *gp; 520 MARK m; 521 size_t len; 522 int nb; 523 524 /* Set some basic defaults. */ 525 sp->lno = 1; 526 sp->cno = 0; 527 528 /* 529 * Historically, initial commands (the -c option) weren't executed 530 * until a file was loaded, e.g. "vi +10 nofile", followed by an 531 * :edit or :tag command, would execute the +10 on the file loaded 532 * by the subsequent command, (assuming that it existed). This 533 * applied as well to files loaded using the tag commands, and we 534 * follow that historic practice. Also, all initial commands were 535 * ex commands and were always executed on the last line of the file. 536 * 537 * Otherwise, if no initial command for this file: 538 * If in ex mode, move to the last line, first nonblank character. 539 * If the file has previously been edited, move to the last known 540 * position, and check it for validity. 541 * Otherwise, move to the first line, first nonblank. 542 * 543 * This gets called by the file init code, because we may be in a 544 * file of ex commands and we want to execute them from the right 545 * location in the file. 546 */ 547 nb = 0; 548 gp = sp->gp; 549 if (gp->c_option != NULL && !F_ISSET(sp->frp, FR_NEWFILE)) { 550 if (db_last(sp, &sp->lno)) 551 return; 552 if (sp->lno == 0) { 553 sp->lno = 1; 554 sp->cno = 0; 555 } 556 if (ex_run_str(sp, 557 "-c option", gp->c_option, strlen(gp->c_option), 1, 1)) 558 return; 559 gp->c_option = NULL; 560 } else if (F_ISSET(sp, SC_EX)) { 561 if (db_last(sp, &sp->lno)) 562 return; 563 if (sp->lno == 0) { 564 sp->lno = 1; 565 sp->cno = 0; 566 return; 567 } 568 nb = 1; 569 } else { 570 if (F_ISSET(sp->frp, FR_CURSORSET)) { 571 sp->lno = sp->frp->lno; 572 sp->cno = sp->frp->cno; 573 574 /* If returning to a file in vi, center the line. */ 575 F_SET(sp, SC_SCR_CENTER); 576 } else { 577 if (O_ISSET(sp, O_COMMENT)) 578 file_comment(sp); 579 else 580 sp->lno = 1; 581 nb = 1; 582 } 583 if (db_get(sp, sp->lno, 0, NULL, &len)) { 584 sp->lno = 1; 585 sp->cno = 0; 586 return; 587 } 588 if (!nb && sp->cno > len) 589 nb = 1; 590 } 591 if (nb) { 592 sp->cno = 0; 593 (void)nonblank(sp, sp->lno, &sp->cno); 594 } 595 596 /* 597 * !!! 598 * The initial column is also the most attractive column. 599 */ 600 sp->rcm = sp->cno; 601 602 /* 603 * !!! 604 * Historically, vi initialized the absolute mark, but ex did not. 605 * Which meant, that if the first command in ex mode was "visual", 606 * or if an ex command was executed first (e.g. vi +10 file) vi was 607 * entered without the mark being initialized. For consistency, if 608 * the file isn't empty, we initialize it for everyone, believing 609 * that it can't hurt, and is generally useful. Not initializing it 610 * if the file is empty is historic practice, although it has always 611 * been possible to set (and use) marks in empty vi files. 612 */ 613 m.lno = sp->lno; 614 m.cno = sp->cno; 615 (void)mark_set(sp, ABSMARK1, &m, 0); 616 } 617 618 /* 619 * file_end -- 620 * Stop editing a file. 621 * 622 * PUBLIC: int file_end __P((SCR *, EXF *, int)); 623 */ 624 int 625 file_end(sp, ep, force) 626 SCR *sp; 627 EXF *ep; 628 int force; 629 { 630 FREF *frp; 631 632 /* 633 * !!! 634 * ep MAY NOT BE THE SAME AS sp->ep, DON'T USE THE LATTER. 635 * (If argument ep is NULL, use sp->ep.) 636 * 637 * If multiply referenced, just decrement the count and return. 638 */ 639 if (ep == NULL) 640 ep = sp->ep; 641 if (--ep->refcnt != 0) 642 return (0); 643 644 /* 645 * 646 * Clean up the FREF structure. 647 * 648 * Save the cursor location. 649 * 650 * XXX 651 * It would be cleaner to do this somewhere else, but by the time 652 * ex or vi knows that we're changing files it's already happened. 653 */ 654 frp = sp->frp; 655 frp->lno = sp->lno; 656 frp->cno = sp->cno; 657 F_SET(frp, FR_CURSORSET); 658 659 /* 660 * We may no longer need the temporary backing file, so clean it 661 * up. We don't need the FREF structure either, if the file was 662 * never named, so lose it. 663 * 664 * !!! 665 * Re: FR_DONTDELETE, see the comment above in file_init(). 666 */ 667 if (!F_ISSET(frp, FR_DONTDELETE) && frp->tname != NULL) { 668 if (unlink(frp->tname)) 669 msgq_str(sp, M_SYSERR, frp->tname, "240|%s: remove"); 670 free(frp->tname); 671 frp->tname = NULL; 672 if (F_ISSET(frp, FR_TMPFILE)) { 673 CIRCLEQ_REMOVE(&sp->gp->frefq, frp, q); 674 if (frp->name != NULL) 675 free(frp->name); 676 free(frp); 677 } 678 sp->frp = NULL; 679 } 680 681 /* 682 * Clean up the EXF structure. 683 * 684 * Close the db structure. 685 */ 686 if (ep->db->close != NULL && ep->db->close(ep->db) && !force) { 687 msgq_str(sp, M_SYSERR, frp->name, "241|%s: close"); 688 ++ep->refcnt; 689 return (1); 690 } 691 692 /* COMMITTED TO THE CLOSE. THERE'S NO GOING BACK... */ 693 694 /* Stop logging. */ 695 (void)log_end(sp, ep); 696 697 /* Free up any marks. */ 698 (void)mark_end(sp, ep); 699 700 /* 701 * Delete recovery files, close the open descriptor, free recovery 702 * memory. See recover.c for a description of the protocol. 703 * 704 * XXX 705 * Unlink backup file first, we can detect that the recovery file 706 * doesn't reference anything when the user tries to recover it. 707 * There's a race, here, obviously, but it's fairly small. 708 */ 709 if (!F_ISSET(ep, F_RCV_NORM)) { 710 if (ep->rcv_path != NULL && unlink(ep->rcv_path)) 711 msgq_str(sp, M_SYSERR, ep->rcv_path, "242|%s: remove"); 712 if (ep->rcv_mpath != NULL && unlink(ep->rcv_mpath)) 713 msgq_str(sp, M_SYSERR, ep->rcv_mpath, "243|%s: remove"); 714 } 715 if (ep->fcntl_fd != -1) 716 (void)close(ep->fcntl_fd); 717 if (ep->rcv_fd != -1) 718 (void)close(ep->rcv_fd); 719 if (ep->rcv_path != NULL) 720 free(ep->rcv_path); 721 if (ep->rcv_mpath != NULL) 722 free(ep->rcv_mpath); 723 724 free(ep); 725 return (0); 726 } 727 728 /* 729 * file_write -- 730 * Write the file to disk. Historic vi had fairly convoluted 731 * semantics for whether or not writes would happen. That's 732 * why all the flags. 733 * 734 * PUBLIC: int file_write __P((SCR *, MARK *, MARK *, char *, int)); 735 */ 736 int 737 file_write(sp, fm, tm, name, flags) 738 SCR *sp; 739 MARK *fm, *tm; 740 char *name; 741 int flags; 742 { 743 enum { NEWFILE, OLDFILE } mtype; 744 struct stat sb; 745 EXF *ep; 746 FILE *fp; 747 FREF *frp; 748 MARK from, to; 749 size_t len; 750 u_long nlno, nch; 751 int fd, nf, noname, oflags, rval; 752 char *p, *s, *t, buf[MAXPATHLEN + 64]; 753 const char *msgstr; 754 755 ep = sp->ep; 756 frp = sp->frp; 757 758 /* 759 * Writing '%', or naming the current file explicitly, has the 760 * same semantics as writing without a name. 761 */ 762 if (name == NULL || !strcmp(name, frp->name)) { 763 noname = 1; 764 name = frp->name; 765 } else 766 noname = 0; 767 768 /* Can't write files marked read-only, unless forced. */ 769 if (!LF_ISSET(FS_FORCE) && noname && O_ISSET(sp, O_READONLY)) { 770 msgq(sp, M_ERR, LF_ISSET(FS_POSSIBLE) ? 771 "244|Read-only file, not written; use ! to override" : 772 "245|Read-only file, not written"); 773 return (1); 774 } 775 776 /* If not forced, not appending, and "writeany" not set ... */ 777 if (!LF_ISSET(FS_FORCE | FS_APPEND) && !O_ISSET(sp, O_WRITEANY)) { 778 /* Don't overwrite anything but the original file. */ 779 if ((!noname || F_ISSET(frp, FR_NAMECHANGE)) && 780 !stat(name, &sb)) { 781 msgq_str(sp, M_ERR, name, 782 LF_ISSET(FS_POSSIBLE) ? 783 "246|%s exists, not written; use ! to override" : 784 "247|%s exists, not written"); 785 return (1); 786 } 787 788 /* 789 * Don't write part of any existing file. Only test for the 790 * original file, the previous test catches anything else. 791 */ 792 if (!LF_ISSET(FS_ALL) && noname && !stat(name, &sb)) { 793 msgq(sp, M_ERR, LF_ISSET(FS_POSSIBLE) ? 794 "248|Partial file, not written; use ! to override" : 795 "249|Partial file, not written"); 796 return (1); 797 } 798 } 799 800 /* 801 * Figure out if the file already exists -- if it doesn't, we display 802 * the "new file" message. The stat might not be necessary, but we 803 * just repeat it because it's easier than hacking the previous tests. 804 * The information is only used for the user message and modification 805 * time test, so we can ignore the obvious race condition. 806 * 807 * One final test. If we're not forcing or appending the current file, 808 * and we have a saved modification time, object if the file changed 809 * since we last edited or wrote it, and make them force it. 810 */ 811 if (stat(name, &sb)) 812 mtype = NEWFILE; 813 else { 814 if (noname && !LF_ISSET(FS_FORCE | FS_APPEND) && 815 (F_ISSET(ep, F_DEVSET) && 816 (sb.st_dev != ep->mdev || sb.st_ino != ep->minode) || 817 sb.st_mtime != ep->mtime)) { 818 msgq_str(sp, M_ERR, name, LF_ISSET(FS_POSSIBLE) ? 819 "250|%s: file modified more recently than this copy; use ! to override" : 820 "251|%s: file modified more recently than this copy"); 821 return (1); 822 } 823 824 mtype = OLDFILE; 825 } 826 827 /* Set flags to create, write, and either append or truncate. */ 828 oflags = O_CREAT | O_WRONLY | 829 (LF_ISSET(FS_APPEND) ? O_APPEND : O_TRUNC); 830 831 /* Backup the file if requested. */ 832 if (!opts_empty(sp, O_BACKUP, 1) && 833 file_backup(sp, name, O_STR(sp, O_BACKUP)) && !LF_ISSET(FS_FORCE)) 834 return (1); 835 836 /* Open the file. */ 837 SIGBLOCK; 838 if ((fd = open(name, oflags, 839 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)) < 0) { 840 msgq_str(sp, M_SYSERR, name, "%s"); 841 SIGUNBLOCK; 842 return (1); 843 } 844 SIGUNBLOCK; 845 846 /* Try and get a lock. */ 847 if (!noname && file_lock(sp, NULL, NULL, fd, 0) == LOCK_UNAVAIL) 848 msgq_str(sp, M_ERR, name, 849 "252|%s: write lock was unavailable"); 850 851 #if __linux__ 852 /* 853 * XXX 854 * In libc 4.5.x, fdopen(fd, "w") clears the O_APPEND flag (if set). 855 * This bug is fixed in libc 4.6.x. 856 * 857 * This code works around this problem for libc 4.5.x users. 858 * Note that this code is harmless if you're using libc 4.6.x. 859 */ 860 if (LF_ISSET(FS_APPEND) && lseek(fd, (off_t)0, SEEK_END) < 0) { 861 msgq(sp, M_SYSERR, name); 862 return (1); 863 } 864 #endif 865 866 /* 867 * Use stdio for buffering. 868 * 869 * XXX 870 * SVR4.2 requires the fdopen mode exactly match the original open 871 * mode, i.e. you have to open with "a" if appending. 872 */ 873 if ((fp = fdopen(fd, LF_ISSET(FS_APPEND) ? "a" : "w")) == NULL) { 874 msgq_str(sp, M_SYSERR, name, "%s"); 875 (void)close(fd); 876 return (1); 877 } 878 879 /* Build fake addresses, if necessary. */ 880 if (fm == NULL) { 881 from.lno = 1; 882 from.cno = 0; 883 fm = &from; 884 if (db_last(sp, &to.lno)) 885 return (1); 886 to.cno = 0; 887 tm = &to; 888 } 889 890 rval = ex_writefp(sp, name, fp, fm, tm, &nlno, &nch, 0); 891 892 /* 893 * Save the new last modification time -- even if the write fails 894 * we re-init the time. That way the user can clean up the disk 895 * and rewrite without having to force it. 896 */ 897 if (noname) 898 if (stat(name, &sb)) 899 time(&ep->mtime); 900 else { 901 F_SET(ep, F_DEVSET); 902 ep->mdev = sb.st_dev; 903 ep->minode = sb.st_ino; 904 905 ep->mtime = sb.st_mtime; 906 } 907 908 /* 909 * If the write failed, complain loudly. ex_writefp() has already 910 * complained about the actual error, reinforce it if data was lost. 911 */ 912 if (rval) { 913 if (!LF_ISSET(FS_APPEND)) 914 msgq_str(sp, M_ERR, name, 915 "254|%s: WARNING: FILE TRUNCATED"); 916 return (1); 917 } 918 919 /* 920 * Once we've actually written the file, it doesn't matter that the 921 * file name was changed -- if it was, we've already whacked it. 922 */ 923 F_CLR(frp, FR_NAMECHANGE); 924 925 /* 926 * If wrote the entire file, and it wasn't by appending it to a file, 927 * clear the modified bit. If the file was written to the original 928 * file name and the file is a temporary, set the "no exit" bit. This 929 * permits the user to write the file and use it in the context of the 930 * filesystem, but still keeps them from discarding their changes by 931 * exiting. 932 */ 933 if (LF_ISSET(FS_ALL) && !LF_ISSET(FS_APPEND)) { 934 F_CLR(ep, F_MODIFIED); 935 if (F_ISSET(frp, FR_TMPFILE)) 936 if (noname) 937 F_SET(frp, FR_TMPEXIT); 938 else 939 F_CLR(frp, FR_TMPEXIT); 940 } 941 942 p = msg_print(sp, name, &nf); 943 switch (mtype) { 944 case NEWFILE: 945 msgstr = msg_cat(sp, 946 "256|%s: new file: %lu lines, %lu characters", NULL); 947 len = snprintf(buf, sizeof(buf), msgstr, p, nlno, nch); 948 break; 949 case OLDFILE: 950 msgstr = msg_cat(sp, LF_ISSET(FS_APPEND) ? 951 "315|%s: appended: %lu lines, %lu characters" : 952 "257|%s: %lu lines, %lu characters", NULL); 953 len = snprintf(buf, sizeof(buf), msgstr, p, nlno, nch); 954 break; 955 default: 956 abort(); 957 } 958 959 /* 960 * There's a nasty problem with long path names. Cscope and tags files 961 * can result in long paths and vi will request a continuation key from 962 * the user. Unfortunately, the user has typed ahead, and chaos will 963 * result. If we assume that the characters in the filenames only take 964 * a single screen column each, we can trim the filename. 965 */ 966 s = buf; 967 if (len >= sp->cols) { 968 for (s = buf, t = buf + strlen(p); s < t && 969 (*s != '/' || len >= sp->cols - 3); ++s, --len); 970 if (s == t) 971 s = buf; 972 else { 973 *--s = '.'; /* Leading ellipses. */ 974 *--s = '.'; 975 *--s = '.'; 976 } 977 } 978 msgq(sp, M_INFO, s); 979 if (nf) 980 FREE_SPACE(sp, p, 0); 981 return (0); 982 } 983 984 /* 985 * file_backup -- 986 * Backup the about-to-be-written file. 987 * 988 * XXX 989 * We do the backup by copying the entire file. It would be nice to do 990 * a rename instead, but: (1) both files may not fit and we want to fail 991 * before doing the rename; (2) the backup file may not be on the same 992 * disk partition as the file being written; (3) there may be optional 993 * file information (MACs, DACs, whatever) that we won't get right if we 994 * recreate the file. So, let's not risk it. 995 */ 996 static int 997 file_backup(sp, name, bname) 998 SCR *sp; 999 char *name, *bname; 1000 { 1001 struct dirent *dp; 1002 struct stat sb; 1003 DIR *dirp; 1004 EXCMD cmd; 1005 off_t off; 1006 size_t blen; 1007 int flags, maxnum, nr, num, nw, rfd, wfd, version; 1008 char *bp, *estr, *p, *pct, *slash, *t, *wfname, buf[8192]; 1009 1010 rfd = wfd = -1; 1011 bp = estr = wfname = NULL; 1012 1013 /* 1014 * Open the current file for reading. Do this first, so that 1015 * we don't exec a shell before the most likely failure point. 1016 * If it doesn't exist, it's okay, there's just nothing to back 1017 * up. 1018 */ 1019 errno = 0; 1020 if ((rfd = open(name, O_RDONLY, 0)) < 0) { 1021 if (errno == ENOENT) 1022 return (0); 1023 estr = name; 1024 goto err; 1025 } 1026 1027 /* 1028 * If the name starts with an 'N' character, add a version number 1029 * to the name. Strip the leading N from the string passed to the 1030 * expansion routines, for no particular reason. It would be nice 1031 * to permit users to put the version number anywhere in the backup 1032 * name, but there isn't a special character that we can use in the 1033 * name, and giving a new character a special meaning leads to ugly 1034 * hacks both here and in the supporting ex routines. 1035 * 1036 * Shell and file name expand the option's value. 1037 */ 1038 argv_init(sp, &cmd); 1039 ex_cinit(&cmd, 0, 0, 0, 0, 0, NULL); 1040 if (bname[0] == 'N') { 1041 version = 1; 1042 ++bname; 1043 } else 1044 version = 0; 1045 if (argv_exp2(sp, &cmd, bname, strlen(bname))) 1046 return (1); 1047 1048 /* 1049 * 0 args: impossible. 1050 * 1 args: use it. 1051 * >1 args: object, too many args. 1052 */ 1053 if (cmd.argc != 1) { 1054 msgq_str(sp, M_ERR, bname, 1055 "258|%s expanded into too many file names"); 1056 (void)close(rfd); 1057 return (1); 1058 } 1059 1060 /* 1061 * If appending a version number, read through the directory, looking 1062 * for file names that match the name followed by a number. Make all 1063 * of the other % characters in name literal, so the user doesn't get 1064 * surprised and sscanf doesn't drop core indirecting through pointers 1065 * that don't exist. If any such files are found, increment its number 1066 * by one. 1067 */ 1068 if (version) { 1069 GET_SPACE_GOTO(sp, bp, blen, cmd.argv[0]->len * 2 + 50); 1070 for (t = bp, slash = NULL, 1071 p = cmd.argv[0]->bp; p[0] != '\0'; *t++ = *p++) 1072 if (p[0] == '%') { 1073 if (p[1] != '%') 1074 *t++ = '%'; 1075 } else if (p[0] == '/') 1076 slash = t; 1077 pct = t; 1078 *t++ = '%'; 1079 *t++ = 'd'; 1080 *t = '\0'; 1081 1082 if (slash == NULL) { 1083 dirp = opendir("."); 1084 p = bp; 1085 } else { 1086 *slash = '\0'; 1087 dirp = opendir(bp); 1088 *slash = '/'; 1089 p = slash + 1; 1090 } 1091 if (dirp == NULL) { 1092 estr = cmd.argv[0]->bp; 1093 goto err; 1094 } 1095 1096 for (maxnum = 0; (dp = readdir(dirp)) != NULL;) 1097 if (sscanf(dp->d_name, p, &num) == 1 && num > maxnum) 1098 maxnum = num; 1099 (void)closedir(dirp); 1100 1101 /* Format the backup file name. */ 1102 (void)snprintf(pct, blen - (pct - bp), "%d", maxnum + 1); 1103 wfname = bp; 1104 } else { 1105 bp = NULL; 1106 wfname = cmd.argv[0]->bp; 1107 } 1108 1109 /* Open the backup file, avoiding lurkers. */ 1110 if (stat(wfname, &sb) == 0) { 1111 if (!S_ISREG(sb.st_mode)) { 1112 msgq_str(sp, M_ERR, bname, 1113 "259|%s: not a regular file"); 1114 goto err; 1115 } 1116 if (sb.st_uid != getuid()) { 1117 msgq_str(sp, M_ERR, bname, "260|%s: not owned by you"); 1118 goto err; 1119 } 1120 if (sb.st_mode & (S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)) { 1121 msgq_str(sp, M_ERR, bname, 1122 "261|%s: accessible by a user other than the owner"); 1123 goto err; 1124 } 1125 flags = O_TRUNC; 1126 } else 1127 flags = O_CREAT | O_EXCL; 1128 if ((wfd = open(wfname, flags | O_WRONLY, S_IRUSR | S_IWUSR)) < 0) { 1129 estr = bname; 1130 goto err; 1131 } 1132 1133 /* Copy the file's current contents to its backup value. */ 1134 while ((nr = read(rfd, buf, sizeof(buf))) > 0) 1135 for (off = 0; nr != 0; nr -= nw, off += nw) 1136 if ((nw = write(wfd, buf + off, nr)) < 0) { 1137 estr = wfname; 1138 goto err; 1139 } 1140 if (nr < 0) { 1141 estr = name; 1142 goto err; 1143 } 1144 1145 if (close(rfd)) { 1146 estr = name; 1147 goto err; 1148 } 1149 if (close(wfd)) { 1150 estr = wfname; 1151 goto err; 1152 } 1153 if (bp != NULL) 1154 FREE_SPACE(sp, bp, blen); 1155 return (0); 1156 1157 alloc_err: 1158 err: if (rfd != -1) 1159 (void)close(rfd); 1160 if (wfd != -1) { 1161 (void)unlink(wfname); 1162 (void)close(wfd); 1163 } 1164 if (estr) 1165 msgq_str(sp, M_SYSERR, estr, "%s"); 1166 if (bp != NULL) 1167 FREE_SPACE(sp, bp, blen); 1168 return (1); 1169 } 1170 1171 /* 1172 * file_comment -- 1173 * Skip the first comment. 1174 */ 1175 static void 1176 file_comment(sp) 1177 SCR *sp; 1178 { 1179 recno_t lno; 1180 size_t len; 1181 char *p; 1182 1183 for (lno = 1; !db_get(sp, lno, 0, &p, &len) && len == 0; ++lno); 1184 if (p == NULL) 1185 return; 1186 if (p[0] == '#') { 1187 F_SET(sp, SC_SCR_TOP); 1188 while (!db_get(sp, ++lno, 0, &p, &len)) 1189 if (len < 1 || p[0] != '#') { 1190 sp->lno = lno; 1191 return; 1192 } 1193 } else if (len > 1 && p[0] == '/' && p[1] == '*') { 1194 F_SET(sp, SC_SCR_TOP); 1195 do { 1196 for (; len > 1; --len, ++p) 1197 if (p[0] == '*' && p[1] == '/') { 1198 sp->lno = lno; 1199 return; 1200 } 1201 } while (!db_get(sp, ++lno, 0, &p, &len)); 1202 } else if (len > 1 && p[0] == '/' && p[1] == '/') { 1203 F_SET(sp, SC_SCR_TOP); 1204 p += 2; 1205 len -= 2; 1206 do { 1207 for (; len > 1; --len, ++p) 1208 if (p[0] == '/' && p[1] == '/') { 1209 sp->lno = lno; 1210 return; 1211 } 1212 } while (!db_get(sp, ++lno, 0, &p, &len)); 1213 } 1214 } 1215 1216 /* 1217 * file_m1 -- 1218 * First modification check routine. The :next, :prev, :rewind, :tag, 1219 * :tagpush, :tagpop, ^^ modifications check. 1220 * 1221 * PUBLIC: int file_m1 __P((SCR *, int, int)); 1222 */ 1223 int 1224 file_m1(sp, force, flags) 1225 SCR *sp; 1226 int force, flags; 1227 { 1228 EXF *ep; 1229 1230 ep = sp->ep; 1231 1232 /* If no file loaded, return no modifications. */ 1233 if (ep == NULL) 1234 return (0); 1235 1236 /* 1237 * If the file has been modified, we'll want to write it back or 1238 * fail. If autowrite is set, we'll write it back automatically, 1239 * unless force is also set. Otherwise, we fail unless forced or 1240 * there's another open screen on this file. 1241 */ 1242 if (F_ISSET(ep, F_MODIFIED)) 1243 if (O_ISSET(sp, O_AUTOWRITE)) { 1244 if (!force && file_aw(sp, flags)) 1245 return (1); 1246 } else if (ep->refcnt <= 1 && !force) { 1247 msgq(sp, M_ERR, LF_ISSET(FS_POSSIBLE) ? 1248 "262|File modified since last complete write; write or use ! to override" : 1249 "263|File modified since last complete write; write or use :edit! to override"); 1250 return (1); 1251 } 1252 1253 return (file_m3(sp, force)); 1254 } 1255 1256 /* 1257 * file_m2 -- 1258 * Second modification check routine. The :edit, :quit, :recover 1259 * modifications check. 1260 * 1261 * PUBLIC: int file_m2 __P((SCR *, int)); 1262 */ 1263 int 1264 file_m2(sp, force) 1265 SCR *sp; 1266 int force; 1267 { 1268 EXF *ep; 1269 1270 ep = sp->ep; 1271 1272 /* If no file loaded, return no modifications. */ 1273 if (ep == NULL) 1274 return (0); 1275 1276 /* 1277 * If the file has been modified, we'll want to fail, unless forced 1278 * or there's another open screen on this file. 1279 */ 1280 if (F_ISSET(ep, F_MODIFIED) && ep->refcnt <= 1 && !force) { 1281 msgq(sp, M_ERR, 1282 "264|File modified since last complete write; write or use ! to override"); 1283 return (1); 1284 } 1285 1286 return (file_m3(sp, force)); 1287 } 1288 1289 /* 1290 * file_m3 -- 1291 * Third modification check routine. 1292 * 1293 * PUBLIC: int file_m3 __P((SCR *, int)); 1294 */ 1295 int 1296 file_m3(sp, force) 1297 SCR *sp; 1298 int force; 1299 { 1300 EXF *ep; 1301 1302 ep = sp->ep; 1303 1304 /* If no file loaded, return no modifications. */ 1305 if (ep == NULL) 1306 return (0); 1307 1308 /* 1309 * Don't exit while in a temporary files if the file was ever modified. 1310 * The problem is that if the user does a ":wq", we write and quit, 1311 * unlinking the temporary file. Not what the user had in mind at all. 1312 * We permit writing to temporary files, so that user maps using file 1313 * system names work with temporary files. 1314 */ 1315 if (F_ISSET(sp->frp, FR_TMPEXIT) && ep->refcnt <= 1 && !force) { 1316 msgq(sp, M_ERR, 1317 "265|File is a temporary; exit will discard modifications"); 1318 return (1); 1319 } 1320 return (0); 1321 } 1322 1323 /* 1324 * file_aw -- 1325 * Autowrite routine. If modified, autowrite is set and the readonly bit 1326 * is not set, write the file. A routine so there's a place to put the 1327 * comment. 1328 * 1329 * PUBLIC: int file_aw __P((SCR *, int)); 1330 */ 1331 int 1332 file_aw(sp, flags) 1333 SCR *sp; 1334 int flags; 1335 { 1336 if (!F_ISSET(sp->ep, F_MODIFIED)) 1337 return (0); 1338 if (!O_ISSET(sp, O_AUTOWRITE)) 1339 return (0); 1340 1341 /* 1342 * !!! 1343 * Historic 4BSD vi attempted to write the file if autowrite was set, 1344 * regardless of the writeability of the file (as defined by the file 1345 * readonly flag). System V changed this as some point, not attempting 1346 * autowrite if the file was readonly. This feels like a bug fix to 1347 * me (e.g. the principle of least surprise is violated if readonly is 1348 * set and vi writes the file), so I'm compatible with System V. 1349 */ 1350 if (O_ISSET(sp, O_READONLY)) { 1351 msgq(sp, M_INFO, 1352 "266|File readonly, modifications not auto-written"); 1353 return (1); 1354 } 1355 return (file_write(sp, NULL, NULL, NULL, flags)); 1356 } 1357 1358 /* 1359 * set_alt_name -- 1360 * Set the alternate pathname. 1361 * 1362 * Set the alternate pathname. It's a routine because I wanted some place 1363 * to hang this comment. The alternate pathname (normally referenced using 1364 * the special character '#' during file expansion and in the vi ^^ command) 1365 * is set by almost all ex commands that take file names as arguments. The 1366 * rules go something like this: 1367 * 1368 * 1: If any ex command takes a file name as an argument (except for the 1369 * :next command), the alternate pathname is set to that file name. 1370 * This excludes the command ":e" and ":w !command" as no file name 1371 * was specified. Note, historically, the :source command did not set 1372 * the alternate pathname. It does in nvi, for consistency. 1373 * 1374 * 2: However, if any ex command sets the current pathname, e.g. the 1375 * ":e file" or ":rew" commands succeed, then the alternate pathname 1376 * is set to the previous file's current pathname, if it had one. 1377 * This includes the ":file" command and excludes the ":e" command. 1378 * So, by rule #1 and rule #2, if ":edit foo" fails, the alternate 1379 * pathname will be "foo", if it succeeds, the alternate pathname will 1380 * be the previous current pathname. The ":e" command will not set 1381 * the alternate or current pathnames regardless. 1382 * 1383 * 3: However, if it's a read or write command with a file argument and 1384 * the current pathname has not yet been set, the file name becomes 1385 * the current pathname, and the alternate pathname is unchanged. 1386 * 1387 * If the user edits a temporary file, there may be times when there is no 1388 * alternative file name. A name argument of NULL turns it off. 1389 * 1390 * PUBLIC: void set_alt_name __P((SCR *, char *)); 1391 */ 1392 void 1393 set_alt_name(sp, name) 1394 SCR *sp; 1395 char *name; 1396 { 1397 if (sp->alt_name != NULL) 1398 free(sp->alt_name); 1399 if (name == NULL) 1400 sp->alt_name = NULL; 1401 else if ((sp->alt_name = strdup(name)) == NULL) 1402 msgq(sp, M_SYSERR, NULL); 1403 } 1404 1405 /* 1406 * file_lock -- 1407 * Get an exclusive lock on a file. 1408 * 1409 * XXX 1410 * The default locking is flock(2) style, not fcntl(2). The latter is 1411 * known to fail badly on some systems, and its only advantage is that 1412 * it occasionally works over NFS. 1413 * 1414 * Furthermore, the semantics of fcntl(2) are wrong. The problems are 1415 * two-fold: you can't close any file descriptor associated with the file 1416 * without losing all of the locks, and you can't get an exclusive lock 1417 * unless you have the file open for writing. Someone ought to be shot, 1418 * but it's probably too late, they may already have reproduced. To get 1419 * around these problems, nvi opens the files for writing when it can and 1420 * acquires a second file descriptor when it can't. The recovery files 1421 * are examples of the former, they're always opened for writing. The DB 1422 * files can't be opened for writing because the semantics of DB are that 1423 * files opened for writing are flushed back to disk when the DB session 1424 * is ended. So, in that case we have to acquire an extra file descriptor. 1425 * 1426 * PUBLIC: lockr_t file_lock __P((SCR *, char *, int *, int, int)); 1427 */ 1428 lockr_t 1429 file_lock(sp, name, fdp, fd, iswrite) 1430 SCR *sp; 1431 char *name; 1432 int *fdp, fd, iswrite; 1433 { 1434 if (!O_ISSET(sp, O_LOCKFILES)) 1435 return (LOCK_SUCCESS); 1436 1437 #ifdef HAVE_LOCK_FLOCK /* Hurrah! We've got flock(2). */ 1438 /* 1439 * !!! 1440 * We need to distinguish a lock not being available for the file 1441 * from the file system not supporting locking. Flock is documented 1442 * as returning EWOULDBLOCK; add EAGAIN for good measure, and assume 1443 * they are the former. There's no portable way to do this. 1444 */ 1445 errno = 0; 1446 if (!flock(fd, LOCK_EX | LOCK_NB)) { 1447 fcntl(fd, F_SETFD, 1); 1448 return (LOCK_SUCCESS); 1449 } 1450 return (errno == EAGAIN 1451 #ifdef EWOULDBLOCK 1452 || errno == EWOULDBLOCK 1453 #endif 1454 ? LOCK_UNAVAIL : LOCK_FAILED); 1455 #endif 1456 #ifdef HAVE_LOCK_FCNTL /* Gag me. We've got fcntl(2). */ 1457 { 1458 struct flock arg; 1459 int didopen, sverrno; 1460 1461 arg.l_type = F_WRLCK; 1462 arg.l_whence = 0; /* SEEK_SET */ 1463 arg.l_start = arg.l_len = 0; 1464 arg.l_pid = 0; 1465 1466 /* 1467 * If the file descriptor isn't opened for writing, it must fail. 1468 * If we fail because we can't get a read/write file descriptor, 1469 * we return LOCK_SUCCESS, believing that the file is readonly 1470 * and that will be sufficient to warn the user. 1471 */ 1472 if (!iswrite) { 1473 if (name == NULL || fdp == NULL) 1474 return (LOCK_FAILED); 1475 if ((fd = open(name, O_RDWR, 0)) == -1) 1476 return (LOCK_SUCCESS); 1477 *fdp = fd; 1478 didopen = 1; 1479 } 1480 1481 errno = 0; 1482 if (!fcntl(fd, F_SETLK, &arg)) { 1483 fcntl(fd, F_SETFD, 1); 1484 return (LOCK_SUCCESS); 1485 } 1486 1487 if (didopen) { 1488 sverrno = errno; 1489 (void)close(fd); 1490 errno = sverrno; 1491 } 1492 1493 /* 1494 * !!! 1495 * We need to distinguish a lock not being available for the file 1496 * from the file system not supporting locking. Fcntl is documented 1497 * as returning EACCESS and EAGAIN; add EWOULDBLOCK for good measure, 1498 * and assume they are the former. There's no portable way to do this. 1499 */ 1500 return (errno == EACCES || errno == EAGAIN 1501 #ifdef EWOULDBLOCK 1502 || errno == EWOULDBLOCK 1503 #endif 1504 ? LOCK_UNAVAIL : LOCK_FAILED); 1505 } 1506 #endif 1507 #if !defined(HAVE_LOCK_FLOCK) && !defined(HAVE_LOCK_FCNTL) 1508 return (LOCK_SUCCESS); 1509 #endif 1510 } 1511