
There is important information about booting non-ack images in docs/UPDATING. ack/aout-format images can't be built any more, and booting clang/ELF-format ones is a little different. Updating to the new boot monitor is recommended. Changes in this commit: . drop boot monitor -> allowing dropping ack support . facility to copy ELF boot files to /boot so that old boot monitor can still boot fairly easily, see UPDATING . no more ack-format libraries -> single-case libraries . some cleanup of OBJECT_FMT, COMPILER_TYPE, etc cases . drop several ack toolchain commands, but not all support commands (e.g. aal is gone but acksize is not yet). . a few libc files moved to netbsd libc dir . new /bin/date as minix date used code in libc/ . test compile fix . harmonize includes . /usr/lib is no longer special: without ack, /usr/lib plays no kind of special bootstrapping role any more and bootstrapping is done exclusively through packages, so releases depend even less on the state of the machine making them now. . rename nbsd_lib* to lib* . reduce mtree
91 lines
3.2 KiB
C
91 lines
3.2 KiB
C
|
|
#ifndef _MINIX_SAFECOPIES_H
|
|
#define _MINIX_SAFECOPIES_H 1
|
|
|
|
#include <minix/sys_config.h>
|
|
#include <minix/types.h>
|
|
#include <minix/vm.h>
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
int cp_flags; /* CPF_* below */
|
|
union {
|
|
struct {
|
|
/* CPF_DIRECT */
|
|
endpoint_t cp_who_to; /* grantee */
|
|
vir_bytes cp_start; /* memory */
|
|
size_t cp_len; /* size in bytes */
|
|
char cp_reserved[8]; /* future use */
|
|
} cp_direct;
|
|
struct {
|
|
/* CPF_INDIRECT */
|
|
endpoint_t cp_who_to; /* grantee */
|
|
endpoint_t cp_who_from; /* previous granter */
|
|
cp_grant_id_t cp_grant; /* previous grant */
|
|
char cp_reserved[8];/* future use */
|
|
} cp_indirect;
|
|
struct {
|
|
/* CPF_MAGIC */
|
|
endpoint_t cp_who_from; /* granter */
|
|
endpoint_t cp_who_to; /* grantee */
|
|
vir_bytes cp_start; /* memory */
|
|
size_t cp_len; /* size in bytes */
|
|
char cp_reserved[8]; /* future use */
|
|
} cp_magic;
|
|
} cp_u;
|
|
char cp_reserved[8]; /* future use */
|
|
} cp_grant_t;
|
|
|
|
/* Vectored safecopy. */
|
|
struct vscp_vec {
|
|
/* Exactly one of the following must be SELF. */
|
|
endpoint_t v_from; /* source */
|
|
endpoint_t v_to; /* destination */
|
|
|
|
cp_grant_id_t v_gid; /* grant id of other process */
|
|
size_t v_offset; /* offset in other grant */
|
|
vir_bytes v_addr; /* address in copier's space */
|
|
size_t v_bytes; /* no. of bytes */
|
|
};
|
|
|
|
/* Invalid grant number. */
|
|
#define GRANT_INVALID ((cp_grant_id_t) -1)
|
|
#define GRANT_VALID(g) ((g) > GRANT_INVALID)
|
|
|
|
/* Operations: any combination is ok. */
|
|
#define CPF_READ 0x000001 /* Granted process may read. */
|
|
#define CPF_WRITE 0x000002 /* Granted process may write. */
|
|
#define CPF_MAP 0x000004 /* Granted process may map. */
|
|
|
|
/* Internal flags. */
|
|
#define CPF_USED 0x000100 /* Grant slot in use. */
|
|
#define CPF_DIRECT 0x000200 /* Grant from this process to another. */
|
|
#define CPF_INDIRECT 0x000400 /* Grant from grant to another. */
|
|
#define CPF_MAGIC 0x000800 /* Grant from any to any. */
|
|
#define CPF_VALID 0x001000 /* Grant slot contains valid grant. */
|
|
|
|
/* Prototypes for functions in libsys. */
|
|
_PROTOTYPE( cp_grant_id_t cpf_grant_direct, (endpoint_t, vir_bytes, size_t, int));
|
|
_PROTOTYPE( cp_grant_id_t cpf_grant_indirect, (endpoint_t, endpoint_t, cp_grant_id_t));
|
|
_PROTOTYPE( cp_grant_id_t cpf_grant_magic, (endpoint_t, endpoint_t, vir_bytes, size_t, int));
|
|
_PROTOTYPE( int cpf_revoke, (cp_grant_id_t grant_id));
|
|
_PROTOTYPE( int cpf_lookup, (cp_grant_id_t g, endpoint_t *ep, endpoint_t *ep2));
|
|
|
|
_PROTOTYPE( int cpf_getgrants, (cp_grant_id_t *grant_ids, int n));
|
|
_PROTOTYPE( int cpf_setgrant_direct, (cp_grant_id_t g, endpoint_t who,
|
|
vir_bytes addr, size_t size, int access));
|
|
_PROTOTYPE( int cpf_setgrant_indirect, (cp_grant_id_t g, endpoint_t who_to,
|
|
endpoint_t who_from, cp_grant_id_t his_g));
|
|
_PROTOTYPE( int cpf_setgrant_magic, (cp_grant_id_t g, endpoint_t who_to,
|
|
endpoint_t who_from, vir_bytes addr, size_t bytes, int access));
|
|
_PROTOTYPE( int cpf_setgrant_disable, (cp_grant_id_t grant_id));
|
|
_PROTOTYPE( void cpf_reload, (void));
|
|
|
|
/* Set a process' grant table location and size (in-kernel only). */
|
|
#define _K_SET_GRANT_TABLE(rp, ptr, entries) \
|
|
priv(rp)->s_grant_table= (ptr); \
|
|
priv(rp)->s_grant_entries= (entries);
|
|
|
|
#endif /* _MINIX_SAFECOPIES_H */
|
|
|