viriscsi.h 2.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * viriscsi.h: helper APIs for managing iSCSI
 *
 * Copyright (C) 2014 Red Hat, 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/>.
 *
 */

22
#pragma once
23

24
#include "internal.h"
25 26 27 28 29 30 31 32 33 34

char *
virISCSIGetSession(const char *devpath,
                   bool probe)
    ATTRIBUTE_NONNULL(1);

int
virISCSIConnectionLogin(const char *portal,
                        const char *initiatoriqn,
                        const char *target)
35
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(3)
36 37 38 39 40 41
    ATTRIBUTE_RETURN_CHECK;

int
virISCSIConnectionLogout(const char *portal,
                         const char *initiatoriqn,
                         const char *target)
42
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(3)
43 44 45 46 47 48 49 50
    ATTRIBUTE_RETURN_CHECK;

int
virISCSIRescanLUNs(const char *session)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_RETURN_CHECK;

int
virISCSIScanTargets(const char *portal,
51
                    const char *initiatoriqn,
52
                    bool persist,
53 54
                    size_t *ntargetsret,
                    char ***targetsret)
55
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_RETURN_CHECK;
56

J
John Ferlan 已提交
57 58 59 60 61 62
int
virISCSINodeNew(const char *portal,
                const char *target)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
    ATTRIBUTE_RETURN_CHECK;

63 64 65 66 67 68 69
int
virISCSINodeUpdate(const char *portal,
                   const char *target,
                   const char *name,
                   const char *value)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3)
    ATTRIBUTE_NONNULL(4) ATTRIBUTE_RETURN_CHECK;