2003-04-02 23:36:10 +04:00
|
|
|
/* editor file locking.
|
|
|
|
|
|
|
|
Copyright (C) 2003 the Free Software Foundation
|
|
|
|
|
|
|
|
Authors: 2003 Adam Byrtek
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
2003-11-21 06:17:18 +03:00
|
|
|
#include <signal.h> /* kill() */
|
2005-02-22 20:00:36 +03:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "../src/global.h"
|
|
|
|
|
2003-04-02 23:36:10 +04:00
|
|
|
#include "edit.h"
|
|
|
|
#include "editlock.h"
|
|
|
|
|
2003-10-29 11:54:22 +03:00
|
|
|
#include "../src/wtools.h" /* edit_query_dialog () */
|
2003-04-02 23:36:10 +04:00
|
|
|
|
|
|
|
#define BUF_SIZE 255
|
|
|
|
#define PID_BUF_SIZE 10
|
|
|
|
|
2003-04-05 05:29:15 +04:00
|
|
|
struct lock_s {
|
|
|
|
char *who;
|
|
|
|
pid_t pid;
|
|
|
|
};
|
|
|
|
|
2003-04-02 23:36:10 +04:00
|
|
|
/* Locking scheme used in mcedit is based on a documentation found
|
|
|
|
in JED editor sources. Abstract from lock.c file (by John E. Davis):
|
|
|
|
|
|
|
|
The basic idea here is quite simple. Whenever a buffer is attached to
|
|
|
|
a file, and that buffer is modified, then attempt to lock the
|
|
|
|
file. Moreover, before writing to a file for any reason, lock the
|
|
|
|
file. The lock is really a protocol respected and not a real lock.
|
|
|
|
The protocol is this: If in the directory of the file is a
|
|
|
|
symbolic link with name ".#FILE", the FILE is considered to be locked
|
|
|
|
by the process specified by the link.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Build user@host.domain.pid string (need to be freed) */
|
|
|
|
static char *
|
2005-02-07 23:08:01 +03:00
|
|
|
lock_build_name (void)
|
2003-04-02 23:36:10 +04:00
|
|
|
{
|
2004-08-29 22:45:56 +04:00
|
|
|
char host[BUF_SIZE];
|
|
|
|
const char *user;
|
2003-04-02 23:36:10 +04:00
|
|
|
|
2005-02-07 23:08:01 +03:00
|
|
|
user = getpwuid (getuid ())->pw_name;
|
|
|
|
if (!user) user = getenv ("USER");
|
|
|
|
if (!user) user = getenv ("USERNAME");
|
|
|
|
if (!user) user = getenv ("LOGNAME");
|
|
|
|
if (!user) user = "";
|
2003-04-02 23:36:10 +04:00
|
|
|
|
|
|
|
/* TODO: Use FQDN, no clean interface, so requires lot of code */
|
|
|
|
if (gethostname (host, BUF_SIZE - 1) == -1)
|
|
|
|
*host = '\0';
|
|
|
|
|
2004-08-16 08:49:08 +04:00
|
|
|
return g_strdup_printf ("%s@%s.%d", user, host, (int) getpid ());
|
2003-04-02 23:36:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Extract pid from user@host.domain.pid string */
|
2003-04-05 05:29:15 +04:00
|
|
|
static struct lock_s *
|
2004-08-29 22:45:56 +04:00
|
|
|
lock_extract_info (const char *str)
|
2003-04-02 23:36:10 +04:00
|
|
|
{
|
|
|
|
int i;
|
2004-08-29 22:45:56 +04:00
|
|
|
const char *p, *s;
|
2003-04-05 05:29:15 +04:00
|
|
|
static char pid[PID_BUF_SIZE], who[BUF_SIZE];
|
|
|
|
static struct lock_s lock;
|
2003-04-02 23:36:10 +04:00
|
|
|
|
|
|
|
for (p = str + strlen (str) - 1; p >= str; p--)
|
|
|
|
if (*p == '.')
|
|
|
|
break;
|
|
|
|
|
2003-04-05 05:29:15 +04:00
|
|
|
/* Everything before last '.' is user@host */
|
|
|
|
i = 0;
|
|
|
|
for (s = str; s < p && i < BUF_SIZE; s++)
|
|
|
|
who[i++] = *s;
|
|
|
|
who[i] = '\0';
|
|
|
|
|
|
|
|
/* Treat text between '.' and ':' or '\0' as pid */
|
2003-04-02 23:36:10 +04:00
|
|
|
i = 0;
|
|
|
|
for (p = p + 1;
|
|
|
|
p < str + strlen (str) && *p != ':' && i < PID_BUF_SIZE; p++)
|
|
|
|
pid[i++] = *p;
|
|
|
|
pid[i] = '\0';
|
|
|
|
|
2003-04-05 05:29:15 +04:00
|
|
|
lock.pid = (pid_t) atol (pid);
|
|
|
|
lock.who = who;
|
|
|
|
return &lock;
|
2003-04-02 23:36:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Extract user@host.domain.pid from lock file (static string) */
|
|
|
|
static char *
|
2004-08-29 22:45:56 +04:00
|
|
|
lock_get_info (const char *lockfname)
|
2003-04-02 23:36:10 +04:00
|
|
|
{
|
|
|
|
int cnt;
|
|
|
|
static char buf[BUF_SIZE];
|
|
|
|
|
|
|
|
if ((cnt = readlink (lockfname, buf, BUF_SIZE - 1)) == -1 || !buf
|
|
|
|
|| !*buf)
|
|
|
|
return NULL;
|
|
|
|
buf[cnt] = '\0';
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Tries to raise file lock
|
2005-02-07 10:31:19 +03:00
|
|
|
Returns 1 on success, 0 on failure, -1 if abort
|
2003-04-05 05:43:58 +04:00
|
|
|
Warning: Might do screen refresh and lose edit->force */
|
2003-04-02 23:36:10 +04:00
|
|
|
int
|
2004-08-29 22:45:56 +04:00
|
|
|
edit_lock_file (const char *fname)
|
2003-04-02 23:36:10 +04:00
|
|
|
{
|
|
|
|
char *lockfname, *newlock, *msg, *lock;
|
|
|
|
struct stat statbuf;
|
2003-04-05 05:29:15 +04:00
|
|
|
struct lock_s *lockinfo;
|
2003-04-02 23:36:10 +04:00
|
|
|
|
|
|
|
/* Just to be sure (and don't lock new file) */
|
|
|
|
if (!fname || !*fname)
|
|
|
|
return 0;
|
|
|
|
|
2003-04-03 02:25:00 +04:00
|
|
|
/* Locking on VFS is not supported */
|
|
|
|
if (!vfs_file_is_local (fname))
|
|
|
|
return 0;
|
|
|
|
|
2003-04-02 23:36:10 +04:00
|
|
|
/* Check if already locked */
|
2004-09-24 18:57:57 +04:00
|
|
|
lockfname = g_strconcat (".#", fname, (char *) NULL);
|
2003-04-02 23:36:10 +04:00
|
|
|
if (lstat (lockfname, &statbuf) == 0) {
|
|
|
|
lock = lock_get_info (lockfname);
|
|
|
|
if (!lock) {
|
|
|
|
g_free (lockfname);
|
|
|
|
return 0;
|
|
|
|
}
|
2003-04-05 05:29:15 +04:00
|
|
|
lockinfo = lock_extract_info (lock);
|
2003-04-02 23:36:10 +04:00
|
|
|
|
|
|
|
/* Check if locking process alive, ask user if required */
|
2003-04-05 05:29:15 +04:00
|
|
|
if (!lockinfo->pid
|
|
|
|
|| !(kill (lockinfo->pid, 0) == -1 && errno == ESRCH)) {
|
2003-04-02 23:36:10 +04:00
|
|
|
msg =
|
2003-04-05 05:29:15 +04:00
|
|
|
g_strdup_printf (_
|
|
|
|
("File \"%s\" is already being edited\n"
|
|
|
|
"User: %s\nProcess ID: %d"), fname,
|
2004-08-16 08:49:08 +04:00
|
|
|
lockinfo->who, (int) lockinfo->pid);
|
2003-04-02 23:36:10 +04:00
|
|
|
/* TODO: Implement "Abort" - needs to rewind undo stack */
|
|
|
|
switch (edit_query_dialog2
|
|
|
|
(_("File locked"), msg, _("&Grab lock"),
|
|
|
|
_("&Ignore lock"))) {
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
case -1:
|
|
|
|
g_free (lockfname);
|
|
|
|
g_free (msg);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
g_free (msg);
|
|
|
|
}
|
|
|
|
unlink (lockfname);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create lock symlink */
|
2005-02-07 23:08:01 +03:00
|
|
|
newlock = lock_build_name ();
|
2003-04-02 23:36:10 +04:00
|
|
|
if (symlink (newlock, lockfname) == -1) {
|
|
|
|
g_free (lockfname);
|
|
|
|
g_free (newlock);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (lockfname);
|
|
|
|
g_free (newlock);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-02-07 10:31:19 +03:00
|
|
|
/* Lowers file lock if possible
|
2003-04-02 23:36:10 +04:00
|
|
|
Always returns 0 to make 'lock = edit_unlock_file (f)' possible */
|
|
|
|
int
|
2004-08-29 22:45:56 +04:00
|
|
|
edit_unlock_file (const char *fname)
|
2003-04-02 23:36:10 +04:00
|
|
|
{
|
|
|
|
char *lockfname, *lock;
|
|
|
|
struct stat statbuf;
|
|
|
|
|
|
|
|
/* Just to be sure */
|
|
|
|
if (!fname || !*fname)
|
|
|
|
return 0;
|
|
|
|
|
2004-09-24 18:57:57 +04:00
|
|
|
lockfname = g_strconcat (".#", fname, (char *) NULL);
|
2003-04-02 23:36:10 +04:00
|
|
|
|
|
|
|
/* Check if lock exists */
|
|
|
|
if (lstat (lockfname, &statbuf) == -1) {
|
|
|
|
g_free (lockfname);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
lock = lock_get_info (lockfname);
|
|
|
|
if (lock) {
|
|
|
|
/* Don't touch if lock is not ours */
|
2003-04-05 05:29:15 +04:00
|
|
|
if (lock_extract_info (lock)->pid != getpid ()) {
|
2003-04-02 23:36:10 +04:00
|
|
|
g_free (lockfname);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove lock */
|
|
|
|
unlink (lockfname);
|
|
|
|
g_free (lockfname);
|
|
|
|
return 0;
|
|
|
|
}
|