D-Bus  1.7.6
dbus-userdb.h
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-userdb.h User database abstraction
3  *
4  * Copyright (C) 2003 Red Hat, Inc.
5  *
6  * Licensed under the Academic Free License version 2.1
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  *
22  */
23 
24 #ifndef DBUS_USERDB_H
25 #define DBUS_USERDB_H
26 
27 #include <dbus/dbus-sysdeps-unix.h>
28 
29 #ifdef DBUS_WIN
30 #error "Don't include this on Windows"
31 #endif
32 
34 
35 typedef struct DBusUserDatabase DBusUserDatabase;
36 
37 #ifdef DBUS_USERDB_INCLUDES_PRIVATE
38 #include <dbus/dbus-hash.h>
39 
43 struct DBusUserDatabase
44 {
45  int refcount;
47  DBusHashTable *users;
48  DBusHashTable *groups;
49  DBusHashTable *users_by_name;
50  DBusHashTable *groups_by_name;
52 };
53 
54 
55 DBusUserDatabase* _dbus_user_database_new (void);
56 DBusUserDatabase* _dbus_user_database_ref (DBusUserDatabase *db);
57 void _dbus_user_database_flush (DBusUserDatabase *db);
58 void _dbus_user_database_unref (DBusUserDatabase *db);
59 dbus_bool_t _dbus_user_database_get_uid (DBusUserDatabase *db,
60  dbus_uid_t uid,
61  const DBusUserInfo **info,
62  DBusError *error);
63 dbus_bool_t _dbus_user_database_get_gid (DBusUserDatabase *db,
64  dbus_gid_t gid,
65  const DBusGroupInfo **info,
66  DBusError *error);
67 dbus_bool_t _dbus_user_database_get_username (DBusUserDatabase *db,
68  const DBusString *username,
69  const DBusUserInfo **info,
70  DBusError *error);
72  const DBusString *groupname,
73  const DBusGroupInfo **info,
74  DBusError *error);
75 
76 DBusUserInfo* _dbus_user_database_lookup (DBusUserDatabase *db,
77  dbus_uid_t uid,
78  const DBusString *username,
79  DBusError *error);
80 DBusGroupInfo* _dbus_user_database_lookup_group (DBusUserDatabase *db,
81  dbus_gid_t gid,
82  const DBusString *groupname,
83  DBusError *error);
86 #endif /* DBUS_USERDB_INCLUDES_PRIVATE */
87 
88 DBusUserDatabase* _dbus_user_database_get_system (void);
89 dbus_bool_t _dbus_user_database_lock_system (void) _DBUS_GNUC_WARN_UNUSED_RESULT;
92 
94  dbus_uid_t *uid);
95 dbus_bool_t _dbus_get_group_id (const DBusString *group_name,
96  dbus_gid_t *gid);
98  dbus_uid_t *uid_p,
99  dbus_gid_t *gid_p);
100 dbus_bool_t _dbus_credentials_from_uid (dbus_uid_t user_id,
101  DBusCredentials *credentials);
103  dbus_gid_t **group_ids,
104  int *n_group_ids);
106  DBusError *error);
107 
109  unsigned long *num);
110 
114  DBusString *homedir);
115 
117  DBusString *homedir);
118 
120 
121 #endif /* DBUS_USERDB_H */