Blame src/libostree/ostree-sepolicy.h

rpm-build 0fba15
/*
rpm-build 0fba15
 * Copyright (C) 2014 Colin Walters <walters@verbum.org>
rpm-build 0fba15
 *
rpm-build 0fba15
 * SPDX-License-Identifier: LGPL-2.0+
rpm-build 0fba15
 *
rpm-build 0fba15
 * This library is free software; you can redistribute it and/or
rpm-build 0fba15
 * modify it under the terms of the GNU Lesser General Public
rpm-build 0fba15
 * License as published by the Free Software Foundation; either
rpm-build 0fba15
 * version 2 of the License, or (at your option) any later version.
rpm-build 0fba15
 *
rpm-build 0fba15
 * This library is distributed in the hope that it will be useful,
rpm-build 0fba15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
rpm-build 0fba15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
rpm-build 0fba15
 * Lesser General Public License for more details.
rpm-build 0fba15
 *
rpm-build 0fba15
 * You should have received a copy of the GNU Lesser General Public
rpm-build 0fba15
 * License along with this library; if not, write to the
rpm-build 0fba15
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
rpm-build 0fba15
 * Boston, MA 02111-1307, USA.
rpm-build 0fba15
 */
rpm-build 0fba15
rpm-build 0fba15
#pragma once
rpm-build 0fba15
rpm-build 0fba15
#include "ostree-types.h"
rpm-build 0fba15
rpm-build 0fba15
G_BEGIN_DECLS
rpm-build 0fba15
rpm-build 0fba15
#define OSTREE_TYPE_SEPOLICY ostree_sepolicy_get_type()
rpm-build 0fba15
#define OSTREE_SEPOLICY(obj) \
rpm-build 0fba15
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), OSTREE_TYPE_SEPOLICY, OstreeSePolicy))
rpm-build 0fba15
#define OSTREE_IS_SEPOLICY(obj) \
rpm-build 0fba15
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), OSTREE_TYPE_SEPOLICY))
rpm-build 0fba15
rpm-build 0fba15
_OSTREE_PUBLIC
rpm-build 0fba15
GType ostree_sepolicy_get_type (void);
rpm-build 0fba15
rpm-build 0fba15
_OSTREE_PUBLIC
rpm-build 0fba15
OstreeSePolicy* ostree_sepolicy_new (GFile         *path,
rpm-build 0fba15
                                     GCancellable  *cancellable,
rpm-build 0fba15
                                     GError       **error);
rpm-build 0fba15
rpm-build 0fba15
_OSTREE_PUBLIC
rpm-build 0fba15
OstreeSePolicy* ostree_sepolicy_new_at (int            rootfs_dfd,
rpm-build 0fba15
                                        GCancellable  *cancellable,
rpm-build 0fba15
                                        GError       **error);
rpm-build 0fba15
rpm-build 0fba15
rpm-build 0fba15
_OSTREE_PUBLIC
rpm-build 0fba15
GFile * ostree_sepolicy_get_path (OstreeSePolicy  *self);
rpm-build 0fba15
rpm-build 0fba15
_OSTREE_PUBLIC
rpm-build 0fba15
const char *ostree_sepolicy_get_name (OstreeSePolicy *self);
rpm-build 0fba15
rpm-build 0fba15
_OSTREE_PUBLIC
rpm-build 0fba15
const char *ostree_sepolicy_get_csum (OstreeSePolicy *self);
rpm-build 0fba15
rpm-build 0fba15
_OSTREE_PUBLIC
rpm-build 0fba15
gboolean ostree_sepolicy_get_label (OstreeSePolicy    *self,
rpm-build 0fba15
                                    const char       *relpath,
rpm-build 0fba15
                                    guint32           unix_mode,
rpm-build 0fba15
                                    char            **out_label,
rpm-build 0fba15
                                    GCancellable     *cancellable,
rpm-build 0fba15
                                    GError          **error);
rpm-build 0fba15
rpm-build 0fba15
typedef enum {
rpm-build 0fba15
  OSTREE_SEPOLICY_RESTORECON_FLAGS_NONE,
rpm-build 0fba15
  OSTREE_SEPOLICY_RESTORECON_FLAGS_ALLOW_NOLABEL = (1 << 0),
rpm-build 0fba15
  OSTREE_SEPOLICY_RESTORECON_FLAGS_KEEP_EXISTING = (1 << 1)
rpm-build 0fba15
} OstreeSePolicyRestoreconFlags;
rpm-build 0fba15
rpm-build 0fba15
_OSTREE_PUBLIC
rpm-build 0fba15
gboolean ostree_sepolicy_restorecon (OstreeSePolicy   *self,
rpm-build 0fba15
                                     const char       *path,
rpm-build 0fba15
                                     GFileInfo        *info,
rpm-build 0fba15
                                     GFile            *target,
rpm-build 0fba15
                                     OstreeSePolicyRestoreconFlags  flags,
rpm-build 0fba15
                                     char            **out_new_label,
rpm-build 0fba15
                                     GCancellable     *cancellable,
rpm-build 0fba15
                                     GError          **error);
rpm-build 0fba15
rpm-build 0fba15
_OSTREE_PUBLIC
rpm-build 0fba15
gboolean ostree_sepolicy_setfscreatecon (OstreeSePolicy   *self,
rpm-build 0fba15
                                         const char       *path,
rpm-build 0fba15
                                         guint32           mode,
rpm-build 0fba15
                                         GError          **error);
rpm-build 0fba15
rpm-build 0fba15
_OSTREE_PUBLIC
rpm-build 0fba15
void ostree_sepolicy_fscreatecon_cleanup (void **unused);
rpm-build 0fba15
rpm-build 0fba15
#define ostree_cleanup_sepolicy_fscreatecon __attribute__ ((cleanup(ostree_sepolicy_fscreatecon_cleanup)))
rpm-build 0fba15
rpm-build 0fba15
G_END_DECLS