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
|
/*
* Copyright (c) 2005 Christophe Varoqui
* Copyright (c) 2005 Benjamin Marzinski, Redhat
*/
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <string.h>
#include <limits.h>
#include <stdio.h>
#include "debug.h"
#include "uxsock.h"
#include "alias.h"
#include "file.h"
#include "vector.h"
#include "checkers.h"
#include "structs.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
format_devname(char *name, int id, int len, char *prefix)
{
int pos;
int prefix_len = strlen(prefix);
memset(name,0, len);
strcpy(name, prefix);
for (pos = len - 1; pos >= prefix_len; pos--) {
id--;
name[pos] = 'a' + id % 26;
if (id < 26)
break;
id /= 26;
}
memmove(name + prefix_len, name + pos, len - pos);
name[prefix_len + len - pos] = '\0';
return (prefix_len + len - pos);
}
static int
scan_devname(char *alias, char *prefix)
{
char *c;
int i, n = 0;
if (!prefix || strncmp(alias, prefix, strlen(prefix)))
return -1;
if (strlen(alias) == strlen(prefix))
return -1;
if (strlen(alias) > strlen(prefix) + 7)
/* id of 'aaaaaaaa' overflows int */
return -1;
c = alias + strlen(prefix);
while (*c != '\0' && *c != ' ' && *c != '\t') {
if (*c < 'a' || *c > 'z')
return -1;
i = *c - 'a';
n = ( n * 26 ) + i;
if (n < 0)
return -1;
c++;
n++;
}
return n;
}
static int
lookup_binding(FILE *f, char *map_wwid, char **map_alias, char *prefix)
{
char buf[LINE_MAX];
unsigned int line_nr = 0;
int id = 1;
int biggest_id = 1;
int smallest_bigger_id = INT_MAX;
*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, prefix);
if (curr_id == id)
id++;
if (curr_id > biggest_id)
biggest_id = curr_id;
if (curr_id > id && curr_id < smallest_bigger_id)
smallest_bigger_id = curr_id;
wwid = strtok(NULL, " \t");
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 0;
}
}
condlog(3, "No matching wwid [%s] in bindings file.", map_wwid);
if (id < 0) {
condlog(0, "no more available user_friendly_names");
return 0;
}
if (id < smallest_bigger_id)
return id;
return biggest_id + 1;
}
static int
rlookup_binding(FILE *f, char *buff, char *map_alias)
{
char line[LINE_MAX];
unsigned int line_nr = 0;
int id = 0;
buff[0] = '\0';
while (fgets(line, LINE_MAX, f)) {
char *c, *alias, *wwid;
int curr_id;
line_nr++;
c = strpbrk(line, "#\n\r");
if (c)
*c = '\0';
alias = strtok(line, " \t");
if (!alias) /* blank line */
continue;
curr_id = scan_devname(alias, NULL); /* TBD: Why this call? */
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 (strlen(wwid) > WWID_SIZE - 1) {
condlog(3,
"Ignoring too large wwid at %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);
strncpy(buff, wwid, WWID_SIZE);
buff[WWID_SIZE - 1] = '\0';
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 *prefix)
{
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, prefix);
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 */
if (ftruncate(fd, offset))
condlog(0, "Cannot truncate the header : %s",
strerror(errno));
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 *prefix,
int bindings_read_only)
{
char *alias;
int fd, id;
FILE *f;
int can_write;
if (!wwid || *wwid == '\0') {
condlog(3, "Cannot find binding for empty WWID");
return NULL;
}
fd = open_file(file, &can_write, BINDINGS_FILE_HEADER);
if (fd < 0)
return NULL;
f = fdopen(fd, "r");
if (!f) {
condlog(0, "cannot fdopen on bindings file descriptor : %s",
strerror(errno));
close(fd);
return NULL;
}
id = lookup_binding(f, wwid, &alias, prefix);
if (id < 0) {
fclose(f);
return NULL;
}
if (fflush(f) != 0) {
condlog(0, "cannot fflush bindings file stream : %s",
strerror(errno));
fclose(f);
return NULL;
}
if (!alias && can_write && !bindings_read_only && id)
alias = allocate_binding(fd, wwid, id, prefix);
fclose(f);
return alias;
}
int
get_user_friendly_wwid(char *alias, char *buff, char *file)
{
int fd, unused;
FILE *f;
if (!alias || *alias == '\0') {
condlog(3, "Cannot find binding for empty alias");
return -1;
}
fd = open_file(file, &unused, BINDINGS_FILE_HEADER);
if (fd < 0)
return -1;
f = fdopen(fd, "r");
if (!f) {
condlog(0, "cannot fdopen on bindings file descriptor : %s",
strerror(errno));
close(fd);
return -1;
}
rlookup_binding(f, buff, alias);
if (!strlen(buff)) {
fclose(f);
return -1;
}
fclose(f);
return 0;
}
|