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