source: mainline/kernel/generic/src/ipc/ipcrsc.c@ d776329b

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since d776329b was feeac0d, checked in by Jiri Svoboda <jiri@…>, 12 years ago

Simplify use of list_foreach.

  • Property mode set to 100644
File size: 7.8 KB
Line 
1/*
2 * Copyright (c) 2006 Ondrej Palkovsky
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 genericipc
30 * @{
31 */
32/** @file
33 */
34
35/* IPC resources management
36 *
37 * The goal of this source code is to properly manage IPC resources and allow
38 * straight and clean clean-up procedure upon task termination.
39 *
40 * The pattern of usage of the resources is:
41 * - allocate empty phone slot, connect | deallocate slot
42 * - disconnect connected phone (some messages might be on the fly)
43 * - find phone in slot and send a message using phone
44 * - answer message to phone
45 * - hangup phone (the caller has hung up)
46 * - hangup phone (the answerbox is exiting)
47 *
48 * Locking strategy
49 *
50 * - To use a phone, disconnect a phone etc., the phone must be first locked and
51 * then checked that it is connected
52 * - To connect an allocated phone it need not be locked (assigning pointer is
53 * atomic on all platforms)
54 *
55 * - To find an empty phone slot, the TASK must be locked
56 * - To answer a message, the answerbox must be locked
57 * - The locking of phone and answerbox is done at the ipc_ level.
58 * It is perfectly correct to pass unconnected phone to these functions and
59 * proper reply will be generated.
60 *
61 * Locking order
62 *
63 * - first phone, then answerbox
64 * + Easy locking on calls
65 * - Very hard traversing list of phones when disconnecting because the phones
66 * may disconnect during traversal of list of connected phones. The only
67 * possibility is try_lock with restart of list traversal.
68 *
69 * Destroying is less frequent, this approach is taken.
70 *
71 * Phone call
72 *
73 * *** Connect_me_to ***
74 * The caller sends IPC_M_CONNECT_ME_TO to an answerbox. The server receives
75 * 'phoneid' of the connecting phone as an ARG5. If it answers with RETVAL=0,
76 * the phonecall is accepted, otherwise it is refused.
77 *
78 * *** Connect_to_me ***
79 * The caller sends IPC_M_CONNECT_TO_ME.
80 * The server receives an automatically opened phoneid. If it accepts
81 * (RETVAL=0), it can use the phoneid immediately.
82 * Possible race condition can arise, when the client receives messages from new
83 * connection before getting response for connect_to_me message. Userspace
84 * should implement handshake protocol that would control it.
85 *
86 * Phone hangup
87 *
88 * *** The caller hangs up (sys_ipc_hangup) ***
89 * - The phone is disconnected (no more messages can be sent over this phone),
90 * all in-progress messages are correctly handled. The answerbox receives
91 * IPC_M_PHONE_HUNGUP call from the phone that hung up. When all async
92 * calls are answered, the phone is deallocated.
93 *
94 * *** The answerbox hangs up (ipc_answer(EHANGUP))
95 * - The phone is disconnected. EHANGUP response code is sent
96 * to the calling task. All new calls through this phone
97 * get a EHUNGUP error code, the task is expected to
98 * send an sys_ipc_hangup after cleaning up its internal structures.
99 *
100 * Call forwarding
101 *
102 * The call can be forwarded, so that the answer to call is passed directly
103 * to the original sender. However, this poses special problems regarding
104 * routing of hangup messages.
105 *
106 * sys_ipc_hangup -> IPC_M_PHONE_HUNGUP
107 * - this message CANNOT be forwarded
108 *
109 * EHANGUP during forward
110 * - The *forwarding* phone will be closed, EFORWARD is sent to receiver.
111 *
112 * EHANGUP, ENOENT during forward
113 * - EFORWARD is sent to the receiver, ipc_forward returns error code EFORWARD
114 *
115 * Cleanup strategy
116 *
117 * 1) Disconnect all our phones ('ipc_phone_hangup').
118 *
119 * 2) Disconnect all phones connected to answerbox.
120 *
121 * 3) Answer all messages in 'calls' and 'dispatched_calls' queues with
122 * appropriate error code (EHANGUP, EFORWARD).
123 *
124 * 4) Wait for all async answers to arrive and dispose of them.
125 *
126 */
127
128#include <synch/spinlock.h>
129#include <ipc/ipc.h>
130#include <arch.h>
131#include <proc/task.h>
132#include <ipc/ipcrsc.h>
133#include <debug.h>
134#include <abi/errno.h>
135
136/** Find call_t * in call table according to callid.
137 *
138 * @todo Some speedup (hash table?)
139 *
140 * @param callid Userspace hash of the call. Currently it is the call
141 * structure kernel address.
142 *
143 * @return NULL on not found, otherwise pointer to the call
144 * structure.
145 *
146 */
147call_t *get_call(sysarg_t callid)
148{
149 call_t *result = NULL;
150
151 irq_spinlock_lock(&TASK->answerbox.lock, true);
152
153 list_foreach(TASK->answerbox.dispatched_calls, ab_link, call_t, call) {
154 if ((sysarg_t) call == callid) {
155 result = call;
156 break;
157 }
158 }
159
160 irq_spinlock_unlock(&TASK->answerbox.lock, true);
161 return result;
162}
163
164/** Get phone from the current task by ID.
165 *
166 * @param phoneid Phone ID.
167 * @param phone Place to store pointer to phone.
168 *
169 * @return EOK on success, EINVAL if ID is invalid.
170 *
171 */
172int phone_get(sysarg_t phoneid, phone_t **phone)
173{
174 if (phoneid >= IPC_MAX_PHONES)
175 return EINVAL;
176
177 *phone = &TASK->phones[phoneid];
178 return EOK;
179}
180
181/** Allocate new phone slot in the specified task.
182 *
183 * @param task Task for which to allocate a new phone.
184 *
185 * @return New phone handle or -1 if the phone handle limit is
186 * exceeded.
187 *
188 */
189int phone_alloc(task_t *task)
190{
191 irq_spinlock_lock(&task->lock, true);
192
193 size_t i;
194 for (i = 0; i < IPC_MAX_PHONES; i++) {
195 phone_t *phone = &task->phones[i];
196
197 if ((phone->state == IPC_PHONE_HUNGUP) &&
198 (atomic_get(&phone->active_calls) == 0))
199 phone->state = IPC_PHONE_FREE;
200
201 if (phone->state == IPC_PHONE_FREE) {
202 phone->state = IPC_PHONE_CONNECTING;
203 break;
204 }
205 }
206
207 irq_spinlock_unlock(&task->lock, true);
208
209 if (i == IPC_MAX_PHONES)
210 return -1;
211
212 return i;
213}
214
215/** Mark a phone structure free.
216 *
217 * @param phone Phone structure to be marked free.
218 *
219 */
220static void phone_deallocp(phone_t *phone)
221{
222 ASSERT(phone->state == IPC_PHONE_CONNECTING);
223
224 /* Atomic operation */
225 phone->state = IPC_PHONE_FREE;
226}
227
228/** Free slot from a disconnected phone.
229 *
230 * All already sent messages will be correctly processed.
231 *
232 * @param phoneid Phone handle of the phone to be freed.
233 *
234 */
235void phone_dealloc(int phoneid)
236{
237 phone_deallocp(&TASK->phones[phoneid]);
238}
239
240/** Connect phone to a given answerbox.
241 *
242 * @param phoneid Phone handle to be connected.
243 * @param box Answerbox to which to connect the phone handle.
244 * @return True if the phone was connected, false otherwise.
245 *
246 * The procedure _enforces_ that the user first marks the phone
247 * busy (e.g. via phone_alloc) and then connects the phone, otherwise
248 * race condition may appear.
249 *
250 */
251bool phone_connect(int phoneid, answerbox_t *box)
252{
253 phone_t *phone = &TASK->phones[phoneid];
254
255 ASSERT(phone->state == IPC_PHONE_CONNECTING);
256 return ipc_phone_connect(phone, box);
257}
258
259/** @}
260 */
Note: See TracBrowser for help on using the repository browser.