Set the close-on-exec flag when we lock the file we're editing.
This prevents any background sub-command executed from inheriting the descriptor & lock (and making vi think that someone else is editing the file when it re-edits). Remembered from: An OpenBSD commit message from May '99
This commit is contained in:
parent
009ba522f3
commit
8b87107d62
@ -1438,11 +1438,15 @@ file_lock(sp, name, fdp, fd, iswrite)
|
||||
* they are the former. There's no portable way to do this.
|
||||
*/
|
||||
errno = 0;
|
||||
return (flock(fd, LOCK_EX | LOCK_NB) ? errno == EAGAIN
|
||||
if (!flock(fd, LOCK_EX | LOCK_NB)) {
|
||||
fcntl(fd, F_SETFD, 1);
|
||||
return (LOCK_SUCCESS);
|
||||
}
|
||||
return (errno == EAGAIN
|
||||
#ifdef EWOULDBLOCK
|
||||
|| errno == EWOULDBLOCK
|
||||
#endif
|
||||
? LOCK_UNAVAIL : LOCK_FAILED : LOCK_SUCCESS);
|
||||
? LOCK_UNAVAIL : LOCK_FAILED);
|
||||
#endif
|
||||
#ifdef HAVE_LOCK_FCNTL /* Gag me. We've got fcntl(2). */
|
||||
{
|
||||
@ -1470,8 +1474,11 @@ file_lock(sp, name, fdp, fd, iswrite)
|
||||
}
|
||||
|
||||
errno = 0;
|
||||
if (!fcntl(fd, F_SETLK, &arg))
|
||||
if (!fcntl(fd, F_SETLK, &arg)) {
|
||||
fcntl(fd, F_SETFD, 1);
|
||||
return (LOCK_SUCCESS);
|
||||
}
|
||||
|
||||
if (didopen) {
|
||||
sverrno = errno;
|
||||
(void)close(fd);
|
||||
|
Loading…
Reference in New Issue
Block a user