mirror of
https://github.com/darlinghq/darling.git
synced 2026-05-02 00:39:14 -05:00
387 lines
9.9 KiB
C
387 lines
9.9 KiB
C
/*
|
|
* Copyright (c) 2015 Apple Inc. All rights reserved.
|
|
*
|
|
* @APPLE_OSREFERENCE_LICENSE_HEADER_START@
|
|
*
|
|
* This file contains Original Code and/or Modifications of Original Code
|
|
* as defined in and that are subject to the Apple Public Source License
|
|
* Version 2.0 (the 'License'). You may not use this file except in
|
|
* compliance with the License. The rights granted to you under the License
|
|
* may not be used to create, or enable the creation or redistribution of,
|
|
* unlawful or unlicensed copies of an Apple operating system, or to
|
|
* circumvent, violate, or enable the circumvention or violation of, any
|
|
* terms of an Apple operating system software license agreement.
|
|
*
|
|
* Please obtain a copy of the License at
|
|
* http://www.opensource.apple.com/apsl/ and read it before using this file.
|
|
*
|
|
* The Original Code and all software distributed under the License are
|
|
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
|
|
* EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
|
|
* INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
|
|
* Please see the License for the specific language governing rights and
|
|
* limitations under the License.
|
|
*
|
|
* @APPLE_OSREFERENCE_LICENSE_HEADER_END@
|
|
*/
|
|
#ifndef _SYS_PERSONA_H_
|
|
#define _SYS_PERSONA_H_
|
|
|
|
#ifdef PRIVATE
|
|
#include <sys/param.h>
|
|
|
|
enum {
|
|
PERSONA_INVALID = 0,
|
|
PERSONA_GUEST = 1,
|
|
PERSONA_MANAGED = 2,
|
|
PERSONA_PRIV = 3,
|
|
PERSONA_SYSTEM = 4,
|
|
|
|
PERSONA_TYPE_MAX = PERSONA_SYSTEM,
|
|
};
|
|
|
|
#define PERSONA_ID_NONE ((uid_t)-1)
|
|
|
|
struct kpersona_info {
|
|
uint32_t persona_info_version;
|
|
|
|
uid_t persona_id; /* overlaps with UID */
|
|
int persona_type;
|
|
gid_t persona_gid;
|
|
uint32_t persona_ngroups;
|
|
gid_t persona_groups[NGROUPS];
|
|
uid_t persona_gmuid;
|
|
char persona_name[MAXLOGNAME+1];
|
|
|
|
/* TODO: MAC policies?! */
|
|
};
|
|
|
|
#define PERSONA_INFO_V1 1
|
|
#define PERSONA_INFO_V1_SIZE (sizeof(struct kpersona_info))
|
|
|
|
|
|
#define PERSONA_OP_ALLOC 1
|
|
#define PERSONA_OP_DEALLOC 2
|
|
#define PERSONA_OP_GET 3
|
|
#define PERSONA_OP_INFO 4
|
|
#define PERSONA_OP_PIDINFO 5
|
|
#define PERSONA_OP_FIND 6
|
|
|
|
#ifndef KERNEL
|
|
/*
|
|
* user space persona interface
|
|
*/
|
|
|
|
/*
|
|
* kpersona_alloc: Allocate a new in-kernel persona
|
|
*
|
|
* Parameters:
|
|
* info: Pointer to persona info structure describing the
|
|
* attributes of the persona to create / allocate.
|
|
*
|
|
* id: output: set to the ID of the created persona
|
|
*
|
|
* Note:
|
|
* The 'persona_id' field of the 'info' parameter is ignored.
|
|
*
|
|
* Return:
|
|
* != 0: ERROR
|
|
* == 0: Success
|
|
*/
|
|
int kpersona_alloc(struct kpersona_info *info, uid_t *id);
|
|
|
|
/*
|
|
* kpersona_dealloc: delete / destroy an in-kernel persona
|
|
*
|
|
* Parameters:
|
|
* id: the ID of the persona to destroy
|
|
*
|
|
* Return:
|
|
* < 0: ERROR
|
|
* 0: Success
|
|
*/
|
|
int kpersona_dealloc(uid_t id);
|
|
|
|
|
|
/*
|
|
* kpersona_get: retrieve the persona with which the current thread is running
|
|
*
|
|
* Parameters:
|
|
* id: output: will be filled with current thread's persona
|
|
* (or current processes persona) on success.
|
|
*
|
|
* Return:
|
|
* < 0: Thread is not running under any persona
|
|
* 0: Success (uuid is filled with running persona UUID)
|
|
*/
|
|
int kpersona_get(uid_t *id);
|
|
|
|
|
|
/*
|
|
* kpersona_info: gather info about the given persona
|
|
*
|
|
* Parameters:
|
|
* id: ID of the persona to investigate
|
|
*
|
|
* info: output: filled in with persona attributes on success.
|
|
*
|
|
* Return:
|
|
* < 0: ERROR
|
|
* 0: Success
|
|
*/
|
|
int kpersona_info(uid_t id, struct kpersona_info *info);
|
|
|
|
|
|
/*
|
|
* kpersona_pidinfo: gather persona info about the given PID
|
|
*
|
|
* Parameters:
|
|
* pid: PID of the process whose persona info we're to return
|
|
*
|
|
* info: output: filled in with persona attributes on success.
|
|
*
|
|
* Return:
|
|
* < 0: ERROR
|
|
* 0: Success
|
|
*/
|
|
int kpersona_pidinfo(pid_t pid, struct kpersona_info *info);
|
|
|
|
|
|
/*
|
|
* kpersona_find: lookup the kernel's UUID of a persona
|
|
*
|
|
* Parameters:
|
|
* name: Local login name of the persona.
|
|
* Set this to NULL to find personas by 'uid'.
|
|
*
|
|
* uid: UID of the persona.
|
|
* Set this to -1 to find personas by 'name'
|
|
*
|
|
* id: output: the ID(s) matching the input parameters
|
|
* idlen: input - size of 'id' buffer (in number of IDs)
|
|
* output - the total required size of the 'id' buffer
|
|
* (in number of IDs) - may be larger than input size
|
|
* Note:
|
|
* At least one of 'name' or 'uid' must be set.
|
|
*
|
|
* Return:
|
|
* < 0: ERROR
|
|
* >= 0: The number of IDs found to match the input parameters
|
|
*/
|
|
int kpersona_find(const char *name, uid_t uid, uid_t *id, size_t *idlen);
|
|
#endif /* !KERNEL */
|
|
|
|
#ifdef KERNEL_PRIVATE
|
|
/* XNU + kext private interface */
|
|
#include <sys/cdefs.h>
|
|
#include <sys/kauth.h>
|
|
#include <libkern/libkern.h>
|
|
|
|
#ifdef PERSONA_DEBUG
|
|
#define persona_dbg(fmt, ...) \
|
|
printf("[%4d] %s: " fmt "\n", \
|
|
current_proc() ? current_proc()->p_pid : -1, \
|
|
__func__, ## __VA_ARGS__)
|
|
#else
|
|
#define persona_dbg(fmt, ...) do { } while (0)
|
|
#endif
|
|
|
|
/*
|
|
* Persona
|
|
*/
|
|
#ifdef XNU_KERNEL_PRIVATE
|
|
/* only XNU proper needs to see the persona structure */
|
|
struct persona {
|
|
int32_t pna_refcount;
|
|
int32_t pna_valid;
|
|
|
|
uid_t pna_id;
|
|
int pna_type;
|
|
char pna_login[MAXLOGNAME+1];
|
|
|
|
kauth_cred_t pna_cred;
|
|
uid_t pna_pgid;
|
|
|
|
int pna_cred_locked; /* set upon first adoption */
|
|
|
|
LIST_ENTRY(persona) pna_list;
|
|
|
|
/* this could go away if we used a coalition */
|
|
LIST_HEAD(, proc) pna_members;
|
|
|
|
lck_mtx_t pna_lock;
|
|
|
|
/*
|
|
* We can add things here such as PID maps, UID maps, etc.
|
|
*/
|
|
#ifdef PERSONA_DEBUG
|
|
char pna_desc[128];
|
|
#endif
|
|
};
|
|
|
|
#define persona_lock(persona) lck_mtx_lock(&(persona)->pna_lock)
|
|
#define persona_unlock(persona) lck_mtx_unlock(&(persona)->pna_lock)
|
|
#define persona_try_lock(persona) lck_mtx_try_lock(&(persona)->pna_lock)
|
|
|
|
#define persona_lock_assert_held(persona) \
|
|
lck_mtx_assert(&(persona)->pna_lock, LCK_MTX_ASSERT_OWNED)
|
|
|
|
#ifdef PERSONA_DEBUG
|
|
static inline const char *persona_desc(struct persona *persona, int locked)
|
|
{
|
|
if (!persona)
|
|
return "<none>";
|
|
|
|
if (persona->pna_desc[0] != 0)
|
|
return persona->pna_desc;
|
|
|
|
if (!locked)
|
|
persona_lock(persona);
|
|
if (persona->pna_desc[0] != 0)
|
|
goto out_unlock;
|
|
|
|
char *p = &persona->pna_desc[0];
|
|
char *end = p + sizeof(persona->pna_desc) - 1;
|
|
|
|
*end = 0;
|
|
p += snprintf(p, end - p, "%s/%d:%d",
|
|
persona->pna_login,
|
|
kauth_cred_getuid(persona->pna_cred),
|
|
kauth_cred_getgid(persona->pna_cred));
|
|
|
|
if (p <= end)
|
|
*p = 0;
|
|
out_unlock:
|
|
if (!locked)
|
|
persona_unlock(persona);
|
|
|
|
return persona->pna_desc;
|
|
}
|
|
#else /* !PERSONA_DEBUG */
|
|
static inline const char *persona_desc(struct persona *persona, int locked)
|
|
{
|
|
(void)persona;
|
|
(void)locked;
|
|
return "<persona>";
|
|
}
|
|
#endif
|
|
|
|
#else /* !XNU_KERNEL_PRIVATE */
|
|
/* kexts should only see an opaque persona structure */
|
|
struct persona;
|
|
#endif
|
|
|
|
__BEGIN_DECLS
|
|
|
|
#ifndef _KAUTH_CRED_T
|
|
#define _KAUTH_CRED_T
|
|
typedef struct ucred *kauth_cred_t;
|
|
#endif /* !_KAUTH_CRED_T */
|
|
|
|
/* returns the persona ID for the given pesona structure */
|
|
uid_t persona_get_id(struct persona *persona);
|
|
|
|
/* returns the type of the persona (see enum above: PERSONA_GUEST, etc.) */
|
|
int persona_get_type(struct persona *persona);
|
|
|
|
/* returns ref on kauth_cred_t that must be dropped via kauth_cred_unref() */
|
|
kauth_cred_t persona_get_cred(struct persona *persona);
|
|
|
|
/* returns a reference that must be released with persona_put() */
|
|
struct persona *persona_lookup(uid_t id);
|
|
|
|
/*
|
|
* returns non-zero on error, on success returns 0 and updates 'plen' to
|
|
* total found (could be more than original value of 'plen')
|
|
*/
|
|
int persona_find(const char *login, uid_t uid,
|
|
struct persona **persona, size_t *plen);
|
|
|
|
/* returns a reference to the persona tied to the current thread */
|
|
struct persona *current_persona_get(void);
|
|
|
|
/* get a reference to a persona structure */
|
|
struct persona *persona_get(struct persona *persona);
|
|
|
|
/* release a reference to a persona structure */
|
|
void persona_put(struct persona *persona);
|
|
|
|
#ifdef XNU_KERNEL_PRIVATE
|
|
|
|
#if CONFIG_PERSONAS
|
|
#include <sys/proc_internal.h>
|
|
|
|
/*
|
|
* In-kernel persona API
|
|
*/
|
|
extern uint32_t g_max_personas;
|
|
extern struct persona *g_system_persona;
|
|
|
|
void personas_bootstrap(void);
|
|
|
|
struct persona *persona_alloc(uid_t id, const char *login,
|
|
int type, int *error);
|
|
int persona_invalidate(struct persona *persona);
|
|
|
|
static inline int proc_has_persona(proc_t p)
|
|
{
|
|
if (p && p->p_persona)
|
|
return 1;
|
|
return 0;
|
|
}
|
|
|
|
static inline uid_t persona_id_from_proc(proc_t p)
|
|
{
|
|
if (p && p->p_persona)
|
|
return p->p_persona->pna_id;
|
|
return PERSONA_ID_NONE;
|
|
}
|
|
|
|
int persona_proc_inherit(proc_t child, proc_t parent);
|
|
|
|
int persona_proc_adopt_id(proc_t p, uid_t id,
|
|
kauth_cred_t auth_override);
|
|
int persona_proc_adopt(proc_t p, struct persona *persona,
|
|
kauth_cred_t auth_override);
|
|
int persona_proc_drop(proc_t p);
|
|
|
|
int persona_set_cred(struct persona *persona, kauth_cred_t cred);
|
|
int persona_set_cred_from_proc(struct persona *persona, proc_t proc);
|
|
|
|
uid_t persona_get_uid(struct persona *persona);
|
|
|
|
int persona_set_gid(struct persona *persona, gid_t gid);
|
|
gid_t persona_get_gid(struct persona *persona);
|
|
|
|
int persona_set_groups(struct persona *persona, gid_t *groups, int ngroups, uid_t gmuid);
|
|
int persona_get_groups(struct persona *persona, int *ngroups, gid_t *groups, int groups_sz);
|
|
|
|
uid_t persona_get_gmuid(struct persona *persona);
|
|
|
|
int persona_get_login(struct persona *persona, char login[MAXLOGNAME+1]);
|
|
|
|
/* returns a reference that must be released with persona_put() */
|
|
struct persona *persona_proc_get(pid_t pid);
|
|
|
|
#else /* !CONFIG_PERSONAS */
|
|
|
|
static inline int proc_has_persona(__unused proc_t p)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline uid_t persona_id_from_proc(__unused proc_t p)
|
|
{
|
|
return PERSONA_ID_NONE;
|
|
}
|
|
|
|
#endif /* CONFIG_PERSONAS */
|
|
#endif /* XNU_KERNEL_PRIVATE */
|
|
__END_DECLS
|
|
|
|
#endif /* KERNEL_PRIVATE */
|
|
|
|
#endif /* PRIVATE */
|
|
#endif /* _SYS_PERSONA_H_ */
|