(4) move on_name_acquired functionality to on_bus_acquired
[systembsd.git] / src / interfaces / hostnamed / hostnamed.c
... / ...
CommitLineData
1/*
2 * Copyright (c) 2014 Ian Sutton <ian@kremlin.cc>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <unistd.h>
18#include <limits.h>
19#include <signal.h>
20
21#include <sys/param.h>
22#include <string.h>
23
24#include <glib/gprintf.h>
25#include <glib-unix.h>
26
27#include "hostnamed-gen.h"
28#include "hostnamed.h"
29
30GPtrArray *hostnamed_freeable;
31Hostname1 *hostnamed_interf;
32
33GMainLoop *hostnamed_loop;
34
35guint bus_descriptor;
36gboolean dbus_interface_exported; /* reliable because of gdbus operational guarantees */
37
38/* --- begin method/property/dbus signal code --- */
39
40static gboolean
41on_handle_set_hostname(Hostname1 *hn1_passed_interf,
42 GDBusMethodInvocation *invoc,
43 const gchar *greet,
44 gpointer data) {
45 return FALSE;
46}
47
48static gboolean
49on_handle_set_static_hostname(Hostname1 *hn1_passed_interf,
50 GDBusMethodInvocation *invoc,
51 const gchar *greet,
52 gpointer data) {
53 return FALSE;
54}
55
56static gboolean
57on_handle_set_pretty_hostname(Hostname1 *hn1_passed_interf,
58 GDBusMethodInvocation *invoc,
59 const gchar *greet,
60 gpointer data) {
61 return FALSE;
62}
63
64static gboolean
65on_handle_set_chassis(Hostname1 *hn1_passed_interf,
66 GDBusMethodInvocation *invoc,
67 const gchar *greet,
68 gpointer data) {
69 return FALSE;
70}
71
72static gboolean
73on_handle_set_icon_name(Hostname1 *hn1_passed_interf,
74 GDBusMethodInvocation *invoc,
75 const gchar *greet,
76 gpointer data) {
77 return FALSE;
78}
79
80/* note: all hostnamed/hostname1's properties are read-only,
81 * and do not need set_ functions, gdbus-codegen realized
82 * this from the XML and handled the to-be error of trying
83 * to set a read-only property's value
84 */
85
86const gchar *
87our_get_hostname() {
88
89 gchar *hostname_buf, *ret;
90 size_t hostname_divider;
91
92 hostname_buf = (gchar*) g_malloc0(MAXHOSTNAMELEN); /* todo check & free */
93 ret = (gchar*) g_malloc0(MAXHOSTNAMELEN);
94 g_ptr_array_add(hostnamed_freeable, hostname_buf);
95 g_ptr_array_add(hostnamed_freeable, ret);
96
97 if(gethostname(hostname_buf, MAXHOSTNAMELEN))
98 return "";
99
100 hostname_divider = strcspn(hostname_buf, ".");
101
102 return strncpy(ret, hostname_buf, hostname_divider);
103}
104
105const gchar *
106our_get_static_hostname() {
107
108 return "TODO";
109}
110
111const gchar *
112our_get_pretty_hostname() {
113
114 return "TODO";
115}
116
117const gchar *
118our_get_chassis() {
119
120 return "TODO";
121}
122
123const gchar *
124our_get_icon_name() {
125
126 return "TODO";
127}
128
129const gchar *
130our_get_kernel_name() {
131
132 return "TODO";
133}
134
135const gchar *
136our_get_kernel_version() {
137
138 return "TODO";
139}
140
141const gchar *
142our_get_kernel_release() {
143
144 return "TODO";
145}
146
147const gchar *
148our_get_os_cpename() {
149
150 return "TODO";
151}
152
153const gchar *
154our_get_os_pretty_name() {
155
156 return "TODO";
157}
158
159/* --- end method/property/dbus signal code, begin bus/name handlers --- */
160
161static void hostnamed_on_bus_acquired(GDBusConnection *conn,
162 const gchar *name,
163 gpointer user_data) {
164
165 g_printf("got bus/name, exporting %s's interface...\n", name);
166
167 hostnamed_interf = hostname1_skeleton_new();
168
169 /* attach function pointers to generated struct's method handlers */
170 g_signal_connect(hostnamed_interf, "handle-set-hostname", G_CALLBACK(on_handle_set_hostname), NULL);
171 g_signal_connect(hostnamed_interf, "handle-set-static-hostname", G_CALLBACK(on_handle_set_static_hostname), NULL);
172 g_signal_connect(hostnamed_interf, "handle-set-pretty-hostname", G_CALLBACK(on_handle_set_pretty_hostname), NULL);
173 g_signal_connect(hostnamed_interf, "handle-set-chassis", G_CALLBACK(on_handle_set_chassis), NULL);
174 g_signal_connect(hostnamed_interf, "handle-set-icon-name", G_CALLBACK(on_handle_set_icon_name), NULL);
175
176 /* set our properties before export */
177 hostname1_set_hostname(hostnamed_interf, our_get_hostname());
178 hostname1_set_static_hostname(hostnamed_interf, our_get_static_hostname());
179 hostname1_set_pretty_hostname(hostnamed_interf, our_get_pretty_hostname());
180 hostname1_set_chassis(hostnamed_interf, our_get_chassis());
181 hostname1_set_icon_name(hostnamed_interf, our_get_icon_name());
182 hostname1_set_kernel_name(hostnamed_interf, our_get_kernel_name());
183 hostname1_set_kernel_version(hostnamed_interf, our_get_kernel_version());
184 hostname1_set_kernel_release(hostnamed_interf, our_get_kernel_release());
185 hostname1_set_operating_system_cpename(hostnamed_interf, our_get_os_cpename());
186 hostname1_set_operating_system_pretty_name(hostnamed_interf, our_get_os_pretty_name());
187
188 if(!g_dbus_interface_skeleton_export(G_DBUS_INTERFACE_SKELETON(hostnamed_interf),
189 conn,
190 "/org/freedesktop/hostname1",
191 NULL)) {
192
193 g_printf("failed to export %s's interface!\n", name); /* unusual edge case, TODO check errno */
194 hostnamed_mem_clean();
195
196 } else {
197
198 dbus_interface_exported = TRUE;
199 g_printf("exported %s's interface on the system bus...\n", name);
200 }
201}
202
203static void hostnamed_on_name_acquired(GDBusConnection *conn,
204 const gchar *name,
205 gpointer user_data) {
206
207 g_printf("success!\n");
208}
209
210static void hostnamed_on_name_lost(GDBusConnection *conn,
211 const gchar *name,
212 gpointer user_data) {
213
214 if(!conn) {
215
216 g_printf("failed to connect to the system bus while trying to acquire name '%s': either dbus-daemon isn't running or we don't have permission to push names and/or their interfaces to it.\n", name);
217 hostnamed_mem_clean();
218 }
219
220 g_printf("lost name %s, exiting...\n", name);
221
222 hostnamed_mem_clean();
223}
224
225/* --- end bus/name handlers, begin misc unix functions --- */
226
227/* safe call to clean and then exit
228 * this stops our GMainLoop safely before letting main() return */
229void hostnamed_mem_clean() {
230
231 g_printf("exiting...\n");
232
233 if(dbus_interface_exported)
234 g_dbus_interface_skeleton_unexport(G_DBUS_INTERFACE_SKELETON(hostnamed_interf));
235
236 if(g_main_loop_is_running(hostnamed_loop))
237 g_main_loop_quit(hostnamed_loop);
238
239}
240
241/* wrapper for glib's unix signal handling; called only once if terminatating signal is raised against us */
242gboolean unix_sig_terminate_handler(gpointer data) {
243
244 g_printf("caught SIGINT/HUP/TERM, exiting\n");
245
246 hostnamed_mem_clean();
247 return G_SOURCE_REMOVE;
248}
249
250void set_signal_handlers() {
251
252 /* we don't care about its descriptor, we never need to unregister these */
253 g_unix_signal_add(SIGINT, unix_sig_terminate_handler, NULL);
254 g_unix_signal_add(SIGHUP, unix_sig_terminate_handler, NULL);
255 g_unix_signal_add(SIGTERM, unix_sig_terminate_handler, NULL);
256}
257
258int main() {
259
260 set_signal_handlers();
261
262 hostnamed_loop = g_main_loop_new(NULL, TRUE);
263 hostnamed_freeable = g_ptr_array_new();
264
265 bus_descriptor = g_bus_own_name(G_BUS_TYPE_SYSTEM,
266 "org.freedesktop.hostname1",
267 G_BUS_NAME_OWNER_FLAGS_NONE,
268 hostnamed_on_bus_acquired,
269 hostnamed_on_name_acquired,
270 hostnamed_on_name_lost,
271 NULL,
272 NULL);
273
274 g_main_loop_run(hostnamed_loop);
275 /* runs until single g_main_loop_quit() call is raised inside <interface>_mem_clean() */
276 g_main_loop_unref(hostnamed_loop);
277
278 /* guaranteed unownable */
279 g_bus_unown_name(bus_descriptor);
280
281 /* at this point no operations can occur with our data, it is safe to free it + its container */
282 g_ptr_array_free(hostnamed_freeable, TRUE);
283
284 return 0;
285}
286
287/* TODO figure out DMI variables on obsd */
288/*static gchar *guess_icon_name() {
289
290 gchar *filebuf = NULL;
291 gchar *ret = NULL;
292
293 #if defined(__i386__) || defined(__x86_64__)
294
295 Taken with a few minor changes from systemd's hostnamed.c,
296 copyright 2011 Lennart Poettering.
297
298 See the SMBIOS Specification 2.7.1 section 7.4.1 for
299 details about the values listed here:
300
301 http://www.dmtf.org/sites/default/files/standards/documents/DSP0134_2.7.1.pdf
302
303
304 if (g_file_get_contents ("/sys/class/dmi/id/chassis_type", &filebuf, NULL, NULL)) {
305 switch (g_ascii_strtoull (filebuf, NULL, 10)) {
306 case 0x3:
307 case 0x4:
308 case 0x5:
309 case 0x6:
310 case 0x7:
311 ret = g_strdup ("computer-desktop");
312 goto out;
313 case 0x9:
314 case 0xA:
315 case 0xE:
316 ret = g_strdup ("computer-laptop");
317 goto out;
318 case 0x11:
319 case 0x17:
320 case 0x1C:
321 case 0x1D:
322 ret = g_strdup ("computer-server");
323 goto out;
324 }
325 }
326 #endif
327 ret = g_strdup ("computer");
328 out:
329 g_free (filebuf);
330 return ret;
331}*/
332