1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
|
/* Thi½ file is part of the Zebra server.
Copyright (C) Index Data
Zebra 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, or (at your option) any later
version.
Zebra 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#if HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <assert.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/types.h>
#ifdef WIN32
#include <io.h>
#include <sys/locking.h>
#endif
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <idzebra/flock.h>
#include <zebra-lock.h>
#include <yaz/xmalloc.h>
#include <yaz/log.h>
/** have this module (mutex) been initialized? */
static int initialized = 0;
/** whether fcntl locks are shared for all threads in a process (POSIX) */
static int posix_locks = 1;
/** mutex for lock_list below */
Zebra_mutex lock_list_mutex;
/** our list of file locked files */
static struct zebra_lock_info *lock_list = 0;
/** the internal handle, with a pointer to each lock file info */
struct zebra_lock_handle {
#ifndef WIN32
/** so we can call zebra_lock_rdwr_wunlock or zebra_lock_lock_runlock */
int write_flag;
#endif
struct zebra_lock_info *p;
};
struct zebra_lock_info {
/** file descriptor */
int fd;
/** full path (xmalloc'ed) */
char *fname;
/** reference counter: number of zebra_lock_handles pointing to us */
int ref_count;
#ifndef WIN32
/** number of file write locks/read locks */
int no_file_write_lock;
int no_file_read_lock;
Zebra_lock_rdwr rdwr_lock;
Zebra_mutex file_mutex;
#endif
/** next in lock list */
struct zebra_lock_info *next;
};
static int log_level = 0;
char *zebra_mk_fname(const char *dir, const char *name)
{
int dlen = dir ? strlen(dir) : 0;
char *fname = xmalloc(dlen + strlen(name) + 2);
*fname = '\0';
if (dlen)
{
int last_one = dir[dlen-1];
strcat(fname, dir);
#ifdef WIN32
if (!strchr("/\\:", last_one))
strcat(fname, "\\");
#else
if (!strchr("/", last_one))
strcat(fname, "/");
#endif
}
strcat(fname, name);
return fname;
}
ZebraLockHandle zebra_lock_create(const char *dir, const char *name)
{
char *fname = zebra_mk_fname(dir, name);
struct zebra_lock_info *p = 0;
ZebraLockHandle h = 0;
assert(initialized);
zebra_mutex_lock(&lock_list_mutex);
/* see if we have the same filename in a global list of "lock files" */
#ifndef WIN32
if (posix_locks)
{
for (p = lock_list; p ; p = p->next)
if (!strcmp(p->fname, fname))
break;
}
#endif
if (!p)
{ /* didn't match (or we didn't want it to match! */
p = (struct zebra_lock_info *) xmalloc(sizeof(*p));
p->ref_count = 0;
#ifdef WIN32
p->fd = open(name, O_BINARY|O_RDONLY);
if (p->fd == -1)
p->fd = open(fname, (O_BINARY|O_CREAT|O_RDWR), 0666);
#else
p->fd = open(fname, (O_BINARY|O_CREAT|O_RDWR), 0666);
#endif
if (p->fd == -1)
{
xfree(p);
yaz_log(YLOG_WARN | YLOG_ERRNO,
"zebra_lock_create fail fname=%s", fname);
p = 0;
}
else
{
p->fname = fname;
fname = 0; /* fname buffer now owned by p->fname */
#ifndef WIN32
if (posix_locks)
zebra_lock_rdwr_init(&p->rdwr_lock);
zebra_mutex_init(&p->file_mutex);
p->no_file_write_lock = 0;
p->no_file_read_lock = 0;
#endif
p->next = lock_list;
lock_list = p;
}
}
if (p)
{
/* we have lock info so we can make a handle pointing to that */
p->ref_count++;
h = (ZebraLockHandle) xmalloc(sizeof(*h));
h->p = p;
#ifndef WIN32
h->write_flag = 0;
#endif
yaz_log(log_level, "zebra_lock_create fd=%d p=%p fname=%s",
h->p->fd, h, p->fname);
}
zebra_mutex_unlock(&lock_list_mutex);
xfree(fname); /* free it - if it's still there */
return h;
}
void zebra_lock_destroy(ZebraLockHandle h)
{
if (!h)
return;
yaz_log(log_level, "zebra_lock_destroy fd=%d p=%p fname=%s",
h->p->fd, h, h->p->fname);
zebra_mutex_lock(&lock_list_mutex);
yaz_log(log_level, "zebra_lock_destroy fd=%d p=%p fname=%s refcount=%d",
h->p->fd, h, h->p->fname, h->p->ref_count);
assert(h->p->ref_count > 0);
--(h->p->ref_count);
if (h->p->ref_count == 0)
{
/* must remove shared info from lock_list */
struct zebra_lock_info **hp = &lock_list;
while (*hp)
{
if (*hp == h->p)
{
*hp = h->p->next;
break;
}
else
hp = &(*hp)->next;
}
yaz_log(log_level, "zebra_lock_destroy fd=%d p=%p fname=%s remove",
h->p->fd, h, h->p->fname);
#ifndef WIN32
if (posix_locks)
zebra_lock_rdwr_destroy(&h->p->rdwr_lock);
zebra_mutex_destroy(&h->p->file_mutex);
#endif
if (h->p->fd != -1)
close(h->p->fd);
xfree(h->p->fname);
xfree(h->p);
}
xfree(h);
zebra_mutex_unlock(&lock_list_mutex);
}
#ifndef WIN32
static int unixLock(int fd, int type, int cmd)
{
struct flock area;
int r;
area.l_type = type;
area.l_whence = SEEK_SET;
area.l_len = area.l_start = 0L;
yaz_log(log_level, "fcntl begin type=%d fd=%d", type, fd);
r = fcntl(fd, cmd, &area);
if (r == -1)
yaz_log(YLOG_WARN|YLOG_ERRNO, "fcntl FAIL type=%d fd=%d", type, fd);
else
yaz_log(log_level, "fcntl type=%d OK fd=%d", type, fd);
return r;
}
#endif
int zebra_lock_w(ZebraLockHandle h)
{
int r = 0;
int do_lock = 0;
yaz_log(log_level, "zebra_lock_w fd=%d p=%p fname=%s begin",
h->p->fd, h, h->p->fname);
#ifdef WIN32
while ((r = _locking(h->p->fd, _LK_LOCK, 1)))
;
#else
if (posix_locks)
zebra_lock_rdwr_wlock(&h->p->rdwr_lock);
zebra_mutex_lock(&h->p->file_mutex);
if (h->p->no_file_write_lock == 0)
do_lock = 1;
h->p->no_file_write_lock++;
if (do_lock)
{
/* if there is already a read lock.. upgrade to write lock */
r = unixLock(h->p->fd, F_WRLCK, F_SETLKW);
}
else
{
assert(posix_locks);
}
zebra_mutex_unlock(&h->p->file_mutex);
h->write_flag = 1;
#endif
yaz_log(log_level, "zebra_lock_w fd=%d p=%p fname=%s end",
h->p->fd, h, h->p->fname);
return r;
}
int zebra_lock_r(ZebraLockHandle h)
{
int r = 0;
int do_lock = 0;
yaz_log(log_level, "zebra_lock_r fd=%d p=%p fname=%s begin",
h->p->fd, h, h->p->fname);
#ifdef WIN32
while ((r = _locking(h->p->fd, _LK_LOCK, 1)))
;
#else
if (posix_locks)
zebra_lock_rdwr_rlock(&h->p->rdwr_lock);
zebra_mutex_lock(&h->p->file_mutex);
if (h->p->no_file_read_lock == 0 && h->p->no_file_write_lock == 0)
do_lock = 1;
h->p->no_file_read_lock++;
if (do_lock)
{
/* only read lock if no write locks already */
r = unixLock(h->p->fd, F_RDLCK, F_SETLKW);
}
else
{
assert(posix_locks);
}
zebra_mutex_unlock(&h->p->file_mutex);
h->write_flag = 0;
#endif
yaz_log(log_level, "zebra_lock_r fd=%d p=%p fname=%s end",
h->p->fd, h, h->p->fname);
return r;
}
int zebra_unlock(ZebraLockHandle h)
{
int r = 0;
yaz_log(log_level, "zebra_unlock fd=%d p=%p fname=%s begin",
h->p->fd, h, h->p->fname);
#ifdef WIN32
r = _locking(h->p->fd, _LK_UNLCK, 1);
#else
zebra_mutex_lock(&h->p->file_mutex);
if (h->write_flag)
{
if (h->p->no_file_write_lock > 0)
h->p->no_file_write_lock--;
}
else
{
if (h->p->no_file_read_lock > 0)
h->p->no_file_read_lock--;
}
if (h->p->no_file_read_lock == 0 && h->p->no_file_write_lock == 0)
r = unixLock(h->p->fd, F_UNLCK, F_SETLKW);
else
{
r = 0;
assert(posix_locks);
}
zebra_mutex_unlock(&h->p->file_mutex);
if (posix_locks)
{
if (h->write_flag)
zebra_lock_rdwr_wunlock(&h->p->rdwr_lock);
else
zebra_lock_rdwr_runlock(&h->p->rdwr_lock);
}
#endif
yaz_log(log_level, "zebra_unlock fd=%d p=%p fname=%s end",
h->p->fd, h, h->p->fname);
return r;
}
/** \brief see if the fcntl locking is not POSIX
*
* The default posix_locks=1 is assumed.. This function sets posix_locks
* to zero if linuxthreads is in use.
*/
static int check_for_linuxthreads(void)
{
#if __linux
#ifdef _CS_GNU_LIBPTHREAD_VERSION
char conf_buf[512];
size_t r = confstr(_CS_GNU_LIBPTHREAD_VERSION, conf_buf, sizeof(conf_buf));
if (r == 0)
{
yaz_log(YLOG_WARN|YLOG_ERRNO, "confstr failed");
return -1;
}
if (strncmp(conf_buf, "linuxthreads", 12) == 0)
posix_locks = 0; /* Using linuxthreads.. */
#else
posix_locks = 0; /* Old GLIBC on Linux. Assume linuxthreads */
#endif
#endif
return 0;
}
void zebra_flock_init()
{
if (!initialized)
{
initialized = 1;
log_level = yaz_log_module_level("flock");
yaz_log(log_level, "zebra_flock_init");
check_for_linuxthreads();
zebra_mutex_init(&lock_list_mutex);
yaz_log(log_level, "posix_locks: %d", posix_locks);
}
}
/*
* Local variables:
* c-basic-offset: 4
* c-file-style: "Stroustrup"
* indent-tabs-mode: nil
* End:
* vim: shiftwidth=4 tabstop=8 expandtab
*/
|