os: introduce new "Uplink" session

Adds new Uplink session interface, the corresponding client side (Client,
Connection), and the corresponding API archives. An Uplink session is almost
the same as a NIC session with the difference that the roles of the end points
are swapped. An Uplink client is the one that provides a network interface
(for instance, a NIC driver) whereas an Uplink server is the one that uses
that network interface (for instance, a networking stack).

Therefore, in contrast to the NIC session, MAC address and link state come from
the Uplink client. The link state is reflected through the lifetime of an
Uplink session: The client requests the session only when the link state is
"UP" and closes it whenever the link state becomes "DOWN" again. The MAC
address is transmitted from the Uplink client to the Uplink server as an
argument of the session request.

Ref #3961
This commit is contained in:
Martin Stein 2020-12-07 16:44:21 +01:00 committed by Norman Feske
parent 9222463565
commit cf72d1aac3
7 changed files with 319 additions and 0 deletions

View File

@ -0,0 +1,26 @@
/*
* \brief Uplink session capability type
* \author Martin Stein
* \date 2020-11-30
*/
/*
* Copyright (C) 2020 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.
*/
#ifndef _UPLINK_SESSION__CAPABILITY_H_
#define _UPLINK_SESSION__CAPABILITY_H_
/* Genode includes */
#include <base/capability.h>
#include <uplink_session/uplink_session.h>
namespace Uplink {
typedef Genode::Capability<Session> Session_capability;
}
#endif /* _UPLINK_SESSION__CAPABILITY_H_ */

View File

@ -0,0 +1,61 @@
/*
* \brief Client-side Uplink session interface
* \author Martin Stein
* \date 2020-11-30
*/
/*
* Copyright (C) 2020 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.
*/
#ifndef _UPLINK_SESSION__CLIENT_H_
#define _UPLINK_SESSION__CLIENT_H_
/* Genode includes */
#include <base/rpc_client.h>
#include <uplink_session/capability.h>
#include <packet_stream_tx/client.h>
#include <packet_stream_rx/client.h>
namespace Uplink { class Session_client; }
class Uplink::Session_client : public Genode::Rpc_client<Session>
{
private:
Packet_stream_tx::Client<Tx> _tx;
Packet_stream_rx::Client<Rx> _rx;
public:
/**
* Constructor
*
* \param tx_buffer_alloc allocator used for managing the
* transmission buffer
*/
Session_client(Session_capability session,
Genode::Range_allocator &tx_buffer_alloc,
Genode::Region_map &rm)
:
Genode::Rpc_client<Session>(session),
_tx(call<Rpc_tx_cap>(), rm, tx_buffer_alloc),
_rx(call<Rpc_rx_cap>(),rm )
{ }
/******************************
** Uplink session interface **
******************************/
Tx *tx_channel() override { return &_tx; }
Rx *rx_channel() override { return &_rx; }
Tx::Source *tx() override { return _tx.source(); }
Rx::Sink *rx() override { return _rx.sink(); }
};
#endif /* _UPLINK_SESSION__CLIENT_H_ */

View File

@ -0,0 +1,60 @@
/*
* \brief Connection to Uplink service
* \author Martin Stein
* \date 2020-11-30
*/
/*
* Copyright (C) 2020 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.
*/
#ifndef _UPLINK_SESSION__CONNECTION_H_
#define _UPLINK_SESSION__CONNECTION_H_
/* Genode includes */
#include <uplink_session/client.h>
#include <base/connection.h>
#include <base/allocator.h>
#include <net/mac_address.h>
namespace Uplink { struct Connection; }
struct Uplink::Connection : Genode::Connection<Session>, Session_client
{
/**
* Constructor
*
* \param tx_buffer_alloc allocator used for managing the
* transmission buffer
* \param tx_buf_size size of transmission buffer in bytes
* \param rx_buf_size size of reception buffer in bytes
*/
Connection(Genode::Env &env,
Genode::Range_allocator *tx_block_alloc,
Genode::size_t tx_buf_size,
Genode::size_t rx_buf_size,
Net::Mac_address const &mac_address,
char const *label = "")
:
Genode::Connection<Session>(
env,
session(
env.parent(),
"ram_quota=%ld, cap_quota=%ld, mac_address=\"%s\", "
"tx_buf_size=%ld, rx_buf_size=%ld, label=\"%s\"",
32 * 1024 * sizeof(long) + tx_buf_size + rx_buf_size,
CAP_QUOTA,
Genode::String<18>(mac_address).string(),
tx_buf_size,
rx_buf_size,
label)),
Session_client(cap(), *tx_block_alloc, env.rm())
{ }
};
#endif /* _UPLINK_SESSION__CONNECTION_H_ */

View File

