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 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
|
/*
* 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 "debug.h"
#include "uxsock.h"
#include "alias.h"
/*
* significant parts of this file were taken from iscsi-bindings.c of the
* linux-iscsi project.
* Copyright (C) 2002 Cisco Systems, Inc.
*
* 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.
*
* See the file COPYING included with this distribution for more details.
*/
static int
ensure_directories_exist(char *str, mode_t dir_mode)
{
char *pathname;
char *end;
int err;
pathname = strdup(str);
if (!pathname){
condlog(0, "Cannot copy bindings file pathname : %s",
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(int sig)
{
/* do nothing */
}
static int
lock_bindings_file(int fd)
{
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);
sigprocmask(SIG_UNBLOCK, &set, &oldset);
alarm(BINDINGS_FILE_TIMEOUT);
err = fcntl(fd, F_SETLKW, &lock);
alarm(0);
if (err) {
if (errno != EINTR)
condlog(0, "Cannot lock bindings file : %s",
strerror(errno));
else
condlog(0, "Bindings file is locked. Giving up.");
}
sigprocmask(SIG_SETMASK, &oldset, NULL);
sigaction(SIGALRM, &oldact, NULL);
return err;
}
static int
open_bindings_file(char *file, int *can_write)
{
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 bindings file [%s] read/write. "
" trying readonly", file);
fd = open(file, O_RDONLY);
if (fd < 0) {
condlog(0, "Cannot open bindings file [%s] "
"readonly : %s", file, strerror(errno));
return -1;
}
}
else {
condlog(0, "Cannot open bindings file [%s] : %s", file,
strerror(errno));
return -1;
}
}
if (*can_write && lock_bindings_file(fd) < 0)
goto fail;
memset(&s, 0, sizeof(s));
if (fstat(fd, &s) < 0){
condlog(0, "Cannot stat bindings file : %s", strerror(errno));
goto fail;
}
if (s.st_size == 0) {
if (*can_write == 0)
goto fail;
/* If bindings file is empty, write the header */
size_t len = strlen(BINDINGS_FILE_HEADER);
if (write_all(fd, BINDINGS_FILE_HEADER, len) != len) {
condlog(0,
"Cannot write header to bindings file : %s",
strerror(errno));
/* cleanup partially written header */
ftruncate(fd, 0);
goto fail;
}
fsync(fd);
condlog(3, "Initialized new bindings file [%s]", file);
}
return fd;
fail:
close(fd);
return -1;
}
static int
format_devname(char *name, int id, int len)
{
int pos;
memset(name,0, len);
strcpy(name,"mpath");
for (pos = len - 1; pos >= 5; pos--) {
name[pos] = 'a' + id % 26;
if (id < 26)
break;
id /= 26;
id--;
}
memmove(name + 5, name + pos, len - pos);
name[5 + len - pos] = '\0';
return (5 + len - pos);
}
static int
scan_devname(char *alias)
{
char *c;
int i, n = 0;
if (strncmp(alias, "mpath", 5))
return -1;
c = alias + 5;
while (*c != '\0' && *c != ' ' && *c != '\t') {
i = *c - 'a';
n = ( n * 26 ) + i;
c++;
if (*c < 'a' || *c > 'z')
break;
n++;
}
return n;
}
static int
lookup_binding(FILE *f, char *map_wwid, char **map_alias)
{
char buf[LINE_MAX];
unsigned int line_nr = 0;
int id = 0;
*map_alias = NULL;
while (fgets(buf, LINE_MAX, f)) {
char *c, *alias, *wwid;
int curr_id;
line_nr++;
c = strpbrk(buf, "#\n\r");
if (c)
*c = '\0';
alias = strtok(buf, " \t");
if (!alias) /* blank line */
continue;
curr_id = scan_devname(alias);
if (curr_id >= id)
id = curr_id + 1;
wwid = strtok(NULL, "");
if (!wwid){
condlog(3,
"Ignoring malformed line %u in bindings file",
line_nr);
continue;
}
if (strcmp(wwid, map_wwid) == 0){
condlog(3, "Found matching wwid [%s] in bindings file."
" Setting alias to %s", wwid, alias);
*map_alias = strdup(alias);
if (*map_alias == NULL)
condlog(0, "Cannot copy alias from bindings "
"file : %s", strerror(errno));
return id;
}
}
condlog(3, "No matching wwid [%s] in bindings file.", map_wwid);
return id;
}
static int
rlookup_binding(FILE *f, char **map_wwid, char *map_alias)
{
char buf[LINE_MAX];
unsigned int line_nr = 0;
int id = 0;
*map_wwid = NULL;
while (fgets(buf, LINE_MAX, f)) {
char *c, *alias, *wwid;
int curr_id;
line_nr++;
c = strpbrk(buf, "#\n\r");
if (c)
*c = '\0';
alias = strtok(buf, " \t");
if (!alias) /* blank line */
continue;
curr_id = scan_devname(alias);
if (curr_id >= id)
id = curr_id + 1;
wwid = strtok(NULL, " \t");
if (!wwid){
condlog(3,
"Ignoring malformed line %u in bindings file",
line_nr);
continue;
}
if (strcmp(alias, map_alias) == 0){
condlog(3, "Found matching alias [%s] in bindings file."
"\nSetting wwid to %s", alias, wwid);
*map_wwid = strdup(wwid);
if (*map_wwid == NULL)
condlog(0, "Cannot copy alias from bindings "
"file : %s", strerror(errno));
return id;
}
}
condlog(3, "No matching alias [%s] in bindings file.", map_alias);
return id;
}
static char *
allocate_binding(int fd, char *wwid, int id)
{
char buf[LINE_MAX];
off_t offset;
char *alias, *c;
int i;
if (id < 0) {
condlog(0, "Bindings file full. Cannot allocate new binding");
return NULL;
}
i = format_devname(buf, id, LINE_MAX);
c = buf + i;
snprintf(c,LINE_MAX - i, " %s\n", wwid);
buf[LINE_MAX - 1] = '\0';
offset = lseek(fd, 0, SEEK_END);
if (offset < 0){
condlog(0, "Cannot seek to end of bindings file : %s",
strerror(errno));
return NULL;
}
if (write_all(fd, buf, strlen(buf)) != strlen(buf)){
condlog(0, "Cannot write binding to bindings file : %s",
strerror(errno));
/* clear partial write */
ftruncate(fd, offset);
return NULL;
}
c = strchr(buf, ' ');
*c = '\0';
alias = strdup(buf);
if (alias == NULL)
condlog(0, "cannot copy new alias from bindings file : %s",
strerror(errno));
else
condlog(3, "Created new binding [%s] for WWID [%s]", alias,
wwid);
return alias;
}
char *
get_user_friendly_alias(char *wwid, char *file)
{
char *alias;
int fd, scan_fd, id;
FILE *f;
int can_write;
if (!wwid || *wwid == '\0') {
condlog(3, "Cannot find binding for empty WWID");
return NULL;
}
fd = open_bindings_file(file, &can_write);
if (fd < 0)
return NULL;
scan_fd = dup(fd);
if (scan_fd < 0) {
condlog(0, "Cannot dup bindings file descriptor : %s",
strerror(errno));
close(fd);
return NULL;
}
f = fdopen(scan_fd, "r");
if (!f) {
condlog(0, "cannot fdopen on bindings file descriptor : %s",
strerror(errno));
close(scan_fd);
close(fd);
return NULL;
}
id = lookup_binding(f, wwid, &alias);
if (id < 0) {
fclose(f);
close(scan_fd);
close(fd);
return NULL;
}
if (!alias && can_write)
alias = allocate_binding(fd, wwid, id);
fclose(f);
close(scan_fd);
close(fd);
return alias;
}
char *
get_user_friendly_wwid(char *alias, char *file)
{
char *wwid;
int fd, scan_fd, id, unused;
FILE *f;
if (!alias || *alias == '\0') {
condlog(3, "Cannot find binding for empty alias");
return NULL;
}
fd = open_bindings_file(file, &unused);
if (fd < 0)
return NULL;
scan_fd = dup(fd);
if (scan_fd < 0) {
condlog(0, "Cannot dup bindings file descriptor : %s",
strerror(errno));
close(fd);
return NULL;
}
f = fdopen(scan_fd, "r");
if (!f) {
condlog(0, "cannot fdopen on bindings file descriptor : %s",
strerror(errno));
close(scan_fd);
close(fd);
return NULL;
}
id = rlookup_binding(f, &wwid, alias);
if (id < 0) {
fclose(f);
close(scan_fd);
close(fd);
return NULL;
}
fclose(f);
close(scan_fd);
close(fd);
return wwid;
}
|