Merge from trunk; up to 2013-02-18T01:30:27Z!monnier@iro.umontreal.ca.
[bpt/emacs.git] / src / filelock.c
CommitLineData
b97771fc 1/* Lock files for editing.
ab422c4d
PE
2 Copyright (C) 1985-1987, 1993-1994, 1996, 1998-2013 Free Software
3 Foundation, Inc.
8489eb67
RS
4
5This file is part of GNU Emacs.
6
9ec0b715 7GNU Emacs is free software: you can redistribute it and/or modify
8489eb67 8it under the terms of the GNU General Public License as published by
9ec0b715
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
8489eb67
RS
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
9ec0b715 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
8489eb67
RS
19
20
68c45bf0 21#include <config.h>
8489eb67
RS
22#include <sys/types.h>
23#include <sys/stat.h>
dfcf069d 24#include <signal.h>
2decc5a9 25#include <stdio.h>
bfb61299 26
5b9c0a1d 27#ifdef HAVE_PWD_H
8489eb67 28#include <pwd.h>
5b9c0a1d 29#endif
bfb61299 30
8489eb67 31#include <sys/file.h>
8489eb67 32#include <fcntl.h>
dfcf069d 33#include <unistd.h>
dfcf069d 34
f805a125 35#ifdef __FreeBSD__
f805a125
KH
36#include <sys/sysctl.h>
37#endif /* __FreeBSD__ */
38
e5ef3cdf 39#include <errno.h>
e5ef3cdf 40
8489eb67 41#include "lisp.h"
d2f6dae8 42#include "character.h"
e5560ff7 43#include "buffer.h"
f4a4528d 44#include "coding.h"
9177d978 45#include "systime.h"
8489eb67 46
8489eb67 47#ifdef CLASH_DETECTION
e788eecc 48
c6d09b8d 49#ifdef HAVE_UTMP_H
e788eecc 50#include <utmp.h>
c6d09b8d 51#endif
77e544a4 52
a48de9b2
PE
53/* A file whose last-modified time is just after the most recent boot.
54 Define this to be NULL to disable checking for this file. */
55#ifndef BOOT_TIME_FILE
56#define BOOT_TIME_FILE "/var/run/random-seed"
57#endif
58
77e544a4
RS
59#ifndef WTMP_FILE
60#define WTMP_FILE "/var/log/wtmp"
61#endif
177c0ea7 62
8dbbc384
RS
63/* The strategy: to lock a file FN, create a symlink .#FN in FN's
64 directory, with link data `user@host.pid'. This avoids a single
65 mount (== failure) point for lock files.
66
67 When the host in the lock data is the current host, we can check if
68 the pid is valid with kill.
177c0ea7 69
8dbbc384
RS
70 Otherwise, we could look at a separate file that maps hostnames to
71 reboot times to see if the remote pid can possibly be valid, since we
72 don't want Emacs to have to communicate via pipes or sockets or
73 whatever to other processes, either locally or remotely; rms says
74 that's too unreliable. Hence the separate file, which could
75 theoretically be updated by daemons running separately -- but this
76 whole idea is unimplemented; in practice, at least in our
1c4f857c 77 environment, it seems such stale locks arise fairly infrequently, and
8dbbc384
RS
78 Emacs' standard methods of dealing with clashes suffice.
79
80 We use symlinks instead of normal files because (1) they can be
81 stored more efficiently on the filesystem, since the kernel knows
82 they will be small, and (2) all the info about the lock can be read
83 in a single system call (readlink). Although we could use regular
1c4f857c 84 files to be useful on old systems lacking symlinks, nowadays
8dbbc384
RS
85 virtually all such systems are probably single-user anyway, so it
86 didn't seem worth the complication.
177c0ea7 87
8dbbc384
RS
88 Similarly, we don't worry about a possible 14-character limit on
89 file names, because those are all the same systems that don't have
90 symlinks.
177c0ea7 91
8dbbc384
RS
92 This is compatible with the locking scheme used by Interleaf (which
93 has contributed this implementation for Emacs), and was designed by
94 Ethan Jacobson, Kimbo Mundy, and others.
177c0ea7 95
8dbbc384 96 --karl@cs.umb.edu/karl@hq.ileaf.com. */
8489eb67 97
8dbbc384 98\f
15e88d21
RS
99/* Return the time of the last system boot. */
100
101static time_t boot_time;
f75d7a91 102static bool boot_time_initialized;
15e88d21 103
2f2500ef 104#ifdef BOOT_TIME
f75d7a91 105static void get_boot_time_1 (const char *, bool);
2f2500ef
DL
106#endif
107
15e88d21 108static time_t
971de7fb 109get_boot_time (void)
15e88d21 110{
9d2818d6 111#if defined (BOOT_TIME)
9177d978 112 int counter;
2decc5a9 113#endif
15e88d21 114
b97771fc 115 if (boot_time_initialized)
15e88d21 116 return boot_time;
b97771fc 117 boot_time_initialized = 1;
15e88d21 118
f805a125
KH
119#if defined (CTL_KERN) && defined (KERN_BOOTTIME)
120 {
121 int mib[2];
122 size_t size;
123 struct timeval boottime_val;
124
125 mib[0] = CTL_KERN;
126 mib[1] = KERN_BOOTTIME;
127 size = sizeof (boottime_val);
128
129 if (sysctl (mib, 2, &boottime_val, &size, NULL, 0) >= 0)
130 {
131 boot_time = boottime_val.tv_sec;
132 return boot_time;
133 }
134 }
135#endif /* defined (CTL_KERN) && defined (KERN_BOOTTIME) */
9177d978 136
a48de9b2
PE
137 if (BOOT_TIME_FILE)
138 {
139 struct stat st;
140 if (stat (BOOT_TIME_FILE, &st) == 0)
141 {
142 boot_time = st.st_mtime;
143 return boot_time;
144 }
145 }
146
9d2818d6 147#if defined (BOOT_TIME)
b97771fc
RS
148#ifndef CANNOT_DUMP
149 /* The utmp routines maintain static state.
150 Don't touch that state unless we are initialized,
151 since it might not survive dumping. */
152 if (! initialized)
153 return boot_time;
154#endif /* not CANNOT_DUMP */
155
156 /* Try to get boot time from utmp before wtmp,
157 since utmp is typically much smaller than wtmp.
158 Passing a null pointer causes get_boot_time_1
159 to inspect the default file, namely utmp. */
160 get_boot_time_1 ((char *) 0, 0);
161 if (boot_time)
162 return boot_time;
163
9177d978 164 /* Try to get boot time from the current wtmp file. */
b97771fc 165 get_boot_time_1 (WTMP_FILE, 1);
9177d978
RS
166
167 /* If we did not find a boot time in wtmp, look at wtmp, and so on. */
b97771fc 168 for (counter = 0; counter < 20 && ! boot_time; counter++)
9177d978 169 {
882f0d81 170 char cmd_string[sizeof WTMP_FILE ".19.gz"];
9177d978 171 Lisp_Object tempname, filename;
f75d7a91 172 bool delete_flag = 0;
9177d978
RS
173
174 filename = Qnil;
175
a8290ec3
DA
176 tempname = make_formatted_string
177 (cmd_string, "%s.%d", WTMP_FILE, counter);
29a2adb0 178 if (! NILP (Ffile_exists_p (tempname)))
9177d978
RS
179 filename = tempname;
180 else
181 {
a8290ec3
DA
182 tempname = make_formatted_string (cmd_string, "%s.%d.gz",
183 WTMP_FILE, counter);
9177d978
RS
184 if (! NILP (Ffile_exists_p (tempname)))
185 {
186 Lisp_Object args[6];
f1d367aa
GM
187
188 /* The utmp functions on mescaline.gnu.org accept only
189 file names up to 8 characters long. Choose a 2
190 character long prefix, and call make_temp_file with
191 second arg non-zero, so that it will add not more
192 than 6 characters to the prefix. */
882f0d81 193 filename = Fexpand_file_name (build_string ("wt"),
5f8d6a10 194 Vtemporary_file_directory);
882f0d81
PE
195 filename = make_temp_name (filename, 1);
196 args[0] = build_string ("gzip");
9177d978 197 args[1] = Qnil;
882f0d81 198 args[2] = list2 (QCfile, filename);
9177d978 199 args[3] = Qnil;
882f0d81
PE
200 args[4] = build_string ("-cd");
201 args[5] = tempname;
9177d978 202 Fcall_process (6, args);
9177d978
RS
203 delete_flag = 1;
204 }
205 }
206
207 if (! NILP (filename))
208 {
42a5b22f 209 get_boot_time_1 (SSDATA (filename), 1);
9177d978 210 if (delete_flag)
42a5b22f 211 unlink (SSDATA (filename));
9177d978
RS
212 }
213 }
214
215 return boot_time;
216#else
217 return 0;
218#endif
219}
220
e9f22ced 221#ifdef BOOT_TIME
9177d978
RS
222/* Try to get the boot time from wtmp file FILENAME.
223 This succeeds if that file contains a reboot record.
9177d978 224
b97771fc
RS
225 If FILENAME is zero, use the same file as before;
226 if no FILENAME has ever been specified, this is the utmp file.
f75d7a91 227 Use the newest reboot record if NEWEST,
b97771fc
RS
228 the first reboot record otherwise.
229 Ignore all reboot records on or before BOOT_TIME.
230 Success is indicated by setting BOOT_TIME to a larger value. */
231
2f2500ef 232void
f75d7a91 233get_boot_time_1 (const char *filename, bool newest)
9177d978
RS
234{
235 struct utmp ut, *utp;
77e544a4
RS
236 int desc;
237
b97771fc
RS
238 if (filename)
239 {
240 /* On some versions of IRIX, opening a nonexistent file name
241 is likely to crash in the utmp routines. */
68c45bf0 242 desc = emacs_open (filename, O_RDONLY, 0);
b97771fc
RS
243 if (desc < 0)
244 return;
245
68c45bf0 246 emacs_close (desc);
b97771fc
RS
247
248 utmpname (filename);
249 }
9177d978 250
c321b190 251 setutent ();
b97771fc 252
c321b190
RS
253 while (1)
254 {
255 /* Find the next reboot record. */
256 ut.ut_type = BOOT_TIME;
257 utp = getutid (&ut);
258 if (! utp)
259 break;
260 /* Compare reboot times and use the newest one. */
261 if (utp->ut_time > boot_time)
b97771fc
RS
262 {
263 boot_time = utp->ut_time;
264 if (! newest)
265 break;
266 }
c321b190
RS
267 /* Advance on element in the file
268 so that getutid won't repeat the same one. */
269 utp = getutent ();
270 if (! utp)
271 break;
272 }
15e88d21 273 endutent ();
15e88d21 274}
e9f22ced 275#endif /* BOOT_TIME */
15e88d21 276\f
8dbbc384 277/* Here is the structure that stores information about a lock. */
32676c08 278
8dbbc384
RS
279typedef struct
280{
281 char *user;
282 char *host;
882f0d81 283 pid_t pid;
15e88d21 284 time_t boot_time;
8dbbc384 285} lock_info_type;
32676c08 286
8dbbc384
RS
287/* Free the two dynamically-allocated pieces in PTR. */
288#define FREE_LOCK_INFO(i) do { xfree ((i).user); xfree ((i).host); } while (0)
e31fbc7a 289
e31fbc7a 290
8dbbc384 291/* Write the name of the lock file for FN into LFNAME. Length will be
c1355e1f
GM
292 that of FN plus two more for the leading `.#' plus 1 for the
293 trailing period plus one for the digit after it plus one for the
294 null. */
7b92975f 295#define MAKE_LOCK_NAME(lock, file) \
38182d90 296 (lock = alloca (SBYTES (file) + 2 + 1 + 1 + 1), \
8dbbc384 297 fill_in_lock_file_name (lock, (file)))
e31fbc7a 298
8dbbc384 299static void
971de7fb 300fill_in_lock_file_name (register char *lockfile, register Lisp_Object fn)
e31fbc7a 301{
c293e30c 302 ptrdiff_t length = SBYTES (fn);
8dbbc384 303 register char *p;
c1355e1f
GM
304 struct stat st;
305 int count = 0;
8dbbc384 306
42a5b22f 307 strcpy (lockfile, SSDATA (fn));
8dbbc384
RS
308
309 /* Shift the nondirectory part of the file name (including the null)
310 right two characters. Here is one of the places where we'd have to
311 do something to support 14-character-max file names. */
c293e30c 312 for (p = lockfile + length; p != lockfile && *p != '/'; p--)
8dbbc384 313 p[2] = *p;
177c0ea7 314
8dbbc384
RS
315 /* Insert the `.#'. */
316 p[1] = '.';
317 p[2] = '#';
c1355e1f 318
c293e30c 319 p = p + length + 2;
c1355e1f
GM
320
321 while (lstat (lockfile, &st) == 0 && !S_ISLNK (st.st_mode))
322 {
323 if (count > 9)
324 {
325 *p = '\0';
326 return;
327 }
328 sprintf (p, ".%d", count++);
329 }
8dbbc384 330}
e31fbc7a 331
8dbbc384 332/* Lock the lock file named LFNAME.
f75d7a91
PE
333 If FORCE, do so even if it is already locked.
334 Return true if successful. */
e31fbc7a 335
f75d7a91
PE
336static bool
337lock_file_1 (char *lfname, bool force)
8dbbc384 338{
98c6f1e3 339 int err;
b5cd1905
PE
340 int symlink_errno;
341 USE_SAFE_ALLOCA;
662c2ef2 342
4ba93ac0 343 /* Call this first because it can GC. */
98c6f1e3
PE
344 printmax_t boot = get_boot_time ();
345
346 Lisp_Object luser_name = Fuser_login_name (Qnil);
347 char const *user_name = STRINGP (luser_name) ? SSDATA (luser_name) : "";
348 Lisp_Object lhost_name = Fsystem_name ();
349 char const *host_name = STRINGP (lhost_name) ? SSDATA (lhost_name) : "";
350 ptrdiff_t lock_info_size = (strlen (user_name) + strlen (host_name)
351 + 2 * INT_STRLEN_BOUND (printmax_t)
352 + sizeof "@.:");
353 char *lock_info_str = SAFE_ALLOCA (lock_info_size);
354 printmax_t pid = getpid ();
8dbbc384 355
b5cd1905
PE
356 esprintf (lock_info_str, boot ? "%s@%s.%"pMd":%"pMd : "%s@%s.%"pMd,
357 user_name, host_name, pid, boot);
8dbbc384
RS
358
359 err = symlink (lock_info_str, lfname);
360 if (errno == EEXIST && force)
e31fbc7a 361 {
8dbbc384
RS
362 unlink (lfname);
363 err = symlink (lock_info_str, lfname);
e31fbc7a 364 }
e31fbc7a 365
b5cd1905
PE
366 symlink_errno = errno;
367 SAFE_FREE ();
368 errno = symlink_errno;
8dbbc384
RS
369 return err == 0;
370}
e31fbc7a 371
f75d7a91 372/* Return true if times A and B are no more than one second apart. */
32676c08 373
f75d7a91 374static bool
971de7fb 375within_one_second (time_t a, time_t b)
9177d978
RS
376{
377 return (a - b >= -1 && a - b <= 1);
378}
8dbbc384
RS
379\f
380/* Return 0 if nobody owns the lock file LFNAME or the lock is obsolete,
381 1 if another process owns it (and set OWNER (if non-null) to info),
382 2 if the current process owns it,
383 or -1 if something is wrong with the locking mechanism. */
e31fbc7a 384
8dbbc384 385static int
971de7fb 386current_lock_owner (lock_info_type *owner, char *lfname)
32676c08 387{
d1fdcab7 388 int ret;
882f0d81
PE
389 ptrdiff_t len;
390 lock_info_type local_owner;
391 intmax_t n;
15e88d21 392 char *at, *dot, *colon;
8654f9d7
PE
393 Lisp_Object lfinfo_object = emacs_readlinkat (AT_FDCWD, lfname);
394 char *lfinfo;
395 struct gcpro gcpro1;
177c0ea7 396
8dbbc384 397 /* If nonexistent lock file, all is well; otherwise, got strange error. */
8654f9d7 398 if (NILP (lfinfo_object))
d1fdcab7 399 return errno == ENOENT ? 0 : -1;
8654f9d7 400 lfinfo = SSDATA (lfinfo_object);
177c0ea7 401
8dbbc384 402 /* Even if the caller doesn't want the owner info, we still have to
882f0d81 403 read it to determine return value. */
8dbbc384 404 if (!owner)
882f0d81 405 owner = &local_owner;
177c0ea7 406
15e88d21 407 /* Parse USER@HOST.PID:BOOT_TIME. If can't parse, return -1. */
50624218 408 /* The USER is everything before the last @. */
8966b757
AS
409 at = strrchr (lfinfo, '@');
410 dot = strrchr (lfinfo, '.');
15e88d21 411 if (!at || !dot)
8654f9d7 412 return -1;
8dbbc384 413 len = at - lfinfo;
8654f9d7 414 GCPRO1 (lfinfo_object);
23f86fce 415 owner->user = xmalloc (len + 1);
882f0d81 416 memcpy (owner->user, lfinfo, len);
8dbbc384 417 owner->user[len] = 0;
177c0ea7 418
15e88d21 419 /* The PID is everything from the last `.' to the `:'. */
882f0d81
PE
420 errno = 0;
421 n = strtoimax (dot + 1, NULL, 10);
422 owner->pid =
423 ((0 <= n && n <= TYPE_MAXIMUM (pid_t)
424 && (TYPE_MAXIMUM (pid_t) < INTMAX_MAX || errno != ERANGE))
425 ? n : 0);
426
427 colon = strchr (dot + 1, ':');
15e88d21 428 /* After the `:', if there is one, comes the boot time. */
882f0d81
PE
429 n = 0;
430 if (colon)
431 {
432 errno = 0;
433 n = strtoimax (colon + 1, NULL, 10);
434 }
435 owner->boot_time =
436 ((0 <= n && n <= TYPE_MAXIMUM (time_t)
437 && (TYPE_MAXIMUM (time_t) < INTMAX_MAX || errno != ERANGE))
438 ? n : 0);
32676c08 439
8dbbc384
RS
440 /* The host is everything in between. */
441 len = dot - at - 1;
23f86fce 442 owner->host = xmalloc (len + 1);
882f0d81 443 memcpy (owner->host, at + 1, len);
8dbbc384 444 owner->host[len] = 0;
32676c08 445
8dbbc384 446 /* We're done looking at the link info. */
8654f9d7 447 UNGCPRO;
177c0ea7 448
8dbbc384 449 /* On current host? */
662c2ef2 450 if (STRINGP (Fsystem_name ())
42a5b22f 451 && strcmp (owner->host, SSDATA (Fsystem_name ())) == 0)
32676c08 452 {
8dbbc384
RS
453 if (owner->pid == getpid ())
454 ret = 2; /* We own it. */
72dcef0e 455 else if (owner->pid > 0
15e88d21
RS
456 && (kill (owner->pid, 0) >= 0 || errno == EPERM)
457 && (owner->boot_time == 0
9177d978 458 || within_one_second (owner->boot_time, get_boot_time ())))
8dbbc384 459 ret = 1; /* An existing process on this machine owns it. */
8dbbc384
RS
460 /* The owner process is dead or has a strange pid (<=0), so try to
461 zap the lockfile. */
72dcef0e 462 else if (unlink (lfname) < 0)
8dbbc384 463 ret = -1;
72dcef0e
RS
464 else
465 ret = 0;
32676c08 466 }
8dbbc384
RS
467 else
468 { /* If we wanted to support the check for stale locks on remote machines,
469 here's where we'd do it. */
470 ret = 1;
471 }
177c0ea7 472
8dbbc384 473 /* Avoid garbage. */
882f0d81 474 if (owner == &local_owner || ret <= 0)
8dbbc384
RS
475 {
476 FREE_LOCK_INFO (*owner);
477 }
478 return ret;
32676c08
JB
479}
480
8dbbc384
RS
481\f
482/* Lock the lock named LFNAME if possible.
483 Return 0 in that case.
484 Return positive if some other process owns the lock, and info about
485 that process in CLASHER.
486 Return -1 if cannot lock for any other reason. */
8489eb67 487
8dbbc384 488static int
971de7fb 489lock_if_free (lock_info_type *clasher, register char *lfname)
8dbbc384 490{
f75d7a91 491 while (! lock_file_1 (lfname, 0))
8dbbc384
RS
492 {
493 int locker;
e0e0205b 494
8dbbc384
RS
495 if (errno != EEXIST)
496 return -1;
177c0ea7 497
8dbbc384
RS
498 locker = current_lock_owner (clasher, lfname);
499 if (locker == 2)
500 {
501 FREE_LOCK_INFO (*clasher);
502 return 0; /* We ourselves locked it. */
503 }
504 else if (locker == 1)
505 return 1; /* Someone else has it. */
5df0b2fa 506 else if (locker == -1)
ae1ef097 507 return -1; /* current_lock_owner returned strange error. */
8dbbc384 508
cfc01fa7 509 /* We deleted a stale lock; try again to lock the file. */
8dbbc384
RS
510 }
511 return 0;
8489eb67
RS
512}
513
8dbbc384 514/* lock_file locks file FN,
8489eb67
RS
515 meaning it serves notice on the world that you intend to edit that file.
516 This should be done only when about to modify a file-visiting
517 buffer previously unmodified.
8dbbc384 518 Do not (normally) call this for a buffer already modified,
8489eb67
RS
519 as either the file is already locked, or the user has already
520 decided to go ahead without locking.
521
8dbbc384 522 When this returns, either the lock is locked for us,
8489eb67
RS
523 or the user has said to go ahead without locking.
524
8dbbc384 525 If the file is locked by someone else, this calls
8489eb67 526 ask-user-about-lock (a Lisp function) with two arguments,
8dbbc384 527 the file name and info about the user who did the locking.
8489eb67
RS
528 This function can signal an error, or return t meaning
529 take away the lock, or return nil meaning ignore the lock. */
530
8489eb67 531void
971de7fb 532lock_file (Lisp_Object fn)
8489eb67 533{
f4a4528d 534 register Lisp_Object attack, orig_fn, encoded_fn;
8dbbc384 535 register char *lfname, *locker;
b5cd1905 536 ptrdiff_t locker_size;
8dbbc384 537 lock_info_type lock_info;
a81d11a3 538 printmax_t pid;
3edc33a4 539 struct gcpro gcpro1;
b5cd1905 540 USE_SAFE_ALLOCA;
8489eb67 541
836d29b3
DA
542 /* Don't do locking if the user has opted out. */
543 if (! create_lockfiles)
544 return;
545
33bae690
RS
546 /* Don't do locking while dumping Emacs.
547 Uncompressing wtmp files uses call-process, which does not work
548 in an uninitialized Emacs. */
549 if (! NILP (Vpurify_flag))
550 return;
551
5383bc6d 552 orig_fn = fn;
8af8a9ca 553 GCPRO1 (fn);
1e89de84 554 fn = Fexpand_file_name (fn, Qnil);
f4a4528d 555 encoded_fn = ENCODE_FILE (fn);
1e89de84 556
8dbbc384 557 /* Create the name of the lock-file for file fn */
f4a4528d 558 MAKE_LOCK_NAME (lfname, encoded_fn);
8489eb67 559
32676c08
JB
560 /* See if this file is visited and has changed on disk since it was
561 visited. */
8489eb67 562 {
a57bc488 563 register Lisp_Object subject_buf;
3036594f 564
5383bc6d 565 subject_buf = get_truename_buffer (orig_fn);
3036594f 566
265a9e55
JB
567 if (!NILP (subject_buf)
568 && NILP (Fverify_visited_file_modtime (subject_buf))
569 && !NILP (Ffile_exists_p (fn)))
8489eb67 570 call1 (intern ("ask-user-about-supersession-threat"), fn);
3036594f 571
8489eb67 572 }
8af8a9ca 573 UNGCPRO;
8489eb67
RS
574
575 /* Try to lock the lock. */
8dbbc384
RS
576 if (lock_if_free (&lock_info, lfname) <= 0)
577 /* Return now if we have locked it, or if lock creation failed */
8489eb67
RS
578 return;
579
580 /* Else consider breaking the lock */
b5cd1905
PE
581 locker_size = (strlen (lock_info.user) + strlen (lock_info.host)
582 + INT_STRLEN_BOUND (printmax_t)
583 + sizeof "@ (pid )");
98c6f1e3 584 locker = SAFE_ALLOCA (locker_size);
882f0d81 585 pid = lock_info.pid;
b5cd1905
PE
586 esprintf (locker, "%s@%s (pid %"pMd")",
587 lock_info.user, lock_info.host, pid);
8dbbc384 588 FREE_LOCK_INFO (lock_info);
177c0ea7 589
8dbbc384 590 attack = call2 (intern ("ask-user-about-lock"), fn, build_string (locker));
b5cd1905 591 SAFE_FREE ();
265a9e55 592 if (!NILP (attack))
8489eb67
RS
593 /* User says take the lock */
594 {
8dbbc384 595 lock_file_1 (lfname, 1);
8489eb67
RS
596 return;
597 }
598 /* User says ignore the lock */
599}
600
8489eb67 601void
971de7fb 602unlock_file (register Lisp_Object fn)
8489eb67
RS
603{
604 register char *lfname;
605
1e89de84 606 fn = Fexpand_file_name (fn, Qnil);
88eace34 607 fn = ENCODE_FILE (fn);
1e89de84 608
7b92975f 609 MAKE_LOCK_NAME (lfname, fn);
8489eb67 610
8dbbc384 611 if (current_lock_owner (0, lfname) == 2)
8489eb67 612 unlink (lfname);
8489eb67
RS
613}
614
615void
971de7fb 616unlock_all_files (void)
8489eb67
RS
617{
618 register Lisp_Object tail;
619 register struct buffer *b;
620
8e50cc2d 621 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
8489eb67 622 {
03699b14 623 b = XBUFFER (XCDR (XCAR (tail)));
4b4deea2 624 if (STRINGP (BVAR (b, file_truename)) && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b))
1c343051 625 {
5e617bc2 626 unlock_file (BVAR (b, file_truename));
1c343051 627 }
8489eb67
RS
628 }
629}
8489eb67
RS
630\f
631DEFUN ("lock-buffer", Flock_buffer, Slock_buffer,
335c5470
PJ
632 0, 1, 0,
633 doc: /* Lock FILE, if current buffer is modified.
634FILE defaults to current buffer's visited file,
635or else nothing is done if current buffer isn't visiting a file. */)
5842a27b 636 (Lisp_Object file)
8489eb67 637{
e9319ef2 638 if (NILP (file))
4b4deea2 639 file = BVAR (current_buffer, file_truename);
8489eb67 640 else
b7826503 641 CHECK_STRING (file);
6a140159 642 if (SAVE_MODIFF < MODIFF
e9319ef2
EN
643 && !NILP (file))
644 lock_file (file);
177c0ea7 645 return Qnil;
8489eb67
RS
646}
647
a7ca3326 648DEFUN ("unlock-buffer", Funlock_buffer, Sunlock_buffer,
335c5470 649 0, 0, 0,
3bfb8921
RS
650 doc: /* Unlock the file visited in the current buffer.
651If the buffer is not modified, this does nothing because the file
652should not be locked in that case. */)
5842a27b 653 (void)
8489eb67 654{
6a140159 655 if (SAVE_MODIFF < MODIFF
4b4deea2
TT
656 && STRINGP (BVAR (current_buffer, file_truename)))
657 unlock_file (BVAR (current_buffer, file_truename));
8489eb67
RS
658 return Qnil;
659}
660
8489eb67
RS
661/* Unlock the file visited in buffer BUFFER. */
662
d07e0802 663void
971de7fb 664unlock_buffer (struct buffer *buffer)
8489eb67 665{
6a140159 666 if (BUF_SAVE_MODIFF (buffer) < BUF_MODIFF (buffer)
4b4deea2
TT
667 && STRINGP (BVAR (buffer, file_truename)))
668 unlock_file (BVAR (buffer, file_truename));
8489eb67
RS
669}
670
8105cbf7 671DEFUN ("file-locked-p", Ffile_locked_p, Sfile_locked_p, 1, 1, 0,
3bfb8921
RS
672 doc: /* Return a value indicating whether FILENAME is locked.
673The value is nil if the FILENAME is not locked,
674t if it is locked by you, else a string saying which user has locked it. */)
5842a27b 675 (Lisp_Object filename)
8489eb67 676{
8dbbc384 677 Lisp_Object ret;
8489eb67
RS
678 register char *lfname;
679 int owner;
8dbbc384 680 lock_info_type locker;
8489eb67 681
e9319ef2 682 filename = Fexpand_file_name (filename, Qnil);
8489eb67 683
e9319ef2 684 MAKE_LOCK_NAME (lfname, filename);
8489eb67 685
8dbbc384 686 owner = current_lock_owner (&locker, lfname);
8489eb67 687 if (owner <= 0)
8dbbc384
RS
688 ret = Qnil;
689 else if (owner == 2)
690 ret = Qt;
691 else
692 ret = build_string (locker.user);
693
694 if (owner > 0)
695 FREE_LOCK_INFO (locker);
696
697 return ret;
8489eb67 698}
a3fd58aa 699
ffe75e6b
EZ
700#endif /* CLASH_DETECTION */
701
dfcf069d 702void
971de7fb 703syms_of_filelock (void)
8489eb67 704{
29208e82 705 DEFVAR_LISP ("temporary-file-directory", Vtemporary_file_directory,
335c5470 706 doc: /* The directory for writing temporary files. */);
5f8d6a10
RS
707 Vtemporary_file_directory = Qnil;
708
836d29b3
DA
709 DEFVAR_BOOL ("create-lockfiles", create_lockfiles,
710 doc: /* Non-nil means use lockfiles to avoid editing collisions. */);
711 create_lockfiles = 1;
712
ffe75e6b 713#ifdef CLASH_DETECTION
8489eb67
RS
714 defsubr (&Sunlock_buffer);
715 defsubr (&Slock_buffer);
716 defsubr (&Sfile_locked_p);
ffe75e6b 717#endif
8489eb67 718}