Avoid leaving garbage on screen when using 'raise' display property
[emacs.git] / src / filelock.c
blob67e8dbd34edf50642471414861237b66f871dd59
1 /* Lock files for editing.
3 Copyright (C) 1985-1987, 1993-1994, 1996, 1998-2017 Free Software
4 Foundation, Inc.
6 Author: Richard King
7 (according to authors.el)
9 This file is part of GNU Emacs.
11 GNU Emacs is free software: you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation, either version 3 of the License, or (at
14 your option) any later version.
16 GNU Emacs is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
25 #include <config.h>
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <signal.h>
29 #include <stdio.h>
30 #include <stdlib.h>
32 #ifdef HAVE_PWD_H
33 #include <pwd.h>
34 #endif
36 #include <sys/file.h>
37 #include <fcntl.h>
38 #include <unistd.h>
40 #ifdef __FreeBSD__
41 #include <sys/sysctl.h>
42 #endif /* __FreeBSD__ */
44 #include <errno.h>
46 #include <c-ctype.h>
48 #include "lisp.h"
49 #include "buffer.h"
50 #include "coding.h"
51 #ifdef WINDOWSNT
52 #include <share.h>
53 #include <sys/socket.h> /* for fcntl */
54 #include "w32.h" /* for dostounix_filename */
55 #endif
57 #ifndef MSDOS
59 #ifdef HAVE_UTMP_H
60 #include <utmp.h>
61 #endif
63 /* A file whose last-modified time is just after the most recent boot.
64 Define this to be NULL to disable checking for this file. */
65 #ifndef BOOT_TIME_FILE
66 #define BOOT_TIME_FILE "/var/run/random-seed"
67 #endif
69 #if !defined WTMP_FILE && !defined WINDOWSNT
70 #define WTMP_FILE "/var/log/wtmp"
71 #endif
73 /* Normally use a symbolic link to represent a lock.
74 The strategy: to lock a file FN, create a symlink .#FN in FN's
75 directory, with link data USER@HOST.PID:BOOT. This avoids a single
76 mount (== failure) point for lock files. The :BOOT is omitted if
77 the boot time is not available.
79 When the host in the lock data is the current host, we can check if
80 the pid is valid with kill.
82 Otherwise, we could look at a separate file that maps hostnames to
83 reboot times to see if the remote pid can possibly be valid, since we
84 don't want Emacs to have to communicate via pipes or sockets or
85 whatever to other processes, either locally or remotely; rms says
86 that's too unreliable. Hence the separate file, which could
87 theoretically be updated by daemons running separately -- but this
88 whole idea is unimplemented; in practice, at least in our
89 environment, it seems such stale locks arise fairly infrequently, and
90 Emacs' standard methods of dealing with clashes suffice.
92 We use symlinks instead of normal files because (1) they can be
93 stored more efficiently on the filesystem, since the kernel knows
94 they will be small, and (2) all the info about the lock can be read
95 in a single system call (readlink). Although we could use regular
96 files to be useful on old systems lacking symlinks, nowadays
97 virtually all such systems are probably single-user anyway, so it
98 didn't seem worth the complication.
100 Similarly, we don't worry about a possible 14-character limit on
101 file names, because those are all the same systems that don't have
102 symlinks.
104 This is compatible with the locking scheme used by Interleaf (which
105 has contributed this implementation for Emacs), and was designed by
106 Karl Berry, Ethan Jacobson, Kimbo Mundy, and others.
108 On some file systems, notably those of MS-Windows, symbolic links
109 do not work well, so instead of a symlink .#FN -> USER@HOST.PID:BOOT,
110 the lock is a regular file .#FN with contents USER@HOST.PID:BOOT. To
111 establish a lock, a nonce file is created and then renamed to .#FN.
112 On MS-Windows this renaming is atomic unless the lock is forcibly
113 acquired. On other systems the renaming is atomic if the lock is
114 forcibly acquired; if not, the renaming is done via hard links,
115 which is good enough for lock-file purposes.
117 To summarize, race conditions can occur with either:
119 * Forced locks on MS-Windows systems.
121 * Non-forced locks on non-MS-Windows systems that support neither
122 hard nor symbolic links. */
125 /* Return the time of the last system boot. */
127 static time_t boot_time;
128 static bool boot_time_initialized;
130 #ifdef BOOT_TIME
131 static void get_boot_time_1 (const char *, bool);
132 #endif
134 static time_t
135 get_boot_time (void)
137 #if defined (BOOT_TIME)
138 int counter;
139 #endif
141 if (boot_time_initialized)
142 return boot_time;
143 boot_time_initialized = 1;
145 #if defined (CTL_KERN) && defined (KERN_BOOTTIME)
147 int mib[2];
148 size_t size;
149 struct timeval boottime_val;
151 mib[0] = CTL_KERN;
152 mib[1] = KERN_BOOTTIME;
153 size = sizeof (boottime_val);
155 if (sysctl (mib, 2, &boottime_val, &size, NULL, 0) >= 0)
157 boot_time = boottime_val.tv_sec;
158 return boot_time;
161 #endif /* defined (CTL_KERN) && defined (KERN_BOOTTIME) */
163 if (BOOT_TIME_FILE)
165 struct stat st;
166 if (stat (BOOT_TIME_FILE, &st) == 0)
168 boot_time = st.st_mtime;
169 return boot_time;
173 #if defined (BOOT_TIME)
174 #ifndef CANNOT_DUMP
175 /* The utmp routines maintain static state.
176 Don't touch that state unless we are initialized,
177 since it might not survive dumping. */
178 if (! initialized)
179 return boot_time;
180 #endif /* not CANNOT_DUMP */
182 /* Try to get boot time from utmp before wtmp,
183 since utmp is typically much smaller than wtmp.
184 Passing a null pointer causes get_boot_time_1
185 to inspect the default file, namely utmp. */
186 get_boot_time_1 (0, 0);
187 if (boot_time)
188 return boot_time;
190 /* Try to get boot time from the current wtmp file. */
191 get_boot_time_1 (WTMP_FILE, 1);
193 /* If we did not find a boot time in wtmp, look at wtmp, and so on. */
194 for (counter = 0; counter < 20 && ! boot_time; counter++)
196 Lisp_Object filename = Qnil;
197 bool delete_flag = false;
198 char cmd_string[sizeof WTMP_FILE ".19.gz"];
199 AUTO_STRING_WITH_LEN (tempname, cmd_string,
200 sprintf (cmd_string, "%s.%d", WTMP_FILE, counter));
201 if (! NILP (Ffile_exists_p (tempname)))
202 filename = tempname;
203 else
205 tempname = make_formatted_string (cmd_string, "%s.%d.gz",
206 WTMP_FILE, counter);
207 if (! NILP (Ffile_exists_p (tempname)))
209 /* The utmp functions on mescaline.gnu.org accept only
210 file names up to 8 characters long. Choose a 2
211 character long prefix, and call make_temp_file with
212 second arg non-zero, so that it will add not more
213 than 6 characters to the prefix. */
214 filename = Fexpand_file_name (build_string ("wt"),
215 Vtemporary_file_directory);
216 filename = make_temp_name (filename, 1);
217 CALLN (Fcall_process, build_string ("gzip"), Qnil,
218 list2 (QCfile, filename), Qnil,
219 build_string ("-cd"), tempname);
220 delete_flag = true;
224 if (! NILP (filename))
226 get_boot_time_1 (SSDATA (filename), 1);
227 if (delete_flag)
228 unlink (SSDATA (filename));
232 return boot_time;
233 #else
234 return 0;
235 #endif
238 #ifdef BOOT_TIME
239 /* Try to get the boot time from wtmp file FILENAME.
240 This succeeds if that file contains a reboot record.
242 If FILENAME is zero, use the same file as before;
243 if no FILENAME has ever been specified, this is the utmp file.
244 Use the newest reboot record if NEWEST,
245 the first reboot record otherwise.
246 Ignore all reboot records on or before BOOT_TIME.
247 Success is indicated by setting BOOT_TIME to a larger value. */
249 void
250 get_boot_time_1 (const char *filename, bool newest)
252 struct utmp ut, *utp;
254 if (filename)
255 utmpname (filename);
257 setutent ();
259 while (1)
261 /* Find the next reboot record. */
262 ut.ut_type = BOOT_TIME;
263 utp = getutid (&ut);
264 if (! utp)
265 break;
266 /* Compare reboot times and use the newest one. */
267 if (utp->ut_time > boot_time)
269 boot_time = utp->ut_time;
270 if (! newest)
271 break;
273 /* Advance on element in the file
274 so that getutid won't repeat the same one. */
275 utp = getutent ();
276 if (! utp)
277 break;
279 endutent ();
281 #endif /* BOOT_TIME */
283 /* An arbitrary limit on lock contents length. 8 K should be plenty
284 big enough in practice. */
285 enum { MAX_LFINFO = 8 * 1024 };
287 /* Here is the structure that stores information about a lock. */
289 typedef struct
291 /* Location of '@', '.', and ':' (or equivalent) in USER. If there's
292 no colon or equivalent, COLON points to the end of USER. */
293 char *at, *dot, *colon;
295 /* Lock file contents USER@HOST.PID with an optional :BOOT_TIME
296 appended. This memory is used as a lock file contents buffer, so
297 it needs room for MAX_LFINFO + 1 bytes. A string " (pid NNNN)"
298 may be appended to the USER@HOST while generating a diagnostic,
299 so make room for its extra bytes (as opposed to ".NNNN") too. */
300 char user[MAX_LFINFO + 1 + sizeof " (pid )" - sizeof "."];
301 } lock_info_type;
303 /* Write the name of the lock file for FNAME into LOCKNAME. Length
304 will be that of FNAME plus two more for the leading ".#", plus one
305 for the null. */
306 #define MAKE_LOCK_NAME(lockname, fname) \
307 (lockname = SAFE_ALLOCA (SBYTES (fname) + 2 + 1), \
308 fill_in_lock_file_name (lockname, fname))
310 static void
311 fill_in_lock_file_name (char *lockfile, Lisp_Object fn)
313 char *last_slash = memrchr (SSDATA (fn), '/', SBYTES (fn));
314 char *base = last_slash + 1;
315 ptrdiff_t dirlen = base - SSDATA (fn);
316 memcpy (lockfile, SSDATA (fn), dirlen);
317 lockfile[dirlen] = '.';
318 lockfile[dirlen + 1] = '#';
319 strcpy (lockfile + dirlen + 2, base);
322 /* For some reason Linux kernels return EPERM on file systems that do
323 not support hard or symbolic links. This symbol documents the quirk.
324 There is no way to tell whether a symlink call fails due to
325 permissions issues or because links are not supported, but luckily
326 the lock file code should work either way. */
327 enum { LINKS_MIGHT_NOT_WORK = EPERM };
329 /* Rename OLD to NEW. If FORCE, replace any existing NEW.
330 It is OK if there are temporarily two hard links to OLD.
331 Return 0 if successful, -1 (setting errno) otherwise. */
332 static int
333 rename_lock_file (char const *old, char const *new, bool force)
335 #ifdef WINDOWSNT
336 return sys_rename_replace (old, new, force);
337 #else
338 if (! force)
340 struct stat st;
342 if (link (old, new) == 0)
343 return unlink (old) == 0 || errno == ENOENT ? 0 : -1;
344 if (errno != ENOSYS && errno != LINKS_MIGHT_NOT_WORK)
345 return -1;
347 /* 'link' does not work on this file system. This can occur on
348 a GNU/Linux host mounting a FAT32 file system. Fall back on
349 'rename' after checking that NEW does not exist. There is a
350 potential race condition since some other process may create
351 NEW immediately after the existence check, but it's the best
352 we can portably do here. */
353 if (lstat (new, &st) == 0 || errno == EOVERFLOW)
355 errno = EEXIST;
356 return -1;
358 if (errno != ENOENT)
359 return -1;
362 return rename (old, new);
363 #endif
366 /* Create the lock file LFNAME with contents LOCK_INFO_STR. Return 0 if
367 successful, an errno value on failure. If FORCE, remove any
368 existing LFNAME if necessary. */
370 static int
371 create_lock_file (char *lfname, char *lock_info_str, bool force)
373 #ifdef WINDOWSNT
374 /* Symlinks are supported only by later versions of Windows, and
375 creating them is a privileged operation that often triggers
376 User Account Control elevation prompts. Avoid the problem by
377 pretending that 'symlink' does not work. */
378 int err = ENOSYS;
379 #else
380 int err = symlink (lock_info_str, lfname) == 0 ? 0 : errno;
381 #endif
383 if (err == EEXIST && force)
385 unlink (lfname);
386 err = symlink (lock_info_str, lfname) == 0 ? 0 : errno;
389 if (err == ENOSYS || err == LINKS_MIGHT_NOT_WORK || err == ENAMETOOLONG)
391 static char const nonce_base[] = ".#-emacsXXXXXX";
392 char *last_slash = strrchr (lfname, '/');
393 ptrdiff_t lfdirlen = last_slash + 1 - lfname;
394 USE_SAFE_ALLOCA;
395 char *nonce = SAFE_ALLOCA (lfdirlen + sizeof nonce_base);
396 int fd;
397 memcpy (nonce, lfname, lfdirlen);
398 strcpy (nonce + lfdirlen, nonce_base);
400 fd = mkostemp (nonce, O_BINARY | O_CLOEXEC);
401 if (fd < 0)
402 err = errno;
403 else
405 ptrdiff_t lock_info_len;
406 if (! O_CLOEXEC)
407 fcntl (fd, F_SETFD, FD_CLOEXEC);
408 lock_info_len = strlen (lock_info_str);
409 err = 0;
410 if (emacs_write (fd, lock_info_str, lock_info_len) != lock_info_len
411 || fchmod (fd, S_IRUSR | S_IRGRP | S_IROTH) != 0)
412 err = errno;
413 /* There is no need to call fsync here, as the contents of
414 the lock file need not survive system crashes. */
415 if (emacs_close (fd) != 0)
416 err = errno;
417 if (!err && rename_lock_file (nonce, lfname, force) != 0)
418 err = errno;
419 if (err)
420 unlink (nonce);
423 SAFE_FREE ();
426 return err;
429 /* Lock the lock file named LFNAME.
430 If FORCE, do so even if it is already locked.
431 Return 0 if successful, an error number on failure. */
433 static int
434 lock_file_1 (char *lfname, bool force)
436 /* Call this first because it can GC. */
437 printmax_t boot = get_boot_time ();
439 Lisp_Object luser_name = Fuser_login_name (Qnil);
440 char const *user_name = STRINGP (luser_name) ? SSDATA (luser_name) : "";
441 Lisp_Object lhost_name = Fsystem_name ();
442 char const *host_name = STRINGP (lhost_name) ? SSDATA (lhost_name) : "";
443 char lock_info_str[MAX_LFINFO + 1];
444 printmax_t pid = getpid ();
446 if (boot)
448 if (sizeof lock_info_str
449 <= snprintf (lock_info_str, sizeof lock_info_str,
450 "%s@%s.%"pMd":%"pMd,
451 user_name, host_name, pid, boot))
452 return ENAMETOOLONG;
454 else if (sizeof lock_info_str
455 <= snprintf (lock_info_str, sizeof lock_info_str,
456 "%s@%s.%"pMd,
457 user_name, host_name, pid))
458 return ENAMETOOLONG;
460 return create_lock_file (lfname, lock_info_str, force);
463 /* Return true if times A and B are no more than one second apart. */
465 static bool
466 within_one_second (time_t a, time_t b)
468 return (a - b >= -1 && a - b <= 1);
471 /* On systems lacking ELOOP, test for an errno value that shouldn't occur. */
472 #ifndef ELOOP
473 # define ELOOP (-1)
474 #endif
476 /* Read the data for the lock file LFNAME into LFINFO. Read at most
477 MAX_LFINFO + 1 bytes. Return the number of bytes read, or -1
478 (setting errno) on error. */
480 static ptrdiff_t
481 read_lock_data (char *lfname, char lfinfo[MAX_LFINFO + 1])
483 ptrdiff_t nbytes;
485 while ((nbytes = readlinkat (AT_FDCWD, lfname, lfinfo, MAX_LFINFO + 1)) < 0
486 && errno == EINVAL)
488 int fd = emacs_open (lfname, O_RDONLY | O_NOFOLLOW, 0);
489 if (0 <= fd)
491 ptrdiff_t read_bytes = emacs_read (fd, lfinfo, MAX_LFINFO + 1);
492 int read_errno = errno;
493 if (emacs_close (fd) != 0)
494 return -1;
495 errno = read_errno;
496 return read_bytes;
499 if (errno != ELOOP)
500 return -1;
502 /* readlinkat saw a non-symlink, but emacs_open saw a symlink.
503 The former must have been removed and replaced by the latter.
504 Try again. */
505 maybe_quit ();
508 return nbytes;
511 /* Return 0 if nobody owns the lock file LFNAME or the lock is obsolete,
512 1 if another process owns it (and set OWNER (if non-null) to info),
513 2 if the current process owns it,
514 or -1 if something is wrong with the locking mechanism. */
516 static int
517 current_lock_owner (lock_info_type *owner, char *lfname)
519 int ret;
520 lock_info_type local_owner;
521 ptrdiff_t lfinfolen;
522 intmax_t pid, boot_time;
523 char *at, *dot, *lfinfo_end;
525 /* Even if the caller doesn't want the owner info, we still have to
526 read it to determine return value. */
527 if (!owner)
528 owner = &local_owner;
530 /* If nonexistent lock file, all is well; otherwise, got strange error. */
531 lfinfolen = read_lock_data (lfname, owner->user);
532 if (lfinfolen < 0)
533 return errno == ENOENT ? 0 : -1;
534 if (MAX_LFINFO < lfinfolen)
535 return -1;
536 owner->user[lfinfolen] = 0;
538 /* Parse USER@HOST.PID:BOOT_TIME. If can't parse, return -1. */
539 /* The USER is everything before the last @. */
540 owner->at = at = memrchr (owner->user, '@', lfinfolen);
541 if (!at)
542 return -1;
543 owner->dot = dot = strrchr (at, '.');
544 if (!dot)
545 return -1;
547 /* The PID is everything from the last '.' to the ':' or equivalent. */
548 if (! c_isdigit (dot[1]))
549 return -1;
550 errno = 0;
551 pid = strtoimax (dot + 1, &owner->colon, 10);
552 if (errno == ERANGE)
553 pid = -1;
555 /* After the ':' or equivalent, if there is one, comes the boot time. */
556 char *boot = owner->colon + 1;
557 switch (owner->colon[0])
559 case 0:
560 boot_time = 0;
561 lfinfo_end = owner->colon;
562 break;
564 case '\357':
565 /* Treat "\357\200\242" (U+F022 in UTF-8) as if it were ":" (Bug#24656).
566 This works around a bug in the Linux CIFS kernel client, which can
567 mistakenly transliterate ':' to U+F022 in symlink contents.
568 See <https://bugzilla.redhat.com/show_bug.cgi?id=1384153>. */
569 if (! (boot[0] == '\200' && boot[1] == '\242'))
570 return -1;
571 boot += 2;
572 /* Fall through. */
573 case ':':
574 if (! c_isdigit (boot[0]))
575 return -1;
576 boot_time = strtoimax (boot, &lfinfo_end, 10);
577 break;
579 default:
580 return -1;
582 if (lfinfo_end != owner->user + lfinfolen)
583 return -1;
585 /* On current host? */
586 Lisp_Object system_name = Fsystem_name ();
587 if (STRINGP (system_name)
588 && dot - (at + 1) == SBYTES (system_name)
589 && memcmp (at + 1, SSDATA (system_name), SBYTES (system_name)) == 0)
591 if (pid == getpid ())
592 ret = 2; /* We own it. */
593 else if (0 < pid && pid <= TYPE_MAXIMUM (pid_t)
594 && (kill (pid, 0) >= 0 || errno == EPERM)
595 && (boot_time == 0
596 || (boot_time <= TYPE_MAXIMUM (time_t)
597 && within_one_second (boot_time, get_boot_time ()))))
598 ret = 1; /* An existing process on this machine owns it. */
599 /* The owner process is dead or has a strange pid, so try to
600 zap the lockfile. */
601 else
602 return unlink (lfname);
604 else
605 { /* If we wanted to support the check for stale locks on remote machines,
606 here's where we'd do it. */
607 ret = 1;
610 return ret;
614 /* Lock the lock named LFNAME if possible.
615 Return 0 in that case.
616 Return positive if some other process owns the lock, and info about
617 that process in CLASHER.
618 Return -1 if cannot lock for any other reason. */
620 static int
621 lock_if_free (lock_info_type *clasher, char *lfname)
623 int err;
624 while ((err = lock_file_1 (lfname, 0)) == EEXIST)
626 switch (current_lock_owner (clasher, lfname))
628 case 2:
629 return 0; /* We ourselves locked it. */
630 case 1:
631 return 1; /* Someone else has it. */
632 case -1:
633 return -1; /* current_lock_owner returned strange error. */
636 /* We deleted a stale lock; try again to lock the file. */
639 return err ? -1 : 0;
642 /* lock_file locks file FN,
643 meaning it serves notice on the world that you intend to edit that file.
644 This should be done only when about to modify a file-visiting
645 buffer previously unmodified.
646 Do not (normally) call this for a buffer already modified,
647 as either the file is already locked, or the user has already
648 decided to go ahead without locking.
650 When this returns, either the lock is locked for us,
651 or lock creation failed,
652 or the user has said to go ahead without locking.
654 If the file is locked by someone else, this calls
655 ask-user-about-lock (a Lisp function) with two arguments,
656 the file name and info about the user who did the locking.
657 This function can signal an error, or return t meaning
658 take away the lock, or return nil meaning ignore the lock. */
660 void
661 lock_file (Lisp_Object fn)
663 Lisp_Object orig_fn, encoded_fn;
664 char *lfname;
665 lock_info_type lock_info;
666 USE_SAFE_ALLOCA;
668 /* Don't do locking while dumping Emacs.
669 Uncompressing wtmp files uses call-process, which does not work
670 in an uninitialized Emacs. */
671 if (! NILP (Vpurify_flag))
672 return;
674 orig_fn = fn;
675 fn = Fexpand_file_name (fn, Qnil);
676 #ifdef WINDOWSNT
677 /* Ensure we have only '/' separators, to avoid problems with
678 looking (inside fill_in_lock_file_name) for backslashes in file
679 names encoded by some DBCS codepage. */
680 dostounix_filename (SSDATA (fn));
681 #endif
682 encoded_fn = ENCODE_FILE (fn);
684 /* See if this file is visited and has changed on disk since it was
685 visited. */
687 register Lisp_Object subject_buf;
689 subject_buf = get_truename_buffer (orig_fn);
691 if (!NILP (subject_buf)
692 && NILP (Fverify_visited_file_modtime (subject_buf))
693 && !NILP (Ffile_exists_p (fn)))
694 call1 (intern ("userlock--ask-user-about-supersession-threat"), fn);
698 /* Don't do locking if the user has opted out. */
699 if (create_lockfiles)
702 /* Create the name of the lock-file for file fn */
703 MAKE_LOCK_NAME (lfname, encoded_fn);
705 /* Try to lock the lock. */
706 if (0 < lock_if_free (&lock_info, lfname))
708 /* Someone else has the lock. Consider breaking it. */
709 Lisp_Object attack;
710 char *dot = lock_info.dot;
711 ptrdiff_t pidlen = lock_info.colon - (dot + 1);
712 static char const replacement[] = " (pid ";
713 int replacementlen = sizeof replacement - 1;
714 memmove (dot + replacementlen, dot + 1, pidlen);
715 strcpy (dot + replacementlen + pidlen, ")");
716 memcpy (dot, replacement, replacementlen);
717 attack = call2 (intern ("ask-user-about-lock"), fn,
718 build_string (lock_info.user));
719 /* Take the lock if the user said so. */
720 if (!NILP (attack))
721 lock_file_1 (lfname, 1);
723 SAFE_FREE ();
727 void
728 unlock_file (Lisp_Object fn)
730 char *lfname;
731 USE_SAFE_ALLOCA;
733 fn = Fexpand_file_name (fn, Qnil);
734 fn = ENCODE_FILE (fn);
736 MAKE_LOCK_NAME (lfname, fn);
738 if (current_lock_owner (0, lfname) == 2)
739 unlink (lfname);
741 SAFE_FREE ();
744 #else /* MSDOS */
745 void
746 lock_file (Lisp_Object fn)
750 void
751 unlock_file (Lisp_Object fn)
755 #endif /* MSDOS */
757 void
758 unlock_all_files (void)
760 register Lisp_Object tail, buf;
761 register struct buffer *b;
763 FOR_EACH_LIVE_BUFFER (tail, buf)
765 b = XBUFFER (buf);
766 if (STRINGP (BVAR (b, file_truename))
767 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b))
768 unlock_file (BVAR (b, file_truename));
772 DEFUN ("lock-buffer", Flock_buffer, Slock_buffer,
773 0, 1, 0,
774 doc: /* Lock FILE, if current buffer is modified.
775 FILE defaults to current buffer's visited file,
776 or else nothing is done if current buffer isn't visiting a file.
778 If the option `create-lockfiles' is nil, this does nothing. */)
779 (Lisp_Object file)
781 if (NILP (file))
782 file = BVAR (current_buffer, file_truename);
783 else
784 CHECK_STRING (file);
785 if (SAVE_MODIFF < MODIFF
786 && !NILP (file))
787 lock_file (file);
788 return Qnil;
791 DEFUN ("unlock-buffer", Funlock_buffer, Sunlock_buffer,
792 0, 0, 0,
793 doc: /* Unlock the file visited in the current buffer.
794 If the buffer is not modified, this does nothing because the file
795 should not be locked in that case. */)
796 (void)
798 if (SAVE_MODIFF < MODIFF
799 && STRINGP (BVAR (current_buffer, file_truename)))
800 unlock_file (BVAR (current_buffer, file_truename));
801 return Qnil;
804 /* Unlock the file visited in buffer BUFFER. */
806 void
807 unlock_buffer (struct buffer *buffer)
809 if (BUF_SAVE_MODIFF (buffer) < BUF_MODIFF (buffer)
810 && STRINGP (BVAR (buffer, file_truename)))
811 unlock_file (BVAR (buffer, file_truename));
814 DEFUN ("file-locked-p", Ffile_locked_p, Sfile_locked_p, 1, 1, 0,
815 doc: /* Return a value indicating whether FILENAME is locked.
816 The value is nil if the FILENAME is not locked,
817 t if it is locked by you, else a string saying which user has locked it. */)
818 (Lisp_Object filename)
820 #ifdef MSDOS
821 return Qnil;
822 #else
823 Lisp_Object ret;
824 char *lfname;
825 int owner;
826 lock_info_type locker;
827 USE_SAFE_ALLOCA;
829 filename = Fexpand_file_name (filename, Qnil);
831 MAKE_LOCK_NAME (lfname, filename);
833 owner = current_lock_owner (&locker, lfname);
834 if (owner <= 0)
835 ret = Qnil;
836 else if (owner == 2)
837 ret = Qt;
838 else
839 ret = make_string (locker.user, locker.at - locker.user);
841 SAFE_FREE ();
842 return ret;
843 #endif
846 void
847 syms_of_filelock (void)
849 DEFVAR_LISP ("temporary-file-directory", Vtemporary_file_directory,
850 doc: /* The directory for writing temporary files. */);
851 Vtemporary_file_directory = Qnil;
853 DEFVAR_BOOL ("create-lockfiles", create_lockfiles,
854 doc: /* Non-nil means use lockfiles to avoid editing collisions. */);
855 create_lockfiles = 1;
857 defsubr (&Sunlock_buffer);
858 defsubr (&Slock_buffer);
859 defsubr (&Sfile_locked_p);