mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
6894ced63b
This patch implements 'execve' in Genode's libc. The mechanism relies on the dynamic linker's ability to replace the loaded binary while keeping crucial libraries - in particular the libc - intact. The state outside the libc is wiped. For this reason, all libc internal state needed beyond the 'execve' call must be allocated on a heap separate from the application-owned malloc heap. E.g., libc-internal file-descriptor objects must not be allocated or refer to any memory object allocated from the malloc heap. Issue #3481
117 lines
2.4 KiB
C++
117 lines
2.4 KiB
C++
/*
|
|
* \brief file descriptor allocator interface
|
|
* \author Christian Prochaska
|
|
* \date 2010-01-21
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2010-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.
|
|
*/
|
|
|
|
#ifndef _LIBC_PLUGIN__FD_ALLOC_H_
|
|
#define _LIBC_PLUGIN__FD_ALLOC_H_
|
|
|
|
#include <base/lock.h>
|
|
#include <base/log.h>
|
|
#include <os/path.h>
|
|
#include <base/allocator.h>
|
|
#include <base/id_space.h>
|
|
#include <util/xml_generator.h>
|
|
|
|
/* libc includes */
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <libc-plugin/plugin.h>
|
|
|
|
enum { MAX_NUM_FDS = 1024 };
|
|
|
|
namespace Libc {
|
|
|
|
/**
|
|
* Plugin-specific file-descriptor context
|
|
*/
|
|
struct Plugin_context { virtual ~Plugin_context() { } };
|
|
|
|
enum { ANY_FD = -1 };
|
|
|
|
struct File_descriptor
|
|
{
|
|
Genode::Lock lock { };
|
|
|
|
typedef Genode::Id_space<File_descriptor> Id_space;
|
|
Id_space::Element _elem;
|
|
|
|
int const libc_fd = _elem.id().value;
|
|
|
|
char const *fd_path = nullptr; /* for 'fchdir', 'fstat' */
|
|
|
|
Plugin *plugin;
|
|
Plugin_context *context;
|
|
|
|
int flags = 0; /* for 'fcntl' */
|
|
bool cloexec = 0; /* for 'fcntl' */
|
|
|
|
File_descriptor(Id_space &id_space, Plugin &plugin, Plugin_context &context)
|
|
: _elem(*this, id_space), plugin(&plugin), context(&context) { }
|
|
|
|
File_descriptor(Id_space &id_space, Plugin &plugin, Plugin_context &context,
|
|
Id_space::Id id)
|
|
: _elem(*this, id_space, id), plugin(&plugin), context(&context) { }
|
|
|
|
void path(char const *newpath);
|
|
};
|
|
|
|
|
|
class File_descriptor_allocator
|
|
{
|
|
private:
|
|
|
|
Genode::Lock _lock;
|
|
|
|
Genode::Allocator &_alloc;
|
|
|
|
typedef File_descriptor::Id_space Id_space;
|
|
|
|
Id_space _id_space;
|
|
|
|
public:
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
File_descriptor_allocator(Genode::Allocator &_alloc);
|
|
|
|
/**
|
|
* Allocate file descriptor
|
|
*/
|
|
File_descriptor *alloc(Plugin *plugin, Plugin_context *context, int libc_fd = -1);
|
|
|
|
/**
|
|
* Release file descriptor
|
|
*/
|
|
void free(File_descriptor *fdo);
|
|
|
|
/**
|
|
* Prevent the use of the specified file descriptor
|
|
*/
|
|
void preserve(int libc_fd);
|
|
|
|
File_descriptor *find_by_libc_fd(int libc_fd);
|
|
|
|
void generate_info(Genode::Xml_generator &);
|
|
};
|
|
|
|
|
|
/**
|
|
* Return singleton instance of file-descriptor allocator
|
|
*/
|
|
extern File_descriptor_allocator *file_descriptor_allocator();
|
|
}
|
|
|
|
#endif /* _LIBC_PLUGIN__FD_ALLOC_H_ */
|