/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugins.d/askpass-fifo.xml

  • Committer: Teddy Hogeborn
  • Date: 2015-08-10 09:00:23 UTC
  • Revision ID: teddy@recompile.se-20150810090023-fz6vjqr7zf33e2tf
Support the standard org.freedesktop.DBus.ObjectManager interface.

Now that the D-Bus standard has an interface to keep track of new and
removed objects, use that instead of our own methods.  This deprecates
our D-Bus methods "GetAllClients" and "GetAllClientsWithProperties"
and the signals "ClientAdded" and "ClientRemoved", all on the server
interface "se.recompile.Mandos".

* DBUS-API: Removed references to deprecated methods and signals;
  insert reference to the org.freedesktop.DBus.ObjectManager
  interface.
* mandos (DBusObjectWithProperties._get_all_interface_names): New.
  (dbus.OBJECT_MANAGER_IFACE): If not present, monkey patch.
  (DBusObjectWithObjectManager): New.
  (main/MandosDBusService): Inherit from DBusObjectWithObjectManager.
  (main/MandosDBusService.ClientRemoved): Annotate as deprecated.
  (main/MandosDBusService.GetAllClients): - '' -
  (main/MandosDBusService.GetAllClientsWithProperties): Annotate as
                                                        deprecated.
                                                        Also only
                                                        return
                                                        properties on
                                                        client
                                                        interface.
  (main/MandosDBusService.RemoveClient): Call client_removed_signal
                                         instead of ClientRemoved.
  (main/MandosDBusService.GetManagedObjects): New.
  (main/MandosDBusService.client_added_signal): New.
  (main/MandosDBusService.client_removed_signal): - '' -
  (main/cleanup): Call "client_removed_signal" instead of sending
                  "ClientRemoved" signal directly.
  (main): Call "client_added_signal" instead of sending "ClientAdded"
          signal directly.
* mandos-ctl: Use GetManagedObjects instead of
              GetAllClientsWithProperties.  Also, show better error
              message in case of failure to connect to the D-Bus

* mandos-monitor (MandosClientPropertyCache.properties_changed):
  Bug fix; only update properties on client interface.
  (UserInterface.find_and_remove_client): Change to accept arguments
                                          from InterfacesRemoved
                                          signal.  Also, bug fix:
                                          working error message when
                                          removing unknown client.
  (UserInterface.add_new_client): Change to accept arguments from
                                  InterfacesRemoved signal.  Pass
                                  properties to MandosClientWidget
                                  constructor.
  (UserInterface.run): Connect find_and_remove_client method to
                       InterfacesRemoved signal and the add_new_client
                       method to the InterfacesAdded signal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
 
3
        "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
 
4
<!ENTITY COMMANDNAME "askpass-fifo">
 
5
<!ENTITY TIMESTAMP "2015-07-20">
 
6
<!ENTITY % common SYSTEM "../common.ent">
 
7
%common;
 
8
]>
 
9
 
 
10
<refentry xmlns:xi="http://www.w3.org/2001/XInclude">
 
11
  <refentryinfo>
 
12
    <title>Mandos Manual</title>
 
13
    <!-- NWalsh’s docbook scripts use this to generate the footer: -->
 
14
    <productname>Mandos</productname>
 
15
    <productnumber>&version;</productnumber>
 
16
    <date>&TIMESTAMP;</date>
 
17
    <authorgroup>
 
18
      <author>
 
19
        <firstname>Björn</firstname>
 
20
        <surname>Påhlsson</surname>
 
21
        <address>
 
22
          <email>belorn@recompile.se</email>
 
23
        </address>
 
24
      </author>
 
25
      <author>
 
26
        <firstname>Teddy</firstname>
 
27
        <surname>Hogeborn</surname>
 
28
        <address>
 
29
          <email>teddy@recompile.se</email>
 
30
        </address>
 
31
      </author>
 
32
    </authorgroup>
 
33
    <copyright>
 
34
      <year>2008</year>
 
35
      <year>2009</year>
 
36
      <year>2010</year>
 
37
      <year>2011</year>
 
38
      <year>2012</year>
 
39
      <year>2013</year>
 
40
      <year>2014</year>
 
41
      <year>2015</year>
 
42
      <holder>Teddy Hogeborn</holder>
 
43
      <holder>Björn Påhlsson</holder>
 
44
    </copyright>
 
45
    <xi:include href="../legalnotice.xml"/>
 
46
  </refentryinfo>
 
47
  
 
48
  <refmeta>
 
49
    <refentrytitle>&COMMANDNAME;</refentrytitle>
 
50
    <manvolnum>8mandos</manvolnum>
 
51
  </refmeta>
 
52
  
 
53
  <refnamediv>
 
54
    <refname><command>&COMMANDNAME;</command></refname>
 
55
    <refpurpose>Mandos plugin to get a password from a
 
