1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327 |
- /*
- * Copyright (c) 2006-2023, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2019-10-12 Jesven first version
- * 2023-07-25 Shell Remove usage of rt_hw_interrupt API in the lwp
- * 2023-09-16 zmq810150896 Increased versatility of some features on dfs v2
- */
- #define DBG_TAG "lwp.ipc"
- #define DBG_LVL DBG_WARNING
- #include <rtdbg.h>
- #include <rtthread.h>
- #include <rthw.h>
- #include "lwp_internal.h"
- #include "lwp_ipc.h"
- #include "lwp_ipc_internal.h"
- #include <dfs_file.h>
- #include <poll.h>
- #ifdef RT_USING_DFS_V2
- #include <dfs_dentry.h>
- #endif
- /**
- * the IPC channel states
- */
- enum
- {
- RT_IPC_STAT_IDLE, /* no suspended threads */
- RT_IPC_STAT_WAIT, /* suspended receivers exist */
- RT_IPC_STAT_ACTIVE, /* suspended senders exist */
- };
- /**
- * IPC message structure.
- *
- * They are allocated and released in the similar way like 'rt_chfd'.
- */
- struct rt_ipc_msg
- {
- struct rt_channel_msg msg; /**< the payload of msg */
- rt_list_t mlist; /**< the msg list */
- rt_uint8_t need_reply; /**< whether msg wait reply*/
- };
- typedef struct rt_ipc_msg *rt_ipc_msg_t;
- static rt_ipc_msg_t _ipc_msg_free_list = (rt_ipc_msg_t)RT_NULL; /* released chain */
- static int rt_ipc_msg_used = 0; /* first unallocated entry */
- static struct rt_ipc_msg ipc_msg_pool[RT_CH_MSG_MAX_NR]; /* initial message array */
- static struct rt_mutex _chn_obj_lock;
- static struct rt_spinlock _msg_list_lock; /* lock protect of _ipc_msg_free_list */
- /**
- * Allocate an IPC message from the statically-allocated array.
- */
- static rt_ipc_msg_t _ipc_msg_alloc(void)
- {
- rt_ipc_msg_t p = (rt_ipc_msg_t)RT_NULL;
- rt_base_t level;
- level = rt_spin_lock_irqsave(&_msg_list_lock);
- if (_ipc_msg_free_list) /* use the released chain first */
- {
- p = _ipc_msg_free_list;
- _ipc_msg_free_list = (rt_ipc_msg_t)p->msg.sender; /* emtry payload as a pointer */
- }
- else if (rt_ipc_msg_used < RT_CH_MSG_MAX_NR)
- {
- p = &ipc_msg_pool[rt_ipc_msg_used];
- rt_ipc_msg_used++;
- }
- rt_spin_unlock_irqrestore(&_msg_list_lock, level);
- return p;
- }
- /**
- * Put a released IPC message back to the released chain.
- */
- static void _ipc_msg_free(rt_ipc_msg_t p_msg)
- {
- rt_base_t level;
- level = rt_spin_lock_irqsave(&_msg_list_lock);
- p_msg->msg.sender = (void *)_ipc_msg_free_list;
- _ipc_msg_free_list = p_msg;
- rt_spin_unlock_irqrestore(&_msg_list_lock, level);
- }
- /**
- * Initialized the IPC message.
- */
- static void rt_ipc_msg_init(rt_ipc_msg_t msg, struct rt_channel_msg *data, rt_uint8_t need_reply)
- {
- RT_ASSERT(msg != RT_NULL);
- msg->need_reply = need_reply;
- msg->msg = *data;
- msg->msg.sender = (void *)rt_thread_self();
- rt_list_init(&msg->mlist);
- }
- /**
- * Initialized the list of the waiting receivers on the IPC channel.
- */
- rt_inline rt_err_t rt_channel_object_init(struct rt_ipc_object *ipc)
- {
- rt_list_init(&(ipc->suspend_thread)); /* receiver list */
- return RT_EOK;
- }
- /**
- * Wakeup the first suspened thread in the list.
- */
- rt_inline rt_err_t rt_channel_list_resume(rt_list_t *list)
- {
- struct rt_thread *thread;
- /* get the first thread entry waiting for sending */
- thread = rt_list_entry(list->next, struct rt_thread, tlist);
- rt_thread_resume(thread);
- return RT_EOK;
- }
- /**
- * Wakeup all the suspended threads in the list.
- */
- rt_inline rt_err_t _channel_list_resume_all_locked(rt_list_t *list)
- {
- struct rt_thread *thread;
- /* wakeup all suspended threads for sending */
- while (!rt_list_isempty(list))
- {
- thread = rt_list_entry(list->next, struct rt_thread, tlist);
- thread->error = -RT_ERROR;
- rt_thread_resume(thread);
- }
- return RT_EOK;
- }
- /**
- * Suspend the thread and chain it into the end of the list.
- */
- rt_inline rt_err_t rt_channel_list_suspend(rt_list_t *list, struct rt_thread *thread)
- {
- /* suspend thread */
- rt_err_t ret = rt_thread_suspend_with_flag(thread, RT_INTERRUPTIBLE);
- if (ret == RT_EOK)
- {
- rt_list_insert_before(list, &(thread->tlist)); /* list end */
- }
- return ret;
- }
- static void _rt_channel_check_wq_wakup_locked(rt_channel_t ch)
- {
- if (rt_list_isempty(&ch->wait_msg))
- {
- return;
- }
- rt_wqueue_wakeup(&ch->reader_queue, 0);
- }
- rt_err_t rt_channel_component_init(void)
- {
- return rt_mutex_init(&_chn_obj_lock, "rt_chnannel", RT_IPC_FLAG_PRIO);
- }
- /**
- * Create a new or open an existing IPC channel.
- */
- rt_channel_t rt_raw_channel_open(const char *name, int flags)
- {
- rt_err_t err = RT_EOK;
- rt_channel_t ch = RT_NULL;
- rt_base_t level;
- struct rt_object *object;
- struct rt_list_node *node;
- struct rt_object_information *information;
- RT_DEBUG_NOT_IN_INTERRUPT;
- /**
- * Brief: Match an existing channel from object list with the same name
- * If no such channel found, it will create a new channel if O_CREAT
- * is set in the flag
- *
- * Note: Critical Section
- * - Channel Object list (RW; this may write to a channel if needed, and
- * the RCU operation of the routine should be atomic)
- */
- information = rt_object_get_information(RT_Object_Class_Channel);
- RT_ASSERT(information != RT_NULL);
- err = rt_mutex_take_interruptible(&_chn_obj_lock, RT_WAITING_FOREVER);
- if (err != RT_EOK)
- {
- return RT_NULL;
- }
- for (node = information->object_list.next;
- node != &(information->object_list);
- node = node->next)
- {
- object = rt_list_entry(node, struct rt_object, list);
- if (rt_strncmp(object->name, name, RT_NAME_MAX) == 0)
- {
- if ((flags & O_CREAT) && (flags & O_EXCL))
- {
- err = -RT_EFULL;
- break;
- }
- /* find the IPC channel with the specific name */
- ch = (rt_channel_t)object;
- level = rt_spin_lock_irqsave(&ch->slock);
- ch->ref++; /* increase the reference count */
- rt_spin_unlock_irqrestore(&ch->slock, level);
- break;
- }
- }
- if (!ch && err == RT_EOK)
- {
- /* create a new IPC channel */
- if (flags & O_CREAT)
- {
- /* allocate a real IPC channel structure */
- ch = (rt_channel_t)rt_object_allocate(RT_Object_Class_Channel, name);
- }
- if (ch)
- {
- rt_channel_object_init(&ch->parent); /* suspended receivers */
- rt_spin_lock_init(&ch->slock);
- rt_list_init(&ch->wait_msg); /* unhandled messages */
- rt_list_init(&ch->wait_thread); /* suspended senders */
- rt_wqueue_init(&ch->reader_queue); /* reader poll queue */
- ch->reply = RT_NULL;
- ch->stat = RT_IPC_STAT_IDLE; /* no suspended threads */
- ch->ref = 1;
- }
- }
- rt_mutex_release(&_chn_obj_lock);
- return ch;
- }
- /**
- * Close an existiong IPC channel, release the resources.
- */
- rt_err_t rt_raw_channel_close(rt_channel_t ch)
- {
- rt_err_t rc = -RT_EIO;
- rt_base_t level;
- RT_DEBUG_NOT_IN_INTERRUPT;
- if (ch != RT_NULL)
- {
- rc = rt_mutex_take_interruptible(&_chn_obj_lock, RT_WAITING_FOREVER);
- if (rc != RT_EOK)
- {
- return rc;
- }
- /**
- * Brief: Remove the channel from object list
- *
- * Note: Critical Section
- * - the channel
- */
- level = rt_spin_lock_irqsave(&ch->slock);
- if (rt_object_get_type(&ch->parent.parent) != RT_Object_Class_Channel)
- {
- rc = -RT_EIO;
- }
- else if (rt_object_is_systemobject(&ch->parent.parent) != RT_FALSE)
- {
- rc = -RT_EIO;
- }
- else if (ch->ref == 0)
- {
- rc = -RT_EIO;
- }
- else
- {
- ch->ref--;
- rc = RT_EOK;
- }
- rt_spin_unlock_irqrestore(&ch->slock, level);
- if (rc == RT_EOK)
- {
- if (ch->ref == 0)
- {
- /* wakeup all the suspended receivers and senders */
- _channel_list_resume_all_locked(&ch->parent.suspend_thread);
- _channel_list_resume_all_locked(&ch->wait_thread);
- /* all ipc msg will lost */
- rt_list_init(&ch->wait_msg);
- rt_object_delete(&ch->parent.parent); /* release the IPC channel structure */
- }
- }
- rt_mutex_release(&_chn_obj_lock);
- }
- return rc;
- }
- static rt_err_t wakeup_sender_wait_recv(void *object, struct rt_thread *thread)
- {
- rt_channel_t ch;
- ch = (rt_channel_t)object;
- if (ch->stat == RT_IPC_STAT_ACTIVE && ch->reply == thread)
- {
- ch->stat = RT_IPC_STAT_IDLE;
- ch->reply = RT_NULL;
- }
- else
- {
- rt_ipc_msg_t msg;
- rt_list_t *l;
- l = ch->wait_msg.next;
- while (l != &ch->wait_msg)
- {
- msg = rt_list_entry(l, struct rt_ipc_msg, mlist);
- if (msg->need_reply && msg->msg.sender == thread)
- {
- rt_list_remove(&msg->mlist); /* remove the msg from the channel */
- _ipc_msg_free(msg);
- break;
- }
- l = l->next;
- }
- }
- thread->error = -RT_EINTR;
- return rt_thread_resume(thread); /* wake up the sender */
- }
- static rt_err_t wakeup_sender_wait_reply(void *object, struct rt_thread *thread)
- {
- rt_channel_t ch;
- ch = (rt_channel_t)object;
- RT_ASSERT(ch->stat == RT_IPC_STAT_ACTIVE && ch->reply == thread);
- ch->stat = RT_IPC_STAT_IDLE;
- ch->reply = RT_NULL;
- thread->error = -RT_EINTR;
- return rt_thread_resume(thread); /* wake up the sender */
- }
- static void sender_timeout(void *parameter)
- {
- struct rt_thread *thread = (struct rt_thread *)parameter;
- rt_channel_t ch;
- ch = (rt_channel_t)(thread->wakeup.user_data);
- if (ch->stat == RT_IPC_STAT_ACTIVE && ch->reply == thread)
- {
- ch->stat = RT_IPC_STAT_IDLE;
- ch->reply = RT_NULL;
- }
- else
- {
- rt_ipc_msg_t msg;
- rt_list_t *l;
- l = ch->wait_msg.next;
- while (l != &ch->wait_msg)
- {
- msg = rt_list_entry(l, struct rt_ipc_msg, mlist);
- if (msg->need_reply && msg->msg.sender == thread)
- {
- rt_list_remove(&msg->mlist); /* remove the msg from the channel */
- _ipc_msg_free(msg);
- break;
- }
- l = l->next;
- }
- }
- thread->error = -RT_ETIMEOUT;
- thread->wakeup.func = RT_NULL;
- rt_list_remove(&(thread->tlist));
- /* insert to schedule ready list */
- rt_schedule_insert_thread(thread);
- /* do schedule */
- rt_schedule();
- }
- /**
- * Get file vnode from fd.
- */
- static void *_ipc_msg_get_file(int fd)
- {
- struct dfs_file *d;
- d = fd_get(fd);
- if (d == RT_NULL)
- return RT_NULL;
- if (!d->vnode)
- return RT_NULL;
- return (void *)d;
- }
- /**
- * Get fd from file vnode.
- */
- static int _ipc_msg_fd_new(void *file)
- {
- int fd;
- struct dfs_file *d;
- struct dfs_file *df = RT_NULL;
- if (file == RT_NULL)
- {
- return -1;
- }
- df = (struct dfs_file *)file;
- fd = fd_new();
- if (fd < 0)
- {
- return -1;
- }
- d = fd_get(fd);
- if (!d)
- {
- fd_release(fd);
- return -1;
- }
- d->vnode = df->vnode;
- d->flags = df->flags;
- d->data = df->data;
- d->magic = df->magic;
- #ifdef RT_USING_DFS_V2
- d->fops = df->fops;
- d->mode = df->mode;
- d->dentry = df->dentry;
- if (d->dentry)
- rt_atomic_add(&(d->dentry->ref_count), 1);
- if (d->vnode)
- rt_atomic_add(&(d->vnode->ref_count), 1);
- #else
- if (d->vnode)
- d->vnode->ref_count++;
- #endif
- return fd;
- }
- static rt_err_t _do_send_recv_timeout(rt_channel_t ch, rt_channel_msg_t data, int need_reply, rt_channel_msg_t data_ret, rt_int32_t time, rt_ipc_msg_t msg);
- /**
- * Send data through an IPC channel, wait for the reply or not.
- */
- static rt_err_t _send_recv_timeout(rt_channel_t ch, rt_channel_msg_t data, int need_reply, rt_channel_msg_t data_ret, rt_int32_t time)
- {
- rt_ipc_msg_t msg;
- rt_err_t rc = -RT_ERROR;
- if (need_reply)
- {
- RT_DEBUG_NOT_IN_INTERRUPT;
- }
- if (ch == RT_NULL)
- {
- rc = -RT_EIO;
- }
- else
- {
- if (rt_object_get_type(&ch->parent.parent) != RT_Object_Class_Channel)
- {
- rc = -RT_EIO;
- }
- else if (need_reply && time == 0)
- {
- rc = -RT_ETIMEOUT;
- }
- else
- {
- /* allocate an IPC message */
- msg = _ipc_msg_alloc();
- if (!msg)
- rc = -RT_ENOMEM;
- else
- rc = _do_send_recv_timeout(ch, data, need_reply, data_ret, time, msg);
- }
- }
- return rc;
- }
- static rt_err_t _do_send_recv_timeout(rt_channel_t ch, rt_channel_msg_t data, int need_reply, rt_channel_msg_t data_ret, rt_int32_t time, rt_ipc_msg_t msg)
- {
- DEF_RETURN_CODE(rc);
- rt_thread_t thread_recv;
- rt_thread_t thread_send = 0;
- void (*old_timeout_func)(void *) = 0;
- rt_base_t level;
- /* IPC message : file descriptor */
- if (data->type == RT_CHANNEL_FD)
- {
- data->u.fd.file = _ipc_msg_get_file(data->u.fd.fd);
- }
- rt_ipc_msg_init(msg, data, need_reply);
- if (need_reply)
- {
- thread_send = rt_thread_self();
- thread_send->error = RT_EOK;
- }
- rc = RT_EOK;
- level = rt_spin_lock_irqsave(&ch->slock);
- switch (ch->stat)
- {
- case RT_IPC_STAT_IDLE:
- case RT_IPC_STAT_ACTIVE:
- if (need_reply)
- {
- rc = rt_channel_list_suspend(&ch->wait_thread, thread_send);
- if (rc != RT_EOK)
- {
- _ipc_msg_free(msg);
- }
- else
- {
- rt_thread_wakeup_set(thread_send, wakeup_sender_wait_recv, (void *)ch);
- if (time > 0)
- {
- rt_timer_control(&(thread_send->thread_timer),
- RT_TIMER_CTRL_GET_FUNC,
- &old_timeout_func);
- rt_timer_control(&(thread_send->thread_timer),
- RT_TIMER_CTRL_SET_FUNC,
- sender_timeout);
- /* reset the timeout of thread timer and start it */
- rt_timer_control(&(thread_send->thread_timer),
- RT_TIMER_CTRL_SET_TIME,
- &time);
- rt_timer_start(&(thread_send->thread_timer));
- }
- }
- }
- /**
- * If there is no thread waiting for messages, chain the message
- * into the list.
- */
- if (rc == RT_EOK)
- rt_list_insert_before(&ch->wait_msg, &msg->mlist);
- break;
- case RT_IPC_STAT_WAIT:
- /**
- * If there are suspended receivers on the IPC channel, transfer the
- * pointer of the message to the first receiver directly and wake it
- * up.
- */
- RT_ASSERT(ch->parent.suspend_thread.next != &ch->parent.suspend_thread);
- if (need_reply)
- {
- rc = rt_channel_list_suspend(&ch->wait_thread, thread_send);
- if (rc != RT_EOK)
- {
- _ipc_msg_free(msg);
- }
- else
- {
- ch->reply = thread_send; /* record the current waiting sender */
- ch->stat = RT_IPC_STAT_ACTIVE;
- rt_thread_wakeup_set(thread_send, wakeup_sender_wait_reply, (void *)ch);
- if (time > 0)
- {
- rt_timer_control(&(thread_send->thread_timer),
- RT_TIMER_CTRL_GET_FUNC,
- &old_timeout_func);
- rt_timer_control(&(thread_send->thread_timer),
- RT_TIMER_CTRL_SET_FUNC,
- sender_timeout);
- /* reset the timeout of thread timer and start it */
- rt_timer_control(&(thread_send->thread_timer),
- RT_TIMER_CTRL_SET_TIME,
- &time);
- rt_timer_start(&(thread_send->thread_timer));
- }
- }
- }
- else
- {
- ch->stat = RT_IPC_STAT_IDLE;
- }
- if (!need_reply || rc == RT_EOK)
- {
- thread_recv = rt_list_entry(ch->parent.suspend_thread.next, struct rt_thread, tlist);
- thread_recv->msg_ret = msg; /* to the first suspended receiver */
- thread_recv->error = RT_EOK;
- rt_channel_list_resume(&ch->parent.suspend_thread);
- }
- break;
- default:
- break;
- }
- if (rc == RT_EOK)
- {
- if (ch->stat == RT_IPC_STAT_IDLE)
- {
- _rt_channel_check_wq_wakup_locked(ch);
- }
- rt_spin_unlock_irqrestore(&ch->slock, level);
- /* reschedule in order to let the potential receivers run */
- rt_schedule();
- if (need_reply)
- {
- if (old_timeout_func)
- {
- rt_timer_control(&(thread_send->thread_timer),
- RT_TIMER_CTRL_SET_FUNC,
- old_timeout_func);
- }
- rc = thread_send->error;
- if (rc == RT_EOK)
- {
- /* If the sender gets the chance to run, the requested reply must be valid. */
- RT_ASSERT(data_ret != RT_NULL);
- *data_ret = ((rt_ipc_msg_t)(thread_send->msg_ret))->msg; /* extract data */
- _ipc_msg_free(thread_send->msg_ret); /* put back the message to kernel */
- thread_send->msg_ret = RT_NULL;
- }
- }
- }
- else
- {
- rt_spin_unlock_irqrestore(&ch->slock, level);
- }
- return rc;
- }
- /**
- * Send data through an IPC channel with no reply.
- */
- rt_err_t rt_raw_channel_send(rt_channel_t ch, rt_channel_msg_t data)
- {
- return _send_recv_timeout(ch, data, 0, 0, RT_WAITING_FOREVER);
- }
- /**
- * Send data through an IPC channel and wait for the relpy.
- */
- rt_err_t rt_raw_channel_send_recv(rt_channel_t ch, rt_channel_msg_t data, rt_channel_msg_t data_ret)
- {
- return _send_recv_timeout(ch, data, 1, data_ret, RT_WAITING_FOREVER);
- }
- /**
- * Send data through an IPC channel and wait for the relpy.
- */
- rt_err_t rt_raw_channel_send_recv_timeout(rt_channel_t ch, rt_channel_msg_t data, rt_channel_msg_t data_ret, rt_int32_t time)
- {
- return _send_recv_timeout(ch, data, 1, data_ret, time);
- }
- /**
- * Reply to the waiting sender and wake it up.
- */
- rt_err_t rt_raw_channel_reply(rt_channel_t ch, rt_channel_msg_t data)
- {
- DEF_RETURN_CODE(rc);
- rt_ipc_msg_t msg;
- struct rt_thread *thread;
- rt_base_t level;
- if (ch == RT_NULL)
- {
- rc = -RT_EIO;
- }
- else
- {
- level = rt_spin_lock_irqsave(&ch->slock);
- if (rt_object_get_type(&ch->parent.parent) != RT_Object_Class_Channel)
- {
- rc = -RT_EIO;
- }
- else if (ch->stat != RT_IPC_STAT_ACTIVE)
- {
- rc = -RT_ERROR;
- }
- else if (ch->reply == RT_NULL)
- {
- rc = -RT_ERROR;
- }
- else
- {
- /* allocate an IPC message */
- msg = _ipc_msg_alloc();
- if (!msg)
- {
- rc = -RT_ENOMEM;
- }
- else
- {
- rt_ipc_msg_init(msg, data, 0);
- thread = ch->reply;
- thread->msg_ret = msg; /* transfer the reply to the sender */
- rt_thread_resume(thread); /* wake up the sender */
- ch->stat = RT_IPC_STAT_IDLE;
- ch->reply = RT_NULL;
- _rt_channel_check_wq_wakup_locked(ch);
- rc = RT_EOK;
- }
- }
- rt_spin_unlock_irqrestore(&ch->slock, level);
- rt_schedule();
- }
- RETURN(rc);
- }
- static rt_err_t wakeup_receiver(void *object, struct rt_thread *thread)
- {
- rt_channel_t ch;
- rt_err_t ret;
- rt_base_t level;
- ch = (rt_channel_t)object;
- level = rt_spin_lock_irqsave(&ch->slock);
- ch->stat = RT_IPC_STAT_IDLE;
- thread->error = -RT_EINTR;
- ret = rt_channel_list_resume(&ch->parent.suspend_thread);
- _rt_channel_check_wq_wakup_locked(ch);
- rt_spin_unlock_irqrestore(&ch->slock, level);
- return ret;
- }
- static void receiver_timeout(void *parameter)
- {
- struct rt_thread *thread = (struct rt_thread *)parameter;
- rt_channel_t ch;
- rt_base_t level;
- ch = (rt_channel_t)(thread->wakeup.user_data);
- level = rt_spin_lock_irqsave(&ch->slock);
- ch->stat = RT_IPC_STAT_IDLE;
- thread->error = -RT_ETIMEOUT;
- thread->wakeup.func = RT_NULL;
- rt_list_remove(&(thread->tlist));
- /* insert to schedule ready list */
- rt_schedule_insert_thread(thread);
- _rt_channel_check_wq_wakup_locked(ch);
- rt_spin_unlock_irqrestore(&ch->slock, level);
- /* do schedule */
- rt_schedule();
- }
- /**
- * Fetch a message from the specified IPC channel.
- */
- static rt_err_t _rt_raw_channel_recv_timeout(rt_channel_t ch, rt_channel_msg_t data, rt_int32_t time)
- {
- DEF_RETURN_CODE(rc);
- struct rt_thread *thread;
- rt_ipc_msg_t msg_ret;
- void (*old_timeout_func)(void *) = 0;
- rt_base_t level;
- RT_DEBUG_NOT_IN_INTERRUPT;
- if (ch == RT_NULL)
- {
- return -RT_EIO;
- }
- level = rt_spin_lock_irqsave(&ch->slock);
- if (rt_object_get_type(&ch->parent.parent) != RT_Object_Class_Channel)
- {
- rc = -RT_EIO;
- }
- else if (ch->stat != RT_IPC_STAT_IDLE)
- {
- rc = -RT_ERROR;
- }
- else
- {
- if (ch->wait_msg.next != &ch->wait_msg) /* there exist unhandled messages */
- {
- msg_ret = rt_list_entry(ch->wait_msg.next, struct rt_ipc_msg, mlist);
- rt_list_remove(ch->wait_msg.next); /* remove the message from the channel */
- if (msg_ret->need_reply)
- {
- RT_ASSERT(ch->wait_thread.next != &ch->wait_thread);
- thread = rt_list_entry(ch->wait_thread.next, struct rt_thread, tlist);
- rt_list_remove(ch->wait_thread.next);
- ch->reply = thread; /* record the waiting sender */
- ch->stat = RT_IPC_STAT_ACTIVE; /* no valid suspened receivers */
- }
- *data = msg_ret->msg; /* extract the transferred data */
- if (data->type == RT_CHANNEL_FD)
- {
- data->u.fd.fd = _ipc_msg_fd_new(data->u.fd.file);
- }
- _ipc_msg_free(msg_ret); /* put back the message to kernel */
- rc = RT_EOK;
- }
- else if (time == 0)
- {
- rc = -RT_ETIMEOUT;
- }
- else
- {
- /* no valid message, we must wait */
- thread = rt_thread_self();
- rc = rt_channel_list_suspend(&ch->parent.suspend_thread, thread);
- if (rc == RT_EOK)
- {
- rt_thread_wakeup_set(thread, wakeup_receiver, (void *)ch);
- ch->stat = RT_IPC_STAT_WAIT; /* no valid suspended senders */
- thread->error = RT_EOK;
- if (time > 0)
- {
- rt_timer_control(&(thread->thread_timer),
- RT_TIMER_CTRL_GET_FUNC,
- &old_timeout_func);
- rt_timer_control(&(thread->thread_timer),
- RT_TIMER_CTRL_SET_FUNC,
- receiver_timeout);
- /* reset the timeout of thread timer and start it */
- rt_timer_control(&(thread->thread_timer),
- RT_TIMER_CTRL_SET_TIME,
- &time);
- rt_timer_start(&(thread->thread_timer));
- }
- rt_spin_unlock_irqrestore(&ch->slock, level);
- rt_schedule(); /* let the senders run */
- if (old_timeout_func)
- {
- rt_timer_control(&(thread->thread_timer),
- RT_TIMER_CTRL_SET_FUNC,
- old_timeout_func);
- }
- rc = thread->error;
- if (rc == RT_EOK)
- {
- /* If waked up, the received message has been store into the thread. */
- *data = ((rt_ipc_msg_t)(thread->msg_ret))->msg; /* extract data */
- if (data->type == RT_CHANNEL_FD)
- {
- data->u.fd.fd = _ipc_msg_fd_new(data->u.fd.file);
- }
- _ipc_msg_free(thread->msg_ret); /* put back the message to kernel */
- thread->msg_ret = RT_NULL;
- }
- level = rt_spin_lock_irqsave(&ch->slock);
- }
- }
- }
- rt_spin_unlock_irqrestore(&ch->slock, level);
- RETURN(rc);
- }
- rt_err_t rt_raw_channel_recv(rt_channel_t ch, rt_channel_msg_t data)
- {
- return _rt_raw_channel_recv_timeout(ch, data, RT_WAITING_FOREVER);
- }
- rt_err_t rt_raw_channel_recv_timeout(rt_channel_t ch, rt_channel_msg_t data, rt_int32_t time)
- {
- return _rt_raw_channel_recv_timeout(ch, data, time);
- }
- /**
- * Peek a message from the specified IPC channel.
- */
- rt_err_t rt_raw_channel_peek(rt_channel_t ch, rt_channel_msg_t data)
- {
- return _rt_raw_channel_recv_timeout(ch, data, 0);
- }
- /* for API */
- static int lwp_fd_new(int fdt_type)
- {
- struct dfs_fdtable *fdt;
- if (fdt_type)
- {
- fdt = dfs_fdtable_get_global();
- }
- else
- {
- fdt = dfs_fdtable_get();
- }
- return fdt_fd_new(fdt);
- }
- static struct dfs_file *lwp_fd_get(int fdt_type, int fd)
- {
- struct dfs_fdtable *fdt;
- if (fdt_type)
- {
- fdt = dfs_fdtable_get_global();
- }
- else
- {
- fdt = dfs_fdtable_get();
- }
- return fdt_get_file(fdt, fd);
- }
- static void lwp_fd_release(int fdt_type, int fd)
- {
- struct dfs_fdtable *fdt;
- if (fdt_type)
- {
- fdt = dfs_fdtable_get_global();
- }
- else
- {
- fdt = dfs_fdtable_get();
- }
- fdt_fd_release(fdt, fd);
- }
- static int _chfd_alloc(int fdt_type)
- {
- /* create a BSD socket */
- int fd;
- /* allocate a fd */
- fd = lwp_fd_new(fdt_type);
- if (fd < 0)
- {
- return -1;
- }
- return fd;
- }
- static void _chfd_free(int fd, int fdt_type)
- {
- struct dfs_file *d;
- d = lwp_fd_get(fdt_type, fd);
- if (d == RT_NULL)
- {
- return;
- }
- lwp_fd_release(fdt_type, fd);
- }
- /* for fops */
- static int channel_fops_poll(struct dfs_file *file, struct rt_pollreq *req)
- {
- int mask = POLLOUT;
- rt_channel_t ch;
- rt_base_t level;
- ch = (rt_channel_t)file->vnode->data;
- level = rt_spin_lock_irqsave(&ch->slock);
- rt_poll_add(&(ch->reader_queue), req);
- if (ch->stat != RT_IPC_STAT_IDLE)
- {
- rt_spin_unlock_irqrestore(&ch->slock, level);
- return mask;
- }
- if (!rt_list_isempty(&ch->wait_msg))
- {
- mask |= POLLIN;
- }
- rt_spin_unlock_irqrestore(&ch->slock, level);
- return mask;
- }
- static int channel_fops_close(struct dfs_file *file)
- {
- rt_channel_t ch;
- rt_base_t level;
- RT_DEBUG_NOT_IN_INTERRUPT;
- ch = (rt_channel_t)file->vnode->data;
- level = rt_spin_lock_irqsave(&ch->slock);
- if (file->vnode->ref_count == 1)
- {
- ch->ref--;
- if (ch->ref == 0)
- {
- /* wakeup all the suspended receivers and senders */
- _channel_list_resume_all_locked(&ch->parent.suspend_thread);
- _channel_list_resume_all_locked(&ch->wait_thread);
- /* all ipc msg will lost */
- rt_list_init(&ch->wait_msg);
- rt_spin_unlock_irqrestore(&ch->slock, level);
- rt_object_delete(&ch->parent.parent); /* release the IPC channel structure */
- }
- else
- {
- rt_spin_unlock_irqrestore(&ch->slock, level);
- }
- }
- else
- {
- rt_spin_unlock_irqrestore(&ch->slock, level);
- }
- return 0;
- }
- static const struct dfs_file_ops channel_fops =
- {
- .close = channel_fops_close, /* close */
- .poll = channel_fops_poll, /* poll */
- };
- int lwp_channel_open(int fdt_type, const char *name, int flags)
- {
- int fd;
- rt_channel_t ch = RT_NULL;
- struct dfs_file *d;
- fd = _chfd_alloc(fdt_type); /* allocate an IPC channel descriptor */
- if (fd == -1)
- {
- goto quit;
- }
- d = lwp_fd_get(fdt_type, fd);
- d->vnode = (struct dfs_vnode *)rt_malloc(sizeof(struct dfs_vnode));
- if (!d->vnode)
- {
- _chfd_free(fd, fdt_type);
- fd = -1;
- goto quit;
- }
- ch = rt_raw_channel_open(name, flags);
- if (ch)
- {
- /* initialize vnode */
- dfs_vnode_init(d->vnode, FT_USER, &channel_fops);
- d->flags = O_RDWR; /* set flags as read and write */
- /* set socket to the data of dfs_file */
- d->vnode->data = (void *)ch;
- }
- else
- {
- rt_free(d->vnode);
- d->vnode = RT_NULL;
- _chfd_free(fd, fdt_type);
- fd = -1;
- }
- quit:
- return fd;
- }
- static rt_channel_t fd_2_channel(int fdt_type, int fd)
- {
- struct dfs_file *d;
- d = lwp_fd_get(fdt_type, fd);
- if (d)
- {
- rt_channel_t ch;
- ch = (rt_channel_t)d->vnode->data;
- if (ch)
- {
- return ch;
- }
- }
- return RT_NULL;
- }
- rt_err_t lwp_channel_close(int fdt_type, int fd)
- {
- rt_channel_t ch;
- struct dfs_file *d;
- struct dfs_vnode *vnode;
- d = lwp_fd_get(fdt_type, fd);
- if (!d)
- {
- return -RT_EIO;
- }
- vnode = d->vnode;
- if (!vnode)
- {
- return -RT_EIO;
- }
- ch = fd_2_channel(fdt_type, fd);
- if (!ch)
- {
- return -RT_EIO;
- }
- _chfd_free(fd, fdt_type);
- if (vnode->ref_count == 1)
- {
- rt_free(vnode);
- return rt_raw_channel_close(ch);
- }
- return 0;
- }
- rt_err_t lwp_channel_send(int fdt_type, int fd, rt_channel_msg_t data)
- {
- rt_channel_t ch;
- ch = fd_2_channel(fdt_type, fd);
- if (ch)
- {
- return rt_raw_channel_send(ch, data);
- }
- return -RT_EIO;
- }
- rt_err_t lwp_channel_send_recv_timeout(int fdt_type, int fd, rt_channel_msg_t data, rt_channel_msg_t data_ret, rt_int32_t time)
- {
- rt_channel_t ch;
- ch = fd_2_channel(fdt_type, fd);
- if (ch)
- {
- return rt_raw_channel_send_recv_timeout(ch, data, data_ret, time);
- }
- return -RT_EIO;
- }
- rt_err_t lwp_channel_reply(int fdt_type, int fd, rt_channel_msg_t data)
- {
- rt_channel_t ch;
- ch = fd_2_channel(fdt_type, fd);
- if (ch)
- {
- return rt_raw_channel_reply(ch, data);
- }
- return -RT_EIO;
- }
- rt_err_t lwp_channel_recv_timeout(int fdt_type, int fd, rt_channel_msg_t data, rt_int32_t time)
- {
- rt_channel_t ch;
- ch = fd_2_channel(fdt_type, fd);
- if (ch)
- {
- return rt_raw_channel_recv_timeout(ch, data, time);
- }
- return -RT_EIO;
- }
- int rt_channel_open(const char *name, int flags)
- {
- return lwp_channel_open(FDT_TYPE_KERNEL, name, flags);
- }
- rt_err_t rt_channel_close(int fd)
- {
- return lwp_channel_close(FDT_TYPE_KERNEL, fd);
- }
- rt_err_t rt_channel_send(int fd, rt_channel_msg_t data)
- {
- return lwp_channel_send(FDT_TYPE_KERNEL, fd, data);
- }
- rt_err_t rt_channel_send_recv_timeout(int fd, rt_channel_msg_t data, rt_channel_msg_t data_ret, rt_int32_t time)
- {
- return lwp_channel_send_recv_timeout(FDT_TYPE_KERNEL, fd, data, data_ret, time);
- }
- rt_err_t rt_channel_send_recv(int fd, rt_channel_msg_t data, rt_channel_msg_t data_ret)
- {
- return lwp_channel_send_recv_timeout(FDT_TYPE_KERNEL, fd, data, data_ret, RT_WAITING_FOREVER);
- }
- rt_err_t rt_channel_reply(int fd, rt_channel_msg_t data)
- {
- return lwp_channel_reply(FDT_TYPE_KERNEL, fd, data);
- }
- rt_err_t rt_channel_recv_timeout(int fd, rt_channel_msg_t data, rt_int32_t time)
- {
- return lwp_channel_recv_timeout(FDT_TYPE_KERNEL, fd, data, time);
- }
- rt_err_t rt_channel_recv(int fd, rt_channel_msg_t data)
- {
- return lwp_channel_recv_timeout(FDT_TYPE_KERNEL, fd, data, RT_WAITING_FOREVER);
- }
- rt_err_t rt_channel_peek(int fd, rt_channel_msg_t data)
- {
- return lwp_channel_recv_timeout(FDT_TYPE_KERNEL, fd, data, 0);
- }
- static int list_channel(void)
- {
- rt_channel_t *channels;
- rt_ubase_t index, count;
- struct rt_object *object;
- struct rt_list_node *node;
- struct rt_object_information *information;
- RT_DEBUG_NOT_IN_INTERRUPT;
- const char *stat_strs[] = {"idle", "wait", "active"};
- information = rt_object_get_information(RT_Object_Class_Channel);
- RT_ASSERT(information != RT_NULL);
- count = 0;
- rt_mutex_take(&_chn_obj_lock, RT_WAITING_FOREVER);
- /* get the count of IPC channels */
- for (node = information->object_list.next;
- node != &(information->object_list);
- node = node->next)
- {
- count++;
- }
- rt_mutex_release(&_chn_obj_lock);
- if (count == 0)
- return 0;
- channels = (rt_channel_t *)rt_calloc(count, sizeof(rt_channel_t));
- if (channels == RT_NULL)
- return 0; /* out of memory */
- rt_mutex_take(&_chn_obj_lock, RT_WAITING_FOREVER);
- /* retrieve pointer of IPC channels */
- for (index = 0, node = information->object_list.next;
- index < count && node != &(information->object_list);
- node = node->next)
- {
- object = rt_list_entry(node, struct rt_object, list);
- channels[index] = (rt_channel_t)object;
- index++;
- }
- rt_mutex_release(&_chn_obj_lock);
- rt_kprintf(" channel state\n");
- rt_kprintf("-------- -------\n");
- for (index = 0; index < count; index++)
- {
- if (channels[index] != RT_NULL)
- {
- rt_kprintf("%-*.s", RT_NAME_MAX, channels[index]->parent.parent.name);
- if (channels[index]->stat < 3)
- rt_kprintf(" %s\n", stat_strs[channels[index]->stat]);
- }
- }
- rt_free(channels);
- return 0;
- }
- MSH_CMD_EXPORT(list_channel, list IPC channel information);
|