doc: switch to mkdocs
authorJosé Bollo <jose.bollo@iot.bzh>
Wed, 26 Oct 2016 16:24:13 +0000 (18:24 +0200)
committerJosé Bollo <jose.bollo@iot.bzh>
Fri, 28 Oct 2016 13:35:02 +0000 (15:35 +0200)
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
22 files changed:
doc/afm-system-daemon.html [deleted file]
doc/afm-user-daemon.html [deleted file]
doc/application-framework.html [deleted file]
doc/doc.css [deleted file]
doc/overview.html [deleted file]
doc/quick-tutorial.html [deleted file]
doc/quick-tutorial.iotstyled.html [deleted file]
doc/security-framework.html [deleted file]
doc/updt.sh [deleted file]
doc/widgets.html [deleted file]
doc/writing-config.xml.html [deleted file]
docs/afm-system-daemon.md [moved from doc/afm-system-daemon.md with 100% similarity]
docs/afm-user-daemon.md [moved from doc/afm-user-daemon.md with 100% similarity]
docs/application-framework.md [moved from doc/application-framework.md with 100% similarity]
docs/index.md [new symlink]
docs/overview.md [moved from doc/overview.md with 100% similarity]
docs/quick-tutorial.md [moved from doc/quick-tutorial.md with 100% similarity]
docs/security-framework.md [moved from doc/security-framework.md with 100% similarity]
docs/triskel_iot_bzh.svg [moved from doc/triskel_iot_bzh.svg with 100% similarity]
docs/widgets.md [moved from doc/widgets.md with 100% similarity]
docs/writing-config.xml.md [moved from doc/writing-config.xml.md with 100% similarity]
mkdocs.yml [new file with mode: 0644]

