2015-06-23 11:13:20 +00:00
|
|
|
/**
|
|
|
|
* \brief Simple single client NIC Root
|
|
|
|
* \author Sebastian Sumpf
|
|
|
|
* \date 2015-06-23
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-01-13 15:52:53 +00:00
|
|
|
* Copyright (C) 2015-2017 Genode Labs GmbH
|
2015-06-23 11:13:20 +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.
|
2015-06-23 11:13:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__NIC__ROOT_H_
|
|
|
|
#define _INCLUDE__NIC__ROOT_H_
|
|
|
|
|
|
|
|
#include <nic/component.h>
|
|
|
|
#include <root/component.h>
|
|
|
|
|
|
|
|
namespace Nic {
|
2017-01-13 15:52:53 +00:00
|
|
|
using namespace Genode;
|
2015-06-23 11:13:20 +00:00
|
|
|
|
|
|
|
template <class SESSION_COMPONENT> class Root;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template <class SESSION_COMPONENT>
|
|
|
|
class Nic::Root : public Genode::Root_component<SESSION_COMPONENT,
|
|
|
|
Genode::Single_client>
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
2017-01-13 15:52:53 +00:00
|
|
|
Env &_env;
|
|
|
|
Allocator &_md_alloc;
|
2015-06-23 11:13:20 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
SESSION_COMPONENT *_create_session(const char *args)
|
|
|
|
{
|
|
|
|
using namespace Genode;
|
|
|
|
|
|
|
|
size_t ram_quota = Arg_string::find_arg(args, "ram_quota" ).ulong_value(0);
|
|
|
|
size_t tx_buf_size = Arg_string::find_arg(args, "tx_buf_size").ulong_value(0);
|
|
|
|
size_t rx_buf_size = Arg_string::find_arg(args, "rx_buf_size").ulong_value(0);
|
|
|
|
|
|
|
|
/* deplete ram quota by the memory needed for the session structure */
|
|
|
|
size_t session_size = max(4096UL, (unsigned long)sizeof(SESSION_COMPONENT));
|
|
|
|
if (ram_quota < session_size)
|
2017-05-08 12:32:03 +00:00
|
|
|
throw Genode::Insufficient_ram_quota();
|
2015-06-23 11:13:20 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if donated ram quota suffices for both communication
|
2015-10-07 08:38:41 +00:00
|
|
|
* buffers and check for overflow
|
2015-06-23 11:13:20 +00:00
|
|
|
*/
|
2015-10-07 08:38:41 +00:00
|
|
|
if (tx_buf_size + rx_buf_size < tx_buf_size ||
|
|
|
|
tx_buf_size + rx_buf_size > ram_quota - session_size) {
|
base: avoid use of deprecated base/printf.h
Besides adapting the components to the use of base/log.h, the patch
cleans up a few base headers, i.e., it removes unused includes from
root/component.h, specifically base/heap.h and
ram_session/ram_session.h. Hence, components that relied on the implicit
inclusion of those headers have to manually include those headers now.
While adjusting the log messages, I repeatedly stumbled over the problem
that printing char * arguments is ambiguous. It is unclear whether to
print the argument as pointer or null-terminated string. To overcome
this problem, the patch introduces a new type 'Cstring' that allows the
caller to express that the argument should be handled as null-terminated
string. As a nice side effect, with this type in place, the optional len
argument of the 'String' class could be removed. Instead of supplying a
pair of (char const *, size_t), the constructor accepts a 'Cstring'.
This, in turn, clears the way let the 'String' constructor use the new
output mechanism to assemble a string from multiple arguments (and
thereby getting rid of snprintf within Genode in the near future).
To enforce the explicit resolution of the char * ambiguity, the 'char *'
overload of the 'print' function is marked as deleted.
Issue #1987
2016-07-13 17:07:09 +00:00
|
|
|
Genode::error("insufficient 'ram_quota', got ", ram_quota, ", "
|
|
|
|
"need ", tx_buf_size + rx_buf_size + session_size);
|
2017-05-08 12:32:03 +00:00
|
|
|
throw Genode::Insufficient_ram_quota();
|
2015-06-23 11:13:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return new (Root::md_alloc())
|
|
|
|
SESSION_COMPONENT(tx_buf_size, rx_buf_size,
|
2017-02-13 19:51:27 +00:00
|
|
|
_md_alloc, _env);
|
2015-06-23 11:13:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2017-01-13 15:52:53 +00:00
|
|
|
Root(Genode::Env &env, Genode::Allocator &md_alloc)
|
|
|
|
: Genode::Root_component<SESSION_COMPONENT, Genode::Single_client>(&env.ep().rpc_ep(), &md_alloc),
|
|
|
|
_env(env), _md_alloc(md_alloc)
|
2015-06-23 11:13:20 +00:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _INCLUDE__NIC__ROOT_H_ */
|