diff --git a/repos/os/include/genode_c_api/block.h b/repos/os/include/genode_c_api/block.h
index b021790074..1354acdc4e 100644
--- a/repos/os/include/genode_c_api/block.h
+++ b/repos/os/include/genode_c_api/block.h
@@ -21,8 +21,11 @@ struct genode_block_session; /* definition is private to the implementation */
#ifdef __cplusplus
+
+void genode_block_apply_config(Genode::Xml_node const & config);
+
extern "C" {
-#endif
+#endif /* __cplusplus */
/********************
@@ -41,6 +44,7 @@ void genode_block_init(struct genode_env *env,
genode_shared_dataspace_free_t);
+
/**************************************
** Block device lifetime management **
**************************************/
diff --git a/repos/os/src/lib/genode_c_api/block.cc b/repos/os/src/lib/genode_c_api/block.cc
index 6f58a11fc6..6957203e27 100644
--- a/repos/os/src/lib/genode_c_api/block.cc
+++ b/repos/os/src/lib/genode_c_api/block.cc
@@ -11,11 +11,10 @@
* under the terms of the GNU Affero General Public License version 3.
*/
-#include
-#include
#include
#include
#include
+#include
#include
#include
@@ -106,12 +105,13 @@ class Root : public Root_component
: name(name), info(info) {}
};
- Env & _env;
- Signal_context_capability _sigh_cap;
- Attached_rom_dataspace _config { _env, "config" };
- Reporter _reporter { _env, "block_devices" };
- Constructible _sessions[MAX_BLOCK_DEVICES];
- bool _announced { false };
+ Env & _env;
+ Signal_context_capability _sigh_cap;
+ Constructible _config { };
+ Reporter _reporter { _env, "block_devices" };
+ Constructible _sessions[MAX_BLOCK_DEVICES];
+ bool _announced { false };
+ bool _report_needed { false };
Root(const Root&);
Root & operator=(const Root&);
@@ -141,6 +141,7 @@ class Root : public Root_component
void discontinue_device(const char * name);
genode_block_session * session(const char * name);
void notify_peers();
+ void apply_config(Xml_node const &);
};
@@ -235,8 +236,11 @@ genode_block_session::genode_block_session(Env & env,
genode_block_session * ::Root::_create_session(const char * args,
Affinity const &)
{
+ if (!_config.constructed())
+ throw Service_denied();
+
Session_label const label = label_from_args(args);
- Session_policy const policy(label, _config.xml());
+ Session_policy const policy(label, _config->xml());
Session_info::Name const device =
policy.attribute_value("device", Session_info::Name());
@@ -283,7 +287,7 @@ void ::Root::_destroy_session(genode_block_session * session)
void ::Root::_report()
{
- if (!_config.xml().attribute_value("report", false))
+ if (!_report_needed)
return;
_reporter.enabled(true);
@@ -351,6 +355,13 @@ void ::Root::notify_peers()
}
+void ::Root::apply_config(Xml_node const & config)
+{
+ _config.construct(*md_alloc(), config);
+ _report_needed = config.attribute_value("report", false);
+}
+
+
::Root::Root(Env & env, Allocator & alloc, Signal_context_capability cap)
:
Root_component(env.ep(), alloc),
@@ -423,3 +434,9 @@ extern "C" void genode_block_notify_peers()
{
if (_block_root) _block_root->notify_peers();
}
+
+
+void genode_block_apply_config(Xml_node const & config)
+{
+ if (_block_root) _block_root->apply_config(config);
+}