summaryrefslogtreecommitdiff
path: root/recipes-lxde/lxsession/lxsession-0.4.9.2/lxsession-logout-git-62bfec81f6c50083423b8501a94be80125396966.patch
blob: 464de95d972e56fdfd6063b685f4f111580a9d09 (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
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
Update lxsession-logout to newer git revision.
This ensures that shutdown, reboot etc. can be done with the help of logind. 
Without this we get a segfault when using the nonconsistent implementation for logind.
i.e. function prototypes and implementation do not much.
diff -Naur lxsession-0.4.9.2/lxsession-logout.orig/dbus-interface.c lxsession-0.4.9.2/lxsession-logout/dbus-interface.c
--- lxsession-0.4.9.2/lxsession-logout.orig/dbus-interface.c	2013-04-12 23:02:19.000000000 +0200
+++ lxsession-0.4.9.2/lxsession-logout/dbus-interface.c	1970-01-01 01:00:00.000000000 +0100
@@ -1,641 +0,0 @@
-/**
- * Copyright (c) 2010 LxDE Developers, see the file AUTHORS for details.
- *
- * 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 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#include <config.h>
-#include <glib.h>
-#include <string.h>
-#include <dbus/dbus.h>
-#include <gio/gio.h>
-
-/*** Mechanism independent ***/
-
-/* D-Bus context. */
-static struct {
-    int connection_tried : 1;			/* True if connection has been tried */
-    DBusConnection * connection;		/* Handle for connection */
-} dbus_context;
-
-static GDBusProxy *logind_proxy = NULL;
-
-enum { DBUS_TIMEOUT = 60000 };			/* Reply timeout */
-
-/* FORWARDS */
-gboolean dbus_ConsoleKit_CanStop(void);
-gboolean dbus_ConsoleKit_CanRestart(void);
-char * dbus_ConsoleKit_Stop(void);
-char * dbus_ConsoleKit_Restart(void);
-gboolean dbus_UPower_CanSuspend(void);
-gboolean dbus_UPower_CanHibernate(void);
-char * dbus_UPower_Suspend(void);
-char * dbus_UPower_Hibernate(void);
-gboolean dbus_HAL_CanShutdown(void);
-gboolean dbus_HAL_CanReboot(void);
-gboolean dbus_HAL_CanSuspend(void);
-gboolean dbus_HAL_CanHibernate(void);
-char * dbus_HAL_Shutdown(void);
-char * dbus_HAL_Reboot(void);
-char * dbus_HAL_Suspend(void);
-char * dbus_HAL_Hibernate(void);
-char * dbus_LXDE_Logout(void);
-/* End FORWARDS */
-
-/* Connect to the system bus.  Once a connection is made, it is saved for reuse. */
-static DBusConnection * dbus_connect_system(void)
-{
-        DBusError error;
-        dbus_error_init(&error);
-        dbus_context.connection = dbus_bus_get(DBUS_BUS_SYSTEM, &error);
-        if (dbus_context.connection == NULL)
-        {
-            g_warning(G_STRLOC ": Failed to connect to the system message bus: %s", error.message);
-            dbus_error_free(&error);
-        }
-        dbus_context.connection_tried = TRUE;
-
-    return dbus_context.connection;
-}
-
-static DBusConnection * dbus_connect_session(void)
-{
-        DBusError error;
-        dbus_error_init(&error);
-        dbus_context.connection = dbus_bus_get(DBUS_BUS_SESSION, &error);
-        if (dbus_context.connection == NULL)
-        {
-            g_warning(G_STRLOC ": Failed to connect to the session message bus: %s", error.message);
-            dbus_error_free(&error);
-        }
-        dbus_context.connection_tried = TRUE;
-
-    return dbus_context.connection;
-}
-
-
-/* Send a message. */
-static DBusMessage * dbus_send_message_system(DBusMessage * message, char * * error_text)
-{
-    /* Get a connection handle. */
-    DBusConnection * connection = dbus_connect_system();
-    if (connection == NULL)
-        return FALSE;
-
-    /* Send the message. */
-    DBusError error;
-    dbus_error_init(&error);
-    DBusMessage * reply = dbus_connection_send_with_reply_and_block(connection, message, DBUS_TIMEOUT, &error);
-    dbus_message_unref(message);
-    if (reply == NULL)
-    {
-        if ((error.name == NULL) || (strcmp(error.name, DBUS_ERROR_NO_REPLY) != 0))
-        {
-            if (error_text != NULL)
-                *error_text = g_strdup(error.message);
-            g_warning(G_STRLOC ": DBUS: %s", error.message);
-        }
-        dbus_error_free(&error);
-    }
-    return reply;
-}
-
-/* Send a message. */
-static DBusMessage * dbus_send_message_session(DBusMessage * message, char * * error_text)
-{
-    /* Get a connection handle. */
-    DBusConnection * connection = dbus_connect_session();
-    if (connection == NULL)
-        return FALSE;
-
-    /* Send the message. */
-    DBusError error;
-    dbus_error_init(&error);
-    DBusMessage * reply = dbus_connection_send_with_reply_and_block(connection, message, DBUS_TIMEOUT, &error);
-    dbus_message_unref(message);
-    if (reply == NULL)
-    {
-        if ((error.name == NULL) || (strcmp(error.name, DBUS_ERROR_NO_REPLY) != 0))
-        {
-            if (error_text != NULL)
-                *error_text = g_strdup(error.message);
-            g_warning(G_STRLOC ": DBUS: %s", error.message);
-        }
-        dbus_error_free(&error);
-    }
-    return reply;
-}
-
-/* Read a result for a method that returns void. */
-static char * dbus_read_result_void(DBusMessage * reply)
-{
-    if (reply != NULL)
-        dbus_message_unref(reply);
-
-    /* No result.  Assume success. */
-    return NULL;
-}
-
-/* Read a result for a method that returns boolean. */
-static gboolean dbus_read_result_boolean(DBusMessage * reply)
-{
-    gboolean result = FALSE;
-    if (reply != NULL)
-    {
-        /* Get the boolean result. */
-        DBusError error;
-        dbus_error_init(&error);
-        dbus_bool_t status = dbus_message_get_args(
-            reply,
-            &error,
-            DBUS_TYPE_BOOLEAN, &result,
-            DBUS_TYPE_INVALID);
-        dbus_message_unref(reply);
-        if ( ! status)
-        {
-            g_warning(G_STRLOC ": DBUS: %s", error.message);
-            dbus_error_free(&error);
-            return FALSE;
-        }
-    }
-    return result;
-}
-
-/* Read a result for a method that returns string. */
-static char * dbus_read_result_string(DBusMessage * reply)
-{
-    char * result = FALSE;
-    if (reply != NULL)
-    {
-        /* Get the boolean result. */
-        DBusError error;
-        dbus_error_init(&error);
-        dbus_bool_t status = dbus_message_get_args(
-            reply,
-            &error,
-            DBUS_TYPE_STRING, &result,
-            DBUS_TYPE_INVALID);
-        dbus_message_unref(reply);
-        if ( ! status)
-        {
-            g_warning(G_STRLOC ": DBUS: %s", error.message);
-            dbus_error_free(&error);
-            return NULL;
-        }
-    }
-    return result;
-}
-
-/*** logind mechanism ***/
-
-static gboolean
-logind_query (const gchar *function, gboolean default_result, GError **error)
-{
-    GVariant *result;
-    gboolean function_result = FALSE;
-    const gchar *str;
-
-    if (!logind_proxy)
-    {
-        logind_proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM,
-                                                      G_DBUS_PROXY_FLAGS_NONE,
-                                                      NULL,
-                                                      "org.freedesktop.login1",
-                                                      "/org/freedesktop/login1",
-                                                      "org.freedesktop.login1.Manager",
-                                                      NULL,
-                                                      error);
-        if (!logind_proxy)
-            return FALSE;
-    }
-
-    result = g_dbus_proxy_call_sync (logind_proxy,
-                                     function,
-                                     NULL,
-                                     G_DBUS_CALL_FLAGS_NONE,
-                                     -1,
-                                     NULL,
-                                     error);
-    if (!result)
-        return default_result;
-
-    if (g_variant_is_of_type (result, G_VARIANT_TYPE ("(s)")))
-    {
-			g_variant_get (result, "(s)", &str);
-			if (g_strcmp0 (str, "yes") || g_strcmp0 (str, "challenge"))
-				function_result = TRUE;
-			else
-				function_result = default_result;
-		}
-
-    g_variant_unref (result);
-    return function_result;
-}
-
-static void
-logind_call_function (const gchar *function, gboolean value, GError **error)
-{
-    GVariant *result;
-
-    if (!logind_proxy)
-    {
-        logind_proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM,
-                                                      G_DBUS_PROXY_FLAGS_NONE,
-                                                      NULL,
-                                                      "org.freedesktop.login1",
-                                                      "/org/freedesktop/login1",
-                                                      "org.freedesktop.login1.Manager",
-                                                      NULL,
-                                                      error);
-        if (!logind_proxy)
-            return;
-    }
-
-    result = g_dbus_proxy_call_sync (logind_proxy,
-                                     function,
-                                     g_variant_new ("(b)", value),
-                                     G_DBUS_CALL_FLAGS_NONE,
-                                     -1,
-                                     NULL,
-                                     error);
-    g_variant_unref (result);
-    return;
-}
-
-gboolean
-dbus_logind_CanPowerOff (void)
-{
-    return logind_query ("CanPowerOff", FALSE, NULL);
-}
-
-void
-dbus_logind_PowerOff (GError **error)
-{
-    logind_call_function ("PowerOff", TRUE, error);
-}
-
-gboolean
-dbus_logind_CanReboot (void)
-{
-    return logind_query ("CanReboot", FALSE, NULL);
-}
-
-void
-dbus_logind_Reboot (GError **error)
-{
-    logind_call_function ("Reboot", TRUE, error);
-}
-
-gboolean
-dbus_logind_CanSuspend (void)
-{
-    return logind_query ("CanSuspend", FALSE, NULL);
-}
-
-void
-dbus_logind_Suspend (GError **error)
-{
-    logind_call_function ("Suspend", TRUE, error);
-}
-
-gboolean
-dbus_logind_CanHibernate (void)
-{
-    return logind_query ("CanHibernate", FALSE, NULL);
-}
-
-void
-dbus_logind_Hibernate (GError **error)
-{
-    logind_call_function ("Hibernate", TRUE, error);
-}
-
-/*** ConsoleKit mechanism ***/
-
-/* Formulate a message to the ConsoleKit Manager interface. */
-static DBusMessage * dbus_ConsoleKit_formulate_message(const char * const query)
-{
-    return dbus_message_new_method_call(
-        "org.freedesktop.ConsoleKit",
-        "/org/freedesktop/ConsoleKit/Manager",
-        "org.freedesktop.ConsoleKit.Manager",
-        query);
-}
-
-/* Send a specified message to the ConsoleKit interface and process a boolean result. */
-static gboolean dbus_ConsoleKit_query(const char * const query)
-{
-    return dbus_read_result_boolean(dbus_send_message_system(dbus_ConsoleKit_formulate_message(query), NULL));
-}
-
-/* Send a specified message to the ConsoleKit interface and process a void result. */
-static char * dbus_ConsoleKit_command(const char * const command)
-{
-    char * error = NULL;
-    dbus_read_result_void(dbus_send_message_system(dbus_ConsoleKit_formulate_message(command), &error));
-    return error;
-}
-
-/* Invoke the CanStop method on ConsoleKit. */
-gboolean dbus_ConsoleKit_CanStop(void)
-{
-    return dbus_ConsoleKit_query("CanStop");
-}
-
-/* Invoke the CanRestart method on ConsoleKit. */
-gboolean dbus_ConsoleKit_CanRestart(void)
-{
-    return dbus_ConsoleKit_query("CanRestart");
-}
-
-/* Invoke the Stop method on ConsoleKit. */
-char * dbus_ConsoleKit_Stop(void)
-{
-    return dbus_ConsoleKit_command("Stop");
-}
-
-/* Invoke the Restart method on ConsoleKit. */
-char * dbus_ConsoleKit_Restart(void)
-{
-    return dbus_ConsoleKit_command("Restart");
-}
-
-/*** UPower mechanism ***/
-
-/* Formulate a message to the UPower interface. */
-static DBusMessage * dbus_UPower_formulate_command(const char * const command)
-{
-    return dbus_message_new_method_call(
-        "org.freedesktop.UPower",
-	"/org/freedesktop/UPower",
-	"org.freedesktop.UPower",
-        command);
-}
-
-/* Send a specified message to the UPower interface and process a boolean result. */
-static gboolean dbus_UPower_query(const char * const query)
-{
-    /* Formulate a message to the Properties interface. */
-    DBusMessage * message = dbus_message_new_method_call(
-        "org.freedesktop.UPower",
-	"/org/freedesktop/UPower",
-	"org.freedesktop.DBus.Properties",
-        "Get");
-    const char * const interface_name = "org.freedesktop.UPower";
-    dbus_message_append_args(message,
-        DBUS_TYPE_STRING, &interface_name,
-        DBUS_TYPE_STRING, &query,
-        DBUS_TYPE_INVALID);
-
-    /* Send the message. */
-    DBusMessage * reply = dbus_send_message_system(message, NULL);
-    if (reply == NULL)
-	return FALSE;
-
-    /* The return type is VARIANT expected to contain BOOLEAN. */
-    gboolean result = FALSE;
-    DBusMessageIter iter;
-    DBusMessageIter inner;
-    dbus_message_iter_init(reply, &iter);
-    if (dbus_message_iter_get_arg_type(&iter) == DBUS_TYPE_VARIANT)
-    {
-        dbus_message_iter_recurse(&iter, &inner);
-        if (dbus_message_iter_get_arg_type(&inner) == DBUS_TYPE_BOOLEAN)
-            dbus_message_iter_get_basic(&inner, &result);
-    }
-    dbus_message_unref(reply);
-    return result;
-}
-
-/* Send a specified message to the UPower interface and process a void result. */
-static char * dbus_UPower_command(const char * const command)
-{
-    char * error = NULL;
-    dbus_read_result_void(dbus_send_message_system(dbus_UPower_formulate_command(command), &error));
-    return error;
-}
-
-/* Read the can-suspend property of UPower. */
-gboolean dbus_UPower_CanSuspend(void)
-{
-    return dbus_UPower_query("CanSuspend");
-}
-
-/* Read the can-hibernate property of UPower. */
-gboolean dbus_UPower_CanHibernate(void)
-{
-    return dbus_UPower_query("CanHibernate");
-}
-
-/* Invoke the Suspend method on UPower. */
-char * dbus_UPower_Suspend(void)
-{
-    return dbus_UPower_command("Suspend");
-}
-
-/* Invoke the Hibernate method on UPower. */
-char * dbus_UPower_Hibernate(void)
-{
-    return dbus_UPower_command("Hibernate");
-}
-
-/*** HAL mechanism ***/
-
-/* Formulate a message to the HAL SystemPowerManagement interface. */
-static DBusMessage * dbus_HAL_formulate_message(const char * const query)
-{
-    return dbus_message_new_method_call(
-        "org.freedesktop.Hal",
-	"/org/freedesktop/Hal/devices/computer",
-	"org.freedesktop.Hal.Device.SystemPowerManagement",
-        query);
-}
-
-/* Formulate a message to the HAL SystemPowerManagement interface to query a property. */
-static DBusMessage * dbus_HAL_formulate_property_query(const char * const method, const char * const property)
-{
-    DBusMessage * message = dbus_message_new_method_call(
-        "org.freedesktop.Hal",
-	"/org/freedesktop/Hal/devices/computer",
-	"org.freedesktop.Hal.Device",
-        method);
-    if (message != NULL)
-        dbus_message_append_args(message, DBUS_TYPE_STRING, &property, DBUS_TYPE_INVALID);
-    return message;
-}
-
-/* Formulate a message to the HAL SystemPowerManagement interface to query a boolean property. */
-static DBusMessage * dbus_HAL_formulate_boolean_property_query(const char * const property)
-{
-    return dbus_HAL_formulate_property_query("GetPropertyBoolean", property);
-}
-
-/* Formulate a message to the HAL SystemPowerManagement interface to query a string property. */
-static DBusMessage * dbus_HAL_formulate_string_property_query(const char * const property)
-{
-    return dbus_HAL_formulate_property_query("GetPropertyString", property);
-}
-
-/* Send a specified property query to the HAL interface and process whether the result exists. */
-static gboolean dbus_HAL_string_exists_query(const char * const property)
-{
-    DBusMessage * message = dbus_HAL_formulate_string_property_query(property);
-    if (message == NULL)
-        return FALSE;
-    DBusMessage * reply = dbus_send_message_system(message, NULL);
-    if (reply == NULL)
-	return FALSE;
-    dbus_message_unref(reply);
-    return TRUE;
-}
-
-/* Send a specified property query to the HAL interface and process a boolean result. */
-static gboolean dbus_HAL_boolean_query(const char * const property)
-{
-    return dbus_read_result_boolean(dbus_send_message_system(dbus_HAL_formulate_boolean_property_query(property), NULL));
-}
-
-/* Send a specified message to the HAL interface and process a void result. */
-static char * dbus_HAL_command(const char * const command)
-{
-    /* Formulate the message. */
-    DBusMessage * message = dbus_HAL_formulate_message(command);
-    if (message == NULL)
-        return NULL;
-
-    /* Suspend has an argument. */
-    if (strcmp(command, "Suspend") == 0)
-    {
-        dbus_int32_t suspend_arg = 0;
-        dbus_message_append_args(message, DBUS_TYPE_INT32, &suspend_arg, DBUS_TYPE_INVALID);
-    }
-
-    /* Send the message and wait for a reply. */
-    char * error = NULL;
-    dbus_read_result_void(dbus_send_message_system(message, &error));
-    return error;
-}
-
-/* Read the can-shutdown property of HAL. */
-gboolean dbus_HAL_CanShutdown(void)
-{
-    return dbus_HAL_string_exists_query("power_management.type");
-}
-
-/* Read the can-reboot property of HAL. */
-gboolean dbus_HAL_CanReboot(void)
-{
-    return dbus_HAL_string_exists_query("power_management.type");
-}
-
-/* Read the can-suspend property of HAL. */
-gboolean dbus_HAL_CanSuspend(void)
-{
-    return dbus_HAL_boolean_query("power_management.can_suspend");
-}
-
-/* Read the can-hibernate property of HAL. */
-gboolean dbus_HAL_CanHibernate(void)
-{
-    return dbus_HAL_boolean_query("power_management.can_hibernate");
-}
-
-/* Invoke the Shutdown method on HAL. */
-char * dbus_HAL_Shutdown(void)
-{
-    return dbus_HAL_command("Shutdown");
-}
-
-/* Invoke the Reboot method on HAL. */
-char * dbus_HAL_Reboot(void)
-{
-    return dbus_HAL_command("Reboot");
-}
-
-/* Invoke the Suspend method on HAL. */
-char * dbus_HAL_Suspend(void)
-{
-    return dbus_HAL_command("Suspend");
-}
-
-/* Invoke the Hibernate method on HAL. */
-char * dbus_HAL_Hibernate(void)
-{
-    return dbus_HAL_command("Hibernate");
-}
-
-/*** LXDE mechanism ***/
-
-/* Formulate a message to the LXDE Session Manager interface. */
-static DBusMessage * dbus_LXDE_formulate_message(const char * const query)
-{
-    return dbus_message_new_method_call(
-        "org.lxde.SessionManager",
-        "/org/lxde/SessionManager",
-        "org.lxde.SessionManager",
-        query);
-}
-
-/* Send a specified message to the LXDE interface and process a boolean result. */
-static gboolean dbus_LXDE_query(const char * const query)
-{
-    return dbus_read_result_boolean(dbus_send_message_session(dbus_LXDE_formulate_message(query), NULL));
-}
-
-/* Send a specified message to the LXDE interface and process a void result. */
-static char * dbus_LXDE_command(const char * const command)
-{
-    char * error = NULL;
-    dbus_read_result_void(dbus_send_message_session(dbus_LXDE_formulate_message(command), &error));
-    return error;
-}
-
-/* Invoke the Logout method on LXDE. */
-char * dbus_LXDE_Logout(void)
-{
-    return dbus_LXDE_command("Logout");
-}
-
-/*** Lightdm mechanism ***/
-
-/* Formulate a message to the Lightdm interface. */
-static DBusMessage * dbus_Lightdm_formulate_message(const char * const query)
-{
-    return dbus_message_new_method_call(
-                "org.freedesktop.DisplayManager",
-                g_getenv ("XDG_SEAT_PATH"),
-                "org.freedesktop.DisplayManager.Seat",
-                query);
-}
-
-/* Send a specified message to the Lightdm interface and process a boolean result. */
-static gboolean dbus_Lightdm_query(const char * const query)
-{
-    return dbus_read_result_boolean(dbus_send_message_session(dbus_Lightdm_formulate_message(query), NULL));
-}
-
-/* Send a specified message to the Lightdm interface and process a void result. */
-static char * dbus_Lightdm_command(const char * const command)
-{
-    char * error = NULL;
-    dbus_read_result_void(dbus_send_message_session(dbus_Lightdm_formulate_message(command), &error));
-    return error;
-}
-
-/* Invoke the Logout method on LXDE. */
-char * dbus_Lightdm_SwitchToGreeter(void)
-{
-    return dbus_Lightdm_command("SwitchToGreeter");
-}
diff -Naur lxsession-0.4.9.2/lxsession-logout.orig/dbus-interface.h lxsession-0.4.9.2/lxsession-logout/dbus-interface.h
--- lxsession-0.4.9.2/lxsession-logout.orig/dbus-interface.h	2013-03-10 12:48:25.000000000 +0100
+++ lxsession-0.4.9.2/lxsession-logout/dbus-interface.h	1970-01-01 01:00:00.000000000 +0100
@@ -1,61 +0,0 @@
-/**
- * Copyright (c) 2010 LxDE Developers, see the file AUTHORS for details.
- *
- * 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 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifndef _DBUS_INTERFACE_H
-#define _DBUS_INTERFACE_H
-
-#include <glib.h>
-
-/* Interface to logind for shutdown, reboot, suspend and hibernate. */
-extern gboolean dbus_logind_CanPowerOff(void);
-extern gboolean dbus_logind_CanReboot(void);
-extern gboolean dbus_logind_CanSuspend(void);
-extern gboolean dbus_logind_CanHibernate(void);
-extern char * dbus_logind_PowerOff(void);
-extern char * dbus_logind_Reboot(void);
-extern char * dbus_logind_Suspend(void);
-extern char * dbus_logind_Hibernate(void);
-
-/* Interface to ConsoleKit for shutdown and reboot. */
-extern gboolean dbus_ConsoleKit_CanStop(void);
-extern gboolean dbus_ConsoleKit_CanRestart(void);
-extern char * dbus_ConsoleKit_Stop(void);
-extern char * dbus_ConsoleKit_Restart(void);
-
-/* Interface to UPower for suspend and hibernate. */
-extern gboolean dbus_UPower_CanSuspend(void);
-extern gboolean dbus_UPower_CanHibernate(void);
-extern char * dbus_UPower_Suspend(void);
-extern char * dbus_UPower_Hibernate(void);
-
-/* Interface to HAL for shutdown, reboot, suspend, and hibernate.
- * HAL is being replaced by the above two mechanisms; this support is legacy. */
-extern gboolean dbus_HAL_CanShutdown(void);
-extern gboolean dbus_HAL_CanReboot(void);
-extern gboolean dbus_HAL_CanSuspend(void);
-extern gboolean dbus_HAL_CanHibernate(void);
-extern char * dbus_HAL_Shutdown(void);
-extern char * dbus_HAL_Reboot(void);
-extern char * dbus_HAL_Suspend(void);
-extern char * dbus_HAL_Hibernate(void);
-
-extern char * dbus_LXDE_Logout(void);
-
-extern char * dbus_Lightdm_SwitchToGreeter();
-
-#endif
diff -Naur lxsession-0.4.9.2/lxsession-logout.orig/lxsession-logout.c lxsession-0.4.9.2/lxsession-logout/lxsession-logout.c
--- lxsession-0.4.9.2/lxsession-logout.orig/lxsession-logout.c	2013-05-31 21:38:58.000000000 +0200
+++ lxsession-0.4.9.2/lxsession-logout/lxsession-logout.c	2014-01-03 15:42:59.596454865 +0100
@@ -36,7 +36,7 @@
 #include <X11/Xatom.h>
 #include <X11/Xlib.h>
 
