2011-12-22 15:19:25 +00:00
|
|
|
/*
|
|
|
|
* \brief Connection to ROM file service
|
|
|
|
* \author Norman Feske
|
|
|
|
* \date 2008-08-22
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2008-2017 Genode Labs GmbH
|
2011-12-22 15:19:25 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2011-12-22 15:19:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__ROM_SESSION__CONNECTION_H_
|
|
|
|
#define _INCLUDE__ROM_SESSION__CONNECTION_H_
|
|
|
|
|
|
|
|
#include <rom_session/client.h>
|
|
|
|
#include <base/connection.h>
|
2016-05-12 12:58:51 +00:00
|
|
|
#include <base/log.h>
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
namespace Genode { class Rom_connection; }
|
|
|
|
|
|
|
|
|
|
|
|
class Genode::Rom_connection : public Connection<Rom_session>,
|
|
|
|
public Rom_session_client
|
|
|
|
{
|
|
|
|
public:
|
2011-12-22 15:19:25 +00:00
|
|
|
|
Streamline exception types
This patch reduces the number of exception types by facilitating
globally defined exceptions for common usage patterns shared by most
services. In particular, RPC functions that demand a session-resource
upgrade not longer reflect this condition via a session-specific
exception but via the 'Out_of_ram' or 'Out_of_caps' types.
Furthermore, the 'Parent::Service_denied', 'Parent::Unavailable',
'Root::Invalid_args', 'Root::Unavailable', 'Service::Invalid_args',
'Service::Unavailable', and 'Local_service::Factory::Denied' types have
been replaced by the single 'Service_denied' exception type defined in
'session/session.h'.
This consolidation eases the error handling (there are fewer exceptions
to handle), alleviates the need to convert exceptions along the
session-creation call chain, and avoids possible aliasing problems
(catching the wrong type with the same name but living in a different
scope).
2017-05-07 20:03:22 +00:00
|
|
|
class Rom_connection_failed : public Service_denied { };
|
2015-03-04 20:12:14 +00:00
|
|
|
|
base: remove Child::heap
This patch improves the accounting for the backing store of
session-state meta data. Originally, the session state used to be
allocated by a child-local heap partition fed from the child's RAM
session. However, whereas this approach was somehow practical from a
runtime's (parent's) point of view, the child component could not count
on the quota in its own RAM session. I.e., if the Child::heap grew at
the parent side, the child's RAM session would magically diminish. This
caused two problems. First, it violates assumptions of components like
init that carefully manage their RAM resources (and giving most of them
away their children). Second, if a child transfers most of its RAM
session quota to another RAM session (like init does), the child's RAM
session may actually not allow the parent's heap to grow, which is a
very difficult error condition to deal with.
In the new version, there is no Child::heap anymore. Instead, session
states are allocated from the runtime's RAM session. In order to let
children pay for these costs, the parent withdraws the local session
costs from the session quota donated from the child when the child
initiates a new session. Hence, in principle, all components on the
route of the session request take a small bite from the session quota to
pay for their local book keeping
Consequently, the session quota that ends up at the server may become
depleted more or less, depending on the route. In the case where the
remaining quota is insufficient for the server, the server responds with
'QUOTA_EXCEEDED'. Since this behavior must generally be expected, this
patch equips the client-side 'Env::session' implementation with the
ability to re-issue session requests with successively growing quota
donations.
For several of core's services (ROM, IO_MEM, IRQ), the default session
quota has now increased by 2 KiB, which should suffice for session
requests to up to 3 hops as is the common case for most run scripts. For
longer routes, the retry mechanism as described above comes into effect.
For the time being, we give a warning whenever the server-side quota
check triggers the retry mechanism. The warning may eventually be
removed at a later stage.
2017-02-19 09:31:50 +00:00
|
|
|
enum { RAM_QUOTA = 6*1024UL };
|
2016-11-06 13:26:34 +00:00
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
private:
|
|
|
|
|
2016-05-12 12:58:51 +00:00
|
|
|
Rom_session_capability _session(Parent &parent, char const *label)
|
2015-03-04 20:12:14 +00:00
|
|
|
{
|
2017-05-07 20:03:25 +00:00
|
|
|
return session("ram_quota=%ld, cap_quota=%ld, label=\"%s\"",
|
|
|
|
RAM_QUOTA, CAP_QUOTA, label);
|
2015-03-04 20:12:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
2016-05-12 12:58:51 +00:00
|
|
|
* \param label request label and name of ROM module
|
2015-03-04 20:12:14 +00:00
|
|
|
*
|
|
|
|
* \throw Rom_connection_failed
|
|
|
|
*/
|
2016-05-12 12:58:51 +00:00
|
|
|
Rom_connection(Env &env, const char *label)
|
2016-11-08 15:37:27 +00:00
|
|
|
try :
|
2016-05-12 12:58:51 +00:00
|
|
|
Connection<Rom_session>(env, _session(env.parent(), label)),
|
2016-05-09 13:55:12 +00:00
|
|
|
Rom_session_client(cap())
|
|
|
|
{ }
|
2016-11-08 15:37:27 +00:00
|
|
|
catch (...) {
|
|
|
|
error("Could not open ROM session for \"", label, "\"");
|
|
|
|
throw Rom_connection_failed();
|
|
|
|
}
|
2016-05-09 13:55:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \noapi
|
|
|
|
* \deprecated Use the constructor with 'Env &' as first
|
|
|
|
* argument instead
|
|
|
|
*/
|
2017-01-09 14:18:49 +00:00
|
|
|
Rom_connection(const char *label) __attribute__((deprecated))
|
2016-11-08 15:37:27 +00:00
|
|
|
try :
|
2017-01-09 14:18:49 +00:00
|
|
|
Connection<Rom_session>(_session(*env_deprecated()->parent(), label)),
|
|
|
|
Rom_session_client(cap())
|
|
|
|
{ }
|
|
|
|
catch (...) {
|
|
|
|
error("Could not open ROM session for \"", label, "\"");
|
|
|
|
throw Rom_connection_failed();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \noapi
|
|
|
|
* \deprecated Use the constructor with 'Env &' as first
|
|
|
|
* argument instead
|
|
|
|
*
|
|
|
|
* This version is deliberately used by functions that are marked as
|
|
|
|
* deprecated. If such a function called directly the
|
|
|
|
* __attribute__((deprecate)) version, we would always get a warning,
|
|
|
|
* even if the outer deprecated function is not called.
|
|
|
|
*
|
|
|
|
* It will be removed as soon as they are gone.
|
|
|
|
*/
|
|
|
|
Rom_connection(bool, const char *label)
|
|
|
|
try :
|
|
|
|
Connection<Rom_session>(_session(*env_deprecated()->parent(), label)),
|
2015-03-04 20:12:14 +00:00
|
|
|
Rom_session_client(cap())
|
|
|
|
{ }
|
2016-11-08 15:37:27 +00:00
|
|
|
catch (...) {
|
|
|
|
error("Could not open ROM session for \"", label, "\"");
|
|
|
|
throw Rom_connection_failed();
|
|
|
|
}
|
2015-03-04 20:12:14 +00:00
|
|
|
};
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
#endif /* _INCLUDE__ROM_SESSION__CONNECTION_H_ */
|