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"
|
2013-05-03 18:07:22 +00:00
|
|
|
|
|
|
|
typedef struct _virSCSIDevice virSCSIDevice;
|
|
|
|
|
|
|
|
typedef struct _virSCSIDeviceList virSCSIDeviceList;
|
|
|
|
|
2019-10-04 16:14:10 +00:00
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(virSCSIDeviceList, virObjectUnref);
|
|
|
|
|
|
|
|
|
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,
|
2019-10-15 11:24:34 +00:00
|
|
|
unsigned long long unit) G_GNUC_NO_INLINE;
|
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
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
virSCSIDevice *virSCSIDeviceNew(const char *sysfs_prefix,
|
2014-01-30 07:05:59 +00:00
|
|
|
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
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
void virSCSIDeviceFree(virSCSIDevice *dev);
|
|
|
|
int virSCSIDeviceSetUsedBy(virSCSIDevice *dev,
|
2014-03-01 06:28:56 +00:00
|
|
|
const char *drvname,
|
|
|
|
const char *domname);
|
2021-03-11 07:16:13 +00:00
|
|
|
bool virSCSIDeviceIsAvailable(virSCSIDevice *dev);
|
|
|
|
const char *virSCSIDeviceGetName(virSCSIDevice *dev);
|
|
|
|
const char *virSCSIDeviceGetPath(virSCSIDevice *dev);
|
|
|
|
unsigned int virSCSIDeviceGetAdapter(virSCSIDevice *dev);
|
|
|
|
unsigned int virSCSIDeviceGetBus(virSCSIDevice *dev);
|
|
|
|
unsigned int virSCSIDeviceGetTarget(virSCSIDevice *dev);
|
|
|
|
unsigned long long virSCSIDeviceGetUnit(virSCSIDevice *dev);
|
|
|
|
bool virSCSIDeviceGetReadonly(virSCSIDevice *dev);
|
|
|
|
bool virSCSIDeviceGetShareable(virSCSIDevice *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
|
|
|
|
*/
|
2021-03-11 07:16:13 +00:00
|
|
|
typedef int (*virSCSIDeviceFileActor)(virSCSIDevice *dev,
|
2013-05-03 18:07:22 +00:00
|
|
|
const char *path, void *opaque);
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int virSCSIDeviceFileIterate(virSCSIDevice *dev,
|
2013-05-03 18:07:22 +00:00
|
|
|
virSCSIDeviceFileActor actor,
|
|
|
|
void *opaque);
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
virSCSIDeviceList *virSCSIDeviceListNew(void);
|
|
|
|
int virSCSIDeviceListAdd(virSCSIDeviceList *list,
|
|
|
|
virSCSIDevice *dev);
|
|
|
|
virSCSIDevice *virSCSIDeviceListGet(virSCSIDeviceList *list,
|
2013-05-03 18:07:22 +00:00
|
|
|
int idx);
|
2021-03-11 07:16:13 +00:00
|
|
|
size_t virSCSIDeviceListCount(virSCSIDeviceList *list);
|
|
|
|
virSCSIDevice *virSCSIDeviceListSteal(virSCSIDeviceList *list,
|
|
|
|
virSCSIDevice *dev);
|
|
|
|
void virSCSIDeviceListDel(virSCSIDeviceList *list,
|
|
|
|
virSCSIDevice *dev,
|
2014-03-01 06:28:56 +00:00
|
|
|
const char *drvname,
|
|
|
|
const char *domname);
|
2021-03-11 07:16:13 +00:00
|
|
|
virSCSIDevice *virSCSIDeviceListFind(virSCSIDeviceList *list,
|
|
|
|
virSCSIDevice *dev);
|
2013-05-03 18:07:22 +00:00
|
|
|
|
2019-10-15 12:47:50 +00:00
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(virSCSIDevice, virSCSIDeviceFree);
|