secret_conf.h 2.1 KB
Newer Older
1 2 3
/*
 * secret_conf.h: internal <secret> XML handling API
 *
4
 * Copyright (C) 2009-2010, 2013-2014, 2016 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * 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
17
 * License along with this library.  If not, see
O
Osier Yang 已提交
18
 * <http://www.gnu.org/licenses/>.
19 20 21 22 23
 *
 * Red Hat Author: Miloslav Trmač <mitr@redhat.com>
 */

#ifndef __VIR_SECRET_CONF_H__
24
# define __VIR_SECRET_CONF_H__
25

26
# include "internal.h"
27
# include "virutil.h"
28

29
VIR_ENUM_DECL(virSecretUsage)
30 31 32 33

typedef struct _virSecretDef virSecretDef;
typedef virSecretDef *virSecretDefPtr;
struct _virSecretDef {
34
    bool ephemeral;
35
    bool private;
36
    unsigned char uuid[VIR_UUID_BUFLEN];
37 38 39 40
    char *description;          /* May be NULL */
    int usage_type;
    union {
        char *volume;               /* May be NULL */
S
Sage Weil 已提交
41
        char *ceph;
42
        char *target;
43 44 45
    } usage;
};

46 47
const char *virSecretUsageIDForDef(virSecretDefPtr def);

48
void virSecretDefFree(virSecretDefPtr def);
49 50
virSecretDefPtr virSecretDefParseString(const char *xml);
virSecretDefPtr virSecretDefParseFile(const char *filename);
E
Eric Blake 已提交
51
char *virSecretDefFormat(const virSecretDef *def);
52

O
Osier Yang 已提交
53 54 55 56 57 58 59 60 61 62 63 64
# define VIR_CONNECT_LIST_SECRETS_FILTERS_EPHEMERAL       \
                (VIR_CONNECT_LIST_SECRETS_EPHEMERAL     | \
                 VIR_CONNECT_LIST_SECRETS_NO_EPHEMERAL)

# define VIR_CONNECT_LIST_SECRETS_FILTERS_PRIVATE       \
                (VIR_CONNECT_LIST_SECRETS_PRIVATE     | \
                 VIR_CONNECT_LIST_SECRETS_NO_PRIVATE)

# define VIR_CONNECT_LIST_SECRETS_FILTERS_ALL                  \
                (VIR_CONNECT_LIST_SECRETS_FILTERS_EPHEMERAL  | \
                 VIR_CONNECT_LIST_SECRETS_FILTERS_PRIVATE)

65
#endif