-#include "dbus-interface.h"
+#include "lxsession-logout-dbus-interface.h"
 
 /* Command parameters. */
 static char * prompt = NULL;
@@ -61,18 +61,14 @@
     int hibernate_available : 1;	/* Hibernate is available */
     int switch_user_available : 1;	/* Switch User is available */
 
-    int shutdown_logind : 1;		/* Shutdown is available via logind */
-    int reboot_logind : 1;		/* Reboot is available via logind */
-    int suspend_logind : 1;		/* Suspend is available via logind */
-    int hibernate_logind : 1;		/* Hibernate is available via logind */
+    int shutdown_systemd : 1;		/* Shutdown is available via systemd */
+    int reboot_systemd : 1;		/* Reboot is available via systemd */
+    int suspend_systemd : 1;		/* Suspend is available via systemd */
+    int hibernate_systemd : 1;		/* Hibernate is available via systemd */
     int shutdown_ConsoleKit : 1;	/* Shutdown is available via ConsoleKit */
     int reboot_ConsoleKit : 1;		/* Reboot is available via ConsoleKit */
     int suspend_UPower : 1;		/* Suspend is available via UPower */
     int hibernate_UPower : 1;		/* Hibernate is available via UPower */
-    int shutdown_HAL : 1;		/* Shutdown is available via HAL */
-    int reboot_HAL : 1;			/* Reboot is available via HAL */
-    int suspend_HAL : 1;		/* Suspend is available via HAL */
-    int hibernate_HAL : 1;		/* Hibernate is available via HAL */
     int switch_user_GDM : 1;		/* Switch User is available via GDM */
     int switch_user_LIGHTDM : 1;	/* Switch User is available via GDM */
     int switch_user_KDM : 1;		/* Switch User is available via LIGHTDM */
