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