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