@@ -212,7 +208,7 @@
 /* Handler for "clicked" signal on Shutdown button. */
 static void shutdown_clicked(GtkButton * button, HandlerContext * handler_context)
 {
-    char * error_result = NULL;
+    GError *err = NULL;
     gtk_label_set_text(GTK_LABEL(handler_context->error_label), NULL);
 
     if (handler_context->ltsp)
@@ -224,21 +220,25 @@
         }
     }
     else if (handler_context->shutdown_ConsoleKit)
-        error_result = dbus_ConsoleKit_Stop();
-    else if (handler_context->shutdown_logind)
-        error_result = dbus_logind_PowerOff();
-    else if (handler_context->shutdown_HAL)
-        error_result = dbus_HAL_Shutdown();
-
-    if (error_result != NULL)
-        gtk_label_set_text(GTK_LABEL(handler_context->error_label), error_result);
-        else gtk_main_quit();
+        dbus_ConsoleKit_Stop(&err);
+    else if (handler_context->shutdown_systemd)
+        dbus_systemd_PowerOff(&err);
+
+	if (err)
+	{
+		gtk_label_set_text(GTK_LABEL(handler_context->error_label), err->message);
+		g_error_free (err);
+	}
+	else
+    {
+        gtk_main_quit();
+    }
 }
 
 /* Handler for "clicked" signal on Reboot button. */
 static void reboot_clicked(GtkButton * button, HandlerContext * handler_context)
 {
-    char * error_result = NULL;
+    GError *err = NULL;
     gtk_label_set_text(GTK_LABEL(handler_context->error_label), NULL);
 
     if (handler_context->ltsp)
@@ -250,58 +250,71 @@
         }
     }
     else if (handler_context->reboot_ConsoleKit)
