virscsi.h 4.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * 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/>.
 */

21 22
#ifndef LIBVIRT_VIRSCSI_H
# define LIBVIRT_VIRSCSI_H
23 24 25

# include "internal.h"
# include "virobject.h"
26
# include "virautoclean.h"
27 28 29 30 31 32 33

typedef struct _virSCSIDevice virSCSIDevice;
typedef virSCSIDevice *virSCSIDevicePtr;

typedef struct _virSCSIDeviceList virSCSIDeviceList;
typedef virSCSIDeviceList *virSCSIDeviceListPtr;

34 35
char *virSCSIDeviceGetSgName(const char *sysfs_prefix,
                             const char *adapter,
36 37
                             unsigned int bus,
                             unsigned int target,
38
                             unsigned long long unit) ATTRIBUTE_NOINLINE;
39 40
char *virSCSIDeviceGetDevName(const char *sysfs_prefix,
                              const char *adapter,
41 42
                              unsigned int bus,
                              unsigned int target,
43
                              unsigned long long unit);
44

45 46
virSCSIDevicePtr virSCSIDeviceNew(const char *sysfs_prefix,
                                  const char *adapter,
47 48
                                  unsigned int bus,
                                  unsigned int target,
49
                                  unsigned long long unit,
50 51
                                  bool readonly,
                                  bool shareable);
52 53

void virSCSIDeviceFree(virSCSIDevicePtr dev);
C
Chunyan Liu 已提交
54 55 56
int virSCSIDeviceSetUsedBy(virSCSIDevicePtr dev,
                           const char *drvname,
                           const char *domname);
57
bool virSCSIDeviceIsAvailable(virSCSIDevicePtr dev);
58
const char *virSCSIDeviceGetName(virSCSIDevicePtr dev);
59
const char *virSCSIDeviceGetPath(virSCSIDevicePtr dev);
60 61 62
unsigned int virSCSIDeviceGetAdapter(virSCSIDevicePtr dev);
unsigned int virSCSIDeviceGetBus(virSCSIDevicePtr dev);
unsigned int virSCSIDeviceGetTarget(virSCSIDevicePtr dev);
63
unsigned long long virSCSIDeviceGetUnit(virSCSIDevicePtr dev);
64
bool virSCSIDeviceGetReadonly(virSCSIDevicePtr dev);
65
bool virSCSIDeviceGetShareable(virSCSIDevicePtr dev);
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85

/*
 * 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);
86
size_t virSCSIDeviceListCount(virSCSIDeviceListPtr list);
87 88 89
virSCSIDevicePtr virSCSIDeviceListSteal(virSCSIDeviceListPtr list,
                                        virSCSIDevicePtr dev);
void virSCSIDeviceListDel(virSCSIDeviceListPtr list,
90
                          virSCSIDevicePtr dev,
C
Chunyan Liu 已提交
91 92
                          const char *drvname,
                          const char *domname);
93 94 95
virSCSIDevicePtr virSCSIDeviceListFind(virSCSIDeviceListPtr list,
                                       virSCSIDevicePtr dev);

96
VIR_DEFINE_AUTOPTR_FUNC(virSCSIDevice, virSCSIDeviceFree);
97

98
#endif /* LIBVIRT_VIRSCSI_H */