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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/*
* Copyright (C) 2010-2011 Robert Ancell.
* Author: Robert Ancell <robert.ancell@canonical.com>
*
* 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. See http://www.gnu.org/copyleft/gpl.html the full text of the
* license.
*/
#include <string.h>
#include <ctype.h>
#include "guest-account.h"
#include "configuration.h"
static gchar *
get_setup_script (void)
{
gchar *script;
static gchar *setup_script = NULL;
if (setup_script)
return setup_script;
script = config_get_string (config_get_instance (), "LightDM", "guest-account-script");
if (!script)
return NULL;
setup_script = g_find_program_in_path (script);
g_free (script);
return setup_script;
}
gboolean
guest_account_is_installed (void)
{
return get_setup_script () != NULL;
}
static gboolean
run_script (const gchar *script, gchar **stdout_text, gint *exit_status, GError **error)
{
gint argc;
gchar **argv;
gboolean result;
if (!g_shell_parse_argv (script, &argc, &argv, error))
return FALSE;
result = g_spawn_sync (NULL, argv, NULL,
G_SPAWN_SEARCH_PATH,
NULL, NULL,
stdout_text, NULL, exit_status, error);
g_strfreev (argv);
return result;
}
gchar *
guest_account_setup (void)
{
gchar *command, *stdout_text, *username, **lines;
gint exit_status;
gboolean result;
GError *error = NULL;
command = g_strdup_printf ("%s add", get_setup_script ());
g_debug ("Opening guest account with command '%s'", command);
result = run_script (command, &stdout_text, &exit_status, &error);
g_free (command);
if (error)
g_warning ("Error running guest account setup script '%s': %s", get_setup_script (), error->message);
g_clear_error (&error);
if (!result)
return NULL;
if (exit_status != 0)
{
g_debug ("Guest account setup script returns %d: %s", exit_status, stdout_text);
g_free (stdout_text);
return NULL;
}
/* Use the last line and trim whitespace */
lines = g_strsplit (g_strstrip (stdout_text), "\n", -1);
if (lines)
username = g_strdup (g_strstrip (lines[g_strv_length (lines) - 1]));
else
username = g_strdup ("");
g_free (stdout_text);
if (strcmp (username, "") == 0)
{
g_free (username);
g_debug ("Guest account setup script didn't return a username");
return NULL;
}
g_debug ("Guest account %s setup", username);
return username;
}
void
guest_account_cleanup (const gchar *username)
{
gchar *command;
gboolean result;
gint exit_status;
GError *error = NULL;
command = g_strdup_printf ("%s remove %s", get_setup_script (), username);
g_debug ("Closing guest account %s with command '%s'", username, command);
result = run_script (command, NULL, &exit_status, &error);
g_free (command);
if (error)
g_warning ("Error running guest account cleanup script '%s': %s", get_setup_script (), error->message);
g_clear_error (&error);
if (result && exit_status != 0)
g_debug ("Guest account cleanup script returns %d", exit_status);
}
|