-        error_result = dbus_ConsoleKit_Restart();
-    else if (handler_context->reboot_logind)
-        error_result = dbus_logind_Reboot();
-    else if (handler_context->reboot_HAL)
-        error_result = dbus_HAL_Reboot();
-
-    if (error_result != NULL)
-        gtk_label_set_text(GTK_LABEL(handler_context->error_label), error_result);
-        else gtk_main_quit();
+        dbus_ConsoleKit_Restart(&err);
+    else if (handler_context->reboot_systemd)
+        dbus_systemd_Reboot(&err);
+
+	if (err)
+	{
+		gtk_label_set_text(GTK_LABEL(handler_context->error_label), err->message);
+		g_error_free (err);
+	}
+	else
+    {
+        gtk_main_quit();
+    }
 }
 
 /* Handler for "clicked" signal on Suspend button. */
 static void suspend_clicked(GtkButton * button, HandlerContext * handler_context)
 {
-    char * error_result = NULL;
+    GError *err = NULL;
     gtk_label_set_text(GTK_LABEL(handler_context->error_label), NULL);
 
     lock_screen();
     if (handler_context->suspend_UPower)
-        error_result = dbus_UPower_Suspend();
-    else if (handler_context->suspend_logind)
-        error_result = dbus_logind_Suspend();
-    else if (handler_context->suspend_HAL)
-        error_result = dbus_HAL_Suspend();
-
-    if (error_result != NULL)
-        gtk_label_set_text(GTK_LABEL(handler_context->error_label), error_result);
-        else gtk_main_quit();
+        dbus_UPower_Suspend(&err);
+    else if (handler_context->suspend_systemd)
+        dbus_systemd_Suspend(&err);
+
+	if (err)
+	{
+		gtk_label_set_text(GTK_LABEL(handler_context->error_label), err->message);
+		g_error_free (err);
+	}
+	else
+    {
+        gtk_main_quit();
+    }
 }
 
 /* Handler for "clicked" signal on Hibernate button. */
 static void hibernate_clicked(GtkButton * button, HandlerContext * handler_context)
 {
-    char * error_result = NULL;
+    GError *err = NULL;
     gtk_label_set_text(GTK_LABEL(handler_context->error_label), NULL);
 
     lock_screen();
     if (handler_context->hibernate_UPower)
-        error_result = dbus_UPower_Hibernate();
-    else if (handler_context->hibernate_logind)
-        error_result = dbus_logind_Hibernate();
-    else if (handler_context->hibernate_HAL)
-        error_result = dbus_HAL_Hibernate();
-
-    if (error_result != NULL)
-        gtk_label_set_text(GTK_LABEL(handler_context->error_label), error_result);
-        else gtk_main_quit();
+        dbus_UPower_Hibernate(&err);
+    else if (handler_context->hibernate_systemd)
+        dbus_systemd_Hibernate(&err);
+
+	if (err)
+	{
+		gtk_label_set_text(GTK_LABEL(handler_context->error_label), err->message);
+		g_error_free (err);
+	}
+	else
+    {
+        gtk_main_quit();
+    }
 }
 
 /* Handler for "clicked" signal on Switch User button. */
 static void switch_user_clicked(GtkButton * button, HandlerContext * handler_context)
 {
+    GError *err = NULL;
     gtk_label_set_text(GTK_LABEL(handler_context->error_label), NULL);
 
     lock_screen();
@@ -310,11 +323,19 @@
     else if (handler_context->switch_user_KDM)
         g_spawn_command_line_sync("kdmctl reserve", NULL, NULL, NULL, NULL);
     else if (handler_context->switch_user_LIGHTDM)
-        dbus_Lightdm_SwitchToGreeter();
+        dbus_Lightdm_SwitchToGreeter(&err);
     else if(handler_context->switch_user_LXDM)
         g_spawn_command_line_sync("lxdm-binary -c USER_SWITCH", NULL, NULL, NULL, NULL);
 
-    gtk_main_quit();
+	if (err)
+	{
+		gtk_label_set_text(GTK_LABEL(handler_context->error_label), err->message);
+		g_error_free (err);
+	}
+	else
+    {
+        gtk_main_quit();
+    }
 }
 
 /* Handler for "clicked" signal on Lock button. */
