mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
463c9bec17
Removed the Nic::Driver implementation. All nic servers now inherit from Nic::Session_component. Packet stream signals are dispatched to the 'handle_packet_stream' function within a session component. Thus, nic servers now have direct access to the packet stream channels, making handling more flexible. Adjusted nic_loobpack, dde_ipxe, wifi, usb, lan9118, Linux nic, and OpenVPN to the new interface. Fixes #1602
78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
/**
|
|
* \brief Simple single client NIC Root
|
|
* \author Sebastian Sumpf
|
|
* \date 2015-06-23
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2015 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__NIC__ROOT_H_
|
|
#define _INCLUDE__NIC__ROOT_H_
|
|
|
|
#include <nic/component.h>
|
|
#include <root/component.h>
|
|
|
|
namespace Nic {
|
|
|
|
template <class SESSION_COMPONENT> class Root;
|
|
};
|
|
|
|
|
|
template <class SESSION_COMPONENT>
|
|
class Nic::Root : public Genode::Root_component<SESSION_COMPONENT,
|
|
Genode::Single_client>
|
|
{
|
|
private:
|
|
|
|
Server::Entrypoint &_ep;
|
|
|
|
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)
|
|
throw Genode::Root::Quota_exceeded();
|
|
|
|
/*
|
|
* Check if donated ram quota suffices for both communication
|
|
* buffers. Also check both sizes separately to handle a
|
|
* possible overflow of the sum of both sizes.
|
|
*/
|
|
if (tx_buf_size > ram_quota - session_size
|
|
|| rx_buf_size > ram_quota - session_size
|
|
|| tx_buf_size + rx_buf_size > ram_quota - session_size) {
|
|
PERR("insufficient 'ram_quota', got %zd, need %zd",
|
|
ram_quota, tx_buf_size + rx_buf_size + session_size);
|
|
throw Genode::Root::Quota_exceeded();
|
|
}
|
|
|
|
return new (Root::md_alloc())
|
|
SESSION_COMPONENT(tx_buf_size, rx_buf_size,
|
|
*env()->heap(),
|
|
*env()->ram_session(),
|
|
_ep);
|
|
}
|
|
|
|
public:
|
|
|
|
Root(Server::Entrypoint &ep, Genode::Allocator &md_alloc)
|
|
: Genode::Root_component<SESSION_COMPONENT, Genode::Single_client>(&ep.rpc_ep(), &md_alloc),
|
|
_ep(ep)
|
|
{ }
|
|
};
|
|
|
|
#endif /* _INCLUDE__NIC__ROOT_H_ */
|