genode/base-nova/src/base/server/server.cc

233 lines
6.0 KiB
C++
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief NOVA-specific support code for the server-side RPC API
* \author Norman Feske
* \author Sebastian Sumpf
* \date 2010-01-13
*/
/*
2012-01-03 15:35:05 +01:00
* Copyright (C) 2010-2012 Genode Labs GmbH
2011-12-22 16:19:25 +01:00
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
/* Genode includes */
#include <base/printf.h>
#include <base/rpc_server.h>
#include <base/cap_sel_alloc.h>
/* NOVA includes */
#include <nova/syscalls.h>
using namespace Genode;
/**
* Function gets called during destruction of an entrypoint.
* It is just here to make sure nobody else is in the entrypoint
* anymore (all communication portals must be revoked beforehand).
*/
static void _cleanup_entry()
{
Nova::reply(Thread_base::myself()->stack_top());
}
2011-12-22 16:19:25 +01:00
/***********************
** Server entrypoint **
***********************/
Untyped_capability Rpc_entrypoint::_manage(Rpc_object_base *obj)
{
using namespace Nova;
unsigned ec_sel = tid().ec_sel;
addr_t pt_sel = cap_selector_allocator()->alloc(1);
unsigned pd_sel = cap_selector_allocator()->pd_sel();
2011-12-22 16:19:25 +01:00
/* create portal */
uint8_t res = create_pt(pt_sel, pd_sel, ec_sel, Mtd(0),
(mword_t)_activation_entry);
2011-12-22 16:19:25 +01:00
if (res) {
PERR("could not create server-object portal, create_pt returned %d\n",
res);
return Untyped_capability();
}
/* create cleanup portal */
res = create_pt(pt_sel + 1, pd_sel, ec_sel, Mtd(0),
(mword_t)_cleanup_entry);
if (res) {
PERR("could not create server-object-cleanup portal, create_pt returned %d\n",
res);
return Untyped_capability();
}
2011-12-22 16:19:25 +01:00
/* create capability to portal as destination address */
Untyped_capability ep_cap = Native_capability(pt_sel, 0);
/* supplement capability with object ID obtained from CAP session */
Untyped_capability new_obj_cap = _cap_session->alloc(ep_cap);
if (new_obj_cap.dst() != ep_cap.dst()) {
Nova::revoke(Nova::Obj_crd(new_obj_cap.dst(), 0), true);
cap_selector_allocator()->free(new_obj_cap.dst(), 0);
new_obj_cap = Native_capability(ep_cap.dst(), new_obj_cap.local_name());
}
2011-12-22 16:19:25 +01:00
/* add server object to object pool */
obj->cap(new_obj_cap);
insert(obj);
/* return capability that uses the object id as badge */
return new_obj_cap;
}
void Rpc_entrypoint::_dissolve(Rpc_object_base *obj)
{
/* Avoid any incoming IPC early */
Nova::revoke(Nova::Obj_crd(obj->cap().dst(), 0), true);
2011-12-22 16:19:25 +01:00
/* make sure nobody is able to find this object */
remove(obj);
/*
* The activation may execute a blocking operation
* in a dispatch function. Before resolving the
* corresponding object, we need to ensure that
* it is no longer used by an activation. Therefore,
* we to need cancel an eventually blocking operation
* and let the activation leave the context of the
* object.
*/
_leave_server_object(obj);
/* wait until nobody is inside dispatch */
obj->lock();
/* now the object may be safely destructed */
_cap_session->free(obj->cap());
/* revoke cleanup portal */
Nova::revoke(Nova::Obj_crd(obj->cap().dst() + 1, 0), true);
/* free 2 cap selectors */
cap_selector_allocator()->free(obj->cap().dst(), 1);
}
2011-12-22 16:19:25 +01:00
void Rpc_entrypoint::_activation_entry()
{
#ifdef __x86_64__
addr_t id_pt; asm volatile ("" : "=D" (id_pt));
#else
addr_t id_pt; asm volatile ("" : "=a" (id_pt));
#endif
/* retrieve portal id from eax */
2011-12-22 16:19:25 +01:00
Rpc_entrypoint *ep = static_cast<Rpc_entrypoint *>(Thread_base::myself());
Ipc_server srv(&ep->_snd_buf, &ep->_rcv_buf);
/* destination of next reply */
srv.dst(Native_capability(id_pt, srv.badge()));
int opcode = 0;
srv >> IPC_WAIT >> opcode;
/* set default return value */
srv.ret(ERR_INVALID_OBJECT);
/* atomically lookup and lock referenced object */
{
Lock::Guard lock_guard(ep->_curr_obj_lock);
ep->_curr_obj = ep->obj_by_id(srv.badge());
if (!ep->_curr_obj) {
PERR("could not look up server object, return from call badge=%lx id_pt=%lx", srv.badge(), id_pt);
ep->_curr_obj_lock.unlock();
2011-12-22 16:19:25 +01:00
srv << IPC_REPLY;
}
ep->_curr_obj->lock();
}
/* dispatch request */
try { srv.ret(ep->_curr_obj->dispatch(opcode, srv, srv)); }
catch (Blocking_canceled) { }
ep->_curr_obj->unlock();
ep->_curr_obj = 0;
ep->_rcv_buf.rcv_prepare_pt_sel_window((Nova::Utcb *)ep->utcb());
srv << IPC_REPLY;
}
void Rpc_entrypoint::entry()
{
/*
* Thread entry is not used for activations on NOVA
*/
}
void Rpc_entrypoint::_leave_server_object(Rpc_object_base *obj)
{
Nova::Utcb *utcb = reinterpret_cast<Nova::Utcb *>(Thread_base::myself()->utcb());
/* don't call ourself */
if (utcb != reinterpret_cast<Nova::Utcb *>(&_context->utcb)) {
utcb->mtd = 0;
if (Nova::call(obj->cap().dst() + 1))
PERR("could not clean up entry point");
}
}
2011-12-22 16:19:25 +01:00
void Rpc_entrypoint::_block_until_cap_valid() { }
void Rpc_entrypoint::activate()
{
/*
* In contrast to a normal thread, a server activation is created at
* construction time. However, it executes no code because processing time
* is always provided by the caller of the server activation. To delay the
* processing of requests until the 'activate' function is called, we grab the
* '_curr_obj_lock' on construction and release it here.
*/
_curr_obj_lock.unlock();
}
Rpc_entrypoint::Rpc_entrypoint(Cap_session *cap_session, size_t stack_size,
const char *name, bool start_on_construction)
:
Thread_base(name, stack_size),
_curr_obj(0),
_curr_obj_lock(Lock::LOCKED),
_cap_session(cap_session)
{
using namespace Nova;
/*
* Create EC here to ensure that 'tid()' returns a valid 'ec_sel'
* portal selector even before 'activate' is called.
*/
mword_t *sp = (mword_t *)&_context->stack[-4];
mword_t utcb = (mword_t) &_context->utcb;
/* create local EC */
enum { CPU_NO = 0, GLOBAL = false };
int res = create_ec(_tid.ec_sel, Cap_selector_allocator::pd_sel(),
CPU_NO, utcb, (mword_t)sp,
_tid.exc_pt_sel, GLOBAL);
if (res)
PDBG("create_ec returned %d", res);
_rcv_buf.rcv_prepare_pt_sel_window((Utcb *)utcb);
if (start_on_construction)
activate();
}