@@ -449,26 +470,26 @@
     const char * p = g_getenv("_LXSESSION_PID");
     if (p != NULL) handler_context.lxsession_pid = atoi(p);
 
-    /* Initialize capabilities of the logind mechanism. */
-    if (dbus_logind_CanPowerOff())
+    /* Initialize capabilities of the systemd mechanism. */
+    if (dbus_systemd_CanPowerOff())
     {
         handler_context.shutdown_available = TRUE;
-        handler_context.shutdown_logind = TRUE;
+        handler_context.shutdown_systemd = TRUE;
     }
-    if (dbus_logind_CanReboot())
+    if (dbus_systemd_CanReboot())
     {
         handler_context.reboot_available = TRUE;
-        handler_context.reboot_logind = TRUE;
+        handler_context.reboot_systemd = TRUE;
     }
-    if (dbus_logind_CanSuspend())
+    if (dbus_systemd_CanSuspend())
     {
         handler_context.suspend_available = TRUE;
-        handler_context.suspend_logind = TRUE;
+        handler_context.suspend_systemd = TRUE;
     }
-    if (dbus_logind_CanHibernate())
+    if (dbus_systemd_CanHibernate())
     {
         handler_context.hibernate_available = TRUE;
-        handler_context.hibernate_logind = TRUE;
+        handler_context.hibernate_systemd = TRUE;
     }
 
     /* Initialize capabilities of the ConsoleKit mechanism. */
