dbus: add dbus introspection extraction

This commit is contained in:
Lennart Poettering 2011-06-17 00:15:02 +02:00
parent 05a4abb914
commit 91f9dcaf92
12 changed files with 200 additions and 18 deletions

View File

@ -203,13 +203,15 @@ dist_dbuspolicy_DATA = \
src/org.freedesktop.systemd1.conf \
src/org.freedesktop.hostname1.conf \
src/org.freedesktop.locale1.conf \
src/org.freedesktop.timedate1.conf
src/org.freedesktop.timedate1.conf \
src/org.freedesktop.login1.conf
dist_dbussystemservice_DATA = \
src/org.freedesktop.systemd1.service \
src/org.freedesktop.hostname1.service \
src/org.freedesktop.locale1.service \
src/org.freedesktop.timedate1.service
src/org.freedesktop.timedate1.service \
src/org.freedesktop.login1.service
dist_udevrules_DATA = \
src/99-systemd.rules
@ -227,7 +229,10 @@ dbusinterface_DATA = \
org.freedesktop.systemd1.Automount.xml \
org.freedesktop.systemd1.Snapshot.xml \
org.freedesktop.systemd1.Swap.xml \
org.freedesktop.systemd1.Path.xml
org.freedesktop.systemd1.Path.xml \
org.freedesktop.hostname1.xml \
org.freedesktop.locale1.xml \
org.freedesktop.timedate1.xml
dist_bashcompletion_DATA = \
src/systemctl-bash-completion.sh
@ -316,6 +321,7 @@ nodist_systemunit_DATA = \
units/systemd-hostnamed.service \
units/systemd-localed.service \
units/systemd-timedated.service \
units/systemd-logind.service \
units/systemd-kmsg-syslogd.service \
units/systemd-modules-load.service \
units/systemd-vconsole-setup.service \
@ -365,6 +371,7 @@ EXTRA_DIST = \
units/systemd-hostnamed.service.in \
units/systemd-localed.service.in \
units/systemd-timedated.service.in \
units/systemd-logind.service.in \
units/systemd-kmsg-syslogd.service.in \
units/systemd-modules-load.service.in \
units/systemd-vconsole-setup.service.in \
@ -455,7 +462,8 @@ nodist_polkitpolicy_DATA = \
dist_polkitpolicy_DATA = \
src/org.freedesktop.hostname1.policy \
src/org.freedesktop.locale1.policy \
src/org.freedesktop.timedate1.policy
src/org.freedesktop.timedate1.policy \
src/org.freedesktop.login1.policy
noinst_LTLIBRARIES = \
libsystemd-basic.la \
@ -1388,6 +1396,21 @@ org.freedesktop.systemd1.%.xml: systemd
$(STRINGS) $@.tmp | $(AWK) -f $(srcdir)/introspect.awk | \
$(DBUS_PREPROCESS) -o $@ - && rm $@.tmp
org.freedesktop.hostname1.xml: systemd-hostnamed
$(AM_V_GEN)$(OBJCOPY) -O binary -j introspect.hostname1 $< $@.tmp && \
$(STRINGS) $@.tmp | $(AWK) -f $(srcdir)/introspect.awk | \
$(DBUS_PREPROCESS) -o $@ - && rm $@.tmp
org.freedesktop.locale1.xml: systemd-localed
$(AM_V_GEN)$(OBJCOPY) -O binary -j introspect.locale1 $< $@.tmp && \
$(STRINGS) $@.tmp | $(AWK) -f $(srcdir)/introspect.awk | \
$(DBUS_PREPROCESS) -o $@ - && rm $@.tmp
org.freedesktop.timedate1.xml: systemd-timedated
$(AM_V_GEN)$(OBJCOPY) -O binary -j introspect.timedate1 $< $@.tmp && \
$(STRINGS) $@.tmp | $(AWK) -f $(srcdir)/introspect.awk | \
$(DBUS_PREPROCESS) -o $@ - && rm $@.tmp
CLEANFILES += \
$(dbusinterface_DATA)
@ -1492,7 +1515,8 @@ endif
$(LN_S) reboot.target ctrl-alt-del.target && \
$(LN_S) systemd-hostnamed.service dbus-org.freedesktop.hostname1.service && \
$(LN_S) systemd-localed.service dbus-org.freedesktop.locale1.service && \
$(LN_S) systemd-timedate.service dbus-org.freedesktop.timedate1.service )
$(LN_S) systemd-timedated.service dbus-org.freedesktop.timedate1.service && \
$(LN_S) systemd-logind.service dbus-org.freedesktop.login1.service )
( cd $(DESTDIR)$(systemunitdir)/multi-user.target.wants && \
rm -f getty.target systemd-user-sessions.service systemd-ask-password-wall.path && \
$(LN_S) ../getty.target getty.target && \

View File

@ -0,0 +1,26 @@
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<interface name="org.freedesktop.hostname1">
<property name="Hostname" type="s" access="read"/>
<property name="StaticHostname" type="s" access="read"/>
<property name="PrettyHostname" type="s" access="read"/>
<property name="IconName" type="s" access="read"/>
<method name="SetHostname">
<arg name="name" type="s" direction="in"/>
<arg name="user_interaction" type="b" direction="in"/>
</method>
<method name="SetStaticHostname">
<arg name="name" type="s" direction="in"/>
<arg name="user_interaction" type="b" direction="in"/>
</method>
<method name="SetPrettyHostname">
<arg name="name" type="s" direction="in"/>
<arg name="user_interaction" type="b" direction="in"/>
</method>
<method name="SetIconName">
<arg name="name" type="s" direction="in"/>
<arg name="user_interaction" type="b" direction="in"/>
</method>
</interface>
</node>

View File

@ -0,0 +1,11 @@
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<interface name="org.freedesktop.locale1">
<property name="Locale" type="as" access="read"/>
<method name="SetLocale">
<arg name="locale" type="as" direction="in"/>
<arg name="user_interaction" type="b" direction="in"/>
</method>
</interface>
</node>

View File

@ -0,0 +1,22 @@
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<interface name="org.freedesktop.timedate1">
<property name="Timezone" type="s" access="read"/>
<property name="LocalRTC" type="b" access="read"/>
<method name="SetTime">
<arg name="usec_utc" type="x" direction="in"/>
<arg name="relative" type="b" direction="in"/>
<arg name="user_interaction" type="b" direction="in"/>
</method>
<method name="SetTimezone">
<arg name="timezone" type="s" direction="in"/>
<arg name="user_interaction" type="b" direction="in"/>
</method>
<method name="SetLocalRTC">
<arg name="local_rtc" type="b" direction="in"/>
<arg name="fix_system" type="b" direction="in"/>
<arg name="user_interaction" type="b" direction="in"/>
</method>
</interface>
</node>

View File

@ -31,9 +31,7 @@
#include "dbus-common.h"
#include "polkit.h"
#define INTROSPECTION \
DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE \
"<node>\n" \
#define INTERFACE \
" <interface name=\"org.freedesktop.hostname1\">\n" \
" <property name=\"Hostname\" type=\"s\" access=\"read\"/>\n" \
" <property name=\"StaticHostname\" type=\"s\" access=\"read\"/>\n" \
@ -55,7 +53,12 @@
" <arg name=\"name\" type=\"s\" direction=\"in\"/>\n" \
" <arg name=\"user_interaction\" type=\"b\" direction=\"in\"/>\n" \
" </method>\n" \
" </interface>\n" \
" </interface>\n"
#define INTROSPECTION \
DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE \
"<node>\n" \
INTERFACE \
BUS_PROPERTIES_INTERFACE \
BUS_INTROSPECTABLE_INTERFACE \
BUS_PEER_INTERFACE \
@ -65,6 +68,8 @@
BUS_GENERIC_INTERFACES_LIST \
"org.freedesktop.hostname1\0"
const char hostname_interface[] _introspect_("hostname1") = INTERFACE;
enum {
PROP_HOSTNAME,
PROP_STATIC_HOSTNAME,
@ -547,6 +552,14 @@ int main(int argc, char *argv[]) {
log_parse_environment();
log_open();
if (argc == 2 && streq(argv[1], "--introspect")) {
fputs(DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE
"<node>\n", stdout);
fputs(hostname_interface, stdout);
fputs("</node>\n", stdout);
return 0;
}
if (argc != 1) {
log_error("This program takes no arguments.");
r = -EINVAL;

View File

@ -30,16 +30,19 @@
#include "dbus-common.h"
#include "polkit.h"
#define INTROSPECTION \
DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE \
"<node>\n" \
#define INTERFACE \
" <interface name=\"org.freedesktop.locale1\">\n" \
" <property name=\"Locale\" type=\"as\" access=\"read\"/>\n" \
" <method name=\"SetLocale\">\n" \
" <arg name=\"locale\" type=\"as\" direction=\"in\"/>\n" \
" <arg name=\"user_interaction\" type=\"b\" direction=\"in\"/>\n" \
" </method>\n" \
" </interface>\n" \
" </interface>\n"
#define INTROSPECTION \
DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE \
"<node>\n" \
INTERFACE \
BUS_PROPERTIES_INTERFACE \
BUS_INTROSPECTABLE_INTERFACE \
BUS_PEER_INTERFACE \
@ -49,6 +52,8 @@
BUS_GENERIC_INTERFACES_LIST \
"org.freedesktop.locale1\0"
const char locale_interface[] _introspect_("locale1") = INTERFACE;
enum {
/* We don't list LC_ALL here on purpose. People should be
* using LANG instead. */
@ -563,6 +568,14 @@ int main(int argc, char *argv[]) {
log_parse_environment();
log_open();
if (argc == 2 && streq(argv[1], "--introspect")) {
fputs(DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE
"<node>\n", stdout);
fputs(locale_interface, stdout);
fputs("</node>\n", stdout);
return 0;
}
if (argc != 1) {
log_error("This program takes no arguments.");
r = -EINVAL;

View File

@ -38,6 +38,7 @@
* PAM rewrite
* spawn user systemd
* dbus API
* direct client API
*
* non-local X11 server
* reboot/shutdown halt management

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?> <!--*-nxml-*-->
<!DOCTYPE policyconfig PUBLIC "-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN"
"http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd">
<!--
This file is part of systemd.
systemd 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.
-->
<policyconfig>
<vendor>The systemd Project</vendor>
<vendor_url>http://www.freedesktop.org/wiki/Software/systemd</vendor_url>
<action id="org.freedesktop.login1.enable-user-linger">
<description>Allow non-logged-in users to run programs</description>
<message>Authentication is required to allow a non-logged-in user to run programs</message>
<defaults>
<allow_any>auth_admin_keep</allow_any>
<allow_inactive>auth_admin_keep</allow_inactive>
<allow_active>auth_admin_keep</allow_active>
</defaults>
</action>
</policyconfig>

View File

@ -0,0 +1,12 @@
# This file is part of systemd.
#
# systemd 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.
[D-BUS Service]
Name=org.freedesktop.login1
Exec=/bin/false
User=root
SystemdService=dbus-org.freedesktop.login1.service

View File

@ -33,9 +33,7 @@
#define NULL_ADJTIME_UTC "0.0 0 0\n0\nUTC\n"
#define NULL_ADJTIME_LOCAL "0.0 0 0\n0\nLOCAL\n"
#define INTROSPECTION \
DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE \
"<node>\n" \
#define INTERFACE \
" <interface name=\"org.freedesktop.timedate1\">\n" \
" <property name=\"Timezone\" type=\"s\" access=\"read\"/>\n" \
" <property name=\"LocalRTC\" type=\"b\" access=\"read\"/>\n" \
@ -50,10 +48,15 @@
" </method>\n" \
" <method name=\"SetLocalRTC\">\n" \
" <arg name=\"local_rtc\" type=\"b\" direction=\"in\"/>\n" \
" <arg name=\"fix_system\" type=\"b\" direction=\"in\"/>\n" \
" <arg name=\"fix_system\" type=\"b\" direction=\"in\"/>\n" \
" <arg name=\"user_interaction\" type=\"b\" direction=\"in\"/>\n" \
" </method>\n" \
" </interface>\n" \
" </interface>\n"
#define INTROSPECTION \
DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE \
"<node>\n" \
INTERFACE \
BUS_PROPERTIES_INTERFACE \
BUS_INTROSPECTABLE_INTERFACE \
BUS_PEER_INTERFACE \
@ -63,6 +66,8 @@
BUS_GENERIC_INTERFACES_LIST \
"org.freedesktop.locale1\0"
const char timedate_interface[] _introspect_("timedate1") = INTERFACE;
static char *zone = NULL;
static bool local_rtc = false;
@ -566,6 +571,14 @@ int main(int argc, char *argv[]) {
log_parse_environment();
log_open();
if (argc == 2 && streq(argv[1], "--introspect")) {
fputs(DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE
"<node>\n", stdout);
fputs(timedate_interface, stdout);
fputs("</node>\n", stdout);
return 0;
}
if (argc != 1) {
log_error("This program takes no arguments.");
r = -EINVAL;

1
units/.gitignore vendored
View File

@ -1,3 +1,4 @@
systemd-logind.service
systemd-localed.service
systemd-timedated.service
systemd-hostnamed.service

View File

@ -0,0 +1,17 @@
# This file is part of systemd.
#
# systemd 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.
# See systemd.special(7) for details
[Unit]
Description=Login Service
[Service]
ExecStart=@rootlibexecdir@/systemd-logind
Type=dbus
BusName=org.freedesktop.login1
CapabilityBoundingSet=