2013-05-03 18:07:22 +00:00
|
|
|
/*
|
|
|
|
* virscsi.h: helper APIs for managing host SCSI devices
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Fujitsu, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-06-18 16:13:07 +00:00
|
|
|
#pragma once
|
2013-05-03 18:07:22 +00:00
|
|
|
|
2019-06-18 16:13:07 +00:00
|
|
|
#include "internal.h"
|
|
|
|
#include "virobject.h"
|
|
|
|
#include "virautoclean.h"
|
2013-05-03 18:07:22 +00:00
|
|
|
|
|
|
|
typedef struct _virSCSIDevice virSCSIDevice;
|
|
|
|
typedef virSCSIDevice *virSCSIDevicePtr;
|
|
|
|
|
|
|
|
typedef struct _virSCSIDeviceList virSCSIDeviceList;
|
|
|
|
typedef virSCSIDeviceList *virSCSIDeviceListPtr;
|
|
|
|
|
2014-01-30 07:05:59 +00:00
|
|
|
char *virSCSIDeviceGetSgName(const char *sysfs_prefix,
|
|
|
|
const char *adapter,
|
2013-05-03 18:07:22 +00:00
|
|
|
unsigned int bus,
|
|
|
|
unsigned int target,
|
2017-07-12 10:07:17 +00:00
|
|
|
unsigned long long unit) ATTRIBUTE_NOINLINE;
|
2014-01-30 07:05:59 +00:00
|
|
|
char *virSCSIDeviceGetDevName(const char *sysfs_prefix,
|
|
|
|
const char *adapter,
|
2013-05-03 18:07:36 +00:00
|
|
|
unsigned int bus,
|
|
|
|
unsigned int target,
|
2015-06-17 03:29:53 +00:00
|
|
|
unsigned long long unit);
|
2013-05-03 18:07:22 +00:00
|
|
|
|
2014-01-30 07:05:59 +00:00
|
|
|
virSCSIDevicePtr virSCSIDeviceNew(const char *sysfs_prefix,
|
|
|
|
const char *adapter,
|
2013-05-03 18:07:22 +00:00
|
|
|
unsigned int bus,
|
|
|
|
unsigned int target,
|
2015-06-17 03:29:53 +00:00
|
|
|
unsigned long long unit,
|
2014-01-08 14:51:29 +00:00
|
|
|
bool readonly,
|
|
|
|
bool shareable);
|
2013-05-03 18:07:22 +00:00
|
|
|
|
|
|
|
void virSCSIDeviceFree(virSCSIDevicePtr dev);
|
2014-03-01 06:28:56 +00:00
|
|
|
int virSCSIDeviceSetUsedBy(virSCSIDevicePtr dev,
|
|
|
|
const char *drvname,
|
|
|
|
const char *domname);
|
2014-01-29 17:22:42 +00:00
|
|
|
bool virSCSIDeviceIsAvailable(virSCSIDevicePtr dev);
|
2013-05-03 18:07:22 +00:00
|
|
|
const char *virSCSIDeviceGetName(virSCSIDevicePtr dev);
|
2016-11-16 14:27:20 +00:00
|
|
|
const char *virSCSIDeviceGetPath(virSCSIDevicePtr dev);
|
2013-05-03 18:07:22 +00:00
|
|
|
unsigned int virSCSIDeviceGetAdapter(virSCSIDevicePtr dev);
|
|
|
|
unsigned int virSCSIDeviceGetBus(virSCSIDevicePtr dev);
|
|
|
|
unsigned int virSCSIDeviceGetTarget(virSCSIDevicePtr dev);
|
2015-06-17 03:29:53 +00:00
|
|
|
unsigned long long virSCSIDeviceGetUnit(virSCSIDevicePtr dev);
|
2013-05-03 18:07:22 +00:00
|
|
|
bool virSCSIDeviceGetReadonly(virSCSIDevicePtr dev);
|
2014-01-08 14:51:29 +00:00
|
|
|
bool virSCSIDeviceGetShareable(virSCSIDevicePtr dev);
|
2013-05-03 18:07:22 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Callback that will be invoked once for each file
|
|
|
|
* associated with / used for SCSI host device access.
|
|
|
|
*
|
|
|
|
* Should return 0 if successfully processed, or
|
|
|
|
* -1 to indicate error and abort iteration
|
|
|
|
*/
|
|
|
|
typedef int (*virSCSIDeviceFileActor)(virSCSIDevicePtr dev,
|
|
|
|
const char *path, void *opaque);
|
|
|
|
|
|
|
|
int virSCSIDeviceFileIterate(virSCSIDevicePtr dev,
|
|
|
|
virSCSIDeviceFileActor actor,
|
|
|
|
void *opaque);
|
|
|
|
|
|
|
|
virSCSIDeviceListPtr virSCSIDeviceListNew(void);
|
|
|
|
int virSCSIDeviceListAdd(virSCSIDeviceListPtr list,
|
|
|
|
virSCSIDevicePtr dev);
|
|
|
|
virSCSIDevicePtr virSCSIDeviceListGet(virSCSIDeviceListPtr list,
|
|
|
|
int idx);
|
2014-01-07 14:44:27 +00:00
|
|
|
size_t virSCSIDeviceListCount(virSCSIDeviceListPtr list);
|
2013-05-03 18:07:22 +00:00
|
|
|
virSCSIDevicePtr virSCSIDeviceListSteal(virSCSIDeviceListPtr list,
|
|
|
|
virSCSIDevicePtr dev);
|
|
|
|
void virSCSIDeviceListDel(virSCSIDeviceListPtr list,
|
2014-01-29 17:22:42 +00:00
|
|
|
virSCSIDevicePtr dev,
|
2014-03-01 06:28:56 +00:00
|
|
|
const char *drvname,
|
|
|
|
const char *domname);
|
2013-05-03 18:07:22 +00:00
|
|
|
virSCSIDevicePtr virSCSIDeviceListFind(virSCSIDeviceListPtr list,
|
|
|
|
virSCSIDevicePtr dev);
|
|
|
|
|
2019-02-07 17:18:52 +00:00
|
|
|
VIR_DEFINE_AUTOPTR_FUNC(virSCSIDevice, virSCSIDeviceFree);
|