[2d5a54f3] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2006 Ondrej Palkovsky
|
---|
[2d5a54f3] | 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 |
|
---|
[cc73a8a1] | 29 | /** @addtogroup genericipc
|
---|
[b45c443] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
[2d5a54f3] | 35 | #include <arch.h>
|
---|
| 36 | #include <proc/task.h>
|
---|
[e3c762cd] | 37 | #include <proc/thread.h>
|
---|
[2d5a54f3] | 38 | #include <errno.h>
|
---|
| 39 | #include <memstr.h>
|
---|
| 40 | #include <debug.h>
|
---|
| 41 | #include <ipc/ipc.h>
|
---|
| 42 | #include <ipc/sysipc.h>
|
---|
[162f919] | 43 | #include <ipc/irq.h>
|
---|
[4e49572] | 44 | #include <ipc/ipcrsc.h>
|
---|
[5626277] | 45 | #include <arch/interrupt.h>
|
---|
[2d5a54f3] | 46 | #include <print.h>
|
---|
[e3c762cd] | 47 | #include <syscall/copy.h>
|
---|
[2bb8648] | 48 | #include <security/cap.h>
|
---|
[7c23af9] | 49 | #include <mm/as.h>
|
---|
[253f35a1] | 50 | #include <print.h>
|
---|
[2d5a54f3] | 51 |
|
---|
[8b243f2] | 52 | #define GET_CHECK_PHONE(phone, phoneid, err) \
|
---|
| 53 | { \
|
---|
| 54 | if (phoneid > IPC_MAX_PHONES) { \
|
---|
| 55 | err; \
|
---|
| 56 | } \
|
---|
| 57 | phone = &TASK->phones[phoneid]; \
|
---|
[ba81cab] | 58 | }
|
---|
| 59 |
|
---|
[8b243f2] | 60 | #define STRUCT_TO_USPACE(dst, src) copy_to_uspace(dst, src, sizeof(*(src)))
|
---|
[ba81cab] | 61 |
|
---|
[8b243f2] | 62 | /** Decide if the method is a system method.
|
---|
| 63 | *
|
---|
| 64 | * @param method Method to be decided.
|
---|
| 65 | *
|
---|
| 66 | * @return Return 1 if the method is a system method.
|
---|
| 67 | * Otherwise return 0.
|
---|
| 68 | */
|
---|
[7f1c620] | 69 | static inline int is_system_method(unative_t method)
|
---|
[2ba7810] | 70 | {
|
---|
| 71 | if (method <= IPC_M_LAST_SYSTEM)
|
---|
| 72 | return 1;
|
---|
| 73 | return 0;
|
---|
| 74 | }
|
---|
| 75 |
|
---|
[8b243f2] | 76 | /** Decide if the message with this method is forwardable.
|
---|
[2ba7810] | 77 | *
|
---|
| 78 | * - some system messages may be forwarded, for some of them
|
---|
| 79 | * it is useless
|
---|
[8b243f2] | 80 | *
|
---|
| 81 | * @param method Method to be decided.
|
---|
| 82 | *
|
---|
| 83 | * @return Return 1 if the method is forwardable.
|
---|
| 84 | * Otherwise return 0.
|
---|
[2ba7810] | 85 | */
|
---|
[7f1c620] | 86 | static inline int is_forwardable(unative_t method)
|
---|
[2ba7810] | 87 | {
|
---|
[51ec40f] | 88 | if (method == IPC_M_PHONE_HUNGUP || method == IPC_M_AS_AREA_SEND ||
|
---|
| 89 | method == IPC_M_AS_AREA_RECV)
|
---|
[fbcfd458] | 90 | return 0; /* This message is meant only for the receiver */
|
---|
[2ba7810] | 91 | return 1;
|
---|
| 92 | }
|
---|
| 93 |
|
---|
[2d5a54f3] | 94 |
|
---|
[8b243f2] | 95 | /***********************************************************************
|
---|
| 96 | * Functions that preprocess answer before sending it to the recepient.
|
---|
| 97 | ***********************************************************************/
|
---|
| 98 |
|
---|
| 99 | /** Decide if the caller (e.g. ipc_answer()) should save the old call contents
|
---|
| 100 | * for answer_preprocess().
|
---|
| 101 | *
|
---|
| 102 | * @param call Call structure to be decided.
|
---|
| 103 | *
|
---|
| 104 | * @return Return 1 if the old call contents should be saved.
|
---|
| 105 | * Return 0 otherwise.
|
---|
[2d5a54f3] | 106 | */
|
---|
[9f22213] | 107 | static inline int answer_need_old(call_t *call)
|
---|
[2d5a54f3] | 108 | {
|
---|
[fbcfd458] | 109 | if (IPC_GET_METHOD(call->data) == IPC_M_CONNECT_TO_ME)
|
---|
[2d5a54f3] | 110 | return 1;
|
---|
[fbcfd458] | 111 | if (IPC_GET_METHOD(call->data) == IPC_M_CONNECT_ME_TO)
|
---|
[37c57f2] | 112 | return 1;
|
---|
[8497711] | 113 | if (IPC_GET_METHOD(call->data) == IPC_M_AS_AREA_SEND)
|
---|
[7c23af9] | 114 | return 1;
|
---|
[46fc2f9] | 115 | if (IPC_GET_METHOD(call->data) == IPC_M_AS_AREA_RECV)
|
---|
| 116 | return 1;
|
---|
[2d5a54f3] | 117 | return 0;
|
---|
| 118 | }
|
---|
| 119 |
|
---|
[8b243f2] | 120 | /** Interpret process answer as control information.
|
---|
| 121 | *
|
---|
| 122 | * This function is called directly after sys_ipc_answer().
|
---|
[46fc2f9] | 123 | *
|
---|
[8b243f2] | 124 | * @param answer Call structure with the answer.
|
---|
| 125 | * @param olddata Saved data of the request.
|
---|
| 126 | *
|
---|
| 127 | * @return Return 0 on success or an error code.
|
---|
[46fc2f9] | 128 | */
|
---|
[7c23af9] | 129 | static inline int answer_preprocess(call_t *answer, ipc_data_t *olddata)
|
---|
[2d5a54f3] | 130 | {
|
---|
| 131 | int phoneid;
|
---|
| 132 |
|
---|
[9f22213] | 133 | if (IPC_GET_RETVAL(answer->data) == EHANGUP) {
|
---|
[ca687ad] | 134 | /* In case of forward, hangup the forwared phone,
|
---|
| 135 | * not the originator
|
---|
| 136 | */
|
---|
| 137 | spinlock_lock(&answer->data.phone->lock);
|
---|
| 138 | spinlock_lock(&TASK->answerbox.lock);
|
---|
[eb3d379] | 139 | if (answer->data.phone->state == IPC_PHONE_CONNECTED) {
|
---|
[c4e4507] | 140 | list_remove(&answer->data.phone->link);
|
---|
[eb3d379] | 141 | answer->data.phone->state = IPC_PHONE_SLAMMED;
|
---|
[ca687ad] | 142 | }
|
---|
| 143 | spinlock_unlock(&TASK->answerbox.lock);
|
---|
| 144 | spinlock_unlock(&answer->data.phone->lock);
|
---|
[9f22213] | 145 | }
|
---|
| 146 |
|
---|
| 147 | if (!olddata)
|
---|
[7c23af9] | 148 | return 0;
|
---|
[9f22213] | 149 |
|
---|
[fbcfd458] | 150 | if (IPC_GET_METHOD(*olddata) == IPC_M_CONNECT_TO_ME) {
|
---|
[2ba7810] | 151 | phoneid = IPC_GET_ARG3(*olddata);
|
---|
[2d5a54f3] | 152 | if (IPC_GET_RETVAL(answer->data)) {
|
---|
| 153 | /* The connection was not accepted */
|
---|
| 154 | phone_dealloc(phoneid);
|
---|
[2ba7810] | 155 | } else {
|
---|
[7c7aae16] | 156 | /* The connection was accepted */
|
---|
[51ec40f] | 157 | phone_connect(phoneid, &answer->sender->answerbox);
|
---|
[8b243f2] | 158 | /* Set 'phone hash' as arg3 of response */
|
---|
[51ec40f] | 159 | IPC_SET_ARG3(answer->data,
|
---|
| 160 | (unative_t) &TASK->phones[phoneid]);
|
---|
[2d5a54f3] | 161 | }
|
---|
[fbcfd458] | 162 | } else if (IPC_GET_METHOD(*olddata) == IPC_M_CONNECT_ME_TO) {
|
---|
[37c57f2] | 163 | /* If the users accepted call, connect */
|
---|
| 164 | if (!IPC_GET_RETVAL(answer->data)) {
|
---|
[51ec40f] | 165 | ipc_phone_connect((phone_t *) IPC_GET_ARG3(*olddata),
|
---|
| 166 | &TASK->answerbox);
|
---|
[37c57f2] | 167 | }
|
---|
[8497711] | 168 | } else if (IPC_GET_METHOD(*olddata) == IPC_M_AS_AREA_SEND) {
|
---|
[51ec40f] | 169 | if (!IPC_GET_RETVAL(answer->data)) {
|
---|
| 170 | /* Accepted, handle as_area receipt */
|
---|
[8d6bc2d5] | 171 | ipl_t ipl;
|
---|
[76d7305] | 172 | int rc;
|
---|
[8d6bc2d5] | 173 | as_t *as;
|
---|
| 174 |
|
---|
| 175 | ipl = interrupts_disable();
|
---|
| 176 | spinlock_lock(&answer->sender->lock);
|
---|
| 177 | as = answer->sender->as;
|
---|
| 178 | spinlock_unlock(&answer->sender->lock);
|
---|
| 179 | interrupts_restore(ipl);
|
---|
| 180 |
|
---|
[51ec40f] | 181 | rc = as_area_share(as, IPC_GET_ARG1(*olddata),
|
---|
| 182 | IPC_GET_ARG2(*olddata), AS,
|
---|
| 183 | IPC_GET_ARG1(answer->data), IPC_GET_ARG3(*olddata));
|
---|
[76d7305] | 184 | IPC_SET_RETVAL(answer->data, rc);
|
---|
| 185 | return rc;
|
---|
[46fc2f9] | 186 | }
|
---|
| 187 | } else if (IPC_GET_METHOD(*olddata) == IPC_M_AS_AREA_RECV) {
|
---|
| 188 | if (!IPC_GET_RETVAL(answer->data)) {
|
---|
| 189 | ipl_t ipl;
|
---|
| 190 | as_t *as;
|
---|
[d6e5cbc] | 191 | int rc;
|
---|
[46fc2f9] | 192 |
|
---|
| 193 | ipl = interrupts_disable();
|
---|
| 194 | spinlock_lock(&answer->sender->lock);
|
---|
| 195 | as = answer->sender->as;
|
---|
| 196 | spinlock_unlock(&answer->sender->lock);
|
---|
| 197 | interrupts_restore(ipl);
|
---|
| 198 |
|
---|
[51ec40f] | 199 | rc = as_area_share(AS, IPC_GET_ARG1(answer->data),
|
---|
| 200 | IPC_GET_ARG2(*olddata), as, IPC_GET_ARG1(*olddata),
|
---|
| 201 | IPC_GET_ARG2(answer->data));
|
---|
[d6e5cbc] | 202 | IPC_SET_RETVAL(answer->data, rc);
|
---|
[7c23af9] | 203 | }
|
---|
[2d5a54f3] | 204 | }
|
---|
[7c23af9] | 205 | return 0;
|
---|
[2d5a54f3] | 206 | }
|
---|
| 207 |
|
---|
[8b243f2] | 208 | /** Called before the request is sent.
|
---|
| 209 | *
|
---|
| 210 | * @param call Call structure with the request.
|
---|
[7c7aae16] | 211 | *
|
---|
[8b243f2] | 212 | * @return Return 0 on success, ELIMIT or EPERM on error.
|
---|
[7c7aae16] | 213 | */
|
---|
| 214 | static int request_preprocess(call_t *call)
|
---|
| 215 | {
|
---|
| 216 | int newphid;
|
---|
[7c23af9] | 217 | size_t size;
|
---|
[7c7aae16] | 218 |
|
---|
| 219 | switch (IPC_GET_METHOD(call->data)) {
|
---|
| 220 | case IPC_M_CONNECT_ME_TO:
|
---|
| 221 | newphid = phone_alloc();
|
---|
| 222 | if (newphid < 0)
|
---|
| 223 | return ELIMIT;
|
---|
| 224 | /* Set arg3 for server */
|
---|
[51ec40f] | 225 | IPC_SET_ARG3(call->data, (unative_t) &TASK->phones[newphid]);
|
---|
[7c7aae16] | 226 | call->flags |= IPC_CALL_CONN_ME_TO;
|
---|
[0c1a5d8a] | 227 | call->priv = newphid;
|
---|
[7c7aae16] | 228 | break;
|
---|
[8497711] | 229 | case IPC_M_AS_AREA_SEND:
|
---|
[fd4d8c0] | 230 | size = as_get_size(IPC_GET_ARG1(call->data));
|
---|
[8b243f2] | 231 | if (!size)
|
---|
[7c23af9] | 232 | return EPERM;
|
---|
[fd4d8c0] | 233 | IPC_SET_ARG2(call->data, size);
|
---|
[7c23af9] | 234 | break;
|
---|
[7c7aae16] | 235 | default:
|
---|
| 236 | break;
|
---|
| 237 | }
|
---|
| 238 | return 0;
|
---|
| 239 | }
|
---|
| 240 |
|
---|
[8b243f2] | 241 | /*******************************************************************************
|
---|
| 242 | * Functions called to process received call/answer before passing it to uspace.
|
---|
| 243 | *******************************************************************************/
|
---|
[2d5a54f3] | 244 |
|
---|
[8b243f2] | 245 | /** Do basic kernel processing of received call answer.
|
---|
| 246 | *
|
---|
| 247 | * @param call Call structure with the answer.
|
---|
| 248 | */
|
---|
[7c7aae16] | 249 | static void process_answer(call_t *call)
|
---|
[2d5a54f3] | 250 | {
|
---|
[51ec40f] | 251 | if (IPC_GET_RETVAL(call->data) == EHANGUP &&
|
---|
| 252 | (call->flags & IPC_CALL_FORWARDED))
|
---|
[9f22213] | 253 | IPC_SET_RETVAL(call->data, EFORWARD);
|
---|
[7c7aae16] | 254 |
|
---|
| 255 | if (call->flags & IPC_CALL_CONN_ME_TO) {
|
---|
| 256 | if (IPC_GET_RETVAL(call->data))
|
---|
[0c1a5d8a] | 257 | phone_dealloc(call->priv);
|
---|
[7c7aae16] | 258 | else
|
---|
[0c1a5d8a] | 259 | IPC_SET_ARG3(call->data, call->priv);
|
---|
[7c7aae16] | 260 | }
|
---|
[2d5a54f3] | 261 | }
|
---|
| 262 |
|
---|
[8b243f2] | 263 | /** Do basic kernel processing of received call request.
|
---|
| 264 | *
|
---|
| 265 | * @param box Destination answerbox structure.
|
---|
| 266 | * @param call Call structure with the request.
|
---|
[2d5a54f3] | 267 | *
|
---|
[8b243f2] | 268 | * @return Return 0 if the call should be passed to userspace.
|
---|
| 269 | * Return -1 if the call should be ignored.
|
---|
[2d5a54f3] | 270 | */
|
---|
[51ec40f] | 271 | static int process_request(answerbox_t *box, call_t *call)
|
---|
[2d5a54f3] | 272 | {
|
---|
| 273 | int phoneid;
|
---|
| 274 |
|
---|
[fbcfd458] | 275 | if (IPC_GET_METHOD(call->data) == IPC_M_CONNECT_TO_ME) {
|
---|
[2ba7810] | 276 | phoneid = phone_alloc();
|
---|
[2d5a54f3] | 277 | if (phoneid < 0) { /* Failed to allocate phone */
|
---|
| 278 | IPC_SET_RETVAL(call->data, ELIMIT);
|
---|
[8b243f2] | 279 | ipc_answer(box, call);
|
---|
[2d5a54f3] | 280 | return -1;
|
---|
| 281 | }
|
---|
| 282 | IPC_SET_ARG3(call->data, phoneid);
|
---|
| 283 | }
|
---|
| 284 | return 0;
|
---|
| 285 | }
|
---|
| 286 |
|
---|
[8b243f2] | 287 | /** Make a fast call over IPC, wait for reply and return to user.
|
---|
| 288 | *
|
---|
| 289 | * This function can handle only one argument of payload, but is faster than
|
---|
| 290 | * the generic function (i.e. sys_ipc_call_sync()).
|
---|
[2d5a54f3] | 291 | *
|
---|
[8b243f2] | 292 | * @param phoneid Phone handle for the call.
|
---|
| 293 | * @param method Method of the call.
|
---|
| 294 | * @param arg1 Service-defined payload argument.
|
---|
| 295 | * @param data Address of userspace structure where the reply call will
|
---|
| 296 | * be stored.
|
---|
| 297 | *
|
---|
| 298 | * @return Returns 0 on success.
|
---|
| 299 | * Return ENOENT if there is no such phone handle.
|
---|
[2d5a54f3] | 300 | */
|
---|
[51ec40f] | 301 | unative_t sys_ipc_call_sync_fast(unative_t phoneid, unative_t method,
|
---|
| 302 | unative_t arg1, ipc_data_t *data)
|
---|
[2d5a54f3] | 303 | {
|
---|
| 304 | call_t call;
|
---|
| 305 | phone_t *phone;
|
---|
[7c7aae16] | 306 | int res;
|
---|
[2d5a54f3] | 307 |
|
---|
[ba81cab] | 308 | GET_CHECK_PHONE(phone, phoneid, return ENOENT);
|
---|
[4e49572] | 309 |
|
---|
[ba81cab] | 310 | ipc_call_static_init(&call);
|
---|
[2d5a54f3] | 311 | IPC_SET_METHOD(call.data, method);
|
---|
| 312 | IPC_SET_ARG1(call.data, arg1);
|
---|
| 313 |
|
---|
[8b243f2] | 314 | if (!(res = request_preprocess(&call))) {
|
---|
[7c7aae16] | 315 | ipc_call_sync(phone, &call);
|
---|
| 316 | process_answer(&call);
|
---|
[8b243f2] | 317 | } else {
|
---|
[7c7aae16] | 318 | IPC_SET_RETVAL(call.data, res);
|
---|
[8b243f2] | 319 | }
|
---|
[fbcfd458] | 320 | STRUCT_TO_USPACE(&data->args, &call.data.args);
|
---|
[2d5a54f3] | 321 |
|
---|
| 322 | return 0;
|
---|
| 323 | }
|
---|
| 324 |
|
---|
[8b243f2] | 325 | /** Make a synchronous IPC call allowing to transmit the entire payload.
|
---|
| 326 | *
|
---|
| 327 | * @param phoneid Phone handle for the call.
|
---|
| 328 | * @param question Userspace address of call data with the request.
|
---|
| 329 | * @param reply Userspace address of call data where to store the answer.
|
---|
| 330 | *
|
---|
| 331 | * @return Zero on success or an error code.
|
---|
| 332 | */
|
---|
[51ec40f] | 333 | unative_t sys_ipc_call_sync(unative_t phoneid, ipc_data_t *question,
|
---|
| 334 | ipc_data_t *reply)
|
---|
[2d5a54f3] | 335 | {
|
---|
| 336 | call_t call;
|
---|
| 337 | phone_t *phone;
|
---|
[7c7aae16] | 338 | int res;
|
---|
[e3c762cd] | 339 | int rc;
|
---|
[2d5a54f3] | 340 |
|
---|
[ba81cab] | 341 | ipc_call_static_init(&call);
|
---|
[51ec40f] | 342 | rc = copy_from_uspace(&call.data.args, &question->args,
|
---|
| 343 | sizeof(call.data.args));
|
---|
[e3c762cd] | 344 | if (rc != 0)
|
---|
[7f1c620] | 345 | return (unative_t) rc;
|
---|
[2ba7810] | 346 |
|
---|
[ba81cab] | 347 | GET_CHECK_PHONE(phone, phoneid, return ENOENT);
|
---|
[4e49572] | 348 |
|
---|
[8b243f2] | 349 | if (!(res = request_preprocess(&call))) {
|
---|
[7c7aae16] | 350 | ipc_call_sync(phone, &call);
|
---|
| 351 | process_answer(&call);
|
---|
| 352 | } else
|
---|
| 353 | IPC_SET_RETVAL(call.data, res);
|
---|
[2d5a54f3] | 354 |
|
---|
[e3c762cd] | 355 | rc = STRUCT_TO_USPACE(&reply->args, &call.data.args);
|
---|
| 356 | if (rc != 0)
|
---|
| 357 | return rc;
|
---|
[2d5a54f3] | 358 |
|
---|
| 359 | return 0;
|
---|
| 360 | }
|
---|
| 361 |
|
---|
[8b243f2] | 362 | /** Check that the task did not exceed the allowed limit of asynchronous calls.
|
---|
[2d5a54f3] | 363 | *
|
---|
[8b243f2] | 364 | * @return Return 0 if limit not reached or -1 if limit exceeded.
|
---|
[2d5a54f3] | 365 | */
|
---|
| 366 | static int check_call_limit(void)
|
---|
| 367 | {
|
---|
| 368 | if (atomic_preinc(&TASK->active_calls) > IPC_MAX_ASYNC_CALLS) {
|
---|
| 369 | atomic_dec(&TASK->active_calls);
|
---|
| 370 | return -1;
|
---|
| 371 | }
|
---|
| 372 | return 0;
|
---|
| 373 | }
|
---|
| 374 |
|
---|
[8b243f2] | 375 | /** Make a fast asynchronous call over IPC.
|
---|
[2d5a54f3] | 376 | *
|
---|
[8b243f2] | 377 | * This function can only handle two arguments of payload, but is faster than
|
---|
| 378 | * the generic function sys_ipc_call_async().
|
---|
| 379 | *
|
---|
| 380 | * @param phoneid Phone handle for the call.
|
---|
| 381 | * @param method Method of the call.
|
---|
| 382 | * @param arg1 Service-defined payload argument.
|
---|
| 383 | * @param arg2 Service-defined payload argument.
|
---|
| 384 | *
|
---|
| 385 | * @return Return call hash on success.
|
---|
| 386 | * Return IPC_CALLRET_FATAL in case of a fatal error and
|
---|
| 387 | * IPC_CALLRET_TEMPORARY if there are too many pending
|
---|
| 388 | * asynchronous requests; answers should be handled first.
|
---|
[2d5a54f3] | 389 | */
|
---|
[51ec40f] | 390 | unative_t sys_ipc_call_async_fast(unative_t phoneid, unative_t method,
|
---|
| 391 | unative_t arg1, unative_t arg2)
|
---|
[2d5a54f3] | 392 | {
|
---|
| 393 | call_t *call;
|
---|
| 394 | phone_t *phone;
|
---|
[7c7aae16] | 395 | int res;
|
---|
[2ba7810] | 396 |
|
---|
[2d5a54f3] | 397 | if (check_call_limit())
|
---|
| 398 | return IPC_CALLRET_TEMPORARY;
|
---|
| 399 |
|
---|
[7c7aae16] | 400 | GET_CHECK_PHONE(phone, phoneid, return IPC_CALLRET_FATAL);
|
---|
[4e49572] | 401 |
|
---|
[5626277] | 402 | call = ipc_call_alloc(0);
|
---|
[2d5a54f3] | 403 | IPC_SET_METHOD(call->data, method);
|
---|
| 404 | IPC_SET_ARG1(call->data, arg1);
|
---|
| 405 | IPC_SET_ARG2(call->data, arg2);
|
---|
[85d24f61] | 406 | IPC_SET_ARG3(call->data, 0);
|
---|
[2d5a54f3] | 407 |
|
---|
[51ec40f] | 408 | if (!(res = request_preprocess(call)))
|
---|
[7c7aae16] | 409 | ipc_call(phone, call);
|
---|
| 410 | else
|
---|
| 411 | ipc_backsend_err(phone, call, res);
|
---|
[2d5a54f3] | 412 |
|
---|
[7f1c620] | 413 | return (unative_t) call;
|
---|
[2d5a54f3] | 414 | }
|
---|
| 415 |
|
---|
[8b243f2] | 416 | /** Make an asynchronous IPC call allowing to transmit the entire payload.
|
---|
| 417 | *
|
---|
| 418 | * @param phoneid Phone handle for the call.
|
---|
| 419 | * @param data Userspace address of call data with the request.
|
---|
[2d5a54f3] | 420 | *
|
---|
[8b243f2] | 421 | * @return See sys_ipc_call_async_fast().
|
---|
[2d5a54f3] | 422 | */
|
---|
[7f1c620] | 423 | unative_t sys_ipc_call_async(unative_t phoneid, ipc_data_t *data)
|
---|
[2d5a54f3] | 424 | {
|
---|
| 425 | call_t *call;
|
---|
| 426 | phone_t *phone;
|
---|
[7c7aae16] | 427 | int res;
|
---|
[e3c762cd] | 428 | int rc;
|
---|
[2d5a54f3] | 429 |
|
---|
| 430 | if (check_call_limit())
|
---|
| 431 | return IPC_CALLRET_TEMPORARY;
|
---|
| 432 |
|
---|
[7c7aae16] | 433 | GET_CHECK_PHONE(phone, phoneid, return IPC_CALLRET_FATAL);
|
---|
[4e49572] | 434 |
|
---|
[5626277] | 435 | call = ipc_call_alloc(0);
|
---|
[51ec40f] | 436 | rc = copy_from_uspace(&call->data.args, &data->args,
|
---|
| 437 | sizeof(call->data.args));
|
---|
[f58af46] | 438 | if (rc != 0) {
|
---|
| 439 | ipc_call_free(call);
|
---|
[7f1c620] | 440 | return (unative_t) rc;
|
---|
[f58af46] | 441 | }
|
---|
[51ec40f] | 442 | if (!(res = request_preprocess(call)))
|
---|
[7c7aae16] | 443 | ipc_call(phone, call);
|
---|
| 444 | else
|
---|
| 445 | ipc_backsend_err(phone, call, res);
|
---|
[2d5a54f3] | 446 |
|
---|
[7f1c620] | 447 | return (unative_t) call;
|
---|
[2d5a54f3] | 448 | }
|
---|
| 449 |
|
---|
[8b243f2] | 450 | /** Forward a received call to another destination.
|
---|
| 451 | *
|
---|
| 452 | * @param callid Hash of the call to forward.
|
---|
| 453 | * @param phoneid Phone handle to use for forwarding.
|
---|
| 454 | * @param method New method to use for the forwarded call.
|
---|
| 455 | * @param arg1 New value of the first argument for the forwarded call.
|
---|
| 456 | *
|
---|
| 457 | * @return Return 0 on succes, otherwise return an error code.
|
---|
[2ba7810] | 458 | *
|
---|
[8b243f2] | 459 | * In case the original method is a system method, ARG1 and ARG2 are overwritten
|
---|
| 460 | * in the forwarded message with the new method and the new arg1, respectively.
|
---|
| 461 | * Otherwise the METHOD and ARG1 are rewritten with the new method and arg1,
|
---|
| 462 | * respectively.
|
---|
[37c57f2] | 463 | *
|
---|
| 464 | * Warning: If implementing non-fast version, make sure that
|
---|
[8b243f2] | 465 | * ARG3 is not rewritten for certain system IPC
|
---|
[2ba7810] | 466 | */
|
---|
[7f1c620] | 467 | unative_t sys_ipc_forward_fast(unative_t callid, unative_t phoneid,
|
---|
[51ec40f] | 468 | unative_t method, unative_t arg1)
|
---|
[2ba7810] | 469 | {
|
---|
| 470 | call_t *call;
|
---|
| 471 | phone_t *phone;
|
---|
| 472 |
|
---|
| 473 | call = get_call(callid);
|
---|
| 474 | if (!call)
|
---|
| 475 | return ENOENT;
|
---|
| 476 |
|
---|
[9f22213] | 477 | call->flags |= IPC_CALL_FORWARDED;
|
---|
| 478 |
|
---|
[ba81cab] | 479 | GET_CHECK_PHONE(phone, phoneid, {
|
---|
[2ba7810] | 480 | IPC_SET_RETVAL(call->data, EFORWARD);
|
---|
| 481 | ipc_answer(&TASK->answerbox, call);
|
---|
| 482 | return ENOENT;
|
---|
[ba81cab] | 483 | });
|
---|
[2ba7810] | 484 |
|
---|
| 485 | if (!is_forwardable(IPC_GET_METHOD(call->data))) {
|
---|
| 486 | IPC_SET_RETVAL(call->data, EFORWARD);
|
---|
| 487 | ipc_answer(&TASK->answerbox, call);
|
---|
| 488 | return EPERM;
|
---|
| 489 | }
|
---|
| 490 |
|
---|
| 491 | /* Userspace is not allowed to change method of system methods
|
---|
| 492 | * on forward, allow changing ARG1 and ARG2 by means of method and arg1
|
---|
| 493 | */
|
---|
| 494 | if (is_system_method(IPC_GET_METHOD(call->data))) {
|
---|
[7c7aae16] | 495 | if (IPC_GET_METHOD(call->data) == IPC_M_CONNECT_TO_ME)
|
---|
| 496 | phone_dealloc(IPC_GET_ARG3(call->data));
|
---|
| 497 |
|
---|
[2ba7810] | 498 | IPC_SET_ARG1(call->data, method);
|
---|
| 499 | IPC_SET_ARG2(call->data, arg1);
|
---|
| 500 | } else {
|
---|
| 501 | IPC_SET_METHOD(call->data, method);
|
---|
| 502 | IPC_SET_ARG1(call->data, arg1);
|
---|
| 503 | }
|
---|
| 504 |
|
---|
[9f22213] | 505 | return ipc_forward(call, phone, &TASK->answerbox);
|
---|
[2ba7810] | 506 | }
|
---|
| 507 |
|
---|
[8b243f2] | 508 | /** Answer an IPC call - fast version.
|
---|
| 509 | *
|
---|
| 510 | * This function can handle only two return arguments of payload, but is faster
|
---|
| 511 | * than the generic sys_ipc_answer().
|
---|
| 512 | *
|
---|
| 513 | * @param callid Hash of the call to be answered.
|
---|
| 514 | * @param retval Return value of the answer.
|
---|
| 515 | * @param arg1 Service-defined return value.
|
---|
| 516 | * @param arg2 Service-defined return value.
|
---|
| 517 | *
|
---|
| 518 | * @return Return 0 on success, otherwise return an error code.
|
---|
| 519 | */
|
---|
[51ec40f] | 520 | unative_t sys_ipc_answer_fast(unative_t callid, unative_t retval,
|
---|
| 521 | unative_t arg1, unative_t arg2)
|
---|
[2d5a54f3] | 522 | {
|
---|
| 523 | call_t *call;
|
---|
[2ba7810] | 524 | ipc_data_t saved_data;
|
---|
[9f22213] | 525 | int saveddata = 0;
|
---|
[7c23af9] | 526 | int rc;
|
---|
[2d5a54f3] | 527 |
|
---|
[897f2e76] | 528 | /* Do not answer notification callids */
|
---|
| 529 | if (callid & IPC_CALLID_NOTIFICATION)
|
---|
| 530 | return 0;
|
---|
| 531 |
|
---|
[2ba7810] | 532 | call = get_call(callid);
|
---|
| 533 | if (!call)
|
---|
| 534 | return ENOENT;
|
---|
[2d5a54f3] | 535 |
|
---|
[9f22213] | 536 | if (answer_need_old(call)) {
|
---|
[2ba7810] | 537 | memcpy(&saved_data, &call->data, sizeof(call->data));
|
---|
[9f22213] | 538 | saveddata = 1;
|
---|
[2d5a54f3] | 539 | }
|
---|
| 540 |
|
---|
| 541 | IPC_SET_RETVAL(call->data, retval);
|
---|
| 542 | IPC_SET_ARG1(call->data, arg1);
|
---|
| 543 | IPC_SET_ARG2(call->data, arg2);
|
---|
[7c23af9] | 544 | rc = answer_preprocess(call, saveddata ? &saved_data : NULL);
|
---|
[2d5a54f3] | 545 |
|
---|
| 546 | ipc_answer(&TASK->answerbox, call);
|
---|
[7c23af9] | 547 | return rc;
|
---|
[2d5a54f3] | 548 | }
|
---|
| 549 |
|
---|
[8b243f2] | 550 | /** Answer an IPC call.
|
---|
| 551 | *
|
---|
| 552 | * @param callid Hash of the call to be answered.
|
---|
| 553 | * @param data Userspace address of call data with the answer.
|
---|
| 554 | *
|
---|
| 555 | * @return Return 0 on success, otherwise return an error code.
|
---|
| 556 | */
|
---|
[7f1c620] | 557 | unative_t sys_ipc_answer(unative_t callid, ipc_data_t *data)
|
---|
[2d5a54f3] | 558 | {
|
---|
| 559 | call_t *call;
|
---|
[2ba7810] | 560 | ipc_data_t saved_data;
|
---|
[9f22213] | 561 | int saveddata = 0;
|
---|
[e3c762cd] | 562 | int rc;
|
---|
[2d5a54f3] | 563 |
|
---|
[897f2e76] | 564 | /* Do not answer notification callids */
|
---|
| 565 | if (callid & IPC_CALLID_NOTIFICATION)
|
---|
| 566 | return 0;
|
---|
| 567 |
|
---|
[2ba7810] | 568 | call = get_call(callid);
|
---|
| 569 | if (!call)
|
---|
| 570 | return ENOENT;
|
---|
[2d5a54f3] | 571 |
|
---|
[9f22213] | 572 | if (answer_need_old(call)) {
|
---|
[2ba7810] | 573 | memcpy(&saved_data, &call->data, sizeof(call->data));
|
---|
[9f22213] | 574 | saveddata = 1;
|
---|
[2d5a54f3] | 575 | }
|
---|
[e3c762cd] | 576 | rc = copy_from_uspace(&call->data.args, &data->args,
|
---|
[51ec40f] | 577 | sizeof(call->data.args));
|
---|
[e3c762cd] | 578 | if (rc != 0)
|
---|
| 579 | return rc;
|
---|
[2d5a54f3] | 580 |
|
---|
[7c23af9] | 581 | rc = answer_preprocess(call, saveddata ? &saved_data : NULL);
|
---|
[2d5a54f3] | 582 |
|
---|
| 583 | ipc_answer(&TASK->answerbox, call);
|
---|
| 584 |
|
---|
[7c23af9] | 585 | return rc;
|
---|
[2d5a54f3] | 586 | }
|
---|
| 587 |
|
---|
[8b243f2] | 588 | /** Hang up a phone.
|
---|
[2d5a54f3] | 589 | *
|
---|
[8b243f2] | 590 | * @param Phone handle of the phone to be hung up.
|
---|
| 591 | *
|
---|
| 592 | * @return Return 0 on success or an error code.
|
---|
[fbcfd458] | 593 | */
|
---|
[7f1c620] | 594 | unative_t sys_ipc_hangup(int phoneid)
|
---|
[fbcfd458] | 595 | {
|
---|
| 596 | phone_t *phone;
|
---|
| 597 |
|
---|
| 598 | GET_CHECK_PHONE(phone, phoneid, return ENOENT);
|
---|
| 599 |
|
---|
[d8f7362] | 600 | if (ipc_phone_hangup(phone))
|
---|
[fbcfd458] | 601 | return -1;
|
---|
| 602 |
|
---|
| 603 | return 0;
|
---|
| 604 | }
|
---|
| 605 |
|
---|
[8b243f2] | 606 | /** Wait for an incoming IPC call or an answer.
|
---|
[fbcfd458] | 607 | *
|
---|
[51ec40f] | 608 | * @param calldata Pointer to buffer where the call/answer data is stored.
|
---|
| 609 | * @param usec Timeout. See waitq_sleep_timeout() for explanation.
|
---|
| 610 | * @param flags Select mode of sleep operation. See waitq_sleep_timeout()
|
---|
| 611 | * for explanation.
|
---|
[bd5a663] | 612 | *
|
---|
[8b243f2] | 613 | * @return Hash of the call.
|
---|
| 614 | * If IPC_CALLID_NOTIFICATION bit is set in the hash, the
|
---|
| 615 | * call is a notification. IPC_CALLID_ANSWERED denotes an
|
---|
| 616 | * answer.
|
---|
[2d5a54f3] | 617 | */
|
---|
[7f1c620] | 618 | unative_t sys_ipc_wait_for_call(ipc_data_t *calldata, uint32_t usec, int flags)
|
---|
[2d5a54f3] | 619 | {
|
---|
| 620 | call_t *call;
|
---|
| 621 |
|
---|
| 622 | restart:
|
---|
[51ec40f] | 623 | call = ipc_wait_for_call(&TASK->answerbox, usec,
|
---|
| 624 | flags | SYNCH_FLAGS_INTERRUPTIBLE);
|
---|
[9f22213] | 625 | if (!call)
|
---|
| 626 | return 0;
|
---|
[2d5a54f3] | 627 |
|
---|
[5626277] | 628 | if (call->flags & IPC_CALL_NOTIF) {
|
---|
| 629 | ASSERT(! (call->flags & IPC_CALL_STATIC_ALLOC));
|
---|
[43752b6] | 630 |
|
---|
| 631 | /* Set in_phone_hash to the interrupt counter */
|
---|
[0c1a5d8a] | 632 | call->data.phone = (void *) call->priv;
|
---|
[43752b6] | 633 |
|
---|
| 634 | STRUCT_TO_USPACE(calldata, &call->data);
|
---|
| 635 |
|
---|
[5626277] | 636 | ipc_call_free(call);
|
---|
| 637 |
|
---|
[8b243f2] | 638 | return ((unative_t) call) | IPC_CALLID_NOTIFICATION;
|
---|
[5626277] | 639 | }
|
---|
| 640 |
|
---|
[2d5a54f3] | 641 | if (call->flags & IPC_CALL_ANSWERED) {
|
---|
[7c7aae16] | 642 | process_answer(call);
|
---|
[2d5a54f3] | 643 |
|
---|
| 644 | ASSERT(! (call->flags & IPC_CALL_STATIC_ALLOC));
|
---|
[fbcfd458] | 645 |
|
---|
| 646 | atomic_dec(&TASK->active_calls);
|
---|
| 647 |
|
---|
| 648 | if (call->flags & IPC_CALL_DISCARD_ANSWER) {
|
---|
| 649 | ipc_call_free(call);
|
---|
| 650 | goto restart;
|
---|
| 651 | }
|
---|
| 652 |
|
---|
| 653 | STRUCT_TO_USPACE(&calldata->args, &call->data.args);
|
---|
[2d5a54f3] | 654 | ipc_call_free(call);
|
---|
| 655 |
|
---|
[8b243f2] | 656 | return ((unative_t) call) | IPC_CALLID_ANSWERED;
|
---|
[2d5a54f3] | 657 | }
|
---|
[fbcfd458] | 658 |
|
---|
[2d5a54f3] | 659 | if (process_request(&TASK->answerbox, call))
|
---|
| 660 | goto restart;
|
---|
[fbcfd458] | 661 |
|
---|
[7c7aae16] | 662 | /* Include phone address('id') of the caller in the request,
|
---|
| 663 | * copy whole call->data, not only call->data.args */
|
---|
[bd55bbb] | 664 | if (STRUCT_TO_USPACE(calldata, &call->data)) {
|
---|
| 665 | return 0;
|
---|
| 666 | }
|
---|
[7f1c620] | 667 | return (unative_t)call;
|
---|
[2d5a54f3] | 668 | }
|
---|
[5626277] | 669 |
|
---|
[8b243f2] | 670 | /** Connect an IRQ handler to a task.
|
---|
[2b017ba] | 671 | *
|
---|
[8b243f2] | 672 | * @param inr IRQ number.
|
---|
| 673 | * @param devno Device number.
|
---|
| 674 | * @param method Method to be associated with the notification.
|
---|
| 675 | * @param ucode Uspace pointer to the top-half pseudocode.
|
---|
[2b017ba] | 676 | *
|
---|
[8b243f2] | 677 | * @return EPERM or a return code returned by ipc_irq_register().
|
---|
[2b017ba] | 678 | */
|
---|
[51ec40f] | 679 | unative_t sys_ipc_register_irq(inr_t inr, devno_t devno, unative_t method,
|
---|
| 680 | irq_code_t *ucode)
|
---|
[5626277] | 681 | {
|
---|
[2bb8648] | 682 | if (!(cap_get(TASK) & CAP_IRQ_REG))
|
---|
| 683 | return EPERM;
|
---|
| 684 |
|
---|
[2b017ba] | 685 | return ipc_irq_register(&TASK->answerbox, inr, devno, method, ucode);
|
---|
[5626277] | 686 | }
|
---|
| 687 |
|
---|
[8b243f2] | 688 | /** Disconnect an IRQ handler from a task.
|
---|
| 689 | *
|
---|
| 690 | * @param inr IRQ number.
|
---|
| 691 | * @param devno Device number.
|
---|
[2b017ba] | 692 | *
|
---|
[8b243f2] | 693 | * @return Zero on success or EPERM on error..
|
---|
[2b017ba] | 694 | */
|
---|
| 695 | unative_t sys_ipc_unregister_irq(inr_t inr, devno_t devno)
|
---|
[5626277] | 696 | {
|
---|
[2bb8648] | 697 | if (!(cap_get(TASK) & CAP_IRQ_REG))
|
---|
| 698 | return EPERM;
|
---|
| 699 |
|
---|
[2b017ba] | 700 | ipc_irq_unregister(&TASK->answerbox, inr, devno);
|
---|
[5626277] | 701 |
|
---|
| 702 | return 0;
|
---|
| 703 | }
|
---|
[b45c443] | 704 |
|
---|
[cc73a8a1] | 705 | /** @}
|
---|
[b45c443] | 706 | */
|
---|