| 1 | /*
|
|---|
| 2 | * Copyright (c) 2017 Jakub Jermar
|
|---|
| 3 | * All rights reserved.
|
|---|
| 4 | *
|
|---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 6 | * modification, are permitted provided that the following conditions
|
|---|
| 7 | * are met:
|
|---|
| 8 | *
|
|---|
| 9 | * - Redistributions of source code must retain the above copyright
|
|---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 13 | * documentation and/or other materials provided with the distribution.
|
|---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 15 | * derived from this software without specific prior written permission.
|
|---|
| 16 | *
|
|---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 27 | */
|
|---|
| 28 |
|
|---|
| 29 | /** @addtogroup generic
|
|---|
| 30 | * @{
|
|---|
| 31 | */
|
|---|
| 32 | /** @file
|
|---|
| 33 | */
|
|---|
| 34 |
|
|---|
| 35 | #include <cap/cap.h>
|
|---|
| 36 | #include <proc/task.h>
|
|---|
| 37 | #include <synch/spinlock.h>
|
|---|
| 38 | #include <abi/errno.h>
|
|---|
| 39 | #include <mm/slab.h>
|
|---|
| 40 |
|
|---|
| 41 | void cap_initialize(cap_t *cap, int handle)
|
|---|
| 42 | {
|
|---|
| 43 | cap->type = CAP_TYPE_INVALID;
|
|---|
| 44 | cap->handle = handle;
|
|---|
| 45 | cap->can_reclaim = NULL;
|
|---|
| 46 | }
|
|---|
| 47 |
|
|---|
| 48 | void caps_task_alloc(task_t *task)
|
|---|
| 49 | {
|
|---|
| 50 | task->caps = malloc(sizeof(cap_t) * MAX_CAPS, 0);
|
|---|
| 51 | }
|
|---|
| 52 |
|
|---|
| 53 | void caps_task_init(task_t *task)
|
|---|
| 54 | {
|
|---|
| 55 | for (int i = 0; i < MAX_CAPS; i++)
|
|---|
| 56 | cap_initialize(&task->caps[i], i);
|
|---|
| 57 | }
|
|---|
| 58 |
|
|---|
| 59 | void caps_task_free(task_t *task)
|
|---|
| 60 | {
|
|---|
| 61 | free(task->caps);
|
|---|
| 62 | }
|
|---|
| 63 |
|
|---|
| 64 | cap_t *cap_get(task_t *task, int handle, cap_type_t type)
|
|---|
| 65 | {
|
|---|
| 66 | if ((handle < 0) || (handle >= MAX_CAPS))
|
|---|
| 67 | return NULL;
|
|---|
| 68 | if (task->caps[handle].type != type)
|
|---|
| 69 | return NULL;
|
|---|
| 70 | return &task->caps[handle];
|
|---|
| 71 | }
|
|---|
| 72 |
|
|---|
| 73 | cap_t *cap_get_current(int handle, cap_type_t type)
|
|---|
| 74 | {
|
|---|
| 75 | return cap_get(TASK, handle, type);
|
|---|
| 76 | }
|
|---|
| 77 |
|
|---|
| 78 | int cap_alloc(task_t *task)
|
|---|
| 79 | {
|
|---|
| 80 | int handle;
|
|---|
| 81 |
|
|---|
| 82 | irq_spinlock_lock(&task->lock, true);
|
|---|
| 83 | for (handle = 0; handle < MAX_CAPS; handle++) {
|
|---|
| 84 | cap_t *cap = &task->caps[handle];
|
|---|
| 85 | if (cap->type > CAP_TYPE_ALLOCATED) {
|
|---|
| 86 | if (cap->can_reclaim && cap->can_reclaim(cap))
|
|---|
| 87 | cap_initialize(cap, handle);
|
|---|
| 88 | }
|
|---|
| 89 | if (cap->type == CAP_TYPE_INVALID) {
|
|---|
| 90 | cap->type = CAP_TYPE_ALLOCATED;
|
|---|
| 91 | irq_spinlock_unlock(&task->lock, true);
|
|---|
| 92 | return handle;
|
|---|
| 93 | }
|
|---|
| 94 | }
|
|---|
| 95 | irq_spinlock_unlock(&task->lock, true);
|
|---|
| 96 |
|
|---|
| 97 | return ELIMIT;
|
|---|
| 98 | }
|
|---|
| 99 |
|
|---|
| 100 | void cap_free(task_t *task, int handle)
|
|---|
| 101 | {
|
|---|
| 102 | assert(handle >= 0);
|
|---|
| 103 | assert(handle < MAX_CAPS);
|
|---|
| 104 | assert(task->caps[handle].type == CAP_TYPE_ALLOCATED);
|
|---|
| 105 |
|
|---|
| 106 | irq_spinlock_lock(&task->lock, true);
|
|---|
| 107 | cap_initialize(&task->caps[handle], handle);
|
|---|
| 108 | irq_spinlock_unlock(&task->lock, true);
|
|---|
| 109 | }
|
|---|
| 110 |
|
|---|
| 111 | /** @}
|
|---|
| 112 | */
|
|---|