mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-02 12:06:44 +00:00
3f269b773d
Ref #2490
152 lines
4.5 KiB
C++
152 lines
4.5 KiB
C++
/*
|
|
* \brief Downlink interface in form of a NIC session component
|
|
* \author Martin Stein
|
|
* \date 2017-03-08
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2016-2017 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
/* Genode includes */
|
|
#include <os/session_policy.h>
|
|
|
|
/* local includes */
|
|
#include <component.h>
|
|
#include <uplink.h>
|
|
|
|
using namespace Net;
|
|
using namespace Genode;
|
|
|
|
|
|
/**************************
|
|
** Communication_buffer **
|
|
**************************/
|
|
|
|
Communication_buffer::Communication_buffer(Ram_session &ram,
|
|
Genode::size_t const size)
|
|
:
|
|
Ram_dataspace_capability(ram.alloc(size)), _ram(ram)
|
|
{ }
|
|
|
|
|
|
/****************************
|
|
** Session_component_base **
|
|
****************************/
|
|
|
|
Session_component_base::
|
|
Session_component_base(Allocator &guarded_alloc_backing,
|
|
size_t const guarded_alloc_amount,
|
|
Ram_session &buf_ram,
|
|
size_t const tx_buf_size,
|
|
size_t const rx_buf_size)
|
|
:
|
|
_guarded_alloc(&guarded_alloc_backing, guarded_alloc_amount),
|
|
_range_alloc(&_guarded_alloc), _tx_buf(buf_ram, tx_buf_size),
|
|
_rx_buf(buf_ram, rx_buf_size)
|
|
{ }
|
|
|
|
|
|
/***********************
|
|
** Session_component **
|
|
***********************/
|
|
|
|
Net::Session_component::Session_component(Allocator &alloc,
|
|
size_t const amount,
|
|
size_t const tx_buf_size,
|
|
size_t const rx_buf_size,
|
|
Xml_node config,
|
|
Timer::Connection &timer,
|
|
Duration &curr_time,
|
|
Env &env)
|
|
:
|
|
Session_component_base(alloc, amount, env.ram(), tx_buf_size, rx_buf_size),
|
|
Session_rpc_object(env.rm(), _tx_buf, _rx_buf, &_range_alloc,
|
|
env.ep().rpc_ep()),
|
|
Interface(env.ep(), config.attribute_value("downlink", Interface_label()),
|
|
timer, curr_time, config.attribute_value("time", false),
|
|
_guarded_alloc),
|
|
_uplink(env, config, timer, curr_time, alloc),
|
|
_link_state_handler(env.ep(), *this, &Session_component::_handle_link_state)
|
|
{
|
|
_tx.sigh_ready_to_ack(_sink_ack);
|
|
_tx.sigh_packet_avail(_sink_submit);
|
|
_rx.sigh_ack_avail(_source_ack);
|
|
_rx.sigh_ready_to_submit(_source_submit);
|
|
Interface::remote(_uplink);
|
|
_uplink.Interface::remote(*this);
|
|
_uplink.link_state_sigh(_link_state_handler);
|
|
_print_state();
|
|
}
|
|
|
|
|
|
void Session_component::_print_state()
|
|
{
|
|
log("\033[33m(new state)\033[0m \033[32mMAC address\033[0m ", mac_address(),
|
|
" \033[32mlink state\033[0m ", link_state());
|
|
}
|
|
|
|
|
|
void Session_component::_handle_link_state()
|
|
{
|
|
_print_state();
|
|
if (!_link_state_sigh.valid()) {
|
|
warning("failed to forward signal");
|
|
return;
|
|
}
|
|
Signal_transmitter(_link_state_sigh).submit();
|
|
}
|
|
|
|
|
|
/**********
|
|
** Root **
|
|
**********/
|
|
|
|
Net::Root::Root(Env &env,
|
|
Allocator &alloc,
|
|
Xml_node config,
|
|
Timer::Connection &timer,
|
|
Duration &curr_time)
|
|
:
|
|
Root_component<Session_component, Genode::Single_client>(&env.ep().rpc_ep(),
|
|
&alloc),
|
|
_env(env), _config(config), _timer(timer), _curr_time(curr_time)
|
|
{ }
|
|
|
|
|
|
Session_component *Net::Root::_create_session(char const *args)
|
|
{
|
|
try {
|
|
size_t const ram_quota =
|
|
Arg_string::find_arg(args, "ram_quota").ulong_value(0);
|
|
|
|
size_t const tx_buf_size =
|
|
Arg_string::find_arg(args, "tx_buf_size").ulong_value(0);
|
|
|
|
size_t const rx_buf_size =
|
|
Arg_string::find_arg(args, "rx_buf_size").ulong_value(0);
|
|
|
|
size_t const session_size =
|
|
max((size_t)4096, sizeof(Session_component));
|
|
|
|
if (ram_quota < session_size) {
|
|
throw Insufficient_ram_quota(); }
|
|
|
|
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)
|
|
{
|
|
error("insufficient 'ram_quota' for session creation");
|
|
throw Insufficient_ram_quota();
|
|
}
|
|
return new (md_alloc())
|
|
Session_component(*md_alloc(), ram_quota - session_size,
|
|
tx_buf_size, rx_buf_size, _config, _timer,
|
|
_curr_time, _env);
|
|
}
|
|
catch (...) { throw Service_denied(); }
|
|
}
|