1 | /** @file
|
---|
2 | *
|
---|
3 | * VirtualBox interface to host's power notification service
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2015-2017 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #include "HostPower.h"
|
---|
19 | #include "Logging.h"
|
---|
20 |
|
---|
21 | #include <iprt/asm.h>
|
---|
22 | #include <iprt/power.h>
|
---|
23 | #include <iprt/time.h>
|
---|
24 |
|
---|
25 | static bool checkDBusError(DBusError *pError, DBusConnection **pConnection)
|
---|
26 | {
|
---|
27 | if (dbus_error_is_set(pError))
|
---|
28 | {
|
---|
29 | LogRel(("HostPowerServiceLinux: DBus connection Error (%s)\n", pError->message));
|
---|
30 | dbus_error_free(pError);
|
---|
31 | if (*pConnection)
|
---|
32 | {
|
---|
33 | /* Close the socket or whatever underlying the connection. */
|
---|
34 | dbus_connection_close(*pConnection);
|
---|
35 | /* Free in-process resources used for the now-closed connection. */
|
---|
36 | dbus_connection_unref(*pConnection);
|
---|
37 | *pConnection = NULL;
|
---|
38 | }
|
---|
39 | return true;
|
---|
40 | }
|
---|
41 | return false;
|
---|
42 | }
|
---|
43 |
|
---|
44 | HostPowerServiceLinux::HostPowerServiceLinux(VirtualBox *aVirtualBox)
|
---|
45 | : HostPowerService(aVirtualBox)
|
---|
46 | , mThread(NULL)
|
---|
47 | , mpConnection(NULL)
|
---|
48 | {
|
---|
49 | DBusError error;
|
---|
50 | int rc;
|
---|
51 |
|
---|
52 | rc = RTDBusLoadLib();
|
---|
53 | if (RT_FAILURE(rc))
|
---|
54 | {
|
---|
55 | LogRel(("HostPowerServiceLinux: DBus library not found. Service not available.\n"));
|
---|
56 | return;
|
---|
57 | }
|
---|
58 | dbus_error_init(&error);
|
---|
59 | /* Connect to the DBus. The connection will be not shared with any other
|
---|
60 | * in-process callers of dbus_bus_get(). This is considered wasteful (see
|
---|
61 | * API documentation) but simplifies our code, specifically shutting down.
|
---|
62 | * The session bus allows up to 100000 connections per user as it "is just
|
---|
63 | * running as the user anyway" (see session.conf.in in the DBus sources). */
|
---|
64 | mpConnection = dbus_bus_get_private(DBUS_BUS_SYSTEM, &error);
|
---|
65 | if (checkDBusError(&error, &mpConnection))
|
---|
66 | return;
|
---|
67 | /* We do not want to exit(1) if the connection is broken. */
|
---|
68 | dbus_connection_set_exit_on_disconnect(mpConnection, FALSE);
|
---|
69 | /* Tell the bus to wait for the sleep signal(s). */
|
---|
70 | /* The current systemd-logind interface. */
|
---|
71 | dbus_bus_add_match(mpConnection, "type='signal',interface='org.freedesktop.login1.Manager'", &error);
|
---|
72 | /* The previous UPower interfaces (2010 - ca 2013). */
|
---|
73 | dbus_bus_add_match(mpConnection, "type='signal',interface='org.freedesktop.UPower'", &error);
|
---|
74 | dbus_connection_flush(mpConnection);
|
---|
75 | if (checkDBusError(&error, &mpConnection))
|
---|
76 | return;
|
---|
77 | /* Create the new worker thread. */
|
---|
78 | rc = RTThreadCreate(&mThread, HostPowerServiceLinux::powerChangeNotificationThread, this, 0 /* cbStack */,
|
---|
79 | RTTHREADTYPE_MSG_PUMP, RTTHREADFLAGS_WAITABLE, "MainPower");
|
---|
80 | if (RT_FAILURE(rc))
|
---|
81 | LogRel(("HostPowerServiceLinux: RTThreadCreate failed with %Rrc\n", rc));
|
---|
82 | }
|
---|
83 |
|
---|
84 |
|
---|
85 | HostPowerServiceLinux::~HostPowerServiceLinux()
|
---|
86 | {
|
---|
87 | int rc;
|
---|
88 | RTMSINTERVAL cMillies = 5000;
|
---|
89 |
|
---|
90 | /* Closing the connection should cause the event loop to exit. */
|
---|
91 | LogFunc((": Stopping thread\n"));
|
---|
92 | if (mpConnection)
|
---|
93 | dbus_connection_close(mpConnection);
|
---|
94 |
|
---|
95 | rc = RTThreadWait(mThread, cMillies, NULL);
|
---|
96 | if (rc != VINF_SUCCESS)
|
---|
97 | LogRelThisFunc(("RTThreadWait() for %u ms failed with %Rrc\n", cMillies, rc));
|
---|
98 | mThread = NIL_RTTHREAD;
|
---|
99 | }
|
---|
100 |
|
---|
101 |
|
---|
102 | DECLCALLBACK(int) HostPowerServiceLinux::powerChangeNotificationThread(RTTHREAD hThreadSelf, void *pInstance)
|
---|
103 | {
|
---|
104 | NOREF(hThreadSelf);
|
---|
105 | HostPowerServiceLinux *pPowerObj = static_cast<HostPowerServiceLinux *>(pInstance);
|
---|
106 | DBusConnection *pConnection = pPowerObj->mpConnection;
|
---|
107 |
|
---|
108 | Log(("HostPowerServiceLinux: Thread started\n"));
|
---|
109 | while (dbus_connection_read_write(pConnection, -1))
|
---|
110 | {
|
---|
111 | DBusMessage *pMessage = NULL;
|
---|
112 |
|
---|
113 | for (;;)
|
---|
114 | {
|
---|
115 | DBusMessageIter args;
|
---|
116 | dbus_bool_t fSuspend;
|
---|
117 |
|
---|
118 | pMessage = dbus_connection_pop_message(pConnection);
|
---|
119 | if (pMessage == NULL)
|
---|
120 | break;
|
---|
121 | /* The systemd-logind interface notification. */
|
---|
122 | if ( dbus_message_is_signal(pMessage, "org.freedesktop.login1.Manager", "PrepareForSleep")
|
---|
123 | && dbus_message_iter_init(pMessage, &args)
|
---|
124 | && dbus_message_iter_get_arg_type(&args) == DBUS_TYPE_BOOLEAN)
|
---|
125 | {
|
---|
126 | dbus_message_iter_get_basic(&args, &fSuspend);
|
---|
127 | /* Trinary operator does not work here as Reason_... is an
|
---|
128 | * anonymous enum. */
|
---|
129 | if (fSuspend)
|
---|
130 | pPowerObj->notify(Reason_HostSuspend);
|
---|
131 | else
|
---|
132 | pPowerObj->notify(Reason_HostResume);
|
---|
133 | }
|
---|
134 | /* The UPowerd interface notifications. Sleeping is the older one,
|
---|
135 | * NotifySleep the newer. This gives us one second grace before the
|
---|
136 | * suspend triggers. */
|
---|
137 | if ( dbus_message_is_signal(pMessage, "org.freedesktop.UPower", "Sleeping")
|
---|
138 | || dbus_message_is_signal(pMessage, "org.freedesktop.UPower", "NotifySleep"))
|
---|
139 | pPowerObj->notify(Reason_HostSuspend);
|
---|
140 | if ( dbus_message_is_signal(pMessage, "org.freedesktop.UPower", "Resuming")
|
---|
141 | || dbus_message_is_signal(pMessage, "org.freedesktop.UPower", "NotifyResume"))
|
---|
142 | pPowerObj->notify(Reason_HostResume);
|
---|
143 | /* Free local resources held for the message. */
|
---|
144 | dbus_message_unref(pMessage);
|
---|
145 | }
|
---|
146 | }
|
---|
147 | /* Close the socket or whatever underlying the connection. */
|
---|
148 | dbus_connection_close(pConnection);
|
---|
149 | /* Free in-process resources used for the now-closed connection. */
|
---|
150 | dbus_connection_unref(pConnection);
|
---|
151 | Log(("HostPowerServiceLinux: Exiting thread\n"));
|
---|
152 | return VINF_SUCCESS;
|
---|
153 | }
|
---|
154 |
|
---|