@@ -495,28 +516,6 @@
         handler_context.hibernate_UPower = TRUE;
     }
 
-    /* Initialize capabilities of the HAL mechanism. */
-    if (!handler_context.shutdown_available && dbus_HAL_CanShutdown())
-    {
-        handler_context.shutdown_available = TRUE;
-        handler_context.shutdown_HAL = TRUE;
-    }
-    if (!handler_context.reboot_available && dbus_HAL_CanReboot())
-    {
-        handler_context.reboot_available = TRUE;
-        handler_context.reboot_HAL = TRUE;
-    }
-    if (!handler_context.suspend_available && dbus_HAL_CanSuspend())
-    {
-        handler_context.suspend_available = TRUE;
-        handler_context.suspend_HAL = TRUE;
-    }
-    if (!handler_context.hibernate_available && dbus_HAL_CanHibernate())
-    {
-        handler_context.hibernate_available = TRUE;
-        handler_context.hibernate_HAL = TRUE;
-    }
-
     /* If we are under GDM, its "Switch User" is available. */
     if (verify_running("gdm", "gdmflexiserver"))
     {
@@ -664,20 +663,23 @@
         if (session_name == NULL)
             session_name = "LXDE";
 
-        const gchar *command_line = "lsb_release -r -s";
         gchar *output = NULL;
-        GError *error;
 
-        if (!g_spawn_command_line_sync( command_line,
-                                        &output,
-                                        NULL,
-                                        NULL,
-                                        &error))
+        if (g_find_program_in_path("lsb_release"))
         {
+            const gchar *command_line = "lsb_release -r -s";
+            GError *error;
+            if (!g_spawn_command_line_sync( command_line,
+                                            &output,
+                                            NULL,
+                                            NULL,
+                                            &error))
+            {
 
-            fprintf (stderr, "Error: %s\n", error->message);
-            g_error_free (error);
+                fprintf (stderr, "Error: %s\n", error->message);
+                g_error_free (error);
 
+            }
         }
 
         if (output == NULL)
diff -Naur lxsession-0.4.9.2/lxsession-logout.orig/lxsession-logout-dbus-interface.c lxsession-0.4.9.2/lxsession-logout/lxsession-logout-dbus-interface.c
--- lxsession-0.4.9.2/lxsession-logout.orig/lxsession-logout-dbus-interface.c	1970-01-01 01:00:00.000000000 +0100
+++ lxsession-0.4.9.2/lxsession-logout/lxsession-logout-dbus-interface.c	2014-01-03 15:42:59.596454865 +0100
@@ -0,0 +1,368 @@
+/* Taken from LightDM and modified.
+ * Copyright (C) 2012 Fabrice THIROUX <fabrice.thiroux@free.fr>.
+ *
+ **** License from former file (power.c) ****
+ *
+ * Copyright (C) 2010-2011 Robert Ancell.
+ * Author: Robert Ancell <robert.ancell@canonical.com>
+ *
+ * This library is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU Lesser 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/lgpl.html the full text of the
+ * license.
+ */
+#include <config.h>
+#include <glib.h>
+#include <string.h>
+#include <dbus/dbus.h>
+#include <gio/gio.h>
+
+/*** Mechanism independent ***/
+
+static GDBusProxy *upower_proxy = NULL;
+static GDBusProxy *ck_proxy = NULL;
+static GDBusProxy *systemd_proxy = NULL;
+static GDBusProxy *lightdm_proxy = NULL;
+static GDBusProxy *lxde_proxy = NULL;
+
+
+/*** UPower mechanism ***/
+
+static gboolean
+upower_call_function (const gchar *function, gboolean default_result, GError **error)
+{
+    GVariant *result;
+    gboolean function_result = FALSE;
+
+    if (!upower_proxy)
+    {
+        upower_proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM,
+                                                      G_DBUS_PROXY_FLAGS_NONE,
+                                                      NULL,
+                                                      "org.freedesktop.UPower",
+                                                      "/org/freedesktop/UPower",
+                                                      "org.freedesktop.UPower",
+                                                      NULL,
+                                                      error);
+        if (!upower_proxy)
+            return FALSE;
+    }
+
+    result = g_dbus_proxy_call_sync (upower_proxy,
+                                     function,
+                                     NULL,
+                                     G_DBUS_CALL_FLAGS_NONE,
+                                     -1,
+                                     NULL,
+                                     error);
+    if (!result)
+        return default_result;
+
+    if (g_variant_is_of_type (result, G_VARIANT_TYPE ("(b)")))
+        g_variant_get (result, "(b)", &function_result);
+
+    g_variant_unref (result);
+    return function_result;
+}
+
+gboolean
+dbus_UPower_CanSuspend (void)
+{
+    return upower_call_function ("SuspendAllowed", FALSE, NULL);
+}
+
+gboolean
+dbus_UPower_Suspend (GError **error)
+{
+    return upower_call_function ("Suspend", TRUE, error);
+}
+
+gboolean
+dbus_UPower_CanHibernate (void)
+{
+    return upower_call_function ("HibernateAllowed", FALSE, NULL);
+}
+
+gboolean
+dbus_UPower_Hibernate (GError **error)
+{
+    return upower_call_function ("Hibernate", TRUE, error);
+}
+
+/*** ConsoleKit mechanism ***/
+
+static gboolean
+ck_call_function (const gchar *function, gboolean default_result, GError **error)
+{
+    GVariant *result;
+    gboolean function_result = FALSE;
+
+    if (!ck_proxy)
+    {
+        ck_proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM,
+                                                      G_DBUS_PROXY_FLAGS_NONE,
+                                                      NULL,
+                                                      "org.freedesktop.ConsoleKit",
+                                                      "/org/freedesktop/ConsoleKit/Manager",
+                                                      "org.freedesktop.ConsoleKit.Manager",
+                                                      NULL,
+                                                      error);
+        if (!ck_proxy)
+            return FALSE;
+    }
+
+    result = g_dbus_proxy_call_sync (ck_proxy,
+                                     function,
+                                     NULL,
+                                     G_DBUS_CALL_FLAGS_NONE,
+                                     -1,
+                                     NULL,
+                                     error);
+    if (!result)
+        return default_result;
+
+    if (g_variant_is_of_type (result, G_VARIANT_TYPE ("(b)")))
+        g_variant_get (result, "(b)", &function_result);
+
+    g_variant_unref (result);
+    return function_result;
+}
+
+gboolean
+dbus_ConsoleKit_CanRestart (void)
+{
+    return ck_call_function ("CanRestart", FALSE, NULL);
+}
+
+gboolean
+dbus_ConsoleKit_Restart (GError **error)
+{
+    return ck_call_function ("Restart", TRUE, error);
+}
+
+gboolean
+dbus_ConsoleKit_CanStop (void)
+{
+    return ck_call_function ("CanStop", FALSE, NULL);
+}
+
+gboolean
+dbus_ConsoleKit_Stop (GError **error)
+{
+    return ck_call_function ("Stop", TRUE, error);
+}
+
+/*** Systemd mechanism ***/
+
+static gboolean
+systemd_query (const gchar *function, gboolean default_result, GError **error)
+{
+    GVariant *result;
+    gboolean function_result = FALSE;
+    const gchar *str;
+
+    if (!systemd_proxy)
+    {
+        systemd_proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM,
+                                                      G_DBUS_PROXY_FLAGS_NONE,
+                                                      NULL,
+                                                      "org.freedesktop.login1",
+                                                      "/org/freedesktop/login1",
+                                                      "org.freedesktop.login1.Manager",
+                                                      NULL,
+                                                      error);
+        if (!systemd_proxy)
+            return FALSE;
+    }
+
+    result = g_dbus_proxy_call_sync (systemd_proxy,
+                                     function,
+                                     NULL,
+                                     G_DBUS_CALL_FLAGS_NONE,
+                                     -1,
+                                     NULL,
+                                     error);
+    if (!result)
+        return default_result;
+
+    if (g_variant_is_of_type (result, G_VARIANT_TYPE ("(s)")))
+    {
+			g_variant_get (result, "(s)", &str);
+			if (g_strcmp0 (str, "yes") || g_strcmp0 (str, "challenge"))
+				function_result = TRUE;
+			else
+				function_result = default_result;
+		}
+
+    g_variant_unref (result);
+    return function_result;
+}
+
+static void
+systemd_call_function (const gchar *function, gboolean value, GError **error)
+{
+    GVariant *result;
+
+    if (!systemd_proxy)
+    {
+        systemd_proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM,
+                                                      G_DBUS_PROXY_FLAGS_NONE,
+                                                      NULL,
+                                                      "org.freedesktop.login1",
+                                                      "/org/freedesktop/login1",
+                                                      "org.freedesktop.login1.Manager",
+                                                      NULL,
+                                                      error);
+        if (!systemd_proxy)
+            return;
+    }
+
+    result = g_dbus_proxy_call_sync (systemd_proxy,
+                                     function,
+                                     g_variant_new ("(b)", value),
+                                     G_DBUS_CALL_FLAGS_NONE,
+                                     -1,
+                                     NULL,
+                                     error);
+    g_variant_unref (result);
+    return;
+}
+
+gboolean
+dbus_systemd_CanPowerOff (void)
+{
+    return systemd_query ("CanPowerOff", FALSE, NULL);
+}
+
+void
+dbus_systemd_PowerOff (GError **error)
+{
+    systemd_call_function ("PowerOff", TRUE, error);
+}
+
+gboolean
+dbus_systemd_CanReboot (void)
+{
+    return systemd_query ("CanReboot", FALSE, NULL);
+}
+
+void
+dbus_systemd_Reboot (GError **error)
+{
+    systemd_call_function ("Reboot", TRUE, error);
+}
+
+gboolean
+dbus_systemd_CanSuspend (void)
+{
+    return systemd_query ("CanSuspend", FALSE, NULL);
+}
+
+void
+dbus_systemd_Suspend (GError **error)
+{
+    systemd_call_function ("Suspend", TRUE, error);
+}
+
+gboolean
+dbus_systemd_CanHibernate (void)
+{
+    return systemd_query ("CanHibernate", FALSE, NULL);
+}
+
+void
+dbus_systemd_Hibernate (GError **error)
+{
+    systemd_call_function ("Hibernate", TRUE, error);
+}
+
+/*** Lightdm mechanism ***/
+
+static gboolean
+lightdm_call_function (const gchar *function, gboolean default_result, GError **error)
+{
+    GVariant *result;
+    gboolean function_result = FALSE;
+
+    if (!lightdm_proxy)
+    {
+        lightdm_proxy = g_dbus_proxy_new_for_bus_sync ( G_BUS_TYPE_SYSTEM,
+                                                        G_DBUS_PROXY_FLAGS_NONE,
+                                                        NULL,
+                                                        "org.freedesktop.DisplayManager",
+                                                        g_getenv ("XDG_SEAT_PATH"),
+                                                        "org.freedesktop.DisplayManager.Seat",
+                                                        NULL,
+                                                        error);
+        if (!lightdm_proxy)
+            return FALSE;
+    }
+
+    result = g_dbus_proxy_call_sync (lightdm_proxy,
+                                     function,
+                                     NULL,
+                                     G_DBUS_CALL_FLAGS_NONE,
+                                     -1,
+                                     NULL,
+                                     error);
+    if (!result)
+        return default_result;
+
+    if (g_variant_is_of_type (result, G_VARIANT_TYPE ("(b)")))
+        g_variant_get (result, "(b)", &function_result);
+
+    g_variant_unref (result);
+    return function_result;
+}
+
+gboolean
+dbus_Lightdm_SwitchToGreeter (GError **error)
+{
+    return lightdm_call_function ("SwitchToGreeter", TRUE, error);
+}
+
+/*** LXDE mechanism ***/
+
+static gboolean
+lxde_call_function (const gchar *function, gboolean default_result, GError **error)
+{
+    GVariant *result;
+    gboolean function_result = FALSE;
+
+    if (!lxde_proxy)
+    {
+        lxde_proxy = g_dbus_proxy_new_for_bus_sync (    G_BUS_TYPE_SYSTEM,
+                                                        G_DBUS_PROXY_FLAGS_NONE,
+                                                        NULL,
+                                                        "org.lxde.SessionManager",
+                                                        "/org/lxde/SessionManager",
+                                                        "org.lxde.SessionManager",
+                                                        NULL,
+                                                        error);
+        if (!lxde_proxy)
+            return FALSE;
+    }
+
+    result = g_dbus_proxy_call_sync (lxde_proxy,
+                                     function,
+                                     NULL,
+                                     G_DBUS_CALL_FLAGS_NONE,
+                                     -1,
+                                     NULL,
+                                     error);
+    if (!result)
+        return default_result;
+
+    if (g_variant_is_of_type (result, G_VARIANT_TYPE ("(b)")))
+        g_variant_get (result, "(b)", &function_result);
+
+    g_variant_unref (result);
+    return function_result;
+}
+
+gboolean
+dbus_LXDE_Logout (GError **error)
+{
+    return lxde_call_function ("Restart", TRUE, error);
+}
diff -Naur lxsession-0.4.9.2/lxsession-logout.orig/lxsession-logout-dbus-interface.h lxsession-0.4.9.2/lxsession-logout/lxsession-logout-dbus-interface.h
--- lxsession-0.4.9.2/lxsession-logout.orig/lxsession-logout-dbus-interface.h	1970-01-01 01:00:00.000000000 +0100
+++ lxsession-0.4.9.2/lxsession-logout/lxsession-logout-dbus-interface.h	2014-01-03 15:42:59.596454865 +0100
@@ -0,0 +1,52 @@
+/**
+ * Copyright (c) 2010 LxDE Developers, see the file AUTHORS for details.
+ *
+ * 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 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef _DBUS_INTERFACE_H
+#define _DBUS_INTERFACE_H
+
+#include <glib.h>
+
+/* Interface to ConsoleKit for shutdown and reboot. */
+extern gboolean dbus_ConsoleKit_CanStop(void);
+extern gboolean dbus_ConsoleKit_CanRestart(void);
+extern gboolean dbus_ConsoleKit_Stop(GError **);
+extern gboolean dbus_ConsoleKit_Restart(GError **);
+
+/* Interface to UPower for suspend and hibernate. */
+extern gboolean dbus_UPower_CanSuspend(void);
+extern gboolean dbus_UPower_CanHibernate(void);
+extern gboolean dbus_UPower_Suspend(GError **);
+extern gboolean dbus_UPower_Hibernate(GError **);
+
+/* Interface to systemd for suspend, hibernate, shutdown and reboot. */
+extern gboolean dbus_systemd_CanPowerOff(void);
+extern gboolean dbus_systemd_CanReboot(void);
+extern gboolean dbus_systemd_CanSuspend(void);
+extern gboolean dbus_systemd_CanHibernate(void);
+extern void dbus_systemd_PowerOff(GError **);
+extern void dbus_systemd_Reboot(GError **);
+extern void dbus_systemd_Suspend(GError **);
+extern void dbus_systemd_Hibernate(GError **);
+
+/* Interface to lightdm for switch user. */
+extern gboolean dbus_Lightdm_SwitchToGreeter (GError **error);
+
+/* Interface to lxde for logout. */
+extern gboolean dbus_LXDE_Logout (GError **error);
+
+#endif
diff -Naur lxsession-0.4.9.2/lxsession-logout.orig/Makefile.am lxsession-0.4.9.2/lxsession-logout/Makefile.am
--- lxsession-0.4.9.2/lxsession-logout.orig/Makefile.am	2012-10-25 20:20:04.000000000 +0200
+++ lxsession-0.4.9.2/lxsession-logout/Makefile.am	2014-01-03 15:42:59.596454865 +0100
@@ -8,6 +8,6 @@
 lxsession_logout_LDADD = $(GTK_LIBS) $(SM_LIBS) $(DBUS_LIBS) $(X11_LIBS)
 
 lxsession_logout_SOURCES= \
-	dbus-interface.c \
-	dbus-interface.h \
+	lxsession-logout-dbus-interface.c \
+	lxsession-logout-dbus-interface.h \
 	lxsession-logout.c