summaryrefslogtreecommitdiff
path: root/src/dmrc.c
blob: da8b51262555f1ee183da3113fd7d1438b318e60 (plain)
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
/*
 * 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 <errno.h>
#include <string.h>
#include <unistd.h>

#include "dmrc.h"
#include "configuration.h"
#include "accounts.h"
#include "privileges.h"

GKeyFile *
dmrc_load (const gchar *username)
{
    User *user;
    GKeyFile *dmrc_file;
    gchar *path;
    gboolean have_dmrc, drop_privileges;

    dmrc_file = g_key_file_new ();

    user = accounts_get_user_by_name (username);
    if (!user)
    {
        g_warning ("Cannot load .dmrc file, unable to get information on user %s", username);      
        return dmrc_file;
    }

    /* Load from the user directory, if this fails (e.g. the user directory
     * is not yet mounted) then load from the cache */
    path = g_build_filename (user_get_home_directory (user), ".dmrc", NULL);

    /* Guard against privilege escalation through symlinks, etc. */
    drop_privileges = geteuid () == 0;
    if (drop_privileges)
        privileges_drop (user);
    have_dmrc = g_key_file_load_from_file (dmrc_file, path, G_KEY_FILE_KEEP_COMMENTS, NULL);
    if (drop_privileges)
        privileges_reclaim ();
    g_free (path);

    /* If no ~/.dmrc, then load from the cache */  
    if (!have_dmrc)
    {
        gchar *filename, *cache_dir;

        filename = g_strdup_printf ("%s.dmrc", user_get_name (user));
        cache_dir = config_get_string (config_get_instance (), "LightDM", "cache-directory");
        path = g_build_filename (cache_dir, "dmrc", filename, NULL);
        g_free (filename);
        g_free (cache_dir);

        g_key_file_load_from_file (dmrc_file, path, G_KEY_FILE_KEEP_COMMENTS, NULL);
        g_free (path);
    }

    g_object_unref (user);

    return dmrc_file;
}

void
dmrc_save (GKeyFile *dmrc_file, const gchar *username)
{
    User *user;
    gchar *path, *filename, *cache_dir, *dmrc_cache_dir;
    gchar *data;
    gsize length;

    user = accounts_get_user_by_name (username);
    if (!user)
    {
        g_warning ("Not saving DMRC file - unable to get information on user %s", username);
        return;
    }

    data = g_key_file_to_data (dmrc_file, &length, NULL);

    /* Update the users .dmrc */
    if (user)
    {
        gboolean drop_privileges;

        path = g_build_filename (user_get_home_directory (user), ".dmrc", NULL);

        /* Guard against privilege escalation through symlinks, etc. */
        drop_privileges = geteuid () == 0;
        if (drop_privileges)
            privileges_drop (user);
        g_debug ("Writing %s", path);
        g_file_set_contents (path, data, length, NULL);
        if (drop_privileges)
            privileges_reclaim ();

        g_free (path);
    }

    /* Update the .dmrc cache */
    cache_dir = config_get_string (config_get_instance (), "LightDM", "cache-directory");
    dmrc_cache_dir = g_build_filename (cache_dir, "dmrc", NULL);
    g_mkdir_with_parents (dmrc_cache_dir, 0700);

    filename = g_strdup_printf ("%s.dmrc", username);
    path = g_build_filename (dmrc_cache_dir, filename, NULL);
    g_file_set_contents (path, data, length, NULL);

    g_free (dmrc_cache_dir);
    g_free (path);
    g_free (filename);
    g_object_unref (user);
}