File: util.h

package info (click to toggle)
accountsservice 0.6.45-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,340 kB
  • sloc: ansic: 8,509; sh: 4,352; xml: 2,545; makefile: 300; perl: 42
file content (54 lines) | stat: -rw-r--r-- 1,859 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2009-2010 Red Hat, Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Written by: Matthias Clasen <mclasen@redhat.com>
 */

#ifndef __UTIL_H__
#define __UTIL_H__

#include <glib.h>

G_BEGIN_DECLS

void sys_log (GDBusMethodInvocation *context,
              const gchar           *format,
                                     ...);

gboolean get_caller_uid (GDBusMethodInvocation *context, gint *uid);

gboolean spawn_with_login_uid (GDBusMethodInvocation  *context,
                               const gchar            *argv[],
                               GError                **error);

gint get_user_groups (const gchar  *username,
                      gid_t         group,
                      gid_t       **groups);

void add_user_to_group (GDBusMethodInvocation *context,
                        const char *user_name,
                        const char *group_name);

void remove_user_from_group (GDBusMethodInvocation *context,
                             const char *user_name,
                             const char *group_name);


G_END_DECLS

#endif /* __UTIL_H__ */