You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
324 lines
8.4 KiB
324 lines
8.4 KiB
/* |
|
* Copyright (C) 2014 Freie Universität Berlin |
|
* |
|
* This file is subject to the terms and conditions of the GNU Lesser |
|
* General Public License v2.1. See the file LICENSE in the top level |
|
* directory for more details. |
|
*/ |
|
|
|
/** |
|
* @ingroup core_msg |
|
* @{ |
|
* |
|
* @file |
|
* @brief Kernel messaging implementation |
|
* |
|
* @author Kaspar Schleiser <kaspar@schleiser.de> |
|
* @author Oliver Hahm <oliver.hahm@inria.fr> |
|
* @author Kévin Roussel <Kevin.Roussel@inria.fr> |
|
* |
|
* @} |
|
*/ |
|
|
|
#include <stddef.h> |
|
#include <inttypes.h> |
|
#include "kernel.h" |
|
#include "sched.h" |
|
#include "msg.h" |
|
#include "queue.h" |
|
#include "tcb.h" |
|
#include "irq.h" |
|
#include "cib.h" |
|
|
|
#include "flags.h" |
|
|
|
#define ENABLE_DEBUG (0) |
|
#include "debug.h" |
|
#include "thread.h" |
|
|
|
static int _msg_receive(msg_t *m, int block); |
|
|
|
|
|
static int queue_msg(tcb_t *target, msg_t *m) |
|
{ |
|
int n = cib_put(&(target->msg_queue)); |
|
|
|
if (n != -1) { |
|
target->msg_array[n] = *m; |
|
return 1; |
|
} |
|
|
|
return 0; |
|
} |
|
|
|
int msg_send(msg_t *m, unsigned int target_pid, bool block) |
|
{ |
|
if (inISR()) { |
|
return msg_send_int(m, target_pid); |
|
} |
|
|
|
if ((unsigned int)sched_active_pid == target_pid) { |
|
return msg_send_to_self(m); |
|
} |
|
|
|
dINT(); |
|
|
|
tcb_t *target = (tcb_t*) sched_threads[target_pid]; |
|
|
|
m->sender_pid = sched_active_pid; |
|
|
|
if (target == NULL) { |
|
DEBUG("msg_send(): target thread does not exist\n"); |
|
eINT(); |
|
return -1; |
|
} |
|
|
|
DEBUG("msg_send() %s:%i: Sending from %i to %i. block=%i src->state=%i target->state=%i\n", __FILE__, __LINE__, sched_active_pid, target_pid, block, sched_active_thread->status, target->status); |
|
|
|
if (target->status != STATUS_RECEIVE_BLOCKED) { |
|
DEBUG("msg_send() %s:%i: Target %i is not RECEIVE_BLOCKED.\n", __FILE__, __LINE__, target_pid); |
|
if (target->msg_array && queue_msg(target, m)) { |
|
DEBUG("msg_send() %s:%i: Target %i has a msg_queue. Queueing message.\n", __FILE__, __LINE__, target_pid); |
|
eINT(); |
|
if (sched_active_thread->status == STATUS_REPLY_BLOCKED) { |
|
thread_yield(); |
|
} |
|
return 1; |
|
} |
|
|
|
if (!block) { |
|
DEBUG("msg_send: %s: Receiver not waiting, block=%u\n", sched_active_thread->name, block); |
|
eINT(); |
|
return 0; |
|
} |
|
|
|
DEBUG("msg_send: %s: send_blocked.\n", sched_active_thread->name); |
|
queue_node_t n; |
|
n.priority = sched_active_thread->priority; |
|
n.data = (unsigned int) sched_active_thread; |
|
n.next = NULL; |
|
DEBUG("msg_send: %s: Adding node to msg_waiters:\n", sched_active_thread->name); |
|
|
|
queue_priority_add(&(target->msg_waiters), &n); |
|
|
|
sched_active_thread->wait_data = (void*) m; |
|
|
|
int newstatus; |
|
|
|
if (sched_active_thread->status == STATUS_REPLY_BLOCKED) { |
|
newstatus = STATUS_REPLY_BLOCKED; |
|
} |
|
else { |
|
newstatus = STATUS_SEND_BLOCKED; |
|
} |
|
|
|
sched_set_status((tcb_t*) sched_active_thread, newstatus); |
|
|
|
DEBUG("msg_send: %s: Back from send block.\n", sched_active_thread->name); |
|
} |
|
else { |
|
DEBUG("msg_send: %s: Direct msg copy from %i to %i.\n", sched_active_thread->name, thread_getpid(), target_pid); |
|
/* copy msg to target */ |
|
msg_t *target_message = (msg_t*) target->wait_data; |
|
*target_message = *m; |
|
sched_set_status(target, STATUS_PENDING); |
|
} |
|
|
|
eINT(); |
|
thread_yield(); |
|
|
|
return 1; |
|
} |
|
|
|
int msg_send_to_self(msg_t *m) |
|
{ |
|
unsigned int state = disableIRQ(); |
|
|
|
m->sender_pid = sched_active_pid; |
|
int res = queue_msg((tcb_t *) sched_active_thread, m); |
|
|
|
restoreIRQ(state); |
|
return res; |
|
} |
|
|
|
int msg_send_int(msg_t *m, unsigned int target_pid) |
|
{ |
|
tcb_t *target = (tcb_t *) sched_threads[target_pid]; |
|
|
|
if (target == NULL) { |
|
DEBUG("msg_send_int(): target thread does not exist\n"); |
|
return -1; |
|
} |
|
|
|
if (target->status == STATUS_RECEIVE_BLOCKED) { |
|
DEBUG("msg_send_int: Direct msg copy from %i to %i.\n", thread_getpid(), target_pid); |
|
|
|
m->sender_pid = target_pid; |
|
|
|
/* copy msg to target */ |
|
msg_t *target_message = (msg_t*) target->wait_data; |
|
*target_message = *m; |
|
sched_set_status(target, STATUS_PENDING); |
|
|
|
sched_context_switch_request = 1; |
|
return 1; |
|
} |
|
else { |
|
DEBUG("msg_send_int: Receiver not waiting.\n"); |
|
return (queue_msg(target, m)); |
|
} |
|
} |
|
|
|
int msg_send_receive(msg_t *m, msg_t *reply, unsigned int target_pid) |
|
{ |
|
dINT(); |
|
tcb_t *me = (tcb_t*) sched_threads[sched_active_pid]; |
|
sched_set_status(me, STATUS_REPLY_BLOCKED); |
|
me->wait_data = (void*) reply; |
|
|
|
/* msg_send blocks until reply received */ |
|
|
|
return msg_send(m, target_pid, true); |
|
} |
|
|
|
int msg_reply(msg_t *m, msg_t *reply) |
|
{ |
|
int state = disableIRQ(); |
|
|
|
tcb_t *target = (tcb_t*) sched_threads[m->sender_pid]; |
|
|
|
if (!target) { |
|
DEBUG("msg_reply(): %s: Target \"%" PRIu16 "\" not existing...dropping msg!\n", sched_active_thread->name, m->sender_pid); |
|
return -1; |
|
} |
|
|
|
if (target->status != STATUS_REPLY_BLOCKED) { |
|
DEBUG("msg_reply(): %s: Target \"%s\" not waiting for reply.", sched_active_thread->name, target->name); |
|
restoreIRQ(state); |
|
return -1; |
|
} |
|
|
|
DEBUG("msg_reply(): %s: Direct msg copy.\n", sched_active_thread->name); |
|
/* copy msg to target */ |
|
msg_t *target_message = (msg_t*) target->wait_data; |
|
*target_message = *reply; |
|
sched_set_status(target, STATUS_PENDING); |
|
restoreIRQ(state); |
|
thread_yield(); |
|
|
|
return 1; |
|
} |
|
|
|
int msg_reply_int(msg_t *m, msg_t *reply) |
|
{ |
|
tcb_t *target = (tcb_t*) sched_threads[m->sender_pid]; |
|
|
|
if (target->status != STATUS_REPLY_BLOCKED) { |
|
DEBUG("msg_reply_int(): %s: Target \"%s\" not waiting for reply.", sched_active_thread->name, target->name); |
|
return -1; |
|
} |
|
|
|
msg_t *target_message = (msg_t*) target->wait_data; |
|
*target_message = *reply; |
|
sched_set_status(target, STATUS_PENDING); |
|
sched_context_switch_request = 1; |
|
return 1; |
|
} |
|
|
|
int msg_try_receive(msg_t *m) |
|
{ |
|
return _msg_receive(m, 0); |
|
} |
|
|
|
int msg_receive(msg_t *m) |
|
{ |
|
return _msg_receive(m, 1); |
|
} |
|
|
|
static int _msg_receive(msg_t *m, int block) |
|
{ |
|
dINT(); |
|
DEBUG("_msg_receive: %s: _msg_receive.\n", sched_active_thread->name); |
|
|
|
tcb_t *me = (tcb_t*) sched_threads[sched_active_pid]; |
|
|
|
int queue_index = -1; |
|
|
|
if (me->msg_array) { |
|
queue_index = cib_get(&(me->msg_queue)); |
|
} |
|
|
|
/* no message, fail */ |
|
if ((!block) && (queue_index == -1)) { |
|
eINT(); |
|
return -1; |
|
} |
|
|
|
if (queue_index >= 0) { |
|
DEBUG("_msg_receive: %s: _msg_receive(): We've got a queued message.\n", sched_active_thread->name); |
|
*m = me->msg_array[queue_index]; |
|
} |
|
else { |
|
me->wait_data = (void *) m; |
|
} |
|
|
|
queue_node_t *node = queue_remove_head(&(me->msg_waiters)); |
|
|
|
if (node == NULL) { |
|
DEBUG("_msg_receive: %s: _msg_receive(): No thread in waiting list.\n", sched_active_thread->name); |
|
|
|
if (queue_index < 0) { |
|
DEBUG("_msg_receive(): %s: No msg in queue. Going blocked.\n", sched_active_thread->name); |
|
sched_set_status(me, STATUS_RECEIVE_BLOCKED); |
|
|
|
eINT(); |
|
thread_yield(); |
|
|
|
/* sender copied message */ |
|
} |
|
else { |
|
eINT(); |
|
} |
|
|
|
return 1; |
|
} |
|
else { |
|
DEBUG("_msg_receive: %s: _msg_receive(): Waking up waiting thread.\n", sched_active_thread->name); |
|
tcb_t *sender = (tcb_t*) node->data; |
|
|
|
if (queue_index >= 0) { |
|
/* We've already got a message from the queue. As there is a |
|
* waiter, take it's message into the just freed queue space. |
|
*/ |
|
m = &(me->msg_array[cib_put(&(me->msg_queue))]); |
|
} |
|
|
|
/* copy msg */ |
|
msg_t *sender_msg = (msg_t*) sender->wait_data; |
|
*m = *sender_msg; |
|
|
|
/* remove sender from queue */ |
|
if (sender->status != STATUS_REPLY_BLOCKED) { |
|
sender->wait_data = NULL; |
|
sched_set_status(sender, STATUS_PENDING); |
|
} |
|
|
|
eINT(); |
|
return 1; |
|
} |
|
|
|
DEBUG("This should have never been reached!\n"); |
|
} |
|
|
|
int msg_init_queue(msg_t *array, int num) |
|
{ |
|
/* check if num is a power of two by comparing to its complement */ |
|
if (num && (num & (num - 1)) == 0) { |
|
tcb_t *me = (tcb_t*) sched_active_thread; |
|
me->msg_array = array; |
|
cib_init(&(me->msg_queue), num); |
|
return 0; |
|
} |
|
|
|
return -1; |
|
}
|
|
|