diff --git a/doc/afm-system-daemon.html b/doc/afm-system-daemon.html
deleted file mode 100644 (file)
index 199bf38..0000000
+++ /dev/null
@@ -1,153 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta charset="utf-8">
-  <meta name="generator" content="pandoc">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
-  <meta name="author" content="José Bollo">
-  <meta name="author" content="Fulup Ar Foll">
-  <title>The afm-system-daemon</title>
-  <style type="text/css">code{white-space: pre;}</style>
-  <link rel="stylesheet" href="doc.css">
-  <!--[if lt IE 9]>
-    <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
-  <![endif]-->
-</head>
-<body>
-<header>
-<h1 class="title">The afm-system-daemon</h1>
-<h2 class="author">José Bollo</h2>
-<h2 class="author">Fulup Ar Foll</h2>
-<h3 class="date">24 juin 2016</h3>
-</header>
-<nav id="TOC">
-<ul>
-<li><a href="#the-afm-system-daemon">The afm-system-daemon</a><ul>
-<li><a href="#foreword">Foreword</a></li>
-<li><a href="#introduction">Introduction</a></li>
-<li><a href="#starting-afm-system-daemon">Starting <strong>afm-system-daemon</strong></a></li>
-<li><a href="#the-d-bus-interface">The D-Bus interface</a><ul>
-<li><a href="#overview-of-the-dbus-interface">Overview of the dbus interface</a></li>
-<li><a href="#the-protocol-over-d-bus">The protocol over D-Bus</a></li>
-</ul></li>
-</ul></li>
-</ul>
-</nav>
-<h1 id="the-afm-system-daemon">The afm-system-daemon</h1>
-<h2 id="foreword">Foreword</h2>
-<p>This document describes application framework system daemon fundamentals. FCF (Fully Conform to Specification) implementation is still under development. It may happen that current implementation somehow diverges with specifications.</p>
-<h2 id="introduction">Introduction</h2>
-<p>The daemon <strong>afm-system-daemon</strong> is in charge of installing applications on AGL system. Its main tasks are:</p>
-<ul>
-<li><p>installs applications and setup security framework for newly installed application.</p></li>
-<li><p>uninstall applications</p></li>
-</ul>
-<p>The <strong>afm-system-daemon</strong> takes its orders from system instance of D-Bus.</p>
-<p>The figure below summarizes the situation of <strong>afm-system-daemon</strong> in the system.</p>
-<pre><code>+------------------------------------------------------------+
-|                          User                              |
-|                                                            |
-|     +-------------------------------------------------+    |
-|     |                                                 |    |
-|     |                  afm-user-daemon                |    |
-|     |                                                 |    |
-|     +----------+----------------------+----------+----+    |
-|                |                      |          :         |
-|                |                      |          :         |
-:================|======================|==========:=========:
-|                |                      |          :         |
-|     +----------+----------+     +-----+-----+    :         |
-|     |   D-Bus   system    +-----+  CYNARA   |    :         |
-|     +----------+----------+     +-----+-----+    :         |
-|                |                      |          :         |
-|     +----------+---------+    +-------+----------+----+    |
-|     | afm-system-daemon  +----+   SECURITY-MANAGER    |    |
-|     +--------------------+    +-----------------------+    |
-|                                                            |
-|                          System                            |
-+------------------------------------------------------------+</code></pre>
-<h2 id="starting-afm-system-daemon">Starting <strong>afm-system-daemon</strong></h2>
-<p><strong>afm-system-daemon</strong> is launched as a <strong>systemd</strong> service attached to system. Normally, the service file is located at /lib/systemd/system/afm-system-daemon.service.</p>
-<p>The options for launching <strong>afm-system-daemon</strong> are:</p>
-<pre><code>-r
---root directory
-
-     Set the root application directory.
-
-     Note that the default root directory is defined
-     to be /usr/share/afm/applications (may change).
-
--d
---daemon
-
-     Daemonizes the process. It is not needed by sytemd.
-
--q
---quiet
-
-     Reduces the verbosity (can be repeated).
-
--v
---verbose
-
-     Increases the verbosity (can be repeated).
-
--h
---help
-
-     Prints a short help.</code></pre>
-<h2 id="the-d-bus-interface">The D-Bus interface</h2>
-<h3 id="overview-of-the-dbus-interface">Overview of the dbus interface</h3>
-<p><strong><em>afm-system-daemon</em></strong> takes its orders from the session instance of D-Bus. The use of D-Bus is great because it allows to implement discovery and signaling.</p>
-<p>The <strong>afm-system-daemon</strong> is listening with the destination name <strong><em>org.AGL.afm.system</em></strong> at the object of path <strong><em>/org/AGL/afm/system</em></strong> on the interface <strong><em>org.AGL.afm.system</em></strong> for the below detailed members <strong><em>install</em></strong> and <strong><em>uninstall</em></strong>.</p>
-<p>D-Bus is mainly used for signaling and discovery. Its optimized typed protocol is not used except for transmitting only one string in both directions.</p>
-<p>The client and the service are using JSON serialization to exchange data.</p>
-<p>The D-Bus interface is defined by:</p>
-<ul>
-<li><p>DESTINATION: <strong>org.AGL.afm.system</strong></p></li>
-<li><p>PATH: <strong>/org/AGL/afm/system</strong></p></li>
-<li><p>INTERFACE: <strong>org.AGL.afm.system</strong></p></li>
-</ul>
-<p>The signature of any member of the interface is <strong><em>string -&gt; string</em></strong> for <strong><em>JSON -&gt; JSON</em></strong>.</p>
-<p>This is the normal case. In case of error, the current implementation returns a dbus error that is a string.</p>
-<p>Here is an example using <em>dbus-send</em> to query data on installed applications.</p>
-<pre><code>dbus-send --session --print-reply \
-    --dest=org.AGL.afm.system \
-    /org/AGL/afm/system \
-    org.AGL.afm.system.install &#39;string:&quot;/tmp/appli.wgt&quot;&#39;</code></pre>
-<h3 id="the-protocol-over-d-bus">The protocol over D-Bus</h3>
-<hr />
-<h4 id="method-org.agl.afm.system.install">Method org.AGL.afm.system.install</h4>
-<p><strong>Description</strong>: Install an application from a widget file.</p>
-<p>When an application with the same <em>id</em> and <em>version</em> already exists. Outside of using <em>force=true</em> the application is not reinstalled.</p>
-<p>Applications are installed the subdirectories of applications common directory. If <em>root</em> is specified, the application is installed under the sub-directories of the <em>root</em> defined.</p>
-<p>Note that this methods is a simple accessor method of <strong><em>org.AGL.afm.system.install</em></strong> from <strong><em>afm-system-daemon</em></strong>.</p>
-<p>After the installation and before returning to the sender, <strong><em>afm-system-daemon</em></strong> sends a signal <strong><em>org.AGL.afm.system.changed</em></strong>.</p>
-<p><strong>Input</strong>: The <em>path</em> of the widget file to install and, optionally, a flag to <em>force</em> reinstallation, and, optionally, a <em>root</em> directory.</p>
-<p>Either just a string being the absolute path of the widget file:</p>
-<pre><code>&quot;/a/path/driving/to/the/widget&quot;</code></pre>
-<p>Or an object:</p>
-<pre><code>{
-  &quot;wgt&quot;: &quot;/a/path/to/the/widget&quot;,
-  &quot;force&quot;: false,
-  &quot;root&quot;: &quot;/a/path/to/the/root&quot;
-}</code></pre>
-<p>&quot;wgt&quot; and &quot;root&quot; must be absolute paths.</p>
-<p><strong>output</strong>: An object with the field &quot;added&quot; being the string for the id of the added application.</p>
-<pre><code>{&quot;added&quot;:&quot;appli@x.y&quot;}</code></pre>
-<hr />
-<h4 id="method-org.agl.afm.system.uninstall">Method org.AGL.afm.system.uninstall</h4>
-<p><strong>Description</strong>: Uninstall an application from its id.</p>
-<p>Note that this methods is a simple method accessor of <strong><em>org.AGL.afm.system.uninstall</em></strong> from <strong><em>afm-system-daemon</em></strong>.</p>
-<p>After the uninstallation and before returning to the sender, <strong><em>afm-system-daemon</em></strong> sends a signal <strong><em>org.AGL.afm.system.changed</em></strong>.</p>
-<p><strong>Input</strong>: the <em>id</em> of the application and optionally the application <em>root</em> path.</p>
-<p>Either a string:</p>
-<pre><code>&quot;appli@x.y&quot;</code></pre>
-<p>Or an object:</p>
-<pre><code>{
-  &quot;id&quot;: &quot;appli@x.y&quot;,
-  &quot;root&quot;: &quot;/a/path/to/the/root&quot;
-}</code></pre>
-<p><strong>output</strong>: the value 'true'.</p>
-</body>
-</html>
diff --git a/doc/afm-user-daemon.html b/doc/afm-user-daemon.html
deleted file mode 100644 (file)
index 5bf56f7..0000000
+++ /dev/null
@@ -1,457 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta charset="utf-8">
-  <meta name="generator" content="pandoc">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
-  <meta name="author" content="José Bollo">
-  <meta name="author" content="Fulup Ar Foll">
-  <title>The afm-user-daemon</title>
-  <style type="text/css">code{white-space: pre;}</style>
-  <link rel="stylesheet" href="doc.css">
-  <!--[if lt IE 9]>
-    <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
-  <![endif]-->
-</head>
-<body>
-<header>
-<h1 class="title">The afm-user-daemon</h1>
-<h2 class="author">José Bollo</h2>
-<h2 class="author">Fulup Ar Foll</h2>
-<h3 class="date">24 juin 2016</h3>
-</header>
-<nav id="TOC">
-<ul>
-<li><a href="#the-afm-user-daemon">The afm-user-daemon</a><ul>
-<li><a href="#foreword">Foreword</a></li>
-<li><a href="#introduction">Introduction</a></li>
-<li><a href="#tasks-of-afm-user-daemon">Tasks of <strong>afm-user-daemon</strong></a><ul>
-<li><a href="#maintaining-list-of-applications">Maintaining list of applications</a></li>
-<li><a href="#launching-application">Launching application</a></li>
-<li><a href="#managing-instances-of-running-applications">Managing instances of running applications</a></li>
-<li><a href="#installing-and-uninstalling-applications">Installing and uninstalling applications</a></li>
-</ul></li>
-<li><a href="#starting-afm-user-daemon">Starting <strong>afm-user-daemon</strong></a></li>
-<li><a href="#launcher-configuration">Launcher Configuration</a><ul>
-<li><a href="#mode-local">mode local</a></li>
-<li><a href="#mode-remote">mode remote</a></li>
-<li><a href="#substitutions">%substitutions</a></li>
-</ul></li>
-<li><a href="#the-d-bus-interface">The D-Bus interface</a><ul>
-<li><a href="#overview-of-the-dbus-interface">Overview of the dbus interface</a></li>
-<li><a href="#using-afm-util">Using <strong><em>afm-util</em></strong></a></li>
-<li><a href="#the-protocol-over-d-bus">The protocol over D-Bus</a></li>
-</ul></li>
-</ul></li>
-</ul>
-</nav>
-<h1 id="the-afm-user-daemon">The afm-user-daemon</h1>
-<h2 id="foreword">Foreword</h2>
-<p>This document describes application framework user daemon fundamentals. FCF (Fully Conform to Specification) implementation is still under development. It may happen that current implementation somehow diverges with specifications.</p>
-<h2 id="introduction">Introduction</h2>
-<p>The daemon <strong>afm-user-daemon</strong> is in charge of handling applications on behalf of a user. Its main tasks are:</p>
-<ul>
-<li><p>enumerate applications that end user can run and keep this list available on demand</p></li>
-<li><p>start applications on behalf of end user, set user running environment, set user security context</p></li>
-<li><p>list current runnable or running applications</p></li>
-<li><p>stop (aka pause), continue (aka resume), terminate a running instance of a given application</p></li>
-<li><p>transfer requests for installation/uninstallation of applications to the corresponding system daemon <strong>afm-system-daemon</strong></p></li>
-</ul>
-<p>The <strong>afm-user-daemon</strong> takes its orders from the session instance of D-Bus.</p>
-<p>The figure below summarizes the situation of <strong>afm-user-daemon</strong> in the system.</p>
-<pre><code>+------------------------------------------------------------+
-|                          User                              |
-|                                 +---------------------+    |
-|     +---------------------+     |   Smack isolated    |    |
-|     |   D-Bus   session   +     |    APPLICATIONS     |    |
-|     +----------+----------+     +---------+-----------+    |
-|                |                          |                |
-|                |                          |                |
-|     +----------+--------------------------+-----------+    |
-|     |                                                 |    |
-|     |                  afm-user-daemon                |    |
-|     |                                                 |    |
-|     +----------+----------------------+----------+----+    |
-|                |                      |          :         |
-|                |                      |          :         |
-:================|======================|==========:=========:
-|                |                      |          :         |
-|     +----------+----------+     +-----+-----+    :         |
-|     |   D-Bus   system    +-----+  CYNARA   |    :         |
-|     +----------+----------+     +-----+-----+    :         |
-|                |                      |          :         |
-|     +----------+---------+    +-------+----------+----+    |
-|     | afm-system-daemon  +----+   SECURITY-MANAGER    |    |
-|     +--------------------+    +-----------------------+    |
-|                                                            |
-|                          System                            |
-+------------------------------------------------------------+</code></pre>
-<h2 id="tasks-of-afm-user-daemon">Tasks of <strong>afm-user-daemon</strong></h2>
-<h3 id="maintaining-list-of-applications">Maintaining list of applications</h3>
-<p>At start <strong>afm-user-daemon</strong> scans the directories containing applications and load in memory a list of avaliable applications accessible by current user.</p>
-<p>When <strong>afm-system-daemon</strong> installs or removes an application. On success it sends the signal <em>org.AGL.afm.system.changed</em>. When receiving such a signal, <strong>afm-user-daemon</strong> rebuilds its applications list.</p>
-<p><strong>afm-user-daemon</strong> provides the data it collects about applications to its clients. Clients may either request the full list of avaliable applications or a more specific information about a given application.</p>
-<h3 id="launching-application">Launching application</h3>
-<p><strong>afm-user-daemon</strong> launches application. Its builds a secure environment for the application before starting it within a secured environment.</p>
-<p>Different kind of applications can be launched.</p>
-<p>This is set using a configuration file that describes how to launch an application of a given kind within a given mode.</p>
-<p>There is two launching modes: local or remote.</p>
-<p>Launching an application locally means that the application and its binder are launched together.</p>
-<p>Launching application remotely translates in only launching the application binder. The UI by itself has to be activated remotely by the requested (ie: HTML5 homescreen in a browser)</p>
-<p>Once launched, running instances of application receive a runid that identify them.</p>
-<h3 id="managing-instances-of-running-applications">Managing instances of running applications</h3>
-<p><strong>afm-user-daemon</strong> manages the list of applications that it launched.</p>
-<p>When owning the right permissions, a client can get the list of running instances and details about a specific running instance. It can also terminates, stops or continues a given application.</p>
-<h3 id="installing-and-uninstalling-applications">Installing and uninstalling applications</h3>
-<p>If the client own the right permissions, <strong>afm-user-daemon</strong> delegates that task to <strong>afm-system-daemon</strong>.</p>
-<h2 id="starting-afm-user-daemon">Starting <strong>afm-user-daemon</strong></h2>
-<p><strong>afm-user-daemon</strong> is launched as a <strong>systemd</strong> service attached to user sessions. Normally, the service file is located at /usr/lib/systemd/user/afm-user-daemon.service.</p>
-<p>The options for launching <strong>afm-user-daemon</strong> are:</p>
-<pre><code>-a
---application directory
-
-     Includes the given application directory to
-     the database base of applications.
-
-     Can be repeated.
-
--r
---root directory 
-
-     Includes root application directory or directories when
-     passing multiple rootdir to
-     applications database.
-
-     Note that default root directory for
-     applications is always added. In current version
-     /usr/share/afm/applications is used as default.
-    
--m
---mode (local|remote)
-
-     Set the default launch mode.
-     The default value is &#39;local&#39;
-
--d
---daemon
-
-     Daemonizes the process. It is not needed by sytemd.
-
--q
---quiet
-
-     Reduces the verbosity (can be repeated).
-
--v
---verbose
-
-     Increases the verbosity (can be repeated).
-
--h
---help
-
-     Prints a short help.</code></pre>
-<h2 id="launcher-configuration">Launcher Configuration</h2>
-<p>It contains rules for launching applications. When <strong>afm-user-daemon</strong> has to launch an application, it looks for launch mode (local or remote), as well as for the type of application describe in <strong><em>config.xml</em></strong> widget configuration file.</p>
-<p>This tuple mode+type allows to select the adequate rule.</p>
-<p>Configuration file is <strong>/etc/afm/afm-launch.conf</strong>.</p>
-<p>It contains sections and rules. It can also contain comments and empty lines to improve readability.</p>
-<p>The separators are space and tabulation, any other character should have a meaning.</p>
-<p>The format is line oriented. The new line character separate the lines.</p>
-<p>Lines having only separators are blank lines and ignored. Line having character #(sharp) at first position are comment lines and ignored.</p>
-<p>Lines not starting with a separator are different from lines starting with a separator character.</p>
-<p>The grammar of the configuration file is defined below:</p>
-<pre><code>CONF: *COMMENT *SECTION
-
-SECTION: MODE *RULE
-
-RULE: +TYPE VECTOR ?VECTOR
-
-MODE: &#39;mode&#39; +SEP (&#39;local&#39; | &#39;remote&#39;) *SEP EOL
-
-TYPE: DATA *SEP EOL
-
-VECTOR: +SEP DATA *(+SEP NDATA) *SEP EOL
-
-DATA: CHAR *NCHAR
-NDATA: +NCHAR
-
-EOL: NL *COMMENT
-COMMENT: *SEP CMT *(SEP | NCHAR) NL
-
-NL: &#39;\x0a&#39;
-SEP: &#39;\x20&#39; | &#39;\x09&#39;
-CMT: &#39;#&#39;
-CHAR: &#39;\x00&#39;..&#39;\x08&#39; | &#39;\x0b&#39;..&#39;\x1f&#39; | &#39;\x21&#39; | &#39;\x22&#39; | &#39;\x24&#39;..&#39;\xff&#39;
-NCHAR: CMT | CHAR</code></pre>
-<p>Here is a sample of configuration file for defining how to launch an application of types <em>application/x-executable</em>, <em>text/x-shellscript</em> and <em>text/html</em> in local mode:</p>
-<pre><code>mode local
-
-application/x-executable
-text/x-shellscript
-    %r/%c
-
-text/html
-    /usr/bin/afb-daemon --mode=local --readyfd=%R --alias=/icons:%I --port=%P --rootdir=%r --token=%S --sessiondir=%D/.afb-daemon
-    /usr/bin/web-runtime http://localhost:%P/%c?token=%S</code></pre>
-<p>This shows that:</p>
-<ul>
-<li>within a section, several rules can be defined</li>
-<li>within a rule, several types can be defined</li>
-<li>within a rule, one or two vectors can be defined</li>
-<li>vectors are using %substitution</li>
-<li>launched binaries must be defined with their full path</li>
-</ul>
-<h3 id="mode-local">mode local</h3>
-<p>Within this mode, the launchers have either one or two description vectors. All of those vectors are treated as programs and are executed with 'execve' system call.</p>
-<p>The first vector is the leader vector and it defines the process group. The second vector (if any) is attached to the group defined by this first vector.</p>
-<h3 id="mode-remote">mode remote</h3>
-<p>Within this mode, the launchers have either one or two vectors describing them.</p>
-<p>The first vector is process as a program and is executed with system call 'execve'.</p>
-<p>The second vector (if any) defines a text that is returned to the caller. This mechanism can be used to return a uri for remote UI to connect on the newly launched application.</p>
-<p>The daemon <strong><em>afm-user-daemon</em></strong> allocates a port for each new remote application. The current implementation port allocation is incremental. A smarter (cacheable and discoverable) allocation should be defined.</p>
-<h3 id="substitutions">%substitutions</h3>
-<p>Vectors can include sequences of 2 characters that have a special meaning. These sequences are named <em>%substitution</em> because their first character is the percent sign (%) and because each occurrence of the sequence is replaced, at launch time, by the value associated to sequences.</p>
-<p>Here is the list of <em>%substitutions</em>:</p>
-<ul>
-<li><strong><em>%%</em></strong>: %.</li>
-</ul>
-<p>This simply emits the percent sign %</p>
-<ul>
-<li><strong><em>%a</em></strong>: appid</li>
-</ul>
-<p>Holds application Id of launched application.</p>
-<p>Defined by the attribute <strong>id</strong> of the element <strong><widget></strong> of <strong>config.xml</strong>.</p>
-<ul>
-<li><strong><em>%b</em></strong>: bindings</li>
-</ul>
-<p>In the future should represent the list of bindings and bindings directory separated by ','. Warning: not supported in current version.</p>
-<ul>
-<li><strong><em>%c</em></strong>: content</li>
-</ul>
-<p>The file within the widget directory that is the entry point.</p>
-<p>For HTML applications, it represents the relative path to main page (aka index.html).</p>
-<p>Defined by attribute <strong>src</strong> of the element <strong><content></strong> within <strong>config.xml</strong>.</p>
-<ul>
-<li><strong><em>%D</em></strong>: datadir</li>
-</ul>
-<p>Path of the directory where the application runs (cwd) and stores its data.</p>
-<p>It is equal to %h/%a.</p>
-<ul>
-<li><strong><em>%H</em></strong>: height</li>
-</ul>
-<p>Requested height for the widget.</p>
-<p>Defined by the attribute <strong>height</strong> of the element <strong><widget></strong> of <strong>config.xml</strong>.</p>
-<ul>
-<li><strong><em>%h</em></strong>: homedir</li>
-</ul>
-<p>Path of the home directory for all applications.</p>
-<p>It is generally equal to $HOME/app-data</p>
-<ul>
-<li><strong><em>%I</em></strong>: icondir</li>
-</ul>
-<p>Path of the directory were the icons of the applications can be found.</p>
-<ul>
-<li><strong><em>%m</em></strong>: mime-type</li>
-</ul>
-<p>Mime type of the launched application.</p>
-<p>Defined by the attribute <strong>type</strong> of the element <strong><content></strong> of <strong>config.xml</strong>.</p>
-<ul>
-<li><strong><em>%n</em></strong>: name</li>
-</ul>
-<p>Name of the application as defined by the content of the element <strong><name></strong> of <strong>config.xml</strong>.</p>
-<ul>
-<li><strong><em>%P</em></strong>: port</li>
-</ul>
-<p>A port to use. It is currently a kind of random port. The precise model is to be defined later.</p>
-<ul>
-<li><strong><em>%R</em></strong>: readyfd</li>
-</ul>
-<p>Number of file descriptor to use for signaling readiness of launched process.</p>
-<ul>
-<li><strong><em>%r</em></strong>: rootdir</li>
-</ul>
-<p>Path of directory containing the widget and its data.</p>
-<ul>
-<li><strong><em>%S</em></strong>: secret</li>
-</ul>
-<p>An hexadecimal number that can be used to initialize pairing of client and application binder.</p>
-<ul>
-<li><strong><em>%W</em></strong>: width</li>
-</ul>
-<p>Requested width for the widget.</p>
-<p>Defined by the attribute <strong>width</strong> of the element <strong><widget></strong> of <strong>config.xml</strong>.</p>
-<h2 id="the-d-bus-interface">The D-Bus interface</h2>
-<h3 id="overview-of-the-dbus-interface">Overview of the dbus interface</h3>
-<p><strong><em>afm-user-daemon</em></strong> takes its orders from the session instance of D-Bus. D-Bus is nice to use in this context because it allows discovery and signaling.</p>
-<p>The dbus session is by default addressed by environment variable <strong><em>DBUS_SESSION_BUS_ADDRESS</em></strong>. Using <strong>systemd</strong> variable <em>DBUS_SESSION_BUS_ADDRESS</em> is automatically set for user sessions.</p>
-<p>The <strong>afm-user-daemon</strong> is listening on destination name <strong><em>org.AGL.afm.user</em></strong> at object path <strong><em>/org/AGL/afm/user</em></strong> on interface <strong><em>org.AGL.afm.user</em></strong> for following members: <strong><em>runnables</em></strong>, <strong><em>detail</em></strong>, <strong><em>start</em></strong>, <strong><em>terminate</em></strong>, <strong><em>stop</em></strong>, <strong><em>continue</em></strong>, <strong><em>runners</em></strong>, <strong><em>state</em></strong>, <strong><em>install</em></strong> and <strong><em>uninstall</em></strong>.</p>
-<p>D-Bus is mainly used for signaling and discovery. Its optimized typed protocol is not used except for transmission of standalone strings.</p>
-<p>Clients and Services are using JSON serialisation to exchange data.</p>
-<p>The D-Bus interface is defined by:</p>
-<ul>
-<li><p>DESTINATION: <strong>org.AGL.afm.user</strong></p></li>
-<li><p>PATH: <strong>/org/AGL/afm/user</strong></p></li>
-<li><p>INTERFACE: <strong>org.AGL.afm.user</strong></p></li>
-</ul>
-<p>The signature of any member of the interface is <strong><em>string -&gt; string</em></strong> for <strong><em>JSON -&gt; JSON</em></strong>.</p>
-<p>This is the normal case. In case of error, the current implementation returns a dbus error as a string.</p>
-<p>Here an example using <em>dbus-send</em> to query data on installed applications.</p>
-<pre><code>dbus-send --session --print-reply \
-    --dest=org.AGL.afm.user \
-    /org/AGL/afm/user \
-    org.AGL.afm.user.runnables string:true</code></pre>
-<h3 id="using-afm-util">Using <strong><em>afm-util</em></strong></h3>
-<p>The command line tool <strong><em>afm-util</em></strong> uses dbus-send to send orders to <strong>afm-user-daemon</strong>. This small scripts allows to send command to <strong><em>afm-user-daemon</em></strong> either interactively at shell prompt or scriptically.</p>
-<p>The syntax is simple: it accept a command and when requires attached arguments.</p>
-<p>Here is the summary of <strong><em>afm-util</em></strong>:</p>
-<ul>
-<li><strong>afm-util runnables </strong>:</li>
-</ul>
-<p>list the runnable widgets installed</p>
-<ul>
-<li><strong>afm-util install wgt </strong>:</li>
-</ul>
-<p>install the wgt file</p>
-<ul>
-<li><strong>afm-util uninstall id </strong>:</li>
-</ul>
-<p>remove the installed widget of id</p>
-<ul>
-<li><strong>afm-util detail id </strong>:</li>
-</ul>
-<p>print detail about the installed widget of id</p>
-<ul>
-<li><strong>afm-util runners </strong>:</li>
-</ul>
-<p>list the running instance</p>
-<ul>
-<li><strong>afm-util start id </strong>:</li>
-</ul>
-<p>start an instance of the widget of id</p>
-<ul>
-<li><strong>afm-util terminate rid </strong>:</li>
-</ul>
-<p>terminate the running instance rid</p>
-<ul>
-<li><strong>afm-util stop rid </strong>:</li>
-</ul>
-<p>stop the running instance rid</p>
-<ul>
-<li><strong>afm-util continue rid </strong>:</li>
-</ul>
-<p>continue the previously rid</p>
-<ul>
-<li><strong>afm-util state rid </strong>:</li>
-</ul>
-<p>get status of the running instance rid</p>
-<p>Here is how to list applications using <strong><em>afm-util</em></strong>:</p>
-<pre><code>afm-util runnables</code></pre>
-<hr />
-<h3 id="the-protocol-over-d-bus">The protocol over D-Bus</h3>
-<p>Recall:</p>
-<ul>
-<li><p><strong>DESTINATION</strong>: org.AGL.afm.user</p></li>
-<li><p><strong>PATH</strong>: /org/AGL/afm/user</p></li>
-<li><p><strong>INTERFACE</strong>: org.AGL.afm.user</p></li>
-</ul>
-<hr />
-<h4 id="method-org.agl.afm.user.detail">Method org.AGL.afm.user.detail</h4>
-<p><strong>Description</strong>: Get details about an application from its id.</p>
-<p><strong>Input</strong>: the id of the application as below.</p>
-<p>Either just a string:</p>
-<pre><code>&quot;appli@x.y&quot;</code></pre>
-<p>Or an object having the field &quot;id&quot; of type string:</p>
-<pre><code>{&quot;id&quot;:&quot;appli@x.y&quot;}</code></pre>
-<p><strong>Output</strong>: A JSON object describing the application containing the fields described below.</p>
-<pre><code>{
-  &quot;id&quot;:          string, the application id (id@version)
-  &quot;version&quot;:     string, the version of the application
-  &quot;width&quot;:       integer, requested width of the application
-  &quot;height&quot;:      integer, resqueted height of the application
-  &quot;name&quot;:        string, the name of the application
-  &quot;description&quot;: string, the description of the application
-  &quot;shortname&quot;:   string, the short name of the application
-  &quot;author&quot;:      string, the author of the application
-}</code></pre>
-<hr />
-<h4 id="method-org.agl.afm.user.runnables">Method org.AGL.afm.user.runnables</h4>
-<p><strong>Description</strong>: Get the list of applications that can be run.</p>
-<p><strong>Input</strong>: any valid json entry, can be anything except null.</p>
-<p><strong>output</strong>: An array of description of the runnable applications. Each item of the array contains an object containing the detail of an application as described above for the method <em>org.AGL.afm.user.detail</em>.</p>
-<hr />
-<h4 id="method-org.agl.afm.user.install">Method org.AGL.afm.user.install</h4>
-<p><strong>Description</strong>: Install an application from its widget file.</p>
-<p>If an application of the same <em>id</em> and <em>version</em> exists, it is not reinstalled except when <em>force=true</em>.</p>
-<p>Applications are installed in the subdirectories of the common directory reserved for applications. If <em>root</em> is specified, the application is installed under sub-directories of defined <em>root</em>.</p>
-<p>Note that this methods is a simple accessor to the method <strong><em>org.AGL.afm.system.install</em></strong> of <strong><em>afm-system-daemon</em></strong>.</p>
-<p>After the installation and before returning to the sender, <strong><em>afm-user-daemon</em></strong> sends the signal <strong><em>org.AGL.afm.user.changed</em></strong>.</p>
-<p><strong>Input</strong>: The <em>path</em> of widget file to be installed. Optionally, a flag to <em>force</em> reinstallation and/or a <em>root</em> directory.</p>
-<p>Simple form a simple string containing the absolute widget path:</p>
-<pre><code>&quot;/a/path/driving/to/the/widget&quot;</code></pre>
-<p>Or an object:</p>
-<pre><code>{
-  &quot;wgt&quot;: &quot;/a/path/to/the/widget&quot;,
-  &quot;force&quot;: false,
-  &quot;root&quot;: &quot;/a/path/to/the/root&quot;
-}</code></pre>
-<p>&quot;wgt&quot; and &quot;root&quot; MUST be absolute paths.</p>
-<p><strong>output</strong>: An object containing field &quot;added&quot; to use as application ID.</p>
-<pre><code>{&quot;added&quot;:&quot;appli@x.y&quot;}</code></pre>
-<hr />
-<h4 id="method-org.agl.afm.user.uninstall">Method org.AGL.afm.user.uninstall</h4>
-<p><strong>Description</strong>: Uninstall an application from its id.</p>
-<p>Note that this methods is a simple accessor to <strong><em>org.AGL.afm.system.uninstall</em></strong> method from <strong><em>afm-system-daemon</em></strong>.</p>
-<p>After the uninstallation and before returning to the sender, <strong><em>afm-user-daemon</em></strong> sends the signal <strong><em>org.AGL.afm.user.changed</em></strong>.</p>
-<p><strong>Input</strong>: the <em>id</em> of the application and, optionally, the path to application <em>root</em>.</p>
-<p>Either a string:</p>
-<pre><code>&quot;appli@x.y&quot;</code></pre>
-<p>Or an object:</p>
-<pre><code>{
-  &quot;id&quot;: &quot;appli@x.y&quot;,
-  &quot;root&quot;: &quot;/a/path/to/the/root&quot;
-}</code></pre>
-<p><strong>output</strong>: the value 'true'.</p>
-<hr />
-<h4 id="method-org.agl.afm.user.start">Method org.AGL.afm.user.start</h4>
-<p><strong>Description</strong>:</p>
-<p><strong>Input</strong>: the <em>id</em> of the application and, optionally, the start <em>mode</em> as below.</p>
-<p>Either just a string:</p>
-<pre><code>&quot;appli@x.y&quot;</code></pre>
-<p>Or an object containing field &quot;id&quot; of type string and optionally a field mode:</p>
-<pre><code>{&quot;id&quot;:&quot;appli@x.y&quot;,&quot;mode&quot;:&quot;local&quot;}</code></pre>
-<p>The field &quot;mode&quot; is a string equal to either &quot;local&quot; or &quot;remote&quot;.</p>
-<p><strong>output</strong>: The <em>runid</em> of the application launched. <em>runid</em> is an integer.</p>
-<hr />
-<h4 id="method-org.agl.afm.user.terminate">Method org.AGL.afm.user.terminate</h4>
-<p><strong>Description</strong>: Terminates the application attached to <em>runid</em>.</p>
-<p><strong>Input</strong>: The <em>runid</em> (an integer) of running instance to terminate.</p>
-<p><strong>output</strong>: the value 'true'.</p>
-<hr />
-<h4 id="method-org.agl.afm.user.stop">Method org.AGL.afm.user.stop</h4>
-<p><strong>Description</strong>: Stops the application attached to <em>runid</em> until terminate or continue.</p>
-<p><strong>Input</strong>: The <em>runid</em> (integer) of the running instance to stop.</p>
-<p><strong>output</strong>: the value 'true'.</p>
-<hr />
-<h4 id="method-org.agl.afm.user.continue">Method org.AGL.afm.user.continue</h4>
-<p><strong>Description</strong>: Continues the application attached to <em>runid</em> previously stopped.</p>
-<p><strong>Input</strong>: The <em>runid</em> (integer) of the running instance to continue.</p>
-<p><strong>output</strong>: the value 'true'.</p>
-<hr />
-<h4 id="method-org.agl.afm.user.state">Method org.AGL.afm.user.state</h4>
-<p><strong>Description</strong>: Get informations about a running instance of <em>runid</em>.</p>
-<p><strong>Input</strong>: The <em>runid</em> (integer) of the running instance inspected.</p>
-<p><strong>output</strong>: An object describing instance state. It contains: the runid (integer), the id of the running application (string), the state of the application (string either: &quot;starting&quot;, &quot;running&quot;, &quot;stopped&quot;).</p>
-<p>Example of returned state:</p>
-<pre><code>{
-  &quot;runid&quot;: 2,
-  &quot;state&quot;: &quot;running&quot;,
-  &quot;id&quot;: &quot;appli@x.y&quot;
-}</code></pre>
-<hr />
-<h4 id="method-org.agl.afm.user.runners">Method org.AGL.afm.user.runners</h4>
-<p><strong>Description</strong>: Get the list of currently running instances.</p>
-<p><strong>Input</strong>: anything.</p>
-<p><strong>output</strong>: An array of states, one per running instance, as returned by the methodd <strong><em>org.AGL.afm.user.state</em></strong>.</p>
-</body>
-</html>
diff --git a/doc/application-framework.html b/doc/application-framework.html
deleted file mode 100644 (file)
index 8d0e0e3..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta charset="utf-8">
-  <meta name="generator" content="pandoc">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
-  <meta name="author" content="José Bollo">
-  <meta name="author" content="Fulup Ar Foll">
-  <title>Application framework</title>
-  <style type="text/css">code{white-space: pre;}</style>
-  <link rel="stylesheet" href="doc.css">
-  <!--[if lt IE 9]>
-    <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
-  <![endif]-->
-</head>
-<body>
-<header>
-<h1 class="title">Application framework</h1>
-<h2 class="author">José Bollo</h2>
-<h2 class="author">Fulup Ar Foll</h2>
-<h3 class="date">24 juin 2016</h3>
-</header>
-<nav id="TOC">
-<ul>
-<li><a href="#application-framework">Application framework</a><ul>
-<li><a href="#foreword">Foreword</a></li>
-<li><a href="#overview">Overview</a></li>
-<li><a href="#comparison-to-other-frameworks">Comparison to other frameworks</a><ul>
-<li><a href="#tizen-framework">Tizen framework</a></li>
-<li><a href="#xdg-app">xdg-app</a></li>
-<li><a href="#ostro">ostro</a></li>
-</ul></li>
-</ul></li>
-<li><a href="#organization-of-directory-of-applications">organization of directory of applications</a><ul>
-<li><a href="#identity-of-installed-files">Identity of installed files</a></li>
-<li><a href="#labeling-the-directories-of-applications">labeling the directories of applications</a></li>
-</ul></li>
-<li><a href="#organization-of-data">organization of data</a></li>
-<li><a href="#setting-smack-rules-for-the-application">Setting Smack rules for the application</a></li>
-<li><a href="#what-user-can-run-an-application">What user can run an application?</a></li>
-</ul>
-</nav>
-<h1 id="application-framework">Application framework</h1>
-<h2 id="foreword">Foreword</h2>
-<p>This document describes application framework fundamentals. FCF (Fully Conform to Specification) implementation is still under development. It may happen that current implementation somehow diverges with specifications.</p>
-<h2 id="overview">Overview</h2>
-<p>The application framework on top of the security framework provides components to install and uninstall applications as well as to run them in a secured environment.</p>
-<p>The goal of the framework is to manage applications and hide security details to applications.</p>
-<p>For the reasons explained in introduction, it was choose not to reuse Tizen application framework directly, but to rework a new framework inspired from Tizen.</p>
-<p>fundamentals remain identical: the applications are distributed in a digitally signed container that should match widget specifications normalized by the W3C. This is described by the technical recommendations <a href="http://www.w3.org/TR/widgets" title="Packaged Web Apps">widgets</a> and <a href="http://www.w3.org/TR/widgets-digsig" title="XML Digital Signatures for Widgets">widgets-digsig</a> of the W3 consortium.</p>
-<p>As today this model allows the distribution of HTML, QML and binary applications but it could be extended to any other class of applications.</p>
-<p>The management of widget package signatures. Current model is only an initial step, it might be extended in the future to include new feature (ie: incremental delivery).</p>
-<h2 id="comparison-to-other-frameworks">Comparison to other frameworks</h2>
-<h3 id="tizen-framework">Tizen framework</h3>
-<h3 id="xdg-app">xdg-app</h3>
-<h3 id="ostro">ostro</h3>
-<h1 id="organization-of-directory-of-applications">organization of directory of applications</h1>
-<p>The main path for applications are: APPDIR/PKGID/VER.</p>
-<p>Where:</p>
-<ul>
-<li>APPDIR is as defined above</li>
-<li>PKGID is a directory whose name is the package identifier</li>
-<li>VER is the version of the package MAJOR.MINOR</li>
-</ul>
-<p>The advantage of such an organization is to allow several versions to live together. This is required for multiple reasons (ie: roll back) and to comply with developers habits.</p>
-<h2 id="identity-of-installed-files">Identity of installed files</h2>
-<p>All the files are installed as user &quot;userapp&quot; and group &quot;userapp&quot;. All files have rw(x) for user and r-(x) for group and others.</p>
-<p>This allows any user to read files.</p>
-<h2 id="labeling-the-directories-of-applications">labeling the directories of applications</h2>
-<h1 id="organization-of-data">organization of data</h1>
-<p>The data of a user are contain within its directory and are labeled using the application labels</p>
-<h1 id="setting-smack-rules-for-the-application">Setting Smack rules for the application</h1>
-<p>For Tizen, the following rules are set by the security manager for each application.</p>
-<pre><code>System ~APP~             rwx
-System ~PKG~             rwxat
-System ~PKG~::RO         rwxat
-~APP~  System            wx
-~APP~  System::Shared    rxl
-~APP~  System::Run       rwxat
-~APP~  System::Log       rwxa
-~APP~  _                 l
-User   ~APP~             rwx
-User   ~PKG~             rwxat
-User   ~PKG~::RO         rwxat
-~APP~  User              wx
-~APP~  User::Home        rxl
-~APP~  User::App::Shared rwxat
-~APP~  ~PKG~             rwxat
-~APP~  ~PKG~::RO         rxl</code></pre>
-<p>Here, <sub>PKG</sub> is the identifier of the package and <sub>APP</sub> is the identifier of the application.</p>
-<h1 id="what-user-can-run-an-application">What user can run an application?</h1>
-<p>Not all user are able to run all applications. How to manage that?</p>
-</body>
-</html>
diff --git a/doc/doc.css b/doc/doc.css
deleted file mode 100644 (file)
index 8c327c0..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-body {
-       background: #fff url(triskel_iot_bzh.svg) no-repeat fixed right top;
-       font-family: "Verdana";
-       color: #000;
-}
-
-h1, h2, h3, h4 {
-       color: #306;
-       text-decoration: underline;
-}
-
-pre {
-       border: medium dashed #306;
-       border-width: 0.1em;
-       background-color: #eee;
-       margin-left: 2em;
-       margin-right: 2em;
-       padding: 1em;
-       outline: #555;
-}
-
-blockquote {
-       border-left: solid thick black;
-       background-color: #ff8;
-       font: bolder;
-       padding: 0.7em 1.5em;
-}
-
-table  {
-       margin-left: 2em;
-       background-color: #dff;
-       outline: 0.25em solid #a6f;
-/*     padding: 0.25em;*/
-}
-thead {background-color: #a6f;}
-tr:nth-child(even) {background-color: #aee;}
-td { padding: 0.1em 0.5em; }
diff --git a/doc/overview.html b/doc/overview.html
deleted file mode 100644 (file)
index 055d5d5..0000000
+++ /dev/null
@@ -1,167 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta charset="utf-8">
-  <meta name="generator" content="pandoc">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
-  <meta name="author" content="José Bollo">
-  <title>AGL framework, overview of the proposal of IoT.bzh</title>
-  <style type="text/css">code{white-space: pre;}</style>
-  <link rel="stylesheet" href="doc.css">
-  <!--[if lt IE 9]>
-    <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
-  <![endif]-->
-</head>
-<body>
-<header>
-<h1 class="title">AGL framework, overview of the proposal of IoT.bzh</h1>
-<h2 class="author">José Bollo</h2>
-<h3 class="date">24 juin 2016</h3>
-</header>
-<nav id="TOC">
-<ul>
-<li><a href="#agl-framework-overview-of-the-proposal-of-iot.bzh">AGL framework, overview of the proposal of IoT.bzh</a><ul>
-<li><a href="#foreword">Foreword</a></li>
-<li><a href="#introduction">Introduction</a></li>
-<li><a href="#overview">Overview</a></li>
-<li><a href="#links-between-the-security-framework-and-the-application-framework">Links between the &quot;Security framework&quot; and the &quot;Application framework&quot;</a></li>
-<li><a href="#the-security-framework">The security framework</a></li>
-<li><a href="#the-application-framework">The application framework</a></li>
-</ul></li>
-</ul>
-</nav>
-<h1 id="agl-framework-overview-of-the-proposal-of-iot.bzh">AGL framework, overview of the proposal of IoT.bzh</h1>
-<h2 id="foreword">Foreword</h2>
-<p>This document describes what we intend to do. It may happen that our current implementation and the content of this document differ.</p>
-<p>In case of differences, it is assumed that this document is right and the implementation is wrong.</p>
-<h2 id="introduction">Introduction</h2>
-<p>During the first works in having the security model of Tizen integrated in AGL (Automotive Grade Linux) distribution, it became quickly obvious that the count of components specific to Tizen to integrate was huge.</p>
-<p>Here is a minimal list of what was needed:</p>
-<ul>
-<li>platform/appfw/app-installers</li>
-<li>platform/core/security/cert-svc</li>
-<li>platform/core/appfw/ail</li>
-<li>platform/core/appfw/aul-1</li>
-<li>platform/core/appfw/libslp-db-util</li>
-<li>platform/core/appfw/pkgmgr-info</li>
-<li>platform/core/appfw/slp-pkgmgr</li>
-</ul>
-<p>But this list is complete because many dependencies are hidden. Those hidden dependencies are including some common libraries but also many tizen specific sub-components (iniparser, bundle, dlog, libtzplatform-config, db-util, vconf-buxton, ...).</p>
-<p>This is an issue because AGL is not expected to be Tizen. Taking it would either need to patch it for removing unwanted components or to take all of them.</p>
-<p>However, a careful study of the core components of the security framework of Tizen showed that their dependencies to Tizen are light (and since some of our work, there is no more dependency to tizen). Those components are <strong>cynara</strong>, <strong>security-manager</strong>, <strong>D-Bus aware of cynara</strong>.</p>
-<p>Luckyly, these core security components of Tizen are provided by <a href="https://github.com/01org/meta-intel-iot-security" title="A collection of layers providing security technologies">meta-intel-iot-security</a>, a set of yocto layers. These layers were created by Intel to isolate Tizen specific security components from the initial port of Tizen to Yocto. The 3 layers are providing components for:</p>
-<ul>
-<li>Implementing Smack LSM</li>
-<li>Implementing Integrity Measurement Architecture</li>
-<li>Implementing Tizen Security Framework</li>
-</ul>
-<p>The figure below shows the history of these layers.</p>
-<pre><code>                  2014         2015
-Tizen OBS ----------+---------------------------&gt;
-                     \
-                      \
-     Tizen Yocto       +---------+--------------&gt;
-                                  \
-                                   \
-       meta-intel-iot-security      +-----------&gt;</code></pre>
-<p>We took the decision to use these security layers that provides the basis of the Tizen security, the security framework.</p>
-<p>For the components of the application framework, built top of the security framework, instead of pulling the huge set of packages from Tizen, we decided to refit it by developping a tiny set of components that would implement the same behaviour but without all the dependencies and with minor architectural improvements for AGL.</p>
-<p>These components are <strong>afm-system-daemon</strong> and <strong>afm-user-daemon</strong>. They provides infrastructure for installing, uninstalling, launching, terminating, stopping and resuming applications in a multi user secure environment.</p>
-<p>A third component exists in the framework, the binder <strong>afb-daemon</strong>. The binder provides the easiest way to provide secured API for any tier. Currently, the use of the binder is not absolutely mandatory.</p>
-<p>This documentation explains the framework created by IoT.bzh by rewriting the Tizen Application Framework. Be aware of the previous foreword.</p>
-<h2 id="overview">Overview</h2>
-<p>The figure below shows the major components of the framework and their interactions going through the following scenario: APPLICATION installs an other application and then launch it.</p>
-<pre><code>+-----------------------------------------------------------------------+
-|                                 User                                  |
-|  ................................                                     |
-|  :   Smack isolation context    :                                     |
-|  :                              :      ...........................    |
-|  :  +-----------------------+   :      : Smack isolation context :    |
-|  :  |                       |   :      :                         :    |
-|  :  |      APPLICATION      |   :      :     OTHER application   :    |
-|  :  |                       |   :      :.........................:    |
-|  :  +-----------+-----------+   :                ^                    |
-|  :              |               :                |                    |
-|  :              |(1),(7)        :                |(13)                |
-|  :              |               :                |                    |
-|  :  +-----------v-----------+   :      +---------+---------------+    |
-|  :  |   binder afb-daemon   |   :      |                         |    |
-|  :  +-----------------------+   :      |      afm-user-daemon    |    |
-|  :  |    afm-main-binding   |   :      |                         |    |
-|  :  +-----+--------------+--+   :      +------^-------+------+---+    |
-|  :........|..............|......:             |       |      :        |
-|           |(2)           |(8)                 |(10)   |      :        |
-|           |              |                    |       |      :        |
-|           |         +----v--------------------+---+   |      :        |
-|           |         |        D-Bus   session      |   |(11)  :(12)    |
-|           |         +-------------------------+---+   |      :        |
-|           |                                   |       |      :        |
-|           |                                   |(9)    |      :        |
-|           |                                   |       |      :        |
-:===========|===================================|=======|======:========:
-|           |                                   |       |      :        |
-|           |                               +---v-------v--+   :        |
-|    +------v-------------+     (3)         |              |   :        |
-|    |  D-Bus   system    +-----------------&gt;    CYNARA    |   :        |
-|    +------+-------------+                 |              |   :        |
-|           |                               +------^-------+   :        |
-|           |(4)                                   |           :        |
-|           |                                      |(6)        v        |
-|    +------v--------------+             +---------+---------------+    |
-|    |                     |    (5)      |                         |    |
-|    |  afm-system-daemon  +-------------&gt;     SECURITY-MANAGER    |    |
-|    |                     |             |                         |    |
-|    +---------------------+             +-------------------------+    |
-|                                                                       |
-|                              System                                   |
-+-----------------------------------------------------------------------+</code></pre>
-<p>Let follow the sequence of calls:</p>
-<ol type="1">
-<li><p>APPLICATION calls its <strong>binder</strong> to install the OTHER application.</p></li>
-<li><p>The binding <strong>afm-main-binding</strong> of the <strong>binder</strong> calls, through <strong>D-Bus</strong> system, the system daemon to install the OTHER application.</p></li>
-<li><p>The system <strong>D-Bus</strong> checks wether APPLICATION has the permission or not to install applications by calling <strong>CYNARA</strong>.</p></li>
-<li><p>The system <strong>D-Bus</strong> transmits the request to <strong>afm-system-daemon</strong>.</p></li>
-</ol>
-<p><strong>afm-system-daemon</strong> checks the application to install, its signatures and rights and install it.</p>
-<ol start="5" type="1">
-<li><p><strong>afm-system-daemon</strong> calls <strong>SECURITY-MANAGER</strong> for fullfilling security context of the installed application.</p></li>
-<li><p><strong>SECURITY-MANAGER</strong> calls <strong>CYNARA</strong> to install initial permissions for the application.</p></li>
-<li><p>APPLICATION call its binder to start the nearly installed OTHER application.</p></li>
-<li><p>The binding <strong>afm-main-binding</strong> of the <strong>binder</strong> calls, through <strong>D-Bus</strong> session, the user daemon to launch the OTHER application.</p></li>
-<li><p>The session <strong>D-Bus</strong> checks wether APPLICATION has the permission or not to start an application by calling <strong>CYNARA</strong>.</p></li>
-<li><p>The session <strong>D-Bus</strong> transmits the request to <strong>afm-user-daemon</strong>.</p></li>
-<li><p><strong>afm-user-daemon</strong> checks wether APPLICATION has the permission or not to start the OTHER application <strong>CYNARA</strong>.</p></li>
-<li><p><strong>afm-user-daemon</strong> uses <strong>SECURITY-MANAGER</strong> features to set the seciruty context for the OTHER application.</p></li>
-<li><p><strong>afm-user-daemon</strong> launches the OTHER application.</p></li>
-</ol>
-<p>This scenario does not cover all the features of the frameworks. Shortly because details will be revealed in the next chapters, the components are:</p>
-<ul>
-<li><p><strong><em>SECURITY-MANAGER</em></strong>: in charge of setting Smack contexts and rules, of setting groups, and, of creating initial content of <em>CYNARA</em> rules for applications.</p></li>
-<li><p><strong><em>CYNARA</em></strong>: in charge of handling API access permissions by users and by applications.</p></li>
-<li><p><strong><em>D-Bus</em></strong>: in charge of checking security of messaging. The usual D-Bus security rules are enhanced by <em>CYNARA</em> checking rules.</p></li>
-<li><p><strong><em>afm-system-daemon</em></strong>: in charge of installing and uninstalling applications.</p></li>
-<li><p><strong><em>afm-user-daemon</em></strong>: in charge of listing applications, querying application details, starting, terminating, stopping, resuming applications and their instances for a given user context.</p></li>
-<li><p><strong><em>afb-binder</em></strong>: in charge of serving resources and features through an HTTP interface.</p></li>
-<li><p><strong><em>afm-main-binding</em></strong>: This binding allows applications to use the API of the AGL framework.</p></li>
-</ul>
-<h2 id="links-between-the-security-framework-and-the-application-framework">Links between the &quot;Security framework&quot; and the &quot;Application framework&quot;</h2>
-<p>The security framework refers to the security model used to ensure security and to the tools that are provided for implementing that model.</p>
-<p>The security model refers to how DAC (Discretionnary Access Control), MAC (Mandatory Access Control) and Capabilities are used by the system to ensure security and privacy. It also includes features of reporting using audit features and by managing logs and alerts.</p>
-<p>The application framework manages the applications: installing, uninstalling, starting, stopping, listing ...</p>
-<p>The application framework uses the security model/framework to ensure the security and the privacy of the applications that it manages.</p>
-<p>The application framework must be compliant with the underlyiong security model/framework. But it should hide it to the applications.</p>
-<h2 id="the-security-framework">The security framework</h2>
-<p>The implemented security model is the security model of Tizen 3. This model is described <a href="https://wiki.tizen.org/wiki/Security/Tizen_3.X_Overview" title="Tizen 3 security overview">here</a>.</p>
-<p>The security framework then comes from Tizen 3 but through the <a href="https://github.com/01org/meta-intel-iot-security" title="A collection of layers providing security technologies">meta-intel</a>. It includes: <strong>Security-Manager</strong>, <strong>Cynara</strong> and <strong>D-Bus</strong> compliant to Cynara.</p>
-<p>Two patches are applied to the security-manager. These patches are removing dependencies to packages specific of Tizen but that are not needed by AGL. None of these patches adds or removes any behaviour.</p>
-<p><strong>Theoritically, the security framework/model is an implementation details that should not impact the layers above the application framework</strong>.</p>
-<p>The security framework of Tizen provides &quot;nice lad&quot; a valuable component to scan log files and analyse auditing. This component is still in developement.</p>
-<h2 id="the-application-framework">The application framework</h2>
-<p>The application framework on top of the security framework provides the components to install and uninstall applications and to run it in a secured environment.</p>
-<p>The goal is to manage applications and to hide the details of the security framework to the applications.</p>
-<p>For the reasons explained in introduction, we did not used the application framework of Tizen as is but used an adaptation of it.</p>
-<p>The basis is kept identical: the applications are distributed in a digitally signed container that must match the specifications of widgets (web applications). This is described by the technical recomendations <a href="http://www.w3.org/TR/widgets" title="Packaged Web Apps">widgets</a> and <a href="http://www.w3.org/TR/widgets-digsig" title="XML Digital Signatures for Widgets">widgets-digsig</a> of the W3 consortium.</p>
-<p>This model allows the distribution of HTML, QML and binary applications.</p>
-<p>The management of signatures of the widget packages This basis is not meant as being rigid and it can be extended in the futur to include for example incremental delivery.</p>
-</body>
-</html>
diff --git a/doc/quick-tutorial.html b/doc/quick-tutorial.html
deleted file mode 100644 (file)
index 3b5c6a9..0000000
+++ /dev/null
@@ -1,178 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta charset="utf-8">
-  <meta name="generator" content="pandoc">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
-  <meta name="author" content="Stephane Desneux">
-  <meta name="author" content="José Bollo">
-  <title>AGL Application Framework: A Quick Tutorial</title>
-  <style type="text/css">code{white-space: pre;}</style>
-  <link rel="stylesheet" href="doc.css">
-  <!--[if lt IE 9]>
-    <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
-  <![endif]-->
-</head>
-<body>
-<header>
-<h1 class="title">AGL Application Framework: A Quick Tutorial</h1>
-<h2 class="author">Stephane Desneux</h2>
-<h2 class="author">José Bollo</h2>
-<h3 class="date">24 juin 2016</h3>
-</header>
-<nav id="TOC">
-<ul>
-<li><a href="#agl-application-framework-a-quick-tutorial">AGL Application Framework: A Quick Tutorial</a><ul>
-<li><a href="#introduction">Introduction</a></li>
-<li><a href="#sample-applications">Sample applications</a></li>
-<li><a href="#using-the-cli-tool">Using the CLI tool</a><ul>
-<li><a href="#setup-environment">Setup Environment</a></li>
-<li><a href="#install-an-application">Install an application</a></li>
-<li><a href="#list-installed-applications">List installed applications</a></li>
-<li><a href="#get-information-about-an-application">Get information about an application</a></li>
-<li><a href="#start-application">Start application</a></li>
-<li><a href="#security-context">Security Context</a></li>
-<li><a href="#check-running-applications">Check running applications</a></li>
-<li><a href="#stop-application">Stop application</a></li>
-<li><a href="#uninstall-application">Uninstall application</a></li>
-</ul></li>
-<li><a href="#afm-client-a-sample-html5-homescreen">afm-client: a sample HTML5 'Homescreen'</a><ul>
-<li><a href="#installing-an-application">Installing an application</a></li>
-<li><a href="#running-an-application">Running an application</a></li>
-<li><a href="#stopping-an-application">Stopping an application</a></li>
-<li><a href="#uninstalling-an-application">Uninstalling an application</a></li>
-</ul></li>
-<li><a href="#afb-client-a-template-for-angular-applications">afb-client: a template for Angular Applications</a></li>
-</ul></li>
-</ul>
-</nav>
-<h1 id="agl-application-framework-a-quick-tutorial">AGL Application Framework: A Quick Tutorial</h1>
-<h2 id="introduction">Introduction</h2>
-<p>This document proposes a quick tutorial to demonstrate the major functionnalities of the AGL Application Framework. For more complete information, please refer to the inline documentation available in the main git repository: https://gerrit.automotivelinux.org/gerrit/#/admin/projects/src/app-framework-main https://gerrit.automotivelinux.org/gerrit/#/admin/projects/src/app-framework-binder</p>
-<p>For more information on AGL, please visit: https://www.automotivelinux.org/</p>
-<hr />
-<h2 id="sample-applications">Sample applications</h2>
-<p>4 sample applications (.wgt files) are prebuilt and available at the following address: https://github.com/iotbzh/afm-widget-examples</p>
-<p>You can get them by cloning this git repository on your desktop (will be useful later in this tutorial):</p>
-<pre><code>$ git clone https://github.com/iotbzh/afm-widget-examples</code></pre>
-<h2 id="using-the-cli-tool">Using the CLI tool</h2>
-<h3 id="setup-environment">Setup Environment</h3>
-<p>Connect your AGL target board to the network and copy some sample widgets on it through SSH (set BOARDIP with your board IP address) :</p>
-<pre><code>$ cd afm-widget-examples
-$ BOARDIP=1.2.3.4
-$ scp *.wgt root@$BOARDIP:~/</code></pre>
-<p>Connect through SSH on the target board and check for Application Framework daemons:</p>
-<pre><code>$ ssh root@$BOARDIP
-root@porter:~# ps -ef|grep bin/afm
-afm        409     1  0 13:00 ?        00:00:00 /usr/bin/afm-system-daemon
-root       505   499  0 13:01 ?        00:00:00 /usr/bin/afm-user-daemon
-root       596   550  0 13:22 pts/0    00:00:00 grep afm</code></pre>
-<p>We can see that there are two daemons running: * <strong>afm-system-daemon</strong> runs with a system user 'afm' and is responsible for installing/uninstalling packages * <strong>afm-user-daemon</strong> runs as a user daemon (currently as root because it's the only real user on the target board) and is responsible for the whole lifecycle of the applications running inside the user session.</p>
-<p>The application framework has a tool running on the Command Line Interface (CLI). Using the <strong>afm-util</strong> command, you can install, uninstall, list, run, stop ... applications.</p>
-<p>To begin, run '<strong>afm-util help</strong>' to get a quick help on commands:</p>
-<pre><code>root@porter:~# afm-util help
-usage: afm-util command [arg]
-
-The commands are:
-
-  list
-  runnables      list the runnable widgets installed
-
-  add wgt
-  install wgt    install the wgt file
-
-  remove id
-  uninstall id   remove the installed widget of id
-
-  info id
-  detail id      print detail about the installed widget of id
-
-  ps
-  runners        list the running instance
-
-  run id
-  start id       start an instance of the widget of id
-
-  kill rid
-  terminate rid       terminate the running instance rid
-
-  stop rid
-  pause rid      stop the running instance rid
-
-  resume rid
-  continue rid   continue the previously rid
-
-  status rid
-  state rid     get status of the running instance rid</code></pre>
-<h3 id="install-an-application">Install an application</h3>
-<p>You can then install your first application:</p>
-<pre><code>root@porter:~# afm-util install /home/root/annex.wgt 
-{ &quot;added&quot;: &quot;webapps-annex@0.0&quot; }</code></pre>
-<p>Let's install a second application:</p>
-<pre><code>root@porter:~# afm-util install /home/root/memory-match.wgt 
-{ &quot;added&quot;: &quot;webapps-memory-match@1.1&quot; }</code></pre>
-<p>Note that usually, <strong>afm-util</strong> will return a <strong>JSON result</strong>, which is the common format for messages returned by the Application Framework daemons.</p>
-<h3 id="list-installed-applications">List installed applications</h3>
-<p>You can then list all installed applications:</p>
-<pre><code>root@porter:~# afm-util list
-[ { &quot;id&quot;: &quot;webapps-annex@0.0&quot;, &quot;version&quot;: &quot;0.0.10&quot;, &quot;width&quot;: 0, &quot;height&quot;: 0, &quot;name&quot;: &quot;Annex&quot;, &quot;description&quot;: &quot;Reversi\/Othello&quot;, &quot;shortname&quot;: &quot;&quot;, &quot;author&quot;: &quot;Todd Brandt &lt;todd.e.brandt@intel.com&gt;&quot; },
- { &quot;id&quot;: &quot;webapps-memory-match@1.1&quot;, &quot;version&quot;: &quot;1.1.7&quot;, &quot;width&quot;: 0, &quot;height&quot;: 0, &quot;name&quot;: &quot;MemoryMatch&quot;, &quot;description&quot;: &quot;Memory match&quot;, &quot;shortname&quot;: &quot;&quot;, &quot;author&quot;: &quot;Todd Brandt &lt;todd.e.brandt@intel.com&gt;&quot; } ]</code></pre>
-<p>Here, we can see the two previously installed applications.</p>
-<h3 id="get-information-about-an-application">Get information about an application</h3>
-<p>Let's get some details about the first application:</p>
-<pre><code>root@porter:~# afm-util info webapps-annex@0.0
-{ &quot;id&quot;: &quot;webapps-annex@0.0&quot;, &quot;version&quot;: &quot;0.0.10&quot;, &quot;width&quot;: 0, &quot;height&quot;: 0, &quot;name&quot;: &quot;Annex&quot;, &quot;description&quot;: &quot;Reversi\/Othello&quot;, &quot;shortname&quot;: &quot;&quot;, &quot;author&quot;: &quot;Todd Brandt &lt;todd.e.brandt@intel.com&gt;&quot; }</code></pre>
-<p>Note that AGL applications are mostly handled by afm-util through their IDs. In our example, the application ID is 'webapps-annex@0.0'.</p>
-<h3 id="start-application">Start application</h3>
-<p>Let's start the first application Annex:</p>
-<pre><code>root@porter:~# afm-util start webapps-annex@0.0
-1</code></pre>
-<p>As the application is a HTML5 game, you should then get a webview running with QML on the board display.</p>
-<h3 id="security-context">Security Context</h3>
-<p>The application has been started in the user session, with a dedicated security context, enforced by SMACK. To illustrate this, we can take a look at the running processes and their respective SMACK labels:</p>
-<pre><code>root@porter:~# ps -efZ |grep webapps-annex | grep -v grep
-User::App::webapps-annex        root       716   491  0 13:19 ?        00:00:00 /usr/bin/afb-daemon --mode=local --readyfd=8 --alias=/icons /usr/share/afm/icons --port=12348 --rootdir=/usr/share/afm/applications/webapps-annex/0.0 --token=7D6D2F16 --sessiondir=/home/root/app-data/webapps-annex/.afb-daemon
-User::App::webapps-annex        root       717   491  0 13:19 ?        00:00:00 /usr/bin/qt5/qmlscene http://localhost:12348/index.html?token=7D6D2F16 /usr/bin/web-runtime-webkit.qml</code></pre>
-<p>In the previous result, we see that the application is composed of two processes: * the application binder (afb-daemon) * the application UI (qmlscene ...)</p>
-<p>While most system processes run with the label 'System', we see that the application runs with a specific SMACK label 'User::App::webapps-annex': this label is used to force the application to follow a Mandatory Access Control (MAC) scheme. This means that those processes run in their own security context, isolated from the rest of the system (and other applications). Global security rules can then be applied to restrict access to all other user or system resources.</p>
-<h3 id="check-running-applications">Check running applications</h3>
-<p>To check for running applications, just run:</p>
-<pre><code>root@porter:~# afm-util ps
-[ { &quot;runid&quot;: 1, &quot;state&quot;: &quot;running&quot;, &quot;id&quot;: &quot;webapps-annex@0.0&quot; } ]</code></pre>
-<p>The 'runid' is the application instance ID and is used as an argument for the subcommands controlling the application runtime state (kill/stop/resume/status)</p>
-<h3 id="stop-application">Stop application</h3>
-<p>To stop the application that was just started (the one with RUNID 1), just run the stop command:</p>
-<pre><code>root@porter:~# afm-util terminate 1
-true</code></pre>
-<p>The application is now stopped, as confirmed by a list of running apps:</p>
-<pre><code>root@porter:~# afm-util ps
-[ ]</code></pre>
-<h3 id="uninstall-application">Uninstall application</h3>
-<p>To uninstall an application, simply use its ID:</p>
-<pre><code>root@porter:~# afm-util uninstall webapps-annex@0.0
-true</code></pre>
-<p>Then list the installed apps to confirm the removal:</p>
-<pre><code>root@porter:~# afm-util list
-[ { &quot;id&quot;: &quot;webapps-memory-match@1.1&quot;, &quot;version&quot;: &quot;1.1.7&quot;, &quot;width&quot;: 0, &quot;height&quot;: 0, &quot;name&quot;: &quot;MemoryMatch&quot;, &quot;description&quot;: &quot;Memory match&quot;, &quot;shortname&quot;: &quot;&quot;, &quot;author&quot;: &quot;Todd Brandt &lt;todd.e.brandt@intel.com&gt;&quot; } ]</code></pre>
-<h2 id="afm-client-a-sample-html5-homescreen">afm-client: a sample HTML5 'Homescreen'</h2>
-<p><strong>afm-client</strong> is a HTML5 UI that allows to install/uninstall applications as well as starting/stopping them as already demonstrated with afm-util.</p>
-<p>The HTML5 UI is accessible remotely through this URL: http://[board_ip]:1234/opa?token=132456789</p>
-<h3 id="installing-an-application">Installing an application</h3>
-<p>By clicking on the '<strong>Upload</strong>' button on the right, you can send an application package (WGT file) and install it. Select for example the file '<strong>rabbit.wgt</strong>' that was cloned initially from the git repository afm-widget-examples.</p>
-<p>Then a popup requester ask for a confirmation: 'Upload Application rabbit.wgt ?'. Click on the '<strong>Install</strong>' button.</p>
-<p>You should then see some changes in the toolbar: a new icon appeared, representing the freshly installed application.</p>
-<h3 id="running-an-application">Running an application</h3>
-<p>In the toolbar, click on the button representing the Rabbit application. You'll get a popup asking to: * start the application * or get some info about it * or uninstall it</p>
-<p>Click on the 'start' item: the application starts and should be visible as a webview on the target board display. Note that at this point, we could also run the application remotely, that is in the same browser as the Homescreen app. By default, the application framework is configured to run applications 'locally' on the board display.</p>
-<h3 id="stopping-an-application">Stopping an application</h3>
-<p>In the Homescreen application, click again on the Rabbit application button, then select 'stop': the application then stops.</p>
-<h3 id="uninstalling-an-application">Uninstalling an application</h3>
-<p>From the same popup menu, you can select 'uninstall' to remove the application from the system. As a consequence, the application icon should disappear from the toolbar.</p>
-<h2 id="afb-client-a-template-for-angular-applications">afb-client: a template for Angular Applications</h2>
-<p>Another package '<strong>afb-client</strong>' is also available for testing. This is a sample HTML5 application demonstrating various basic capabilities of the Binder daemon. It can be used by developers as a template to start writing real AGL Applications.</p>
-<p>This application is not available as WGT file yet and it should be started manually without any specific security context:</p>
-<pre><code>root@porter:~# /usr/bin/afb-daemon --mode=remote --port=1235 --token=&#39;&#39; --sessiondir=/home/root/.afm-daemon --rootdir=/usr/share/agl/afb-client --alias=/icons:/usr/share/afm/icons</code></pre>
-<p>Then you can access it from a browser: http://[board_ip]:1235/opa/?token=132456789</p>
-<p>afb-client is a simple application to demonstrate the built-in capabilities of the binder daemon (handling sessions and security tokens, testing POSTs uploads...) and was used during the application framework development to validate the proposed features.</p>
-</body>
-</html>
diff --git a/doc/quick-tutorial.iotstyled.html b/doc/quick-tutorial.iotstyled.html
deleted file mode 100644 (file)
index 42304f0..0000000
+++ /dev/null
@@ -1,190 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta charset="utf-8">
-  <meta name="generator" content="pandoc">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
-  <title></title>
-  <style type="text/css">
-code{white-space: pre;}
-@page { margin-left: 0.79in; margin-right: 0.79in }
-@page:first { margin-top: 0.79in; margin-bottom: 0.79in }
-p { margin-bottom: 0.1in; line-height: 120%; text-align: justify; page-break-before: auto }
-p.western { font-family: "Verdana", sans-serif; font-size: 11pt }
-p.cjk { font-size: 10pt }
-h1 { margin-top: 0.17in; margin-bottom: 0.32in; border-top: none; border-bottom: 1.50pt solid #330066; border-left: none; border-right: none; padding-top: 0in; padding-bottom: 0.02in; padding-left: 0in; padding-right: 0in; color: #330066; page-break-before: auto }
-h1.western { font-family: "Verdana", sans-serif; font-size: 18pt }
-h1.cjk { font-family: "Droid Sans Fallback"; font-size: 18pt }
-h1.ctl { font-family: "FreeSans"; font-size: 18pt }
-h2 { margin-top: 0.14in; margin-bottom: 0.16in; color: #330066; page-break-before: auto ; text-decoration: underline }
-h2.western { font-family: "Verdana", sans-serif; font-size: 16pt }
-h2.cjk { font-family: "Droid Sans Fallback"; font-size: 16pt }
-h2.ctl { font-family: "FreeSans"; font-size: 16pt }
-h3 { color: #330066; page-break-before: auto }
-h3.western { font-family: "Verdana", sans-serif }
-h3.cjk { font-family: "Droid Sans Fallback" }
-h3.ctl { font-family: "FreeSans" }
-h5 { color: #330066; page-break-before: auto }
-h5.western { font-family: "Verdana", sans-serif; font-size: 11pt }
-h5.cjk { font-family: "Droid Sans Fallback"; font-size: 11pt }
-h5.ctl { font-family: "FreeSans"; font-size: 11pt }
-h4 { color: #330066; page-break-before: auto }
-h4.western { font-family: "Verdana", sans-serif; font-size: 13pt; font-style: italic }
-h4.cjk { font-family: "Droid Sans Fallback"; font-size: 13pt; font-style: italic }
-h4.ctl { font-family: "FreeSans"; font-size: 13pt; font-style: italic }
-h1.titre-hors-toc-western { font-family: "Verdana", sans-serif; font-size: 18pt }
-h1.titre-hors-toc-cjk { font-family: "Droid Sans Fallback"; font-size: 18pt }
-h1.titre-hors-toc-ctl { font-family: "FreeSans"; font-size: 18pt }
-td p { margin-bottom: 0in; page-break-before: auto }
-td p.western { font-family: "Verdana", sans-serif; font-size: 11pt }
-td p.cjk { font-size: 10pt }
-th p { margin-bottom: 0in; page-break-before: auto }
-th p.western { font-family: "Verdana", sans-serif; font-size: 11pt }
-th p.cjk { font-size: 10pt }
-p.sdfootnote-western { margin-left: 0.24in; text-indent: -0.24in; margin-bottom: 0in; font-family: "Verdana", sans-serif; font-size: 10pt; line-height: 100%; text-align: left }
-p.sdfootnote-cjk { margin-left: 0.24in; text-indent: -0.24in; margin-bottom: 0in; font-size: 10pt; line-height: 100%; text-align: left }
-p.sdfootnote-ctl { margin-left: 0.24in; text-indent: -0.24in; margin-bottom: 0in; font-size: 10pt; line-height: 100%; text-align: left }
-pre { border-top: 1px dotted #000000; border-bottom: 1px dotted #000000; border-left: 1px dotted #000000; border-right: 1px dotted #000000; padding: 0.04in; page-break-before: auto ; background-color: #eee}
-pre.western { font-family: "Courier New", monospace }
-pre.cjk { font-family: "Droid Sans Fallback", monospace }
-a:link { color: #330066; background: transparent }
-a.cjk:link { font-size: 10pt; so-language: zxx }
-a.ctl:link { so-language: zxx }
-code.cjk { font-family: "Droid Sans Fallback", monospace }
-a.sdfootnoteanc { font-size: 57% }
-  </style>
-  <!--[if lt IE 9]>
-    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
-  <![endif]-->
-</head>
-<body>
-<h1 id="agl-application-framework-a-quick-tutorial">AGL Application Framework: A Quick Tutorial</h1>
-<h2 id="introduction">Introduction</h2>
-<p>This document proposes a quick tutorial to demonstrate the major functionnalities of the AGL Application Framework. For more complete information, please refer to the inline documentation available in the main git repository: https://gerrit.automotivelinux.org/gerrit/#/admin/projects/src/app-framework-main https://gerrit.automotivelinux.org/gerrit/#/admin/projects/src/app-framework-binder</p>
-<p>For more information on AGL, please visit: https://www.automotivelinux.org/</p>
-<hr />
-<h2 id="sample-applications">Sample applications</h2>
-<p>4 sample applications (.wgt files) are prebuilt and available at the following address: https://github.com/iotbzh/afm-widget-examples</p>
-<p>You can get them by cloning this git repository on your desktop (will be useful later in this tutorial):</p>
-<pre><code>$ git clone https://github.com/iotbzh/afm-widget-examples</code></pre>
-<h2 id="using-the-cli-tool">Using the CLI tool</h2>
-<h3 id="setup-environment">Setup Environment</h3>
-<p>Connect your AGL target board to the network and copy some sample widgets on it through SSH (set BOARDIP with your board IP address) :</p>
-<pre><code>$ cd afm-widget-examples
-$ BOARDIP=1.2.3.4
-$ scp *.wgt root@$BOARDIP:~/</code></pre>
-<p>Connect through SSH on the target board and check for Application Framework daemons:</p>
-<pre><code>$ ssh root@$BOARDIP
-root@porter:~# ps -ef|grep bin/afm
-afm        409     1  0 13:00 ?        00:00:00 /usr/bin/afm-system-daemon
-root       505   499  0 13:01 ?        00:00:00 /usr/bin/afm-user-daemon
-root       596   550  0 13:22 pts/0    00:00:00 grep afm</code></pre>
-<p>We can see that there are two daemons running: * <strong>afm-system-daemon</strong> runs with a system user 'afm' and is responsible for installing/uninstalling packages * <strong>afm-user-daemon</strong> runs as a user daemon (currently as root because it's the only real user on the target board) and is responsible for the whole lifecycle of the applications running inside the user session.</p>
-<p>The application framework has a tool running on the Command Line Interface (CLI). Using the <strong>afm-util</strong> command, you can install, uninstall, list, run, stop ... applications.</p>
-<p>To begin, run '<strong>afm-util help</strong>' to get a quick help on commands:</p>
-<pre><code>root@porter:~# afm-util help
-usage: afm-util command [arg]
-
-The commands are:
-
-  list
-  runnables      list the runnable widgets installed
-
-  add wgt
-  install wgt    install the wgt file
-
-  remove id
-  uninstall id   remove the installed widget of id
-
-  info id
-  detail id      print detail about the installed widget of id
-
-  ps
-  runners        list the running instance
-
-  run id
-  start id       start an instance of the widget of id
-
-  kill rid
-  terminate rid       terminate the running instance rid
-
-  stop rid
-  pause rid      stop the running instance rid
-
-  resume rid
-  continue rid   continue the previously rid
-
-  status rid
-  state rid     get status of the running instance rid</code></pre>
-<h3 id="install-an-application">Install an application</h3>
-<p>You can then install your first application:</p>
-<pre><code>root@porter:~# afm-util install /home/root/annex.wgt 
-{ &quot;added&quot;: &quot;webapps-annex@0.0&quot; }</code></pre>
-<p>Let's install a second application:</p>
-<pre><code>root@porter:~# afm-util install /home/root/memory-match.wgt 
-{ &quot;added&quot;: &quot;webapps-memory-match@1.1&quot; }</code></pre>
-<p>Note that usually, <strong>afm-util</strong> will return a <strong>JSON result</strong>, which is the common format for messages returned by the Application Framework daemons.</p>
-<h3 id="list-installed-applications">List installed applications</h3>
-<p>You can then list all installed applications:</p>
-<pre><code>root@porter:~# afm-util list
-[ { &quot;id&quot;: &quot;webapps-annex@0.0&quot;, &quot;version&quot;: &quot;0.0.10&quot;, &quot;width&quot;: 0, &quot;height&quot;: 0, &quot;name&quot;: &quot;Annex&quot;, &quot;description&quot;: &quot;Reversi\/Othello&quot;, &quot;shortname&quot;: &quot;&quot;, &quot;author&quot;: &quot;Todd Brandt &lt;todd.e.brandt@intel.com&gt;&quot; },
- { &quot;id&quot;: &quot;webapps-memory-match@1.1&quot;, &quot;version&quot;: &quot;1.1.7&quot;, &quot;width&quot;: 0, &quot;height&quot;: 0, &quot;name&quot;: &quot;MemoryMatch&quot;, &quot;description&quot;: &quot;Memory match&quot;, &quot;shortname&quot;: &quot;&quot;, &quot;author&quot;: &quot;Todd Brandt &lt;todd.e.brandt@intel.com&gt;&quot; } ]</code></pre>
-<p>Here, we can see the two previously installed applications.</p>
-<h3 id="get-information-about-an-application">Get information about an application</h3>
-<p>Let's get some details about the first application:</p>
-<pre><code>root@porter:~# afm-util info webapps-annex@0.0
-{ &quot;id&quot;: &quot;webapps-annex@0.0&quot;, &quot;version&quot;: &quot;0.0.10&quot;, &quot;width&quot;: 0, &quot;height&quot;: 0, &quot;name&quot;: &quot;Annex&quot;, &quot;description&quot;: &quot;Reversi\/Othello&quot;, &quot;shortname&quot;: &quot;&quot;, &quot;author&quot;: &quot;Todd Brandt &lt;todd.e.brandt@intel.com&gt;&quot; }</code></pre>
-<p>Note that AGL applications are mostly handled by afm-util through their IDs. In our example, the application ID is 'webapps-annex@0.0'.</p>
-<h3 id="start-application">Start application</h3>
-<p>Let's start the first application Annex:</p>
-<pre><code>root@porter:~# afm-util start webapps-annex@0.0
-1</code></pre>
-<p>As the application is a HTML5 game, you should then get a webview running with QML on the board display.</p>
-<h3 id="security-context">Security Context</h3>
-<p>The application has been started in the user session, with a dedicated security context, enforced by SMACK. To illustrate this, we can take a look at the running processes and their respective SMACK labels:</p>
-<pre><code>root@porter:~# ps -efZ |grep webapps-annex | grep -v grep
-User::App::webapps-annex        root       716   491  0 13:19 ?        00:00:00 /usr/bin/afb-daemon --mode=local --readyfd=8 --alias=/icons /usr/share/afm/icons --port=12348 --rootdir=/usr/share/afm/applications/webapps-annex/0.0 --token=7D6D2F16 --sessiondir=/home/root/app-data/webapps-annex/.afb-daemon
-User::App::webapps-annex        root       717   491  0 13:19 ?        00:00:00 /usr/bin/qt5/qmlscene http://localhost:12348/index.html?token=7D6D2F16 /usr/bin/web-runtime-webkit.qml</code></pre>
-<p>In the previous result, we see that the application is composed of two processes: * the application binder (afb-daemon) * the application UI (qmlscene ...)</p>
-<p>While most system processes run with the label 'System', we see that the application runs with a specific SMACK label 'User::App::webapps-annex': this label is used to force the application to follow a Mandatory Access Control (MAC) scheme. This means that those processes run in their own security context, isolated from the rest of the system (and other applications). Global security rules can then be applied to restrict access to all other user or system resources.</p>
-<h3 id="check-running-applications">Check running applications</h3>
-<p>To check for running applications, just run:</p>
-<pre><code>root@porter:~# afm-util ps
-[ { &quot;runid&quot;: 1, &quot;state&quot;: &quot;running&quot;, &quot;id&quot;: &quot;webapps-annex@0.0&quot; } ]</code></pre>
-<p>The 'runid' is the application instance ID and is used as an argument for the subcommands controlling the application runtime state (kill/stop/resume/status)</p>
-<h3 id="stop-application">Stop application</h3>
-<p>To stop the application that was just started (the one with RUNID 1), just run the stop command:</p>
-<pre><code>root@porter:~# afm-util terminate 1
-true</code></pre>
-<p>The application is now stopped, as confirmed by a list of running apps:</p>
-<pre><code>root@porter:~# afm-util ps
-[ ]</code></pre>
-<h3 id="uninstall-application">Uninstall application</h3>
-<p>To uninstall an application, simply use its ID:</p>
-<pre><code>root@porter:~# afm-util uninstall webapps-annex@0.0
-true</code></pre>
-<p>Then list the installed apps to confirm the removal:</p>
-<pre><code>root@porter:~# afm-util list
-[ { &quot;id&quot;: &quot;webapps-memory-match@1.1&quot;, &quot;version&quot;: &quot;1.1.7&quot;, &quot;width&quot;: 0, &quot;height&quot;: 0, &quot;name&quot;: &quot;MemoryMatch&quot;, &quot;description&quot;: &quot;Memory match&quot;, &quot;shortname&quot;: &quot;&quot;, &quot;author&quot;: &quot;Todd Brandt &lt;todd.e.brandt@intel.com&gt;&quot; } ]</code></pre>
-<h2 id="afm-client-a-sample-html5-homescreen">afm-client: a sample HTML5 'Homescreen'</h2>
-<p><strong>afm-client</strong> is a HTML5 UI that allows to install/uninstall applications as well as starting/stopping them as already demonstrated with afm-util.</p>
-<p>The HTML5 UI is accessible remotely through this URL: http://[board_ip]:1234/opa?token=132456789</p>
-<h3 id="installing-an-application">Installing an application</h3>
-<p>By clicking on the '<strong>Upload</strong>' button on the right, you can send an application package (WGT file) and install it. Select for example the file '<strong>rabbit.wgt</strong>' that was cloned initially from the git repository afm-widget-examples.</p>
-<p>Then a popup requester ask for a confirmation: 'Upload Application rabbit.wgt ?'. Click on the '<strong>Install</strong>' button.</p>
-<p>You should then see some changes in the toolbar: a new icon appeared, representing the freshly installed application.</p>
-<h3 id="running-an-application">Running an application</h3>
-<p>In the toolbar, click on the button representing the Rabbit application. You'll get a popup asking to: * start the application * or get some info about it * or uninstall it</p>
-<p>Click on the 'start' item: the application starts and should be visible as a webview on the target board display. Note that at this point, we could also run the application remotely, that is in the same browser as the Homescreen app. By default, the application framework is configured to run applications 'locally' on the board display.</p>
-<h3 id="stopping-an-application">Stopping an application</h3>
-<p>In the Homescreen application, click again on the Rabbit application button, then select 'stop': the application then stops.</p>
-<h3 id="uninstalling-an-application">Uninstalling an application</h3>
-<p>From the same popup menu, you can select 'uninstall' to remove the application from the system. As a consequence, the application icon should disappear from the toolbar.</p>
-<h2 id="afb-client-a-template-for-angular-applications">afb-client: a template for Angular Applications</h2>
-<p>Another package '<strong>afb-client</strong>' is also available for testing. This is a sample HTML5 application demonstrating various basic capabilities of the Binder daemon. It can be used by developers as a template to start writing real AGL Applications.</p>
-<p>This application is not available as WGT file yet and it should be started manually without any specific security context:</p>
-<pre><code>root@porter:~# /usr/bin/afb-daemon --mode=remote --port=1235 --token=&#39;&#39; --sessiondir=/home/root/.afm-daemon --rootdir=/usr/share/agl/afb-client --alias=/icons:/usr/share/afm/icons</code></pre>
-<p>Then you can access it from a browser: http://[board_ip]:1235/opa/?token=132456789</p>
-<p>afb-client is a simple application to demonstrate the built-in capabilities of the binder daemon (handling sessions and security tokens, testing POSTs uploads...) and was used during the application framework development to validate the proposed features.</p>
-</body>
-</html>
diff --git a/doc/security-framework.html b/doc/security-framework.html
deleted file mode 100644 (file)
index bf4dd48..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta charset="utf-8">
-  <meta name="generator" content="pandoc">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
-  <meta name="author" content="José Bollo">
-  <title>The security framework</title>
-  <style type="text/css">code{white-space: pre;}</style>
-  <link rel="stylesheet" href="doc.css">
-  <!--[if lt IE 9]>
-    <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
-  <![endif]-->
-</head>
-<body>
-<header>
-<h1 class="title">The security framework</h1>
-<h2 class="author">José Bollo</h2>
-<h3 class="date">24 juin 2016</h3>
-</header>
-<nav id="TOC">
-<ul>
-<li><a href="#the-security-framework">The security framework</a><ul>
-<li><a href="#setting-smack-rules-for-the-application">Setting Smack rules for the application</a></li>
-<li><a href="#what-user-can-run-an-application">What user can run an application?</a></li>
-</ul></li>
-</ul>
-</nav>
-<h1 id="the-security-framework">The security framework</h1>
-<p>NOT STARTED !!!!!!</p>
-<h2 id="setting-smack-rules-for-the-application">Setting Smack rules for the application</h2>
-<p>For Tizen, the following rules are set by the security manager for each application.</p>
-<pre><code>System ~APP~             rwx
-System ~PKG~             rwxat
-System ~PKG~::RO         rwxat
-~APP~  System            wx
-~APP~  System::Shared    rxl
-~APP~  System::Run       rwxat
-~APP~  System::Log       rwxa
-~APP~  _                 l
-User   ~APP~             rwx
-User   ~PKG~             rwxat
-User   ~PKG~::RO         rwxat
-~APP~  User              wx
-~APP~  User::Home        rxl
-~APP~  User::App::Shared rwxat
-~APP~  ~PKG~             rwxat
-~APP~  ~PKG~::RO         rxl</code></pre>
-<p>Here, <sub>PKG</sub> is the identifier of the package and <sub>APP</sub> is the identifier of the application.</p>
-<h2 id="what-user-can-run-an-application">What user can run an application?</h2>
-<p>Not all user are able to run all applications. How to manage that?</p>
-</body>
-</html>
diff --git a/doc/updt.sh b/doc/updt.sh
deleted file mode 100755 (executable)
index d0c02e7..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/bin/bash
-
-title() {
-       sed '/^[ \t]*$/d' "$1" |
-       sed '/^===/Q' |
-       sed '/^---/Q' |
-       sed 's/^# //;T;Q' |
-       sed 's/^## //;T;Q' |
-       sed '/^---/Q'
-}
-
-authors() {
-       git log --numstat --format='A %aN' -- "$1" |
-       awk '$1=="A"{sub(/^A /,"");a=$0; s[a]+=0; next}NF==3{s[a]+=($1+0)}END{for(a in s)print s[a]" : "a}' |
-       sort -nr |
-       sed 's/[^:]* : //' |
-       sed '1!s/^/; /' |
-       tr -d '\n'
-}
-
-dateof() {
-       local file="$1"
-       local t=$(git log -n 1 --format=%ct "$file")
-       [[ -n "$t" ]] || t=$(stat -c %Y "$file")
-       LANG= date -d @$t +"%d %B %Y"
-}
-
-meta() {
-       local file="$1"
-       local t=$(title "$file")
-       local a=$(authors "$file")
-       local d=$(dateof "$file")
-       echo "% $t"
-       echo "% $a"
-       echo "% $d"
-       cat "$file"
-}
-
-
-# make the html file for $1
-mkhtml() {
-  local x=$1
-  local h=${x%%.md}.html
-  echo updating $h from $x
-  meta "$x" |
-  pandoc --css doc.css -f markdown -t html5 --toc > "$h"
-}
-
-# apply
-for x in *.md; do
-  mkhtml $x
-done
-
diff --git a/doc/widgets.html b/doc/widgets.html
deleted file mode 100644 (file)
index 8c27577..0000000
+++ /dev/null
@@ -1,176 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta charset="utf-8">
-  <meta name="generator" content="pandoc">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
-  <meta name="author" content="José Bollo">
-  <meta name="author" content="Fulup Ar Foll">
-  <title>The widgets</title>
-  <style type="text/css">code{white-space: pre;}</style>
-  <style type="text/css">
-div.sourceCode { overflow-x: auto; }
-table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode {
-  margin: 0; padding: 0; vertical-align: baseline; border: none; }
-table.sourceCode { width: 100%; line-height: 100%; }
-td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; }
-td.sourceCode { padding-left: 5px; }
-code > span.kw { color: #007020; font-weight: bold; } /* Keyword */
-code > span.dt { color: #902000; } /* DataType */
-code > span.dv { color: #40a070; } /* DecVal */
-code > span.bn { color: #40a070; } /* BaseN */
-code > span.fl { color: #40a070; } /* Float */
-code > span.ch { color: #4070a0; } /* Char */
-code > span.st { color: #4070a0; } /* String */
-code > span.co { color: #60a0b0; font-style: italic; } /* Comment */
-code > span.ot { color: #007020; } /* Other */
-code > span.al { color: #ff0000; font-weight: bold; } /* Alert */
-code > span.fu { color: #06287e; } /* Function */
-code > span.er { color: #ff0000; font-weight: bold; } /* Error */
-code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */
-code > span.cn { color: #880000; } /* Constant */
-code > span.sc { color: #4070a0; } /* SpecialChar */
-code > span.vs { color: #4070a0; } /* VerbatimString */
-code > span.ss { color: #bb6688; } /* SpecialString */
-code > span.im { } /* Import */
-code > span.va { color: #19177c; } /* Variable */
-code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */
-code > span.op { color: #666666; } /* Operator */
-code > span.bu { } /* BuiltIn */
-code > span.ex { } /* Extension */
-code > span.pp { color: #bc7a00; } /* Preprocessor */
-code > span.at { color: #7d9029; } /* Attribute */
-code > span.do { color: #ba2121; font-style: italic; } /* Documentation */
-code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */
-code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */
-code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */
-  </style>
-  <link rel="stylesheet" href="doc.css">
-  <!--[if lt IE 9]>
-    <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
-  <![endif]-->
-</head>
-<body>
-<header>
-<h1 class="title">The widgets</h1>
-<h2 class="author">José Bollo</h2>
-<h2 class="author">Fulup Ar Foll</h2>
-<h3 class="date">24 juin 2016</h3>
-</header>
-<nav id="TOC">
-<ul>
-<li><a href="#the-widgets">The widgets</a><ul>
-<li><a href="#the-widgets-1">The widgets</a><ul>
-<li><a href="#the-configuration-file-config.xml">The configuration file config.xml</a></li>
-<li><a href="#tools-for-managing-widgets">Tools for managing widgets</a></li>
-<li><a href="#signing-a-widget">Signing a widget</a></li>
-<li><a href="#packing-a-widget">Packing a widget</a></li>
-<li><a href="#getting-data-about-a-widget-file">Getting data about a widget file</a></li>
-</ul></li>
-<li><a href="#writing-a-widget">Writing a widget</a><ul>
-<li><a href="#what-kind-of-application">What kind of application?</a></li>
-<li><a href="#the-steps-for-writing-a-widget">The steps for writing a widget</a></li>
-</ul></li>
-<li><a href="#organization-of-directory-of-applications">Organization of directory of applications</a><ul>
-<li><a href="#directory-where-are-stored-applications">directory where are stored applications</a></li>
-<li><a href="#identity-of-installed-files">Identity of installed files</a></li>
-<li><a href="#labeling-the-directories-of-applications">labeling the directories of applications</a></li>
-</ul></li>
-</ul></li>
-</ul>
-</nav>
-<h1 id="the-widgets">The widgets</h1>
-<h2 id="the-widgets-1">The widgets</h2>
-<p>The widgets are described by the technical recommendations <a href="http://www.w3.org/TR/widgets" title="Packaged Web Apps">widgets</a> and <a href="http://www.w3.org/TR/widgets-digsig" title="XML Digital Signatures for Widgets">widgets-digsig</a>.</p>
-<p>In summary, <strong>widgets are ZIP files that can be signed and whose content is described by the file <config.xml></strong>.</p>
-<h3 id="the-configuration-file-config.xml">The configuration file config.xml</h3>
-<p>This is one of the important file of the widget. It fully describes the widget.</p>
-<p>Here is the example of the config file for the QML application SmartHome.</p>
-<div class="sourceCode"><pre class="sourceCode xml"><code class="sourceCode xml"><span class="kw">&lt;?xml</span> version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;<span class="kw">?&gt;</span>
-<span class="kw">&lt;widget</span><span class="ot"> xmlns=</span><span class="st">&quot;http://www.w3.org/ns/widgets&quot;</span><span class="ot"> id=</span><span class="st">&quot;smarthome&quot;</span><span class="ot"> version=</span><span class="st">&quot;0.1&quot;</span><span class="kw">&gt;</span>
-  <span class="kw">&lt;name&gt;</span>SmartHome<span class="kw">&lt;/name&gt;</span>
-  <span class="kw">&lt;icon</span><span class="ot"> src=</span><span class="st">&quot;smarthome.png&quot;</span><span class="kw">/&gt;</span>
-  <span class="kw">&lt;content</span><span class="ot"> src=</span><span class="st">&quot;qml/smarthome/smarthome.qml&quot;</span><span class="ot"> type=</span><span class="st">&quot;text/vnd.qt.qml&quot;</span><span class="kw">/&gt;</span>
-  <span class="kw">&lt;description&gt;</span>This is the Smarthome QML demo application. It shows some user interfaces for controlling an 
-automated house. The user interface is completely done with QML.<span class="kw">&lt;/description&gt;</span>
-  <span class="kw">&lt;author&gt;</span>Qt team<span class="kw">&lt;/author&gt;</span>
-  <span class="kw">&lt;license&gt;</span>GPL<span class="kw">&lt;/license&gt;</span>
-<span class="kw">&lt;/widget&gt;</span></code></pre></div>
-<p>The most important items are:</p>
-<ul>
-<li><p><strong>&lt;widget id=&quot;......&quot;&gt;</strong>: gives the id of the widget. It must be unique.</p></li>
-<li><p><strong>&lt;widget version=&quot;......&quot;&gt;</strong>: gives the version of the widget</p></li>
-<li><p><strong>&lt;icon src=&quot;...&quot;&gt;</strong>: gives a path to the icon of the application (can be repeated with different sizes)</p></li>
-<li><p><strong>&lt;content src=&quot;...&quot; type=&quot;...&quot;&gt;</strong>: this indicates the entry point and its type. The types handled are set through the file /etc/afm/afm-launch.conf</p></li>
-</ul>
-<p>Further development will add handling of <feature> for requiring and providing permissions and services.</p>
-<h3 id="tools-for-managing-widgets">Tools for managing widgets</h3>
-<p>This project includes tools for managing widgets. These tools are:</p>
-<ul>
-<li><p><strong><em>wgtpkg-info</em></strong>: command line tool to display informations about a widget file.</p></li>
-<li><p><strong><em>wgtpkg-installer</em></strong>: command line tool to install a widget file.</p></li>
-<li><p><strong><em>wgtpkg-pack</em></strong>: command line tool to create a widget file from a widget directory.</p></li>
-<li><p><strong><em>wgtpkg-sign</em></strong>: command line tool to add a signature to a widget directory.</p></li>
-</ul>
-<p>For all these commands, a tiny help is available with options <strong>-h</strong> or <strong>--help</strong>.</p>
-<p>There is no tool for unpacking a widget. For doing such operation, you can use the command <strong>unzip</strong>.</p>
-<p>To list the files of a widget:</p>
-<div class="sourceCode"><pre class="sourceCode bash"><code class="sourceCode bash">$ <span class="kw">unzip</span> -l WIDGET</code></pre></div>
-<p>To extract a widget in some directory:</p>
-<div class="sourceCode"><pre class="sourceCode bash"><code class="sourceCode bash">$ <span class="kw">unzip</span> WIDGET -d DIRECTORY</code></pre></div>
-<p><em>Note that DIRECTORY will be created if needed</em>.</p>
-<h3 id="signing-a-widget">Signing a widget</h3>
-<p>To sign a widget, you need a private key and its certificate.</p>
-<p>The tool <strong>wgtpkg-sign</strong> creates or replace a signature file in the directory of the widget BEFORE its packaging.</p>
-<p>There are two types of signature files: author and distributor.</p>
-<p>Example 1: add an author signature</p>
-<div class="sourceCode"><pre class="sourceCode bash"><code class="sourceCode bash">$ <span class="kw">wgtpkg-sign</span> -a -k me.key.pem -c me.cert.pem DIRECTORY</code></pre></div>
-<p>Example 2: add a distributor signature</p>
-<div class="sourceCode"><pre class="sourceCode bash"><code class="sourceCode bash">$ <span class="kw">wgtpkg-sign</span> -k authority.key.pem -c authority.cert.pem DIRECTORY</code></pre></div>
-<h3 id="packing-a-widget">Packing a widget</h3>
-<p>This operation can be done using the command <strong>zip</strong> but we provide the tool <strong>wgtpkg-pack</strong> that may add checking.</p>
-<p>Example:</p>
-<div class="sourceCode"><pre class="sourceCode bash"><code class="sourceCode bash">$ <span class="kw">wgtpkg-pack</span> DIRECTORY -o file.wgt</code></pre></div>
-<h3 id="getting-data-about-a-widget-file">Getting data about a widget file</h3>
-<p>The command <strong>wgtpkg-info</strong> opens a widget file, reads its <strong>config.xml</strong> file and displays its content in a human readable way.</p>
-<h2 id="writing-a-widget">Writing a widget</h2>
-<h3 id="what-kind-of-application">What kind of application?</h3>
-<p>The file <strong>/etc/afm/afm-launch.conf</strong> explain how to launch applications. (It is the current state that use afm-user-daemon. In a future, it may be replace by systemd features.)</p>
-<p>Currently the applications that can be run are:</p>
-<ul>
-<li><p>binary applications: their type is <strong><em>application/x-executable</em></strong></p></li>
-<li><p>HTML5 applications: their type is <strong><em>text/html</em></strong></p></li>
-<li><p>QML applications: their type is <strong><em>text/vnd.qt.qml</em></strong></p></li>
-</ul>
-<h3 id="the-steps-for-writing-a-widget">The steps for writing a widget</h3>
-<ol type="1">
-<li><p>make your application</p></li>
-<li><p>create its configuration file <strong>config.xml</strong></p></li>
-<li><p>sign it</p></li>
-<li><p>pack it</p></li>
-</ol>
-<p>Fairly easy, no?</p>
-<h2 id="organization-of-directory-of-applications">Organization of directory of applications</h2>
-<h3 id="directory-where-are-stored-applications">directory where are stored applications</h3>
-<p>Applications can be installed in different places: the system itself, extension device. On a phone application are typically installed on the sd card.</p>
-<p>This translates to:</p>
-<ul>
-<li>/usr/applications: system wide applications</li>
-<li>/opt/applications: removable applications</li>
-</ul>
-<p>From here those paths are referenced as: &quot;APPDIR&quot;.</p>
-<p>The main path for applications is: APPDIR/PKGID/VER.</p>
-<p>Where:</p>
-<ul>
-<li>APPDIR is as defined above</li>
-<li>PKGID is a directory whose name is the package identifier</li>
-<li>VER is the version of the package MAJOR.MINOR</li>
-</ul>
-<p>This organization has the advantage to allow several versions to leave together. This is needed for some good reasons (rolling back) and also for less good reasons (user habits).</p>
-<h3 id="identity-of-installed-files">Identity of installed files</h3>
-<p>All files are installed as user &quot;afm&quot; and group &quot;afm&quot;. All files have rw(x) for user and r-(x) for group and others.</p>
-<p>This allows every user to read every file.</p>
-<h3 id="labeling-the-directories-of-applications">labeling the directories of applications</h3>
-<p>The data of a user are in its directory and are labelled by the security-manager using the labels of the application.</p>
-</body>
-</html>
diff --git a/doc/writing-config.xml.html b/doc/writing-config.xml.html
deleted file mode 100644 (file)
index 2024b94..0000000
+++ /dev/null
@@ -1,190 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta charset="utf-8">
-  <meta name="generator" content="pandoc">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
-  <meta name="author" content="José Bollo">
-  <title>Writing the configuration file &quot;config.xml&quot;</title>
-  <style type="text/css">code{white-space: pre;}</style>
-  <style type="text/css">
-div.sourceCode { overflow-x: auto; }
-table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode {
-  margin: 0; padding: 0; vertical-align: baseline; border: none; }
-table.sourceCode { width: 100%; line-height: 100%; }
-td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; }
-td.sourceCode { padding-left: 5px; }
-code > span.kw { color: #007020; font-weight: bold; } /* Keyword */
-code > span.dt { color: #902000; } /* DataType */
-code > span.dv { color: #40a070; } /* DecVal */
-code > span.bn { color: #40a070; } /* BaseN */
-code > span.fl { color: #40a070; } /* Float */
-code > span.ch { color: #4070a0; } /* Char */
-code > span.st { color: #4070a0; } /* String */
-code > span.co { color: #60a0b0; font-style: italic; } /* Comment */
-code > span.ot { color: #007020; } /* Other */
-code > span.al { color: #ff0000; font-weight: bold; } /* Alert */
-code > span.fu { color: #06287e; } /* Function */
-code > span.er { color: #ff0000; font-weight: bold; } /* Error */
-code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */
-code > span.cn { color: #880000; } /* Constant */
-code > span.sc { color: #4070a0; } /* SpecialChar */
-code > span.vs { color: #4070a0; } /* VerbatimString */
-code > span.ss { color: #bb6688; } /* SpecialString */
-code > span.im { } /* Import */
-code > span.va { color: #19177c; } /* Variable */
-code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */
-code > span.op { color: #666666; } /* Operator */
-code > span.bu { } /* BuiltIn */
-code > span.ex { } /* Extension */
-code > span.pp { color: #bc7a00; } /* Preprocessor */
-code > span.at { color: #7d9029; } /* Attribute */
-code > span.do { color: #ba2121; font-style: italic; } /* Documentation */
-code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */
-code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */
-code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */
-  </style>
-  <link rel="stylesheet" href="doc.css">
-  <!--[if lt IE 9]>
-    <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
-  <![endif]-->
-</head>
-<body>
-<header>
-<h1 class="title">Writing the configuration file &quot;config.xml&quot;</h1>
-<h2 class="author">José Bollo</h2>
-<h3 class="date">19 septembre 2016</h3>
-</header>
-<nav id="TOC">
-<ul>
-<li><a href="#writing-the-configuration-file-config.xml">Writing the configuration file &quot;config.xml&quot;</a><ul>
-<li><a href="#about-config.xml">About &quot;config.xml&quot;</a></li>
-<li><a href="#example-of-config.xml">Example of &quot;config.xml&quot;</a></li>
-<li><a href="#standard-elements-of-config.xml">Standard elements of &quot;config.xml&quot;</a><ul>
-<li><a href="#the-element-widget">The element widget</a></li>
-<li><a href="#the-element-content">The element content</a></li>
-<li><a href="#the-element-icon">The element icon</a></li>
-</ul></li>
-<li><a href="#known-widget-types-and-content">Known widget types and content</a></li>
-<li><a href="#agl-features">AGL features</a><ul>
-<li><a href="#feature-nameurnaglrequired-binding">feature name=&quot;urn:AGL:required-binding&quot;</a></li>
-<li><a href="#feature-nameurnaglrequired-permission">feature name=&quot;urn:AGL:required-permission&quot;</a></li>
-<li><a href="#feature-nameurnaglprovided-binding">feature name=&quot;urn:AGL:provided-binding&quot;</a></li>
-<li><a href="#feature-nameurnagldefined-permission">feature name=&quot;urn:AGL:defined-permission&quot;</a></li>
-</ul></li>
-</ul></li>
-</ul>
-</nav>
-<h1 id="writing-the-configuration-file-config.xml">Writing the configuration file &quot;config.xml&quot;</h1>
-<h2 id="about-config.xml">About &quot;config.xml&quot;</h2>
-<p>The file <strong>config.xml</strong> describes important data of the application to the framework:</p>
-<ul>
-<li>the unique identifier of the application</li>
-<li>the name of the application</li>
-<li>the type of the application</li>
-<li>the icon of the application</li>
-<li>the permissions linked to the application</li>
-<li>the services and dependancies of the application</li>
-</ul>
-<p>The file MUST be at the root of the widget and MUST be case sensitively name <strong><em>config.xml</em></strong>.</p>
-<p>The file <strong>config.xml</strong> is a XML file described by the document <a href="http://www.w3.org/TR/widgets" title="Packaged Web Apps">widgets</a>.</p>
-<h2 id="example-of-config.xml">Example of &quot;config.xml&quot;</h2>
-<p>Here is the example of the config file for the QML application SmartHome.</p>
-<div class="sourceCode"><pre class="sourceCode xml"><code class="sourceCode xml"><span class="kw">&lt;?xml</span> version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;<span class="kw">?&gt;</span>
-<span class="kw">&lt;widget</span><span class="ot"> xmlns=</span><span class="st">&quot;http://www.w3.org/ns/widgets&quot;</span><span class="ot"> id=</span><span class="st">&quot;smarthome&quot;</span><span class="ot"> version=</span><span class="st">&quot;0.1&quot;</span><span class="kw">&gt;</span>
-  <span class="kw">&lt;name&gt;</span>SmartHome<span class="kw">&lt;/name&gt;</span>
-  <span class="kw">&lt;icon</span><span class="ot"> src=</span><span class="st">&quot;smarthome.png&quot;</span><span class="kw">/&gt;</span>
-  <span class="kw">&lt;content</span><span class="ot"> src=</span><span class="st">&quot;qml/smarthome/smarthome.qml&quot;</span><span class="ot"> type=</span><span class="st">&quot;text/vnd.qt.qml&quot;</span><span class="kw">/&gt;</span>
-  <span class="kw">&lt;description&gt;</span>
-    This is the Smarthome QML demo application.
-    It shows some user interfaces for controlling an automated house.
-    The user interface is completely done with QML.
-  <span class="kw">&lt;/description&gt;</span>
-  <span class="kw">&lt;author&gt;</span>Qt team<span class="kw">&lt;/author&gt;</span>
-  <span class="kw">&lt;license&gt;</span>GPL<span class="kw">&lt;/license&gt;</span>
-<span class="kw">&lt;/widget&gt;</span></code></pre></div>
-<h2 id="standard-elements-of-config.xml">Standard elements of &quot;config.xml&quot;</h2>
-<h3 id="the-element-widget">The element widget</h3>
-<h4 id="the-attribute-id-of-widget">the attribute id of widget</h4>
-<p>The attribute <em>id</em> is mandatory (for version 2.x, blowfish) and must be unique.</p>
-<p>Values for <em>id</em> are any non empty string containing only latin letters, arabic digits, and the three characters '.' (dot), '-' (dash) and '_' (underscore).</p>
-<p>Authors can use a mnemonic id or can pick a unique id using command <strong>uuid</strong> or <strong>uuidgen</strong>.</p>
-<h4 id="the-attribute-version-of-widget">the attribute version of widget</h4>
-<p>The attribute <em>version</em> is mandatory (for version 2.x, blowfish).</p>
-<p>Values for <em>id</em> are any non empty string containing only latin letters, arabic digits, and the three characters '.' (dot), '-' (dash) and '_' (underscore).</p>
-<p>Version values are dot separated fields MAJOR.MINOR.REVISION.</p>
-<h3 id="the-element-content">The element content</h3>
-<p>The element <em>content</em> is mandatory (for version 2.x, blowfish) and must designate a file (subject to localisation) with its attribute <em>src</em>.</p>
-<p>The content designed depends on its type. See below for the known types.</p>
-<h3 id="the-element-icon">The element icon</h3>
-<p>The element <em>icon</em> is mandatory (for version 2.x, blowfish) and must be unique. It must designate an image file with its attribute <em>src</em>.</p>
-<h2 id="known-widget-types-and-content">Known widget types and content</h2>
-<p>The configuration file <strong><em>/etc/afm/afm-launch.conf</em></strong> defines the types of widget known and how to launch it.</p>
-<p>Known types for the type of content are (for version 2.x, blowfish):</p>
-<ul>
-<li><p><strong><em>text/html</em></strong>: HTML application, content.src designates the home page of the application</p></li>
-<li><p><strong><em>application/x-executable</em></strong>: Native application, content.src designates the relative path of the binary</p></li>
-<li><p><strong><em>application/vnd.agl.url</em></strong>: Internet url, content.src designates the url to be used</p></li>
-<li><p><strong><em>application/vnd.agl.service</em></strong>: AGL service defined as a binder, content.src designates the directory of provided binders, http content, if any, must be put in the subdirectory <strong><em>htdocs</em></strong> of the widget</p></li>
-<li><p><strong><em>application/vnd.agl.native</em></strong>: Native application with AGL service defined as a binder, content.src designates the relative path of the binary, bindings, if any must be put in the subdirectory <strong><em>lib</em></strong> of the widget, http content, if any, must be put in the subdirectory <strong><em>htdocs</em></strong> of the widget</p></li>
-<li><p><strong><em>text/vnd.qt.qml</em></strong>, <strong><em>application/vnd.agl.qml</em></strong>: QML application, content.src designate the relative path of the QML root, imports must be put in the subdirectory <strong><em>imports</em></strong> of the widget</p></li>
-<li><p><strong><em>application/vnd.agl.qml.hybrid</em></strong>: QML application with bindings, content.src designate the relative path of the QML root, bindings, if any must be put in the subdirectory <strong><em>lib</em></strong> of the widget, imports must be put in the subdirectory <strong><em>imports</em></strong> of the widget</p></li>
-<li><p><strong><em>application/vnd.agl.html.hybrid</em></strong>: HTML application, content.src designates the home page of the application, bindings, if any must be put in the subdirectory <strong><em>lib</em></strong> of the widget, http content must be put in the subdirectory <strong><em>htdocs</em></strong> of the widget</p></li>
-</ul>
-<h2 id="agl-features">AGL features</h2>
-<p>The AGL framework uses the feature tag for specifying security and binding requirement of the widget.</p>
-<p>The current version of AGL (up to 2.0.1, blowfish) has no fully implemented features.</p>
-<p>The features planned to be implemented are described below.</p>
-<h3 id="feature-nameurnaglrequired-binding">feature name=&quot;urn:AGL:required-binding&quot;</h3>
-<p>List of the bindings required by the widget.</p>
-<p>Each required binding must be explicited using a <param> entry.</p>
-<h4 id="param-namerequired-binding-name">param name=[required binding name]</h4>
-<p>The value is either:</p>
-<ul>
-<li>required: the binding is mandatorily needed except if the feature isn't required (required=&quot;false&quot;) and in that case it is optional.</li>
-<li>optional: the binding is optional</li>
-</ul>
-<h3 id="feature-nameurnaglrequired-permission">feature name=&quot;urn:AGL:required-permission&quot;</h3>
-<p>List of the permissions required by the widget.</p>
-<p>Each required permission must be explicited using a <param> entry.</p>
-<h4 id="param-namerequired-permission-name">param name=[required permission name]</h4>
-<p>The value is either:</p>
-<ul>
-<li>required: the permission is mandatorily needed except if the feature isn't required (required=&quot;false&quot;) and in that case it is optional.</li>
-<li>optional: the permission is optional</li>
-</ul>
-<h3 id="feature-nameurnaglprovided-binding">feature name=&quot;urn:AGL:provided-binding&quot;</h3>
-<p>Use this feature for each provided binding of the widget. The parameters are:</p>
-<h4 id="param-namename">param name=&quot;name&quot;</h4>
-<p>REQUIRED</p>
-<p>The value is the string that must match the binding prefix. It must be unique.</p>
-<h4 id="param-namesrc">param name=&quot;src&quot;</h4>
-<p>REQUIRED</p>
-<p>The value is the path of the shared library for the binding.</p>
-<h4 id="param-nametype">param name=&quot;type&quot;</h4>
-<p>REQUIRED</p>
-<p>Currently it must be <strong><em>application/vnd.agl.binding.v1</em></strong>.</p>
-<h4 id="param-namescope">param name=&quot;scope&quot;</h4>
-<p>REQUIRED</p>
-<p>The value indicate the availability of the binidng:</p>
-<ul>
-<li>private: used only by the widget</li>
-<li>public: available to allowed clients as a remote service (requires permission+)</li>
-<li>inline: available to allowed clients inside their binding (unsafe, requires permission+++)</li>
-</ul>
-<h4 id="param-nameneeded-binding">param name=&quot;needed-binding&quot;</h4>
-<p>OPTIONAL</p>
-<p>The value is a space separated list of binding's names that the binding needs.</p>
-<h3 id="feature-nameurnagldefined-permission">feature name=&quot;urn:AGL:defined-permission&quot;</h3>
-<p>Each required permission must be explicited using a <param> entry.</p>
-<h4 id="param-namedefined-permission-name">param name=[defined permission name]</h4>
-<p>The value is the level of the defined permission. Standard levels are:</p>
-<ul>
-<li>system</li>
-<li>platform</li>
-<li>partner</li>
-<li>public</li>
-</ul>
-<p>This level defines the level of accreditation required to get the given permission. The accreditions are given by signatures of widgets.</p>
-</body>
-</html>
diff --git a/docs/index.md b/docs/index.md
new file mode 120000 (symlink)
index 0000000..75cc59e
--- /dev/null
@@ -0,0 +1 @@
+overview.md
\ No newline at end of file
similarity index 100%
rename from doc/overview.md
rename to docs/overview.md
similarity index 100%
rename from doc/quick-tutorial.md
rename to docs/quick-tutorial.md
similarity index 100%
rename from doc/widgets.md
rename to docs/widgets.md
diff --git a/mkdocs.yml b/mkdocs.yml
new file mode 100644 (file)
index 0000000..065b230
--- /dev/null
@@ -0,0 +1,13 @@
+site_name: AGL Application Framework
+theme: readthedocs
+docs_dir: docs
+pages:
+  - 'Overview' : 'index.md'
+  - 'Quick tutorial' : 'quick-tutorial.md'
+  - 'The system daemon' : 'afm-system-daemon.md'
+  - 'The user daemon' : 'afm-user-daemon.md'
+  - 'Widgets of the framework' : 'widgets.md'
+  - 'Writing widget''s configuration' : 'writing-config.xml.md'
+  - 'The security framework' : 'security-framework.md'
+  - 'The application framework' : 'application-framework.md'
+