@ -0,0 +1,59 @@
/*
* \brief Server-side Uplink session interface
* \author Martin Stein
* \date 2020-11-30
*/
/*
* Copyright (C) 2020 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.
*/
#ifndef _UPLINK_SESSION__RPC_OBJECT_H_
#define _UPLINK_SESSION__RPC_OBJECT_H_
/* Genode includes */
#include <uplink_session/uplink_session.h>
#include <packet_stream_tx/rpc_object.h>
#include <packet_stream_rx/rpc_object.h>
namespace Uplink { class Session_rpc_object; }
class Uplink::Session_rpc_object : public Genode::Rpc_object<Session, Session_rpc_object>
{
protected:
Packet_stream_tx::Rpc_object<Tx> _tx;
Packet_stream_rx::Rpc_object<Rx> _rx;
public:
/**
* Constructor
*
* \param tx_ds dataspace used as communication buffer
* for the tx packet stream
* \param rx_ds dataspace used as communication buffer
* for the rx packet stream
* \param rx_buffer_alloc allocator used for managing the communication
* buffer of the rx packet stream
* \param ep entry point used for packet-stream channels
*/
Session_rpc_object(Genode::Region_map &rm,
Genode::Dataspace_capability tx_ds,
Genode::Dataspace_capability rx_ds,
Genode::Range_allocator *rx_buffer_alloc,
Genode::Rpc_entrypoint &ep)
:
_tx(tx_ds, rm, ep),
_rx(rx_ds, rm, *rx_buffer_alloc, ep)
{ }
Genode::Capability<Tx> _tx_cap() { return _tx.cap(); }
Genode::Capability<Rx> _rx_cap() { return _rx.cap(); }
};
#endif /* _UPLINK_SESSION__RPC_OBJECT_H_ */

View File

@ -0,0 +1,110 @@
/*
* \brief Uplink session interface
* \author Martin Stein
* \date 2020-11-30
*/
/*
* Copyright (C) 2020 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.
*/
#ifndef _UPLINK_SESSION__UPLINK_SESSION_H_
#define _UPLINK_SESSION__UPLINK_SESSION_H_
/* Genode includes */
#include <session/session.h>
#include <packet_stream_tx/packet_stream_tx.h>
#include <packet_stream_rx/packet_stream_rx.h>
namespace Uplink {
struct Session;
using Genode::Packet_stream_sink;
using Genode::Packet_stream_source;
typedef Genode::Packet_descriptor Packet_descriptor;
}
/*
* Uplink session interface
*
* An Uplink session corresponds to a network adaptor, which can be used to
* transmit and receive network packets. Payload is communicated over the
* packet-stream interface set up between 'Session_client' and
* 'Session_server'.
*
* Even though the methods 'tx', 'tx_channel', 'rx', and 'rx_channel' are
* specific for the client side of the Uplink session interface, they are part of
* the abstract 'Session' class to enable the client-side use of the Uplink
* interface via a pointer to the abstract 'Session' class. This way, we can
* transparently co-locate the packet-stream server with the client in same
* program.
*/
struct Uplink::Session : Genode::Session
{
enum { QUEUE_SIZE = 1024 };
/*
* Types used by the client stub code and server implementation
*
* The acknowledgement queue has always the same size as the submit
* queue. We access the packet content as a char pointer.
*/
typedef Genode::Packet_stream_policy<Genode::Packet_descriptor,
QUEUE_SIZE, QUEUE_SIZE, char> Policy;
typedef Packet_stream_tx::Channel<Policy> Tx;
typedef Packet_stream_rx::Channel<Policy> Rx;
/**
* \noapi
*/
static const char *service_name() { return "Uplink"; }
/*
* An Uplink session consumes a dataspace capability for the server-side
* session object, a session capability, two packet-stream dataspaces for
* rx and tx, and four signal context capabilities for the data-flow
* signals.
*/
enum { CAP_QUOTA = 8 };
virtual ~Session() { }
/**
* Request packet-transmission channel
*/
virtual Tx *tx_channel() { return 0; }
/**
* Request packet-reception channel
*/
virtual Rx *rx_channel() { return 0; }
/**
* Request client-side packet-stream interface of tx channel
*/
virtual Tx::Source *tx() { return 0; }
/**
* Request client-side packet-stream interface of rx channel
*/
virtual Rx::Sink *rx() { return 0; }
/*******************
** RPC interface **
*******************/
GENODE_RPC(Rpc_tx_cap, Genode::Capability<Tx>, _tx_cap);
GENODE_RPC(Rpc_rx_cap, Genode::Capability<Rx>, _rx_cap);
GENODE_RPC_INTERFACE(Rpc_tx_cap, Rpc_rx_cap);
};
#endif /* _UPLINK_SESSION__UPLINK_SESSION_H_ */

View File

@ -0,0 +1,2 @@
MIRRORED_FROM_REP_DIR := include/uplink_session include/net
include $(REP_DIR)/recipes/api/session.inc

View File

@ -0,0 +1 @@
2020-12-09 42290160000ae6dd05f74b8f26541c3ebdfc2118