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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) 2005 Christophe Varoqui
* Copyright (c) 2005 Benjamin Marzinski, Redhat
*/
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <string.h>
#include <limits.h>
#include <stdio.h>
#include <signal.h>
#include "file.h"
#include "debug.h"
#include "uxsock.h"
/*
* significant parts of this file were taken from iscsi-bindings.c of the
* linux-iscsi project.
* Copyright (C) 2002 Cisco Systems, Inc.
*/
int
ensure_directories_exist(const char *str, mode_t dir_mode)
{
char *pathname;
char *end;
int err;
pathname = strdup(str);
if (!pathname){
condlog(0, "Cannot copy file pathname %s : %s",
str, strerror(errno));
return -1;
}
end = pathname;
/* skip leading slashes */
while (end && *end && (*end == '/'))
end++;
while ((end = strchr(end, '/'))) {
/* if there is another slash, make the dir. */
*end = '\0';
err = mkdir(pathname, dir_mode);
if (err && errno != EEXIST) {
condlog(0, "Cannot make directory [%s] : %s",
pathname, strerror(errno));
free(pathname);
return -1;
}
if (!err)
condlog(3, "Created dir [%s]", pathname);
*end = '/';
end++;
}
free(pathname);
return 0;
}
static void
sigalrm(__attribute__((unused)) int sig)
{
/* do nothing */
}
static int
lock_file(int fd, const char *file_name)
{
struct sigaction act, oldact;
sigset_t set, oldset;
struct flock lock;
int err;
memset(&lock, 0, sizeof(lock));
lock.l_type = F_WRLCK;
lock.l_whence = SEEK_SET;
act.sa_handler = sigalrm;
sigemptyset(&act.sa_mask);
act.sa_flags = 0;
sigemptyset(&set);
sigaddset(&set, SIGALRM);
sigaction(SIGALRM, &act, &oldact);
pthread_sigmask(SIG_UNBLOCK, &set, &oldset);
alarm(FILE_TIMEOUT);
err = fcntl(fd, F_SETLKW, &lock);
alarm(0);
if (err) {
if (errno != EINTR)
condlog(0, "Cannot lock %s : %s", file_name,
strerror(errno));
else
condlog(0, "%s is locked. Giving up.", file_name);
}
pthread_sigmask(SIG_SETMASK, &oldset, NULL);
sigaction(SIGALRM, &oldact, NULL);
return err;
}
int
open_file(const char *file, int *can_write, const char *header)
{
int fd;
struct stat s;
if (ensure_directories_exist(file, 0700))
return -1;
*can_write = 1;
fd = open(file, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
if (fd < 0) {
if (errno == EROFS) {
*can_write = 0;
condlog(3, "Cannot open file [%s] read/write. "
" trying readonly", file);
fd = open(file, O_RDONLY);
if (fd < 0) {
condlog(0, "Cannot open file [%s] "
"readonly : %s", file, strerror(errno));
return -1;
}
}
else {
condlog(0, "Cannot open file [%s] : %s", file,
strerror(errno));
return -1;
}
}
if (*can_write && lock_file(fd, file) < 0)
goto fail;
memset(&s, 0, sizeof(s));
if (fstat(fd, &s) < 0){
condlog(0, "Cannot stat file %s : %s", file, strerror(errno));
goto fail;
}
if (s.st_size == 0) {
if (*can_write == 0)
goto fail;
/* If file is empty, write the header */
int len = strlen(header);
if (write(fd, header, len) != len) {
condlog(0,
"Cannot write header to file %s : %s", file,
strerror(errno));
/* cleanup partially written header */
if (ftruncate(fd, 0))
condlog(0, "Cannot truncate header : %s",
strerror(errno));
goto fail;
}
fsync(fd);
condlog(3, "Initialized new file [%s]", file);
}
return fd;
fail:
close(fd);
return -1;
}
|