aboutsummaryrefslogtreecommitdiffstats
path: root/src/interfaces/hostnamed/hostnamed.c
blob: a7c960d76056d5a7b90329b57979df1f53e5c6db (plain) (blame)
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
#include <unistd.h>
#include <limits.h>
#include <gio/gio.h>


GDBusNodeInfo *spect_data;

static gchar *hostname;
static gchar *pretty_hostname;
static gchar *static_hostname;
static gchar *icon_name;
static gchar *chassis;
static gchar *kernel_name;
static gchar *kernel_release;
static gchar *kernel_version;
static gchar *os_prettyname;
static gchar *os_cpe;         //common platform enumeration string

static void handle_method_call(GDBusConnection *conn,
                               const gchar *sender,
                               const gchar *obj_path,
                               const gchar *interf_name,
                               const gchar *method_name,
                               GVariant *params,
                               GDBusMethodInvocation *invc,
                               gpointer usrdat) {

    if(g_strcmp0(interf_name, "org.freedesktop.DBus.Introspectable") == 0
        && g_strcmp0(method_name, "Introspect") == 0) {

        GVariant *xml_ret_gvar;
        GString  *xml_ret;
    
        g_dbus_interface_info_generate_xml(spect_data->interfaces[0], (guint)0, xml_ret);
        xml_ret_gvar = g_variant_new_string(xml_ret->str);
        g_dbus_method_invocation_return_value(invc, xml_ret_gvar);
    } 

}

static GVariant * handle_get_property(GDBusConnection *conn,
                                      const gchar *sender,
                                      const gchar *obj_path,
                                      const gchar *interf_name,
                                      const gchar *prop_name,
                                      GError **err,
                                      gpointer usr_data) {
    
    const gchar *our_interf_name = "org.freedesktop.hostname1";
    const gchar *our_obj_path    = "/org/freedesktop/hostname1";

    if(g_strcmp0(interf_name, our_interf_name) != 0
        || g_strcmp0(obj_path, our_obj_path) != 0) {

        return NULL; //TODO error
    }

    if(g_strcmp0(prop_name, "Hostname") == 0)
        return g_variant_new_string(hostname);

    else if(g_strcmp0(prop_name, "StaticHostname") == 0)
        return g_variant_new_string(static_hostname);

    else if(g_strcmp0(prop_name, "PrettyHostname") == 0)
        return g_variant_new_string(pretty_hostname);

    else if(g_strcmp0(prop_name, "IconName") == 0)
        return g_variant_new_string(icon_name);

    else 
        return NULL; //TODO error
    
}

static gboolean handle_set_property(GDBusConnection *conn,
                                    const gchar *sender,
                                    const gchar *obj_path,
                                    const gchar *interf_name,
                                    const gchar *prop_name,
                                    GVariant *val,
                                    GError **err,
                                    gpointer usr_data) {

    g_dbus_connection_emit_signal(conn,
                                  NULL,
                                  obj_path,
                                  "org.freedesktop.DBus.Properties",
                                  "PropertiesChanged",
                                  NULL, /* incorrect */
                                  NULL);

    return TRUE;
}

/* "hot" functions initially passed to gdbus */
static const GDBusInterfaceVTable interface_vtable =
{
    handle_method_call,
    handle_get_property,
    handle_set_property
};

/* end method/property functions, begin bus name handlers
 * TODO: these should be intertwined as to handle edge cases
 * for when the system cannot immediately grab the name, as
 * well as cases where the system unintendedly loses the name
 */
static void on_bus_acquired(GDBusConnection *conn,
                            const gchar *name,
                            gpointer user_data) {

    GError *err;

    g_print("got bus, name: %s\n", name);   

    //GDBusObjectSkeleton *hostnamed_dbobj = g_dbus_object_skeleton_new("/org/freedesktop/hostname1");

    g_dbus_connection_register_object(conn,
                                      "/org/freedesktop/hostname1",
                                      spect_data->interfaces[0],
                                      &interface_vtable,
                                      NULL, NULL, NULL);
}

