2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
5 * %sccs.include.redist.c%
9 static char sccsid
[] = "$Id: exf.c,v 8.61 1993/12/20 09:24:41 bostic Exp $ (Berkeley) $Date: 1993/12/20 09:24:41 $";
12 #include <sys/types.h>
16 * We include <sys/file.h>, because the flock(2) #defines were
17 * found there on historical systems. We also include <fcntl.h>
18 * because the open(2) #defines are found there on newer systems.
30 #include "pathnames.h"
34 * Insert a file name into the FREF list, if it doesn't already
38 * The "if it doesn't already appear" changes vi's semantics slightly. If
39 * you do a "vi foo bar", and then execute "next bar baz", the edit of bar
40 * will reflect the line/column of the previous edit session. Historic nvi
41 * did not do this. The change is a logical extension of the change where
42 * vi now remembers the last location in any file that it has ever edited,
43 * not just the previously edited file.
46 file_add(sp
, frp_append
, name
, ignore
)
56 * Return it if it already exists. Note that we test against the
57 * user's current name, whatever that happens to be, including if
58 * it's a temporary file. If the user is trying to set an argument
59 * list, the ignore argument will be on -- if we're ignoring the
60 * file turn off the ignore bit, so it's back in the argument list.
63 for (frp
= sp
->frefq
.cqh_first
;
64 frp
!= (FREF
*)&sp
->frefq
; frp
= frp
->q
.cqe_next
)
65 if ((p
= FILENAME(frp
)) != NULL
&& !strcmp(p
, name
)) {
67 F_CLR(frp
, FR_IGNORE
);
71 /* Allocate and initialize the FREF structure. */
72 CALLOC(sp
, frp
, FREF
*, 1, sizeof(FREF
));
77 * If no file name specified, or if the file name is a request
78 * for something temporary, file_init() will allocate the file
79 * name. Temporary files are always ignored.
81 #define TEMPORARY_FILE_STRING "/tmp"
82 if (name
!= NULL
&& strcmp(name
, TEMPORARY_FILE_STRING
) &&
83 (frp
->name
= strdup(name
)) == NULL
) {
84 FREE(frp
, sizeof(FREF
));
85 msgq(sp
, M_SYSERR
, NULL
);
89 /* Only the initial argument list is "remembered". */
91 F_SET(frp
, FR_IGNORE
);
93 /* Append into the chain of file names. */
94 if (frp_append
!= NULL
) {
95 CIRCLEQ_INSERT_AFTER(&sp
->frefq
, frp_append
, frp
, q
);
97 CIRCLEQ_INSERT_TAIL(&sp
->frefq
, frp
, q
);
104 * Return the first file name for editing, if any.
112 /* Return the first file name. */
113 for (frp
= sp
->frefq
.cqh_first
;
114 frp
!= (FREF
*)&sp
->frefq
; frp
= frp
->q
.cqe_next
)
115 if (!F_ISSET(frp
, FR_IGNORE
))
122 * Return the next file name, if any.
129 while ((frp
= frp
->q
.cqe_next
) != (FREF
*)&sp
->frefq
)
130 if (!F_ISSET(frp
, FR_IGNORE
))
137 * Return the previous file name, if any.
144 while ((frp
= frp
->q
.cqe_prev
) != (FREF
*)&sp
->frefq
)
145 if (!F_ISSET(frp
, FR_IGNORE
))
152 * Return if there are files that aren't ignored and are unedited.
160 /* Return the next file name. */
161 for (frp
= sp
->frefq
.cqh_first
;
162 frp
!= (FREF
*)&sp
->frefq
; frp
= frp
->q
.cqe_next
)
163 if (!F_ISSET(frp
, FR_EDITED
| FR_IGNORE
))
170 * Start editing a file, based on the FREF structure. If successsful,
171 * let go of any previous file. Don't release the previous file until
172 * absolutely sure we have the new one.
175 file_init(sp
, frp
, rcv_name
, force
)
186 char *p
, *oname
, tname
[sizeof(_PATH_TMPNAME
) + 1];
189 * Required ep initialization:
190 * Flush the line caches.
191 * Default recover mail file fd to -1.
192 * Set initial EXF flag bits.
194 CALLOC_RET(sp
, ep
, EXF
*, 1, sizeof(EXF
));
195 ep
->c_lno
= ep
->c_nlines
= OOBLNO
;
197 LIST_INIT(&ep
->marks
);
198 F_SET(ep
, F_FIRSTMODIFY
);
201 * If no name or backing file, create a backing temporary file, saving
202 * the temp file name so can later unlink it. Repoint the name to the
203 * temporary name (we display it to the user until they rename it).
204 * There are some games we play with the FR_FREE_TNAME and FR_NONAME
205 * flags (see ex/ex_file.c) to make sure that the temporary memory gets
208 if ((oname
= FILENAME(frp
)) == NULL
|| stat(oname
, &sb
)) {
209 (void)strcpy(tname
, _PATH_TMPNAME
);
210 if ((fd
= mkstemp(tname
)) == -1) {
211 msgq(sp
, M_SYSERR
, "Temporary file");
215 if ((frp
->tname
= strdup(tname
)) == NULL
) {
216 msgq(sp
, M_SYSERR
, NULL
);
222 F_SET(frp
, FR_NEWFILE
);
224 /* Try to keep it at 10 pages or less per file. */
225 if (sb
.st_size
< 40 * 1024)
227 else if (sb
.st_size
< 320 * 1024)
232 frp
->mtime
= sb
.st_mtime
;
235 /* Set up recovery. */
236 memset(&oinfo
, 0, sizeof(RECNOINFO
));
237 oinfo
.bval
= '\n'; /* Always set. */
239 oinfo
.flags
= F_ISSET(sp
->gp
, G_SNAPSHOT
) ? R_SNAPSHOT
: 0;
240 if (rcv_name
== NULL
) {
241 if (rcv_tmp(sp
, ep
, FILENAME(frp
)))
243 "Modifications not recoverable if the system crashes.");
245 oinfo
.bfname
= ep
->rcv_path
;
246 } else if ((ep
->rcv_path
= strdup(rcv_name
)) == NULL
) {
247 msgq(sp
, M_SYSERR
, NULL
);
250 oinfo
.bfname
= ep
->rcv_path
;
251 F_SET(ep
, F_MODIFIED
| F_RCV_ON
);
254 /* Open a db structure. */
255 if ((ep
->db
= dbopen(rcv_name
== NULL
? oname
: NULL
,
256 O_NONBLOCK
| O_RDONLY
, DEFFILEMODE
, DB_RECNO
, &oinfo
)) == NULL
) {
257 msgq(sp
, M_SYSERR
, rcv_name
== NULL
? oname
: rcv_name
);
261 /* Init file marks. */
262 if (mark_init(sp
, ep
))
266 if (log_init(sp
, ep
))
270 * The -R flag, or doing a "set readonly" during a session causes
271 * all files edited during the session (using an edit command, or
272 * even using tags) to be marked read-only. Changing the file name
273 * (see ex/ex_file.c), clears this flag.
275 * Otherwise, try and figure out if a file is readonly. This is a
276 * dangerous thing to do. The kernel is the only arbiter of whether
277 * or not a file is writeable, and the best that a user program can
278 * do is guess. Obvious loopholes are files that are on a file system
279 * mounted readonly (access catches this one on a few systems), or
280 * alternate protection mechanisms, ACL's for example, that we can't
281 * portably check. Lots of fun, and only here because users whined.
284 * Historic vi displayed the readonly message if none of the file
285 * write bits were set, or if an an access(2) call on the path
286 * failed. This seems reasonable. If the file is mode 444, root
287 * users may want to know that the owner of the file did not expect
290 * Historic vi set the readonly bit if no write bits were set for
291 * a file, even if the access call would have succeeded. This makes
292 * the superuser force the write even when vi expects that it will
293 * succeed. I'm less supportive of this semantic, but it's historic
294 * practice and the conservative approach to vi'ing files as root.
296 * It would be nice if there was some way to update this when the user
297 * does a "^Z; chmod ...". The problem is that we'd first have to
298 * distinguish between readonly bits set because of file permissions
299 * and those set for other reasons. That's not too hard, but deciding
300 * when to reevaluate the permissions is trickier. An alternative
301 * might be to turn off the readonly bit if the user forces a write
305 * Access(2) doesn't consider the effective uid/gid values. This
306 * probably isn't a problem for vi when it's running standalone.
308 if (O_ISSET(sp
, O_READONLY
) || !F_ISSET(frp
, FR_NEWFILE
) &&
309 (!(sb
.st_mode
& (S_IWUSR
| S_IWGRP
| S_IWOTH
)) ||
310 access(FILENAME(frp
), W_OK
)))
311 F_SET(frp
, FR_RDONLY
);
313 F_CLR(frp
, FR_RDONLY
);
316 * Close the previous file; if that fails, close the new one
317 * and run for the border.
319 if (sp
->ep
!= NULL
&& file_end(sp
, sp
->ep
, force
)) {
320 (void)file_end(sp
, ep
, 1);
325 * 4.4BSD supports locking in the open call, other systems don't.
326 * Since the user can't interrupt us between the open and here,
330 * We need to distinguish a lock not being available for the file
331 * from the file system not supporting locking. Assume that EAGAIN
332 * is the former. There isn't a portable way to do this.
335 * The locking is flock(2) style, not fcntl(2). The latter is known
336 * to fail badly on some systems, and its only advantage is that it
337 * occasionally works over NFS.
339 if (flock(ep
->db
->fd(ep
->db
), LOCK_EX
| LOCK_NB
))
340 if (errno
== EAGAIN
) {
342 "%s already locked, session is read-only", oname
);
343 F_SET(frp
, FR_RDONLY
);
345 msgq(sp
, M_VINFO
, "%s cannot be locked", oname
);
348 * Set the previous file pointer and the alternate file name to be
349 * the file we're about to discard.
352 * If the current file was a temporary file, the call to file_end()
353 * unlinked it and free'd the name. So, there is no previous file,
354 * and there is no alternate file name. This matches historical
355 * practice, although in historical vi it could only happen as the
356 * result of the initial command, i.e. if vi was execute without a
359 if (sp
->frp
!= NULL
) {
360 p
= FILENAME(sp
->frp
);
368 /* The new file has now been officially edited. */
369 F_SET(frp
, FR_EDITED
);
377 err
: if (frp
->tname
!= NULL
) {
378 (void)unlink(frp
->tname
);
382 if (ep
->rcv_path
!= NULL
) {
386 FREE(ep
, sizeof(EXF
));
392 * Stop editing a file.
395 file_end(sp
, ep
, force
)
404 * sp->ep MAY NOT BE THE SAME AS THE ARGUMENT ep, SO DON'T USE IT!
406 * Save the cursor location.
409 * It would be cleaner to do this somewhere else, but by the time
410 * ex or vi knows that we're changing files it's already happened.
415 F_SET(frp
, FR_CURSORSET
);
417 /* If multiply referenced, just decrement the count and return. */
418 if (--ep
->refcnt
!= 0)
421 /* Close the db structure. */
422 if (ep
->db
->close
!= NULL
&& ep
->db
->close(ep
->db
) && !force
) {
424 "%s: close: %s", FILENAME(frp
), strerror(errno
));
428 /* COMMITTED TO THE CLOSE. THERE'S NO GOING BACK... */
431 (void)log_end(sp
, ep
);
433 /* Free up any marks. */
437 * Delete the recovery files, close the open descriptor,
438 * free recovery memory.
440 if (!F_ISSET(ep
, F_RCV_NORM
)) {
441 if (ep
->rcv_path
!= NULL
&& unlink(ep
->rcv_path
))
443 "%s: remove: %s", ep
->rcv_path
, strerror(errno
));
444 if (ep
->rcv_mpath
!= NULL
&& unlink(ep
->rcv_mpath
))
446 "%s: remove: %s", ep
->rcv_mpath
, strerror(errno
));
448 if (ep
->rcv_fd
!= -1)
449 (void)close(ep
->rcv_fd
);
450 if (ep
->rcv_path
!= NULL
)
452 if (ep
->rcv_mpath
!= NULL
)
456 * Unlink any temporary file, file name. We also turn on the
457 * ignore bit at this point, because it was a "created" file,
458 * not an argument file.
460 if (frp
->tname
!= NULL
) {
461 if (unlink(frp
->tname
))
463 "%s: remove: %s", frp
->tname
, strerror(errno
));
467 if (frp
->name
== NULL
&& frp
->cname
== NULL
)
468 F_SET(frp
, FR_IGNORE
);
470 /* Free the EXF structure. */
471 FREE(ep
, sizeof(EXF
));
477 * Write the file to disk. Historic vi had fairly convoluted
478 * semantics for whether or not writes would happen. That's
482 file_write(sp
, ep
, fm
, tm
, name
, flags
)
494 int fd
, oflags
, rval
;
498 * Don't permit writing to temporary files. The problem is that
499 * if it's a temp file, and the user does ":wq", we write and quit,
500 * unlinking the temporary file. Not what the user had in mind
501 * at all. This test cannot be forced.
504 if (name
== NULL
&& frp
->cname
== NULL
&& frp
->name
== NULL
) {
505 msgq(sp
, M_ERR
, "No filename to which to write.");
509 /* Can't write files marked read-only, unless forced. */
510 if (!LF_ISSET(FS_FORCE
) &&
511 name
== NULL
&& F_ISSET(frp
, FR_RDONLY
)) {
512 if (LF_ISSET(FS_POSSIBLE
))
514 "Read-only file, not written; use ! to override.");
517 "Read-only file, not written.");
521 /* If not forced, not appending, and "writeany" not set ... */
522 if (!LF_ISSET(FS_FORCE
| FS_APPEND
) && !O_ISSET(sp
, O_WRITEANY
)) {
523 /* Don't overwrite anything but the original file. */
525 if (!stat(name
, &sb
))
527 } else if (frp
->cname
!= NULL
&&
528 !F_ISSET(frp
, FR_CHANGEWRITE
) && !stat(frp
->cname
, &sb
)) {
530 exists
: if (LF_ISSET(FS_POSSIBLE
))
532 "%s exists, not written; use ! to override.", name
);
535 "%s exists, not written.", name
);
540 * Don't write part of any existing file. Only test for the
541 * original file, the previous test catches anything else.
543 if (!LF_ISSET(FS_ALL
) && name
== NULL
&&
544 frp
->cname
== NULL
&& !stat(frp
->name
, &sb
)) {
545 if (LF_ISSET(FS_POSSIBLE
))
547 "Use ! to write a partial file.");
549 msgq(sp
, M_ERR
, "Partial file, not written.");
555 * Figure out if the file already exists -- if it doesn't, we display
556 * the "new file" message. The stat might not be necessary, but we
557 * just repeat it because it's easier than hacking the previous tests.
558 * The information is only used for the user message and modification
559 * time test, so we can ignore the obvious race condition.
561 * If the user is overwriting a file other than the original file, and
562 * O_WRITEANY was what got us here (neither force nor append was set),
563 * display the "existing file" messsage. Since the FR_CHANGEWRITE flag
564 * is set on a successful write, the message only appears once when the
565 * user changes a file name. This is historic practice.
567 * One final test. If we're not forcing or appending, and we have a
568 * saved modification time, stop the user if it's been written since
569 * we last edited or wrote it, and make them force it.
571 if (stat(name
== NULL
? FILENAME(frp
) : name
, &sb
))
575 if (!LF_ISSET(FS_FORCE
| FS_APPEND
)) {
576 if (frp
->mtime
&& sb
.st_mtime
> frp
->mtime
) {
578 "%s: file modified more recently than this copy%s.",
579 name
== NULL
? frp
->name
: name
,
580 LF_ISSET(FS_POSSIBLE
) ?
581 "; use ! to override" : "");
585 !F_ISSET(frp
, FR_CHANGEWRITE
) && frp
->cname
!= NULL
)
586 msg
= ": existing file";
590 /* We no longer care where the name came from. */
592 name
= FILENAME(frp
);
594 /* Set flags to either append or truncate. */
595 oflags
= O_CREAT
| O_WRONLY
;
596 if (LF_ISSET(FS_APPEND
))
602 if ((fd
= open(name
, oflags
, DEFFILEMODE
)) < 0) {
603 msgq(sp
, M_SYSERR
, name
);
607 /* Use stdio for buffering. */
608 if ((fp
= fdopen(fd
, "w")) == NULL
) {
610 msgq(sp
, M_SYSERR
, name
);
614 /* Build fake addresses, if necessary. */
619 if (file_lline(sp
, ep
, &to
.lno
))
625 /* Write the file. */
626 rval
= ex_writefp(sp
, ep
, name
, fp
, fm
, tm
, &nlno
, &nch
);
629 * Save the new last modification time -- even if the write fails
630 * we re-init the time if we wrote anything. That way the user can
631 * clean up the disk and rewrite without having to force it.
634 frp
->mtime
= stat(name
, &sb
) ? 0 : sb
.st_mtime
;
636 /* If the write failed, complain loudly. */
638 if (!LF_ISSET(FS_APPEND
))
639 msgq(sp
, M_ERR
, "%s: WARNING: file truncated!", name
);
644 * Once we've actually written the file, it doesn't matter that the
645 * file name was changed -- if it was, we've already whacked it.
647 F_SET(frp
, FR_CHANGEWRITE
);
649 /* If wrote the entire file, clear the modified bit. */
650 if (LF_ISSET(FS_ALL
))
651 F_CLR(ep
, F_MODIFIED
);
653 msgq(sp
, M_INFO
, "%s%s: %lu line%s, %lu characters.",
654 name
, msg
, nlno
, nlno
== 1 ? "" : "s", nch
);