mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
742 lines
16 KiB
C
742 lines
16 KiB
C
|
/*
|
||
|
* Soft: Description here...
|
||
|
*
|
||
|
* Version: $Id: main.h,v 0.0.1 2003/09/18 15:13:38 cvaroqui Exp $
|
||
|
*
|
||
|
* Author: Copyright (C) 2003 Christophe Varoqui
|
||
|
*
|
||
|
* 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.
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <unistd.h>
|
||
|
#include <fcntl.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/stat.h>
|
||
|
#include <linux/kdev_t.h>
|
||
|
#include <errno.h>
|
||
|
#include <string.h>
|
||
|
#include <sys/ioctl.h>
|
||
|
#include <libsysfs.h>
|
||
|
#include <libdevmapper.h>
|
||
|
#include "main.h"
|
||
|
|
||
|
static int
|
||
|
do_inq(int sg_fd, int cmddt, int evpd, unsigned int pg_op,
|
||
|
void *resp, int mx_resp_len, int noisy)
|
||
|
{
|
||
|
int res;
|
||
|
unsigned char inqCmdBlk[INQUIRY_CMDLEN] =
|
||
|
{ INQUIRY_CMD, 0, 0, 0, 0, 0 };
|
||
|
unsigned char sense_b[SENSE_BUFF_LEN];
|
||
|
struct sg_io_hdr io_hdr;
|
||
|
|
||
|
if (cmddt)
|
||
|
inqCmdBlk[1] |= 2;
|
||
|
if (evpd)
|
||
|
inqCmdBlk[1] |= 1;
|
||
|
inqCmdBlk[2] = (unsigned char) pg_op;
|
||
|
inqCmdBlk[4] = (unsigned char) mx_resp_len;
|
||
|
memset(&io_hdr, 0, sizeof (struct sg_io_hdr));
|
||
|
io_hdr.interface_id = 'S';
|
||
|
io_hdr.cmd_len = sizeof (inqCmdBlk);
|
||
|
io_hdr.mx_sb_len = sizeof (sense_b);
|
||
|
io_hdr.dxfer_direction = SG_DXFER_FROM_DEV;
|
||
|
io_hdr.dxfer_len = mx_resp_len;
|
||
|
io_hdr.dxferp = resp;
|
||
|
io_hdr.cmdp = inqCmdBlk;
|
||
|
io_hdr.sbp = sense_b;
|
||
|
io_hdr.timeout = DEF_TIMEOUT;
|
||
|
|
||
|
if (ioctl(sg_fd, SG_IO, &io_hdr) < 0) {
|
||
|
perror("SG_IO (inquiry) error");
|
||
|
return -1;
|
||
|
}
|
||
|
res = sg_err_category3(&io_hdr);
|
||
|
switch (res) {
|
||
|
case SG_ERR_CAT_CLEAN:
|
||
|
case SG_ERR_CAT_RECOVERED:
|
||
|
return 0;
|
||
|
default:
|
||
|
return -1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static int
|
||
|
do_tur(int fd)
|
||
|
{
|
||
|
unsigned char turCmdBlk[TUR_CMD_LEN] = { 0x00, 0, 0, 0, 0, 0 };
|
||
|
struct sg_io_hdr io_hdr;
|
||
|
unsigned char sense_buffer[32];
|
||
|
|
||
|
memset(&io_hdr, 0, sizeof (struct sg_io_hdr));
|
||
|
io_hdr.interface_id = 'S';
|
||
|
io_hdr.cmd_len = sizeof (turCmdBlk);
|
||
|
io_hdr.mx_sb_len = sizeof (sense_buffer);
|
||
|
io_hdr.dxfer_direction = SG_DXFER_NONE;
|
||
|
io_hdr.cmdp = turCmdBlk;
|
||
|
io_hdr.sbp = sense_buffer;
|
||
|
io_hdr.timeout = 20000;
|
||
|
io_hdr.pack_id = 0;
|
||
|
if (ioctl(fd, SG_IO, &io_hdr) < 0) {
|
||
|
close(fd);
|
||
|
return 0;
|
||
|
}
|
||
|
if (io_hdr.info & SG_INFO_OK_MASK) {
|
||
|
return 0;
|
||
|
}
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
sprint_wwid(char * buff, const char * str)
|
||
|
{
|
||
|
int i;
|
||
|
const char *p;
|
||
|
char *cursor;
|
||
|
unsigned char c;
|
||
|
|
||
|
p = str;
|
||
|
cursor = buff;
|
||
|
for (i = 0; i <= WWID_SIZE / 2 - 1; i++) {
|
||
|
c = *p++;
|
||
|
sprintf(cursor, "%.2x", (int) (unsigned char) c);
|
||
|
cursor += 2;
|
||
|
}
|
||
|
buff[WWID_SIZE - 1] = '\0';
|
||
|
}
|
||
|
|
||
|
static int
|
||
|
get_lun_strings(int fd, struct path * mypath)
|
||
|
{
|
||
|
char buff[36];
|
||
|
|
||
|
if (0 == do_inq(fd, 0, 0, 0, buff, 36, 1)) {
|
||
|
memcpy(mypath->vendor_id, &buff[8], 8);
|
||
|
memcpy(mypath->product_id, &buff[16], 16);
|
||
|
memcpy(mypath->rev, &buff[32], 4);
|
||
|
return 1;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
static int
|
||
|
get_serial (int fd, char * str)
|
||
|
{
|
||
|
char buff[MX_ALLOC_LEN + 1];
|
||
|
int len;
|
||
|
|
||
|
if (0 == do_inq(fd, 0, 1, 0x80, buff, MX_ALLOC_LEN, 0)) {
|
||
|
len = buff[3];
|
||
|
if (len > 0) {
|
||
|
memcpy(str, buff + 4, len);
|
||
|
buff[len] = '\0';
|
||
|
}
|
||
|
return 1;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
*/
|
||
|
|
||
|
/* hardware vendor specifics : add support for new models below */
|
||
|
static int
|
||
|
get_storageworks_wwid(int fd, char *str)
|
||
|
{
|
||
|
char buff[64];
|
||
|
|
||
|
if (0 == do_inq(fd, 0, 1, 0x83, buff, sizeof (buff), 1)) {
|
||
|
sprint_wwid(str, &buff[8]);
|
||
|
return 1;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/* White list switch */
|
||
|
static int
|
||
|
get_unique_id(int fd, struct path * mypath)
|
||
|
{
|
||
|
if (strncmp(mypath->product_id, "HSV110 (C)COMPAQ", 16) == 0 ||
|
||
|
strncmp(mypath->product_id, "HSG80 ", 16) == 0) {
|
||
|
get_storageworks_wwid(fd, mypath->wwid);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
basename(char * str1, char * str2)
|
||
|
{
|
||
|
char *p = str1 + (strlen(str1) - 1);
|
||
|
|
||
|
while (*--p != '/')
|
||
|
continue;
|
||
|
strcpy(str2, ++p);
|
||
|
}
|
||
|
|
||
|
static int
|
||
|
get_all_paths_sysfs(struct env * conf, struct path * all_paths)
|
||
|
{
|
||
|
int k=0;
|
||
|
int sg_fd;
|
||
|
struct sysfs_directory * sdir;
|
||
|
struct sysfs_directory * devp;
|
||
|
struct sysfs_dlink * linkp;
|
||
|
char buff[FILE_NAME_SIZE];
|
||
|
|
||
|
char block_path[FILE_NAME_SIZE];
|
||
|
|
||
|
sprintf(block_path, "%s/block", conf->sysfs_path);
|
||
|
sdir = sysfs_open_directory(block_path);
|
||
|
sysfs_read_directory(sdir);
|
||
|
devp = sdir->subdirs;
|
||
|
while (devp != NULL) {
|
||
|
sysfs_read_directory(devp);
|
||
|
linkp = devp->links;
|
||
|
while (linkp != NULL) {
|
||
|
if (!strncmp(linkp->name, "device", 6))
|
||
|
break;
|
||
|
linkp = linkp->next;
|
||
|
}
|
||
|
if (linkp == NULL) {
|
||
|
devp = devp->next;
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
basename(devp->path, buff);
|
||
|
sprintf(all_paths[k].sg_dev, "/dev/%s", buff);
|
||
|
strcpy(all_paths[k].dev, all_paths[k].sg_dev);
|
||
|
if ((sg_fd = open(all_paths[k].sg_dev, O_RDONLY)) < 0) {
|
||
|
devp = devp->next;
|
||
|
continue;
|
||
|
}
|
||
|
get_lun_strings(sg_fd, &all_paths[k]);
|
||
|
get_unique_id(sg_fd, &all_paths[k]);
|
||
|
all_paths[k].state = do_tur(sg_fd);
|
||
|
close(sg_fd);
|
||
|
basename(linkp->target->path, buff);
|
||
|
sscanf(buff, "%i:%i:%i:%i",
|
||
|
&all_paths[k].sg_id.host_no,
|
||
|
&all_paths[k].sg_id.channel,
|
||
|
&all_paths[k].sg_id.scsi_id,
|
||
|
&all_paths[k].sg_id.lun);
|
||
|
k++;
|
||
|
devp = devp->next;
|
||
|
}
|
||
|
sysfs_close_directory(sdir);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static int
|
||
|
get_all_paths_nosysfs(struct env * conf, struct path * all_paths,
|
||
|
struct scsi_dev * all_scsi_ids)
|
||
|
{
|
||
|
int k, i, sg_fd;
|
||
|
char buff[FILE_NAME_SIZE];
|
||
|
char file_name[FILE_NAME_SIZE];
|
||
|
|
||
|
for (k = 0; k < conf->max_devs; k++) {
|
||
|
strcpy(file_name, "/dev/sg");
|
||
|
sprintf(buff, "%d", k);
|
||
|
strncat(file_name, buff, FILE_NAME_SIZE);
|
||
|
strcpy(all_paths[k].sg_dev, file_name);
|
||
|
if ((sg_fd = open(file_name, O_RDONLY)) < 0)
|
||
|
continue;
|
||
|
get_lun_strings(sg_fd, &all_paths[k]);
|
||
|
get_unique_id(sg_fd, &all_paths[k]);
|
||
|
all_paths[k].state = do_tur(sg_fd);
|
||
|
if (0 > ioctl(sg_fd, SG_GET_SCSI_ID, &(all_paths[k].sg_id)))
|
||
|
printf("device %s failed on sg ioctl, skip\n",
|
||
|
file_name);
|
||
|
|
||
|
close(sg_fd);
|
||
|
|
||
|
for (i = 0; i < conf->max_devs; i++) {
|
||
|
if ((all_paths[k].sg_id.host_no ==
|
||
|
all_scsi_ids[i].host_no)
|
||
|
&& (all_paths[k].sg_id.scsi_id ==
|
||
|
(all_scsi_ids[i].scsi_id.dev_id & 0xff))
|
||
|
&& (all_paths[k].sg_id.lun ==
|
||
|
((all_scsi_ids[i].scsi_id.dev_id >> 8) & 0xff))
|
||
|
&& (all_paths[k].sg_id.channel ==
|
||
|
((all_scsi_ids[i].scsi_id.
|
||
|
dev_id >> 16) & 0xff))) {
|
||
|
strcpy(all_paths[k].dev, all_scsi_ids[i].dev);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static int
|
||
|
get_all_scsi_ids(struct env * conf, struct scsi_dev * all_scsi_ids)
|
||
|
{
|
||
|
int k, big, little, res, host_no, fd;
|
||
|
char buff[64];
|
||
|
char fname[FILE_NAME_SIZE];
|
||
|
struct scsi_idlun my_scsi_id;
|
||
|
|
||
|
for (k = 0; k < conf->max_devs; k++) {
|
||
|
strcpy(fname, "/dev/sd");
|
||
|
if (k < 26) {
|
||
|
buff[0] = 'a' + (char) k;
|
||
|
buff[1] = '\0';
|
||
|
strcat(fname, buff);
|
||
|
} else if (k <= 255) { /* assumes sequence goes x,y,z,aa,ab,ac etc */
|
||
|
big = k / 26;
|
||
|
little = k - (26 * big);
|
||
|
big = big - 1;
|
||
|
|
||
|
buff[0] = 'a' + (char) big;
|
||
|
buff[1] = 'a' + (char) little;
|
||
|
buff[2] = '\0';
|
||
|
strcat(fname, buff);
|
||
|
} else
|
||
|
strcat(fname, "xxxx");
|
||
|
|
||
|
if ((fd = open(fname, O_RDONLY)) < 0)
|
||
|
continue;
|
||
|
|
||
|
res = ioctl(fd, SCSI_IOCTL_GET_IDLUN, &my_scsi_id);
|
||
|
if (res < 0) {
|
||
|
close(fd);
|
||
|
printf("Could not get scsi idlun\n");
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
res = ioctl(fd, SCSI_IOCTL_GET_BUS_NUMBER, &host_no);
|
||
|
if (res < 0) {
|
||
|
close(fd);
|
||
|
printf("Could not get host_no\n");
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
close(fd);
|
||
|
|
||
|
strcpy(all_scsi_ids[k].dev, fname);
|
||
|
all_scsi_ids[k].scsi_id = my_scsi_id;
|
||
|
all_scsi_ids[k].host_no = host_no;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/* print_path style */
|
||
|
#define ALL 0
|
||
|
#define NOWWID 1
|
||
|
|
||
|
static void
|
||
|
print_path(struct path * all_paths, int k, int style)
|
||
|
{
|
||
|
if (style != NOWWID)
|
||
|
printf("%s ", all_paths[k].wwid);
|
||
|
else
|
||
|
printf(" \\_");
|
||
|
printf("(%i %i %i %i) ",
|
||
|
all_paths[k].sg_id.host_no,
|
||
|
all_paths[k].sg_id.channel,
|
||
|
all_paths[k].sg_id.scsi_id, all_paths[k].sg_id.lun);
|
||
|
printf("%s ", all_paths[k].sg_dev);
|
||
|
printf("op:%i ", all_paths[k].state);
|
||
|
printf("%s ", all_paths[k].dev);
|
||
|
printf("[%.16s]\n", all_paths[k].product_id);
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
print_all_path(struct env * conf, struct path * all_paths)
|
||
|
{
|
||
|
int k;
|
||
|
char empty_buff[WWID_SIZE];
|
||
|
|
||
|
memset(empty_buff, 0, WWID_SIZE);
|
||
|
for (k = 0; k < conf->max_devs; k++) {
|
||
|
if (memcmp(empty_buff, all_paths[k].wwid, WWID_SIZE) == 0)
|
||
|
continue;
|
||
|
print_path(all_paths, k, ALL);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
print_all_mp(struct path * all_paths, struct multipath * mp, int nmp)
|
||
|
{
|
||
|
int k, i;
|
||
|
|
||
|
for (k = 0; k <= nmp; k++) {
|
||
|
printf("%s\n", mp[k].wwid);
|
||
|
for (i = 0; i <= mp[k].npaths; i++)
|
||
|
print_path(all_paths, PINDEX(k,i), NOWWID);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static int
|
||
|
coalesce_paths(struct env * conf, struct multipath * mp,
|
||
|
struct path * all_paths)
|
||
|
{
|
||
|
int k, i, nmp, np, already_done;
|
||
|
char empty_buff[WWID_SIZE];
|
||
|
|
||
|
nmp = -1;
|
||
|
already_done = 0;
|
||
|
memset(empty_buff, 0, WWID_SIZE);
|
||
|
|
||
|
for (k = 0; k < conf->max_devs - 1; k++) {
|
||
|
/* skip this path if no unique id has been found */
|
||
|
if (memcmp(empty_buff, all_paths[k].wwid, WWID_SIZE) == 0)
|
||
|
continue;
|
||
|
np = 0;
|
||
|
|
||
|
for (i = 0; i <= nmp; i++) {
|
||
|
if (0 == strcmp(mp[i].wwid, all_paths[k].wwid))
|
||
|
already_done = 1;
|
||
|
}
|
||
|
|
||
|
if (already_done) {
|
||
|
already_done = 0;
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
nmp++;
|
||
|
strcpy(mp[nmp].wwid, all_paths[k].wwid);
|
||
|
PINDEX(nmp,np) = k;
|
||
|
|
||
|
for (i = k + 1; i < conf->max_devs; i++) {
|
||
|
if (0 == strcmp(all_paths[k].wwid, all_paths[i].wwid)) {
|
||
|
np++;
|
||
|
PINDEX(nmp,np) = i;
|
||
|
mp[nmp].npaths = np;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return nmp;
|
||
|
}
|
||
|
|
||
|
static long
|
||
|
get_disk_size (struct env * conf, char * dev) {
|
||
|
long size;
|
||
|
int fd;
|
||
|
char attr_path[FILE_NAME_SIZE];
|
||
|
char buff[FILE_NAME_SIZE];
|
||
|
char basedev[FILE_NAME_SIZE];
|
||
|
|
||
|
if(conf->with_sysfs) {
|
||
|
basename(dev, basedev);
|
||
|
sprintf(attr_path, "%s/block/%s/size",
|
||
|
conf->sysfs_path, basedev);
|
||
|
if (0 > sysfs_read_attribute_value(attr_path, buff,
|
||
|
FILE_NAME_SIZE * sizeof(char)))
|
||
|
return -1;
|
||
|
size = atoi(buff);
|
||
|
return size;
|
||
|
} else {
|
||
|
if ((fd = open(dev, O_RDONLY)) < 0)
|
||
|
return -1;
|
||
|
if(!ioctl(fd, BLKGETSIZE, &size))
|
||
|
return size;
|
||
|
}
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
static int
|
||
|
make_dm_node(char * str)
|
||
|
{
|
||
|
int r = 0;
|
||
|
dev_t dev;
|
||
|
char buff[FILE_NAME_SIZE];
|
||
|
int major, minor;
|
||
|
struct dm_names * names;
|
||
|
unsigned next = 0;
|
||
|
struct dm_task *dmt;
|
||
|
|
||
|
if (!(dmt = dm_task_create(DM_DEVICE_LIST)))
|
||
|
return 0;
|
||
|
|
||
|
if (!dm_task_run(dmt))
|
||
|
goto out;
|
||
|
|
||
|
if (!(names = dm_task_get_names(dmt)))
|
||
|
goto out;
|
||
|
|
||
|
if (!names->dev) {
|
||
|
r = 1;
|
||
|
goto out;
|
||
|
}
|
||
|
|
||
|
do {
|
||
|
if (0 == strcmp(names->name, str))
|
||
|
break;
|
||
|
next = names->next;
|
||
|
names = (void *) names + next;
|
||
|
} while (next);
|
||
|
|
||
|
major = (int) MAJOR(names->dev);
|
||
|
minor = (int) MINOR(names->dev);
|
||
|
|
||
|
dev = major << sizeof(dev_t);
|
||
|
dev = dev | minor;
|
||
|
sprintf(buff, "/dev/mapper/%s", str);
|
||
|
unlink(buff);
|
||
|
mknod(buff, 0600 | S_IFBLK, dev);
|
||
|
|
||
|
out:
|
||
|
dm_task_destroy(dmt);
|
||
|
return r;
|
||
|
|
||
|
}
|
||
|
|
||
|
/* future use ?
|
||
|
static int
|
||
|
del_map(char * str) {
|
||
|
struct dm_task *dmt;
|
||
|
|
||
|
if (!(dmt = dm_task_create(DM_DEVICE_REMOVE)))
|
||
|
return 0;
|
||
|
if (!dm_task_set_name(dmt, str))
|
||
|
goto delout;
|
||
|
if (!dm_task_run(dmt))
|
||
|
goto delout;
|
||
|
|
||
|
printf("Deleted device map : %s\n", str);
|
||
|
|
||
|
delout:
|
||
|
dm_task_destroy(dmt);
|
||
|
return 1;
|
||
|
}
|
||
|
*/
|
||
|
|
||
|
static int
|
||
|
add_map(struct env * conf, struct path * all_paths,
|
||
|
struct multipath * mp, int index, int op)
|
||
|
{
|
||
|
char params[255];
|
||
|
char * params_p;
|
||
|
struct dm_task *dmt;
|
||
|
int i, np;
|
||
|
long size = -1;
|
||
|
|
||
|
if (!(dmt = dm_task_create(op)))
|
||
|
return 0;
|
||
|
|
||
|
if (!dm_task_set_name(dmt, mp[index].wwid))
|
||
|
goto addout;
|
||
|
params_p = ¶ms[0];
|
||
|
|
||
|
np = 0;
|
||
|
for (i=0; i<=mp[index].npaths; i++) {
|
||
|
if ((1 == all_paths[PINDEX(index,i)].state) &&
|
||
|
(0 == all_paths[PINDEX(index,i)].sg_id.scsi_type))
|
||
|
np++;
|
||
|
}
|
||
|
if (np == 0)
|
||
|
goto addout;
|
||
|
params_p += sprintf(params_p, "%i 32", np);
|
||
|
|
||
|
for (i=0; i<=mp[index].npaths; i++) {
|
||
|
if (( 0 == all_paths[PINDEX(index,i)].state) ||
|
||
|
(0 != all_paths[PINDEX(index,i)].sg_id.scsi_type))
|
||
|
continue;
|
||
|
if (size < 0)
|
||
|
size = get_disk_size(conf, all_paths[PINDEX(index,0)].dev);
|
||
|
params_p += sprintf(params_p, " %s %i",
|
||
|
all_paths[PINDEX(index,i)].dev, 0);
|
||
|
}
|
||
|
|
||
|
if (size < 0)
|
||
|
goto addout;
|
||
|
|
||
|
if (!conf->quiet) {
|
||
|
if (op == DM_DEVICE_RELOAD)
|
||
|
printf("U|");
|
||
|
if (op == DM_DEVICE_CREATE)
|
||
|
printf("N|");
|
||
|
printf("%s : 0 %li %s %s\n",
|
||
|
mp[index].wwid, size, DM_TARGET, params);
|
||
|
}
|
||
|
|
||
|
if (!dm_task_add_target(dmt, 0, size, DM_TARGET, params))
|
||
|
goto addout;
|
||
|
|
||
|
if (!dm_task_run(dmt))
|
||
|
goto addout;
|
||
|
|
||
|
|
||
|
make_dm_node(mp[index].wwid);
|
||
|
|
||
|
addout:
|
||
|
dm_task_destroy(dmt);
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
static int
|
||
|
get_table(const char * str)
|
||
|
{
|
||
|
int r = 0;
|
||
|
struct dm_task *dmt;
|
||
|
void *next = NULL;
|
||
|
uint64_t start, length;
|
||
|
char *target_type = NULL;
|
||
|
char *params;
|
||
|
|
||
|
if (!(dmt = dm_task_create(DM_DEVICE_TABLE)))
|
||
|
return 0;
|
||
|
|
||
|
if (!dm_task_set_name(dmt, str))
|
||
|
goto out;
|
||
|
|
||
|
if (!dm_task_run(dmt))
|
||
|
goto out;
|
||
|
|
||
|
do {
|
||
|
next = dm_get_next_target(dmt, next, &start, &length,
|
||
|
&target_type, ¶ms);
|
||
|
if (target_type) {
|
||
|
printf("%" PRIu64 " %" PRIu64 " %s %s\n",
|
||
|
start, length, target_type, params);
|
||
|
}
|
||
|
} while (next);
|
||
|
|
||
|
r = 1;
|
||
|
|
||
|
out:
|
||
|
dm_task_destroy(dmt);
|
||
|
return r;
|
||
|
|
||
|
}
|
||
|
*/
|
||
|
|
||
|
static int
|
||
|
map_present(char * str)
|
||
|
{
|
||
|
int r = 0;
|
||
|
struct dm_task *dmt;
|
||
|
struct dm_names *names;
|
||
|
unsigned next = 0;
|
||
|
|
||
|
if (!(dmt = dm_task_create(DM_DEVICE_LIST)))
|
||
|
return 0;
|
||
|
|
||
|
if (!dm_task_run(dmt))
|
||
|
goto out;
|
||
|
|
||
|
if (!(names = dm_task_get_names(dmt)))
|
||
|
goto out;
|
||
|
|
||
|
if (!names->dev) {
|
||
|
goto out;
|
||
|
}
|
||
|
|
||
|
do {
|
||
|
if (0 == strcmp(names->name, str))
|
||
|
r = 1;
|
||
|
next = names->next;
|
||
|
names = (void *) names + next;
|
||
|
} while (next);
|
||
|
|
||
|
out:
|
||
|
dm_task_destroy(dmt);
|
||
|
return r;
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
usage(char * progname)
|
||
|
{
|
||
|
fprintf(stderr, VERSION_STRING);
|
||
|
fprintf(stderr, "Usage: %s [-v|-q] [-d] [-m max_devs]\n", progname);
|
||
|
fprintf(stderr, "\t-v\t\tverbose, print all paths and multipaths\n");
|
||
|
fprintf(stderr, "\t-q\t\tquiet, no output at all\n");
|
||
|
fprintf(stderr, "\t-d\t\tdry run, do not create or update devmaps\n");
|
||
|
fprintf(stderr, "\t-m max_devs\tscan {max_devs} devices at most\n");
|
||
|
exit(1);
|
||
|
}
|
||
|
|
||
|
int
|
||
|
main(int argc, char *argv[])
|
||
|
{
|
||
|
struct multipath * mp;
|
||
|
struct path * all_paths;
|
||
|
struct scsi_dev * all_scsi_ids;
|
||
|
struct env conf;
|
||
|
int i, k, nmp;
|
||
|
|
||
|
/* Default behaviour */
|
||
|
conf.max_devs = MAX_DEVS;
|
||
|
conf.dry_run = 0; /* 1 == Do not Create/Update devmaps */
|
||
|
conf.verbose = 0; /* 1 == Print all_paths and mp */
|
||
|
conf.quiet = 0; /* 1 == Do not even print devmaps */
|
||
|
conf.with_sysfs = 0; /* Default to compat / suboptimal behaviour */
|
||
|
|
||
|
/* kindly provided by libsysfs */
|
||
|
if (0 == sysfs_get_mnt_path(conf.sysfs_path, FILE_NAME_SIZE))
|
||
|
conf.with_sysfs = 1;
|
||
|
|
||
|
for (i = 1; i < argc; ++i) {
|
||
|
if (0 == strcmp("-v", argv[i])) {
|
||
|
if (conf.quiet == 1)
|
||
|
usage(argv[0]);
|
||
|
conf.verbose = 1;
|
||
|
} else if (0 == strcmp("-m", argv[i])) {
|
||
|
conf.max_devs = atoi(argv[++i]);
|
||
|
if (conf.max_devs < 2)
|
||
|
usage(argv[0]);
|
||
|
} else if (0 == strcmp("-q", argv[i])) {
|
||
|
if (conf.verbose == 1)
|
||
|
usage(argv[0]);
|
||
|
conf.quiet = 1;
|
||
|
} else if (0 == strcmp("-d", argv[i]))
|
||
|
conf.dry_run = 1;
|
||
|
else if (*argv[i] == '-') {
|
||
|
fprintf(stderr, "Unknown switch: %s\n", argv[i]);
|
||
|
usage(argv[0]);
|
||
|
} else if (*argv[i] != '-') {
|
||
|
fprintf(stderr, "Unknown argument\n");
|
||
|
usage(argv[0]);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
/* dynamic allocations */
|
||
|
mp = malloc(conf.max_devs * sizeof(struct multipath));
|
||
|
all_paths = malloc(conf.max_devs * sizeof(struct path));
|
||
|
all_scsi_ids = malloc(conf.max_devs * sizeof(struct scsi_dev));
|
||
|
if (mp == NULL || all_paths == NULL || all_scsi_ids == NULL)
|
||
|
exit(1);
|
||
|
|
||
|
if (!conf.with_sysfs) {
|
||
|
get_all_scsi_ids(&conf, all_scsi_ids);
|
||
|
get_all_paths_nosysfs(&conf, all_paths, all_scsi_ids);
|
||
|
} else {
|
||
|
get_all_paths_sysfs(&conf, all_paths);
|
||
|
}
|
||
|
nmp = coalesce_paths(&conf, mp, all_paths);
|
||
|
|
||
|
if (conf.verbose) {
|
||
|
print_all_path(&conf, all_paths);
|
||
|
printf("\n");
|
||
|
print_all_mp(all_paths, mp, nmp);
|
||
|
printf("\n");
|
||
|
}
|
||
|
|
||
|
if (conf.dry_run)
|
||
|
exit(0);
|
||
|
|
||
|
for (k=0; k<=nmp; k++) {
|
||
|
if (map_present(mp[k].wwid)) {
|
||
|
add_map(&conf, all_paths, mp, k, DM_DEVICE_RELOAD);
|
||
|
} else {
|
||
|
add_map(&conf, all_paths, mp, k, DM_DEVICE_CREATE);
|
||
|
}
|
||
|
}
|
||
|
exit(0);
|
||
|
}
|