static void on_name_acquired(GDBusConnection *conn,
                             const gchar *name,
                             gpointer user_data) {

    g_print("got name %s\n", name);
}

static void on_name_lost(GDBusConnection *conn,
                         const gchar *name,
                         gpointer user_data) {

    g_print("lost name %s, exiting...", name);
    //TODO exit through g_main_loop properly...
    exit(0);
}

/* safe call to try and start hostnamed */
GError * hostnamed_init() {

    guint bus_descriptor;
    GError *err = NULL;
    gchar **hostnamed_ispect_xml = g_malloc(3000);
    gchar  *hostnamed_joined_xml = g_malloc(3000);

    g_file_get_contents("conf/hostnamed-ispect.xml", hostnamed_ispect_xml, NULL, err);
    hostnamed_joined_xml = g_strjoinv("\n", hostnamed_ispect_xml);
    spect_data = g_dbus_node_info_new_for_xml(hostnamed_joined_xml, NULL);

    if(!init_props())
        return err; //TODO error
    
    bus_descriptor = g_bus_own_name(G_BUS_TYPE_SYSTEM,
                                    "org.freedesktop.hostname1",
                                    G_BUS_NAME_OWNER_FLAGS_NONE,
                                    on_bus_acquired,
                                    on_name_acquired,
                                    on_name_lost,
                                    NULL,
                                    NULL);

    //TODO: malloc and return reference as if a main() closed
    return err;
}

gboolean init_props() {
    
    if(init_hostname()
        && init_static_hostname()
        && init_pretty_hostname()
        && init_icon_name()
        && init_chassis()
        && init_kernel_name()
        && init_kernel_version()
        && init_os_name()
        && init_os_cpe() )
        return TRUE;

    return FALSE;
}

//POSIX, for future ports try_hostname should be checked for null-termination
gboolean init_hostname() {

    gchar try_hostname[HOST_NAME_MAX];

    if(!gethostname(try_hostname, HOST_NAME_MAX)) {
        hostname = try_hostname;
        return TRUE;
    }

    return FALSE;
}

gboolean init_static_hostname() {
    //TODO
    return TRUE;
}

gboolean init_pretty_hostname() {
    //TODO
    return TRUE;
}

gboolean init_icon_name() {
    //TODO
    return TRUE;
}

gboolean init_chassis() {
    //TODO
    return TRUE;
}

gboolean init_kernel_name() {
    //TODO
    return TRUE;
}

gboolean init_kernel_version() {
    //TODO
    return TRUE;
}

gboolean init_os_name() {
    //TODO
    return TRUE;
}

gboolean init_os_cpe() {
    //TODO
    return TRUE;
}

//TODO figure out DMI variables on obsd
/*static gchar *guess_icon_name() {

    gchar *filebuf = NULL;
    gchar *ret = NULL;

    //TODO vm check

    #if defined(__i386__) || defined(__x86_64__)
    /*
       Taken with a few minor changes from systemd's hostnamed.c,
       copyright 2011 Lennart Poettering.

       See the SMBIOS Specification 2.7.1 section 7.4.1 for
       details about the values listed here:

       http://www.dmtf.org/sites/default/files/standards/documents/DSP0134_2.7.1.pdf
    */   /*

    if (g_file_get_contents ("/sys/class/dmi/id/chassis_type", &filebuf, NULL, NULL)) {
        switch (g_ascii_strtoull (filebuf, NULL, 10)) {
        case 0x3:
        case 0x4:
        case 0x5:
        case 0x6:
        case 0x7:
            ret = g_strdup ("computer-desktop");
            goto out;
        case 0x9:
        case 0xA:
        case 0xE:
            ret = g_strdup ("computer-laptop");
            goto out;
        case 0x11:
        case 0x17:
        case 0x1C:
        case 0x1D:
            ret = g_strdup ("computer-server");
            goto out;
        }
    }
    #endif
    ret = g_strdup ("computer");
  out:
    g_free (filebuf);
    return ret;
}*/