[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Minios-devel] [UNIKRAFT PATCH V3 2/6] external plat: Add the solo5 API declaration in solo5.h
Hi Haibo, this patch looks good. -- Felipe Reviewed-by: Felipe Huici <felipe.huici@xxxxxxxxx> On 16.08.19, 04:59, "Minios-devel on behalf of Haibo Xu" <minios-devel-bounces@xxxxxxxxxxxxxxxxxxxx on behalf of haibo.xu@xxxxxxx> wrote: Add the solo5 binding APIs declaration to introduce the functions which will be used in the implementation of related platform interface. Signed-off-by: Haibo Xu <haibo.xu@xxxxxxx> --- include/solo5/setup.h | 49 ++++++++ include/solo5/solo5.h | 280 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 329 insertions(+) create mode 100644 include/solo5/setup.h create mode 100644 include/solo5/solo5.h diff --git a/include/solo5/setup.h b/include/solo5/setup.h new file mode 100644 index 0000000..5936901 --- /dev/null +++ b/include/solo5/setup.h @@ -0,0 +1,49 @@ +/* SPDX-License-Identifier: BSD-3-Clause */ +/* + * Authors: Haibo Xu <haibo.xu@xxxxxxx> + * + * Copyright (c) 2018, Arm Ltd. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the copyright holder nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * THIS HEADER MAY NOT BE EXTRACTED OR MODIFIED IN ANY WAY. + */ + +#ifndef __SETUP_H__ +#define __SETUP_H__ + +#include <sys/types.h> + +struct libsolo5plat_opts { + struct { + void *base; + size_t len; + } heap; +}; + +extern struct libsolo5plat_opts _libsolo5plat_opts; + +#endif /* __SETUP_H__ */ diff --git a/include/solo5/solo5.h b/include/solo5/solo5.h new file mode 100644 index 0000000..a293513 --- /dev/null +++ b/include/solo5/solo5.h @@ -0,0 +1,280 @@ +/* + * Copyright (c) 2015-2018 Contributors as noted in the AUTHORS file + * + * This file is part of Solo5, a sandboxed execution environment. + * + * Permission to use, copy, modify, and/or distribute this software + * for any purpose with or without fee is hereby granted, provided + * that the above copyright notice and this permission notice appear + * in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL + * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE + * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR + * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS + * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef SOLO5_H_INCLUDED +#define SOLO5_H_INCLUDED + +#include <stdint.h> + +typedef unsigned long size_t; +/* + * Solo5 public APIs. + * + * These APIs are still under development and may change at any time. + * + * The documentation in this file reflects the *intent* of the API; current + * Solo5 implementations may deviate from the specified behaviour in the short + * term. If you find such cases that are not documented here, please file a + * bug. + */ + +/* + * Error handling. + * + * For APIs returning a solo5_result_t: + * + * Unless otherwise documented below, these APIs return only SOLO5_R_OK on + * success. + * + * Application developers MUST NOT RELY on these APIs returning + * SOLO5_R_EINVAL or SOLO5_R_EUNSPEC. Solo5 implementations MAY choose to + * abort execution of the application in preference to returning an error + * result on failure. + * + * For APIs NOT returning a solo5_result_t: + * + * These APIs either: + * + * a) always succeed under normal operation, or + * b) abort execution of the application on failure. + * + * For the avoidance of doubt, calling APIs on devices that are not present + * WILL result in aborting execution of the application. + */ +typedef enum { + /* + * The operation completed successfully. + */ + SOLO5_R_OK = 0, + /* + * The operation cannot be completed at this time. Retrying an identical + * operation at a later time may succeed. + */ + SOLO5_R_AGAIN, + /* + * Invalid argument. + */ + SOLO5_R_EINVAL, + /* + * The operation failed due to an unspecified error. + */ + SOLO5_R_EUNSPEC +} solo5_result_t; + +/* + * Application entry point. + * + * The application is passed a pointer (*info) to a statically allocated + * (struct solo5_start_info) with start of day information; any data in this + * structure should be treated as read-only. + * + * The application receives the (info->heap_start, info->heap_size) of a + * single, contiguous, non-executable, read/write memory region it may use for + * heap or stack(s) as it sees fit. At entry, the application is provided with + * an initial stack growing down from (info->heap_start + info->heap_size). + * + * The application MUST NOT make any further assumptions about memory layout, + * including where executable code or static data are located in memory. + * + * Returning from this function is equivalent to calling solo5_exit(<return + * value>). + */ +struct solo5_start_info { + //const char *cmdline; + char *cmdline; + uintptr_t heap_start; + size_t heap_size; +}; + +int solo5_app_main(const struct solo5_start_info *info); + +/* + * Exit the application, returning (status) to the host if possible. + * + * Status values of 255 and above are reserved for use by Solo5. + */ +#define SOLO5_EXIT_SUCCESS 0 +#define SOLO5_EXIT_FAILURE 1 +#define SOLO5_EXIT_ABORT 255 + +void solo5_exit(int status) __attribute__((noreturn)); + +/* + * Abort the application, returning a status of SOLO5_EXIT_ABORT to the host if + * possible. + * + * This call is intended to signal an abnormal exit to the host. Depending on + * the tender configuration, this may trigger further actions such a + * generating a core file. + */ +void solo5_abort(void) __attribute__((noreturn)); + +/* + * Time. + */ + +/* + * Solo5 type for time values, with nanosecond precision. + */ +typedef uint64_t solo5_time_t; + +/* + * Returns monotonic time since an unspecified period in the past. + */ +solo5_time_t solo5_clock_monotonic(void); + +/* + * Returns wall clock time in UTC since the UNIX epoch (1970-01-01). + */ +solo5_time_t solo5_clock_wall(void); + +/* + * Suspends execution of the application until either: + * + * a) monotonic time reaches (deadline), or + * b) solo5_net_read() would succeed. + * + * Returns true if solo5_net_read() will succeed, otherwise false. + * + * This interface may be extended in the future to allow for selection of I/O + * events of interest to the application. + */ +int solo5_yield(solo5_time_t deadline); + +/* + * Console I/O. + */ + +/* + * Writes (size) bytes from (*buf) to the console. + * + * Writing to the console is a best-effort operation: this operation will + * always succeed but may lose data, for example in the event of resource + * exhaustion on the host. + */ +void solo5_console_write(const char *buf, size_t size); + +/* + * Network I/O. + * + * Currently only a single Ethernet-style device is supported. + * + * These interfaces will change in the future to support multiple devices. + */ + +/* + * Ethernet address length in bytes. + */ +#define SOLO5_NET_ALEN 6 +/* + * Ethernet frame header (target, source, type) length in bytes. + */ +#define SOLO5_NET_HLEN 14 + +struct solo5_net_info { + uint8_t mac_address[SOLO5_NET_ALEN]; + size_t mtu; /* Not including Ethernet header */ +}; + +/* + * Retrieves information about the network device. Caller must supply space for + * struct solo5_net_info in (info). + */ +void solo5_net_info(struct solo5_net_info *info); + +/* + * Sends a single network packet from the buffer (*buf), without blocking. If + * the packet cannot be sent due to a transient error (e.g. no resources + * available) it will be silently dropped. + * + * The maximum allowed value for (size) is (solo5_net_info.mtu + + * SOLO5_NET_HLEN). The packet must include the ethernet frame header. + */ +solo5_result_t solo5_net_write(const uint8_t *buf, size_t size); + +/* + * Receives a single network packet into the buffer (*buf), without blocking. + * + * (size) must be at least (solo5_net_info.mtu + SOLO5_NET_HLEN). + * + * If no packets are available returns SOLO5_R_AGAIN, otherwise returns + * SOLO5_R_OK and the size of the received packet including the ethernet frame + * header in (*read_size). + */ +solo5_result_t solo5_net_read(uint8_t *buf, size_t size, size_t *read_size); + +/* + * Block I/O. + * + * Currently only a single block-addressable device is supported. + * + * The minimum unit of I/O which can be performed on a block device is defined + * by solo5_block_info.block_size. In practice we currently also limit the + * *maximum* unit of I/O to the block size. + * + * These interfaces will change in the future to support multiple devices and, + * depending on atomicity guarantees, may be extended to support I/O operations + * of >1 block per call. + */ + +/* + * Architecture-independent type for block device offsets, in bytes. + */ +typedef uint64_t solo5_off_t; + +struct solo5_block_info { + solo5_off_t capacity; /* Capacity of block device, bytes */ + solo5_off_t block_size; /* Minimum I/O unit (block size), bytes */ +}; + +/* + * Retrieves information about the block device. Caller must supply space for + * struct solo5_block_info in (info). + */ +void solo5_block_info(struct solo5_block_info *info); + +/* + * Writes data of (size) bytes from the buffer (*buf) to the block device, + * starting at byte (offset). Data is either written in it's entirety or not at + * all ("short writes" are not possible). + * + * Both (size) and (offset) must be a multiple of the block size, otherwise + * SOLO5_R_EINVAL is returned. + * + * NOTE: Current implementations further limit the *maximum* I/O size to a + * single block. + */ +solo5_result_t solo5_block_write(solo5_off_t offset, const uint8_t *buf, + size_t size); + +/* + * Reads data of (size) bytes into the buffer (*buf) from the block device, + * starting at byte (offset). Always reads the full amount of (size) bytes + * ("short reads" are not possible). + * + * Both (size) and (offset) must be a multiple of the block size, otherwise + * SOLO5_R_EINVAL is returned. + * + * NOTE: Current implementations further limit the *maximum* I/O size to a + * single block. + */ +solo5_result_t solo5_block_read(solo5_off_t offset, uint8_t *buf, size_t size); + +#endif -- 2.17.1 _______________________________________________ Minios-devel mailing list Minios-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/minios-devel _______________________________________________ Minios-devel mailing list Minios-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/minios-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |