diff options
Diffstat (limited to 'src/polkit/polkit-authorization-db.h')
-rw-r--r-- | src/polkit/polkit-authorization-db.h | 175 |
1 files changed, 0 insertions, 175 deletions
diff --git a/src/polkit/polkit-authorization-db.h b/src/polkit/polkit-authorization-db.h deleted file mode 100644 index c206a32..0000000 --- a/src/polkit/polkit-authorization-db.h +++ /dev/null @@ -1,175 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */ -/*************************************************************************** - * - * polkit-authorization-db.h : Represents the authorization database - * - * Copyright (C) 2007 David Zeuthen, <david@fubar.dk> - * - * Permission is hereby granted, free of charge, to any person - * obtaining a copy of this software and associated documentation - * files (the "Software"), to deal in the Software without - * restriction, including without limitation the rights to use, copy, - * modify, merge, publish, distribute, sublicense, and/or sell copies - * of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - * DEALINGS IN THE SOFTWARE. - * - **************************************************************************/ - -#if !defined (POLKIT_COMPILATION) && !defined(_POLKIT_INSIDE_POLKIT_H) -#error "Only <polkit/polkit.h> can be included directly, this file may disappear or change contents." -#endif - -#ifndef POLKIT_AUTHORIZATION_DB_H -#define POLKIT_AUTHORIZATION_DB_H - -#include <polkit/polkit-types.h> -#include <polkit/polkit-authorization.h> -#include <polkit/polkit-action.h> -#include <polkit/polkit-result.h> -#include <polkit/polkit-caller.h> -#include <polkit/polkit-session.h> -#include <polkit/polkit-error.h> - -POLKIT_BEGIN_DECLS - -struct _PolKitAuthorizationDB; -typedef struct _PolKitAuthorizationDB PolKitAuthorizationDB; - -/** - * PolKitAuthorizationDBCapability: - * @POLKIT_AUTHORIZATION_DB_CAPABILITY_CAN_OBTAIN: Users can obtain - * authorizations through authentication - * - * Capabilities of the authorization database backend. - * - * Since: 0.7 - */ -typedef enum -{ - POLKIT_AUTHORIZATION_DB_CAPABILITY_CAN_OBTAIN = 1 << 0 -} PolKitAuthorizationDBCapability; - -PolKitAuthorizationDBCapability polkit_authorization_db_get_capabilities (void); - -PolKitAuthorizationDB *polkit_authorization_db_ref (PolKitAuthorizationDB *authdb); -void polkit_authorization_db_unref (PolKitAuthorizationDB *authdb); - -void polkit_authorization_db_debug (PolKitAuthorizationDB *authdb); -polkit_bool_t polkit_authorization_db_validate (PolKitAuthorizationDB *authdb); - -polkit_bool_t polkit_authorization_db_is_session_authorized (PolKitAuthorizationDB *authdb, - PolKitAction *action, - PolKitSession *session, - polkit_bool_t *out_is_authorized, - polkit_bool_t *out_is_negative_authorized, - PolKitError **error); - -polkit_bool_t polkit_authorization_db_is_caller_authorized (PolKitAuthorizationDB *authdb, - PolKitAction *action, - PolKitCaller *caller, - polkit_bool_t revoke_if_one_shot, - polkit_bool_t *out_is_authorized, - polkit_bool_t *out_is_negative_authorized, - PolKitError **error); - -/** - * PolKitAuthorizationDBForeach: - * @authdb: authorization database - * @auth: authorization; user shall not unref this object. Unless - * reffed by the user it will be destroyed when the callback function - * returns. - * @user_data: user data passed - * - * Type of callback function for iterating over authorizations. - * - * Returns: pass #TRUE to stop iterating - * - * Since: 0.7 - */ -typedef polkit_bool_t (*PolKitAuthorizationDBForeach) (PolKitAuthorizationDB *authdb, - PolKitAuthorization *auth, - void *user_data); - -polkit_bool_t polkit_authorization_db_foreach (PolKitAuthorizationDB *authdb, - PolKitAuthorizationDBForeach cb, - void *user_data, - PolKitError **error); - -polkit_bool_t polkit_authorization_db_foreach_for_uid (PolKitAuthorizationDB *authdb, - uid_t uid, - PolKitAuthorizationDBForeach cb, - void *user_data, - PolKitError **error); - -polkit_bool_t polkit_authorization_db_foreach_for_action (PolKitAuthorizationDB *authdb, - PolKitAction *action, - PolKitAuthorizationDBForeach cb, - void *user_data, - PolKitError **error); - -polkit_bool_t polkit_authorization_db_foreach_for_action_for_uid (PolKitAuthorizationDB *authdb, - PolKitAction *action, - uid_t uid, - PolKitAuthorizationDBForeach cb, - void *user_data, - PolKitError **error); - -polkit_bool_t polkit_authorization_db_add_entry_process_one_shot (PolKitAuthorizationDB *authdb, - PolKitAction *action, - PolKitCaller *caller, - uid_t user_authenticated_as); - -polkit_bool_t polkit_authorization_db_add_entry_process (PolKitAuthorizationDB *authdb, - PolKitAction *action, - PolKitCaller *caller, - uid_t user_authenticated_as); - -polkit_bool_t polkit_authorization_db_add_entry_session (PolKitAuthorizationDB *authdb, - PolKitAction *action, - PolKitCaller *caller, - uid_t user_authenticated_as); - -polkit_bool_t polkit_authorization_db_add_entry_always (PolKitAuthorizationDB *authdb, - PolKitAction *action, - PolKitCaller *caller, - uid_t user_authenticated_as); - -polkit_bool_t polkit_authorization_db_grant_to_uid (PolKitAuthorizationDB *authdb, - PolKitAction *action, - uid_t uid, - PolKitAuthorizationConstraint **constraints, - PolKitError **error); - -polkit_bool_t polkit_authorization_db_grant_negative_to_uid (PolKitAuthorizationDB *authdb, - PolKitAction *action, - uid_t uid, - PolKitAuthorizationConstraint **constraints, - PolKitError **error); - -polkit_bool_t polkit_authorization_db_revoke_entry (PolKitAuthorizationDB *authdb, - PolKitAuthorization *auth, - PolKitError **error); - - -polkit_bool_t polkit_authorization_db_is_uid_blocked_by_self (PolKitAuthorizationDB *authdb, - PolKitAction *action, - uid_t uid, - PolKitError **error); - -POLKIT_END_DECLS - -#endif /* POLKIT_AUTHORIZATION_DB_H */ - - |