56
    FIFO.</refpurpose>
 
57
  </refnamediv>
 
58
  
 
59
  <refsynopsisdiv>
 
60
    <cmdsynopsis>
 
61
      <command>&COMMANDNAME;</command>
 
62
    </cmdsynopsis>
 
63
  </refsynopsisdiv>
 
64
  
 
65
  <refsect1 id="description">
 
66
    <title>DESCRIPTION</title>
 
67
    <para>
 
68
      This program reads a password from a <acronym>FIFO</acronym> and
 
69
      outputs it to standard output.
 
70
    </para>
 
71
    <para>
 
72
      This program is not very useful on its own.  This program is
 
73
      really meant to run as a plugin in the <application
 
74
      >Mandos</application> client-side system, where it is used as a
 
75
      fallback and alternative to retrieving passwords from a
 
76
      <application >Mandos</application> server.
 
77
    </para>
 
78
    <para>
 
79
      This program is meant to be imitate a feature of the
 
80
      <command>askpass</command> program, so that programs written to
 
81
      interface with it can keep working under the
 
82
      <application>Mandos</application> system.
 
83
    </para>
 
84
  </refsect1>
 
85
  
 
86
  <refsect1 id="options">
 
87
    <title>OPTIONS</title>
 
88
    <para>
 
89
      This program takes no options.
 
90
    </para>
 
91
  </refsect1>
 
92
  
 
93
  <refsect1 id="exit_status">
 
94
    <title>EXIT STATUS</title>
 
95
    <para>
 
96
      If exit status is 0, the output from the program is the password
 
97
      as it was read.  Otherwise, if exit status is other than 0, the
 
98
      program was interrupted or encountered an error, and any output
 
99
      so far could be corrupt and/or truncated, and should therefore
 
100
      be ignored.
 
101
    </para>
 
102
  </refsect1>
 
103
  
 
104
  <refsect1 id="files">
 
105
    <title>FILES</title>
 
106
    <variablelist>
 
107
      <varlistentry>
 
108
        <term><filename>/lib/cryptsetup/passfifo</filename></term>
 
109
        <listitem>
 
110
          <para>
 
111
            This is the <acronym>FIFO</acronym> where this program
 
112
            will read the password.  If it does not exist, it will be
 
113
            created.
 
114
          </para>
 
115
        </listitem>
 
116
      </varlistentry>
 
117
    </variablelist>
 
118
  </refsect1>
 
119
  
 
120
  <refsect1 id="example">
 
121
    <title>EXAMPLE</title>
 
122
    <para>
 
123
      Note that normally, this program will not be invoked directly,
 
124
      but instead started by the Mandos <citerefentry><refentrytitle
 
125
      >plugin-runner</refentrytitle><manvolnum>8mandos</manvolnum>
 
126
      </citerefentry>.
 
127
    </para>
 
128
    <informalexample>
 
129
      <para>
 
130
        This program takes no options.
 
131
      </para>
 
132
      <para>
 
133
        <userinput>&COMMANDNAME;</userinput>
 
134
      </para>
 
135
    </informalexample>
 
136
  </refsect1>
 
137
  
 
138
  <refsect1 id="security">
 
139
    <title>SECURITY</title>
 
140
    <para>
 
141
      The only thing that could be considered worthy of note is
 
142
      this:  This program is meant to be run by <citerefentry>
 
143
      <refentrytitle>plugin-runner</refentrytitle><manvolnum
 
144
      >8mandos</manvolnum></citerefentry>, and will, when run
 
145
      standalone, outside, in a normal environment, immediately output
 
146
      on its standard output any presumably secret password it just
 
147
      received.  Therefore, when running this program standalone
 
148
      (which should never normally be done), take care not to type in
 
149
      any real secret password by force of habit, since it would then
 
150
      immediately be shown as output.
 
151
    </para>
 
152
  </refsect1>
 
153
  
 
154
  <refsect1 id="see_also">
 
155
    <title>SEE ALSO</title>
 
156
    <para>
 
157
      <citerefentry><refentrytitle>intro</refentrytitle>
 
158
      <manvolnum>8mandos</manvolnum></citerefentry>,
 
159
      <citerefentry><refentrytitle>fifo</refentrytitle>
 
160
      <manvolnum>7</manvolnum></citerefentry>,
 
161
      <citerefentry><refentrytitle>plugin-runner</refentrytitle>
 
162
      <manvolnum>8mandos</manvolnum></citerefentry>
 
163
    </para>
 
164
  </refsect1>
 
165
</refentry>
 
166
<!-- Local Variables: -->
 
167
<!-- time-stamp-start: "<!ENTITY TIMESTAMP [\"']" -->
 
168
<!-- time-stamp-end: "[\"']>" -->
 
169
<!-- time-stamp-format: "%:y-%02m-%02d" -->
 
170
<!-- End: -->