deps.mk: Update for recent changes: gnutls, gnulib imports, globals.h.
[emacs.git] / src / filelock.c
blob8fa871f56ef57fddb3d347dc128f17741f7ebed8
1 /* Lock files for editing.
2 Copyright (C) 1985-1987, 1993-1994, 1996, 1998-2011
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #include <signal.h>
25 #include <stdio.h>
26 #include <setjmp.h>
28 #ifdef HAVE_PWD_H
29 #include <pwd.h>
30 #endif
32 #include <sys/file.h>
33 #include <fcntl.h>
34 #include <unistd.h>
36 #ifdef __FreeBSD__
37 #include <sys/sysctl.h>
38 #endif /* __FreeBSD__ */
40 #include <errno.h>
42 #include "lisp.h"
43 #include "buffer.h"
44 #include "character.h"
45 #include "coding.h"
46 #include "systime.h"
48 #ifdef CLASH_DETECTION
50 #ifdef HAVE_UTMP_H
51 #include <utmp.h>
52 #endif
54 #if !defined (S_ISLNK) && defined (S_IFLNK)
55 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
56 #endif
58 /* A file whose last-modified time is just after the most recent boot.
59 Define this to be NULL to disable checking for this file. */
60 #ifndef BOOT_TIME_FILE
61 #define BOOT_TIME_FILE "/var/run/random-seed"
62 #endif
64 #ifndef WTMP_FILE
65 #define WTMP_FILE "/var/log/wtmp"
66 #endif
68 /* The strategy: to lock a file FN, create a symlink .#FN in FN's
69 directory, with link data `user@host.pid'. This avoids a single
70 mount (== failure) point for lock files.
72 When the host in the lock data is the current host, we can check if
73 the pid is valid with kill.
75 Otherwise, we could look at a separate file that maps hostnames to
76 reboot times to see if the remote pid can possibly be valid, since we
77 don't want Emacs to have to communicate via pipes or sockets or
78 whatever to other processes, either locally or remotely; rms says
79 that's too unreliable. Hence the separate file, which could
80 theoretically be updated by daemons running separately -- but this
81 whole idea is unimplemented; in practice, at least in our
82 environment, it seems such stale locks arise fairly infrequently, and
83 Emacs' standard methods of dealing with clashes suffice.
85 We use symlinks instead of normal files because (1) they can be
86 stored more efficiently on the filesystem, since the kernel knows
87 they will be small, and (2) all the info about the lock can be read
88 in a single system call (readlink). Although we could use regular
89 files to be useful on old systems lacking symlinks, nowadays
90 virtually all such systems are probably single-user anyway, so it
91 didn't seem worth the complication.
93 Similarly, we don't worry about a possible 14-character limit on
94 file names, because those are all the same systems that don't have
95 symlinks.
97 This is compatible with the locking scheme used by Interleaf (which
98 has contributed this implementation for Emacs), and was designed by
99 Ethan Jacobson, Kimbo Mundy, and others.
101 --karl@cs.umb.edu/karl@hq.ileaf.com. */
104 /* Return the time of the last system boot. */
106 static time_t boot_time;
107 static int boot_time_initialized;
109 #ifdef BOOT_TIME
110 static void get_boot_time_1 (const char *, int);
111 #endif
113 static time_t
114 get_boot_time (void)
116 #if defined (BOOT_TIME)
117 int counter;
118 #endif
120 if (boot_time_initialized)
121 return boot_time;
122 boot_time_initialized = 1;
124 #if defined (CTL_KERN) && defined (KERN_BOOTTIME)
126 int mib[2];
127 size_t size;
128 struct timeval boottime_val;
130 mib[0] = CTL_KERN;
131 mib[1] = KERN_BOOTTIME;
132 size = sizeof (boottime_val);
134 if (sysctl (mib, 2, &boottime_val, &size, NULL, 0) >= 0)
136 boot_time = boottime_val.tv_sec;
137 return boot_time;
140 #endif /* defined (CTL_KERN) && defined (KERN_BOOTTIME) */
142 if (BOOT_TIME_FILE)
144 struct stat st;
145 if (stat (BOOT_TIME_FILE, &st) == 0)
147 boot_time = st.st_mtime;
148 return boot_time;
152 #if defined (BOOT_TIME)
153 #ifndef CANNOT_DUMP
154 /* The utmp routines maintain static state.
155 Don't touch that state unless we are initialized,
156 since it might not survive dumping. */
157 if (! initialized)
158 return boot_time;
159 #endif /* not CANNOT_DUMP */
161 /* Try to get boot time from utmp before wtmp,
162 since utmp is typically much smaller than wtmp.
163 Passing a null pointer causes get_boot_time_1
164 to inspect the default file, namely utmp. */
165 get_boot_time_1 ((char *) 0, 0);
166 if (boot_time)
167 return boot_time;
169 /* Try to get boot time from the current wtmp file. */
170 get_boot_time_1 (WTMP_FILE, 1);
172 /* If we did not find a boot time in wtmp, look at wtmp, and so on. */
173 for (counter = 0; counter < 20 && ! boot_time; counter++)
175 char cmd_string[100];
176 Lisp_Object tempname, filename;
177 int delete_flag = 0;
179 filename = Qnil;
181 sprintf (cmd_string, "%s.%d", WTMP_FILE, counter);
182 tempname = build_string (cmd_string);
183 if (! NILP (Ffile_exists_p (tempname)))
184 filename = tempname;
185 else
187 sprintf (cmd_string, "%s.%d.gz", WTMP_FILE, counter);
188 tempname = build_string (cmd_string);
189 if (! NILP (Ffile_exists_p (tempname)))
191 Lisp_Object args[6];
193 /* The utmp functions on mescaline.gnu.org accept only
194 file names up to 8 characters long. Choose a 2
195 character long prefix, and call make_temp_file with
196 second arg non-zero, so that it will add not more
197 than 6 characters to the prefix. */
198 tempname = Fexpand_file_name (build_string ("wt"),
199 Vtemporary_file_directory);
200 tempname = make_temp_name (tempname, 1);
201 args[0] = Vshell_file_name;
202 args[1] = Qnil;
203 args[2] = Qnil;
204 args[3] = Qnil;
205 args[4] = build_string ("-c");
206 sprintf (cmd_string, "gunzip < %s.%d.gz > %s",
207 WTMP_FILE, counter, SDATA (tempname));
208 args[5] = build_string (cmd_string);
209 Fcall_process (6, args);
210 filename = tempname;
211 delete_flag = 1;
215 if (! NILP (filename))
217 get_boot_time_1 (SSDATA (filename), 1);
218 if (delete_flag)
219 unlink (SSDATA (filename));
223 return boot_time;
224 #else
225 return 0;
226 #endif
229 #ifdef BOOT_TIME
230 /* Try to get the boot time from wtmp file FILENAME.
231 This succeeds if that file contains a reboot record.
233 If FILENAME is zero, use the same file as before;
234 if no FILENAME has ever been specified, this is the utmp file.
235 Use the newest reboot record if NEWEST is nonzero,
236 the first reboot record otherwise.
237 Ignore all reboot records on or before BOOT_TIME.
238 Success is indicated by setting BOOT_TIME to a larger value. */
240 void
241 get_boot_time_1 (const char *filename, int newest)
243 struct utmp ut, *utp;
244 int desc;
246 if (filename)
248 /* On some versions of IRIX, opening a nonexistent file name
249 is likely to crash in the utmp routines. */
250 desc = emacs_open (filename, O_RDONLY, 0);
251 if (desc < 0)
252 return;
254 emacs_close (desc);
256 utmpname (filename);
259 setutent ();
261 while (1)
263 /* Find the next reboot record. */
264 ut.ut_type = BOOT_TIME;
265 utp = getutid (&ut);
266 if (! utp)
267 break;
268 /* Compare reboot times and use the newest one. */
269 if (utp->ut_time > boot_time)
271 boot_time = utp->ut_time;
272 if (! newest)
273 break;
275 /* Advance on element in the file
276 so that getutid won't repeat the same one. */
277 utp = getutent ();
278 if (! utp)
279 break;
281 endutent ();
283 #endif /* BOOT_TIME */
285 /* Here is the structure that stores information about a lock. */
287 typedef struct
289 char *user;
290 char *host;
291 unsigned long pid;
292 time_t boot_time;
293 } lock_info_type;
295 /* When we read the info back, we might need this much more,
296 enough for decimal representation plus null. */
297 #define LOCK_PID_MAX (4 * sizeof (unsigned long))
299 /* Free the two dynamically-allocated pieces in PTR. */
300 #define FREE_LOCK_INFO(i) do { xfree ((i).user); xfree ((i).host); } while (0)
303 /* Write the name of the lock file for FN into LFNAME. Length will be
304 that of FN plus two more for the leading `.#' plus 1 for the
305 trailing period plus one for the digit after it plus one for the
306 null. */
307 #define MAKE_LOCK_NAME(lock, file) \
308 (lock = (char *) alloca (SBYTES (file) + 2 + 1 + 1 + 1), \
309 fill_in_lock_file_name (lock, (file)))
311 static void
312 fill_in_lock_file_name (register char *lockfile, register Lisp_Object fn)
314 register char *p;
315 struct stat st;
316 int count = 0;
318 strcpy (lockfile, SSDATA (fn));
320 /* Shift the nondirectory part of the file name (including the null)
321 right two characters. Here is one of the places where we'd have to
322 do something to support 14-character-max file names. */
323 for (p = lockfile + strlen (lockfile); p != lockfile && *p != '/'; p--)
324 p[2] = *p;
326 /* Insert the `.#'. */
327 p[1] = '.';
328 p[2] = '#';
330 p = p + strlen (p);
332 while (lstat (lockfile, &st) == 0 && !S_ISLNK (st.st_mode))
334 if (count > 9)
336 *p = '\0';
337 return;
339 sprintf (p, ".%d", count++);
343 /* Lock the lock file named LFNAME.
344 If FORCE is nonzero, we do so even if it is already locked.
345 Return 1 if successful, 0 if not. */
347 static int
348 lock_file_1 (char *lfname, int force)
350 register int err;
351 time_t boot_time;
352 const char *user_name;
353 const char *host_name;
354 char *lock_info_str;
356 /* Call this first because it can GC. */
357 boot_time = get_boot_time ();
359 if (STRINGP (Fuser_login_name (Qnil)))
360 user_name = SSDATA (Fuser_login_name (Qnil));
361 else
362 user_name = "";
363 if (STRINGP (Fsystem_name ()))
364 host_name = SSDATA (Fsystem_name ());
365 else
366 host_name = "";
367 lock_info_str = (char *)alloca (strlen (user_name) + strlen (host_name)
368 + LOCK_PID_MAX + 30);
370 if (boot_time)
371 sprintf (lock_info_str, "%s@%s.%lu:%lu", user_name, host_name,
372 (unsigned long) getpid (), (unsigned long) boot_time);
373 else
374 sprintf (lock_info_str, "%s@%s.%lu", user_name, host_name,
375 (unsigned long) getpid ());
377 err = symlink (lock_info_str, lfname);
378 if (errno == EEXIST && force)
380 unlink (lfname);
381 err = symlink (lock_info_str, lfname);
384 return err == 0;
387 /* Return 1 if times A and B are no more than one second apart. */
390 within_one_second (time_t a, time_t b)
392 return (a - b >= -1 && a - b <= 1);
395 /* Return 0 if nobody owns the lock file LFNAME or the lock is obsolete,
396 1 if another process owns it (and set OWNER (if non-null) to info),
397 2 if the current process owns it,
398 or -1 if something is wrong with the locking mechanism. */
400 static int
401 current_lock_owner (lock_info_type *owner, char *lfname)
403 int len, ret;
404 int local_owner = 0;
405 char *at, *dot, *colon;
406 char *lfinfo = 0;
407 int bufsize = 50;
408 /* Read arbitrarily-long contents of symlink. Similar code in
409 file-symlink-p in fileio.c. */
412 bufsize *= 2;
413 lfinfo = (char *) xrealloc (lfinfo, bufsize);
414 errno = 0;
415 len = readlink (lfname, lfinfo, bufsize);
416 #ifdef ERANGE
417 /* HP-UX reports ERANGE if the buffer is too small. */
418 if (len == -1 && errno == ERANGE)
419 len = bufsize;
420 #endif
422 while (len >= bufsize);
424 /* If nonexistent lock file, all is well; otherwise, got strange error. */
425 if (len == -1)
427 xfree (lfinfo);
428 return errno == ENOENT ? 0 : -1;
431 /* Link info exists, so `len' is its length. Null terminate. */
432 lfinfo[len] = 0;
434 /* Even if the caller doesn't want the owner info, we still have to
435 read it to determine return value, so allocate it. */
436 if (!owner)
438 owner = (lock_info_type *) alloca (sizeof (lock_info_type));
439 local_owner = 1;
442 /* Parse USER@HOST.PID:BOOT_TIME. If can't parse, return -1. */
443 /* The USER is everything before the last @. */
444 at = strrchr (lfinfo, '@');
445 dot = strrchr (lfinfo, '.');
446 if (!at || !dot)
448 xfree (lfinfo);
449 return -1;
451 len = at - lfinfo;
452 owner->user = (char *) xmalloc (len + 1);
453 strncpy (owner->user, lfinfo, len);
454 owner->user[len] = 0;
456 /* The PID is everything from the last `.' to the `:'. */
457 owner->pid = atoi (dot + 1);
458 colon = dot;
459 while (*colon && *colon != ':')
460 colon++;
461 /* After the `:', if there is one, comes the boot time. */
462 if (*colon == ':')
463 owner->boot_time = atoi (colon + 1);
464 else
465 owner->boot_time = 0;
467 /* The host is everything in between. */
468 len = dot - at - 1;
469 owner->host = (char *) xmalloc (len + 1);
470 strncpy (owner->host, at + 1, len);
471 owner->host[len] = 0;
473 /* We're done looking at the link info. */
474 xfree (lfinfo);
476 /* On current host? */
477 if (STRINGP (Fsystem_name ())
478 && strcmp (owner->host, SSDATA (Fsystem_name ())) == 0)
480 if (owner->pid == getpid ())
481 ret = 2; /* We own it. */
482 else if (owner->pid > 0
483 && (kill (owner->pid, 0) >= 0 || errno == EPERM)
484 && (owner->boot_time == 0
485 || within_one_second (owner->boot_time, get_boot_time ())))
486 ret = 1; /* An existing process on this machine owns it. */
487 /* The owner process is dead or has a strange pid (<=0), so try to
488 zap the lockfile. */
489 else if (unlink (lfname) < 0)
490 ret = -1;
491 else
492 ret = 0;
494 else
495 { /* If we wanted to support the check for stale locks on remote machines,
496 here's where we'd do it. */
497 ret = 1;
500 /* Avoid garbage. */
501 if (local_owner || ret <= 0)
503 FREE_LOCK_INFO (*owner);
505 return ret;
509 /* Lock the lock named LFNAME if possible.
510 Return 0 in that case.
511 Return positive if some other process owns the lock, and info about
512 that process in CLASHER.
513 Return -1 if cannot lock for any other reason. */
515 static int
516 lock_if_free (lock_info_type *clasher, register char *lfname)
518 while (lock_file_1 (lfname, 0) == 0)
520 int locker;
522 if (errno != EEXIST)
523 return -1;
525 locker = current_lock_owner (clasher, lfname);
526 if (locker == 2)
528 FREE_LOCK_INFO (*clasher);
529 return 0; /* We ourselves locked it. */
531 else if (locker == 1)
532 return 1; /* Someone else has it. */
533 else if (locker == -1)
534 return -1; /* current_lock_owner returned strange error. */
536 /* We deleted a stale lock; try again to lock the file. */
538 return 0;
541 /* lock_file locks file FN,
542 meaning it serves notice on the world that you intend to edit that file.
543 This should be done only when about to modify a file-visiting
544 buffer previously unmodified.
545 Do not (normally) call this for a buffer already modified,
546 as either the file is already locked, or the user has already
547 decided to go ahead without locking.
549 When this returns, either the lock is locked for us,
550 or the user has said to go ahead without locking.
552 If the file is locked by someone else, this calls
553 ask-user-about-lock (a Lisp function) with two arguments,
554 the file name and info about the user who did the locking.
555 This function can signal an error, or return t meaning
556 take away the lock, or return nil meaning ignore the lock. */
558 void
559 lock_file (Lisp_Object fn)
561 register Lisp_Object attack, orig_fn, encoded_fn;
562 register char *lfname, *locker;
563 lock_info_type lock_info;
564 struct gcpro gcpro1;
566 /* Don't do locking while dumping Emacs.
567 Uncompressing wtmp files uses call-process, which does not work
568 in an uninitialized Emacs. */
569 if (! NILP (Vpurify_flag))
570 return;
572 orig_fn = fn;
573 GCPRO1 (fn);
574 fn = Fexpand_file_name (fn, Qnil);
575 encoded_fn = ENCODE_FILE (fn);
577 /* Create the name of the lock-file for file fn */
578 MAKE_LOCK_NAME (lfname, encoded_fn);
580 /* See if this file is visited and has changed on disk since it was
581 visited. */
583 register Lisp_Object subject_buf;
585 subject_buf = get_truename_buffer (orig_fn);
587 if (!NILP (subject_buf)
588 && NILP (Fverify_visited_file_modtime (subject_buf))
589 && !NILP (Ffile_exists_p (fn)))
590 call1 (intern ("ask-user-about-supersession-threat"), fn);
593 UNGCPRO;
595 /* Try to lock the lock. */
596 if (lock_if_free (&lock_info, lfname) <= 0)
597 /* Return now if we have locked it, or if lock creation failed */
598 return;
600 /* Else consider breaking the lock */
601 locker = (char *) alloca (strlen (lock_info.user) + strlen (lock_info.host)
602 + LOCK_PID_MAX + 9);
603 sprintf (locker, "%s@%s (pid %lu)", lock_info.user, lock_info.host,
604 lock_info.pid);
605 FREE_LOCK_INFO (lock_info);
607 attack = call2 (intern ("ask-user-about-lock"), fn, build_string (locker));
608 if (!NILP (attack))
609 /* User says take the lock */
611 lock_file_1 (lfname, 1);
612 return;
614 /* User says ignore the lock */
617 void
618 unlock_file (register Lisp_Object fn)
620 register char *lfname;
622 fn = Fexpand_file_name (fn, Qnil);
623 fn = ENCODE_FILE (fn);
625 MAKE_LOCK_NAME (lfname, fn);
627 if (current_lock_owner (0, lfname) == 2)
628 unlink (lfname);
631 void
632 unlock_all_files (void)
634 register Lisp_Object tail;
635 register struct buffer *b;
637 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
639 b = XBUFFER (XCDR (XCAR (tail)));
640 if (STRINGP (b->file_truename) && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b))
642 unlock_file(b->file_truename);
647 DEFUN ("lock-buffer", Flock_buffer, Slock_buffer,
648 0, 1, 0,
649 doc: /* Lock FILE, if current buffer is modified.
650 FILE defaults to current buffer's visited file,
651 or else nothing is done if current buffer isn't visiting a file. */)
652 (Lisp_Object file)
654 if (NILP (file))
655 file = current_buffer->file_truename;
656 else
657 CHECK_STRING (file);
658 if (SAVE_MODIFF < MODIFF
659 && !NILP (file))
660 lock_file (file);
661 return Qnil;
664 DEFUN ("unlock-buffer", Funlock_buffer, Sunlock_buffer,
665 0, 0, 0,
666 doc: /* Unlock the file visited in the current buffer.
667 If the buffer is not modified, this does nothing because the file
668 should not be locked in that case. */)
669 (void)
671 if (SAVE_MODIFF < MODIFF
672 && STRINGP (current_buffer->file_truename))
673 unlock_file (current_buffer->file_truename);
674 return Qnil;
677 /* Unlock the file visited in buffer BUFFER. */
679 void
680 unlock_buffer (struct buffer *buffer)
682 if (BUF_SAVE_MODIFF (buffer) < BUF_MODIFF (buffer)
683 && STRINGP (buffer->file_truename))
684 unlock_file (buffer->file_truename);
687 DEFUN ("file-locked-p", Ffile_locked_p, Sfile_locked_p, 1, 1, 0,
688 doc: /* Return a value indicating whether FILENAME is locked.
689 The value is nil if the FILENAME is not locked,
690 t if it is locked by you, else a string saying which user has locked it. */)
691 (Lisp_Object filename)
693 Lisp_Object ret;
694 register char *lfname;
695 int owner;
696 lock_info_type locker;
698 filename = Fexpand_file_name (filename, Qnil);
700 MAKE_LOCK_NAME (lfname, filename);
702 owner = current_lock_owner (&locker, lfname);
703 if (owner <= 0)
704 ret = Qnil;
705 else if (owner == 2)
706 ret = Qt;
707 else
708 ret = build_string (locker.user);
710 if (owner > 0)
711 FREE_LOCK_INFO (locker);
713 return ret;
716 /* Initialization functions. */
718 void
719 init_filelock (void)
721 boot_time = 0;
722 boot_time_initialized = 0;
725 #endif /* CLASH_DETECTION */
727 void
728 syms_of_filelock (void)
730 DEFVAR_LISP ("temporary-file-directory", Vtemporary_file_directory,
731 doc: /* The directory for writing temporary files. */);
732 Vtemporary_file_directory = Qnil;
734 #ifdef CLASH_DETECTION
735 defsubr (&Sunlock_buffer);
736 defsubr (&Slock_buffer);
737 defsubr (&Sfile_locked_p);
738 #endif