source: mainline/uspace/lib/c/generic/net/modules.c@ 54de5ebd

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

Fix comment style in lib/c/generic/net.

  • Property mode set to 100644
File size: 7.4 KB
Line 
1/*
2 * Copyright (c) 2009 Lukas Mejdrech
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 libc
30 * @{
31 */
32
33/** @file
34 * Generic module functions implementation.
35 *
36 * @todo MAKE IT POSSIBLE TO REMOVE THIS FILE VIA EITHER REPLACING PART OF ITS
37 * FUNCTIONALITY OR VIA INTEGRATING ITS FUNCTIONALITY MORE TIGHTLY WITH THE REST
38 * OF THE SYSTEM.
39 */
40
41#include <async.h>
42#include <malloc.h>
43#include <errno.h>
44#include <sys/time.h>
45
46#include <ipc/ipc.h>
47#include <ipc/services.h>
48
49#include <net/modules.h>
50
51/** The time between connect requests in microseconds. */
52#define MODULE_WAIT_TIME (10 * 1000)
53
54/** Answers the call.
55 *
56 * @param[in] callid The call identifier.
57 * @param[in] result The message processing result.
58 * @param[in] answer The message processing answer.
59 * @param[in] answer_count The number of answer parameters.
60 */
61void
62answer_call(ipc_callid_t callid, int result, ipc_call_t *answer,
63 int answer_count)
64{
65 /* Choose the most efficient answer function */
66 if (answer || (!answer_count)) {
67 switch (answer_count) {
68 case 0:
69 ipc_answer_0(callid, (sysarg_t) result);
70 break;
71 case 1:
72 ipc_answer_1(callid, (sysarg_t) result,
73 IPC_GET_ARG1(*answer));
74 break;
75 case 2:
76 ipc_answer_2(callid, (sysarg_t) result,
77 IPC_GET_ARG1(*answer), IPC_GET_ARG2(*answer));
78 break;
79 case 3:
80 ipc_answer_3(callid, (sysarg_t) result,
81 IPC_GET_ARG1(*answer), IPC_GET_ARG2(*answer),
82 IPC_GET_ARG3(*answer));
83 break;
84 case 4:
85 ipc_answer_4(callid, (sysarg_t) result,
86 IPC_GET_ARG1(*answer), IPC_GET_ARG2(*answer),
87 IPC_GET_ARG3(*answer), IPC_GET_ARG4(*answer));
88 break;
89 case 5:
90 default:
91 ipc_answer_5(callid, (sysarg_t) result,
92 IPC_GET_ARG1(*answer), IPC_GET_ARG2(*answer),
93 IPC_GET_ARG3(*answer), IPC_GET_ARG4(*answer),
94 IPC_GET_ARG5(*answer));
95 break;
96 }
97 }
98}
99
100/** Create bidirectional connection with the needed module service and registers
101 * the message receiver.
102 *
103 * @param[in] need The needed module service.
104 * @param[in] arg1 The first parameter.
105 * @param[in] arg2 The second parameter.
106 * @param[in] arg3 The third parameter.
107 * @param[in] client_receiver The message receiver.
108 *
109 * @return The phone of the needed service.
110 * @return Other error codes as defined for the ipc_connect_to_me()
111 * function.
112 */
113int bind_service(services_t need, sysarg_t arg1, sysarg_t arg2, sysarg_t arg3,
114 async_client_conn_t client_receiver)
115{
116 return bind_service_timeout(need, arg1, arg2, arg3, client_receiver, 0);
117}
118
119/** Create bidirectional connection with the needed module service and registers
120 * the message receiver.
121 *
122 * @param[in] need The needed module service.
123 * @param[in] arg1 The first parameter.
124 * @param[in] arg2 The second parameter.
125 * @param[in] arg3 The third parameter.
126 * @param[in] client_receiver The message receiver.
127 * @param[in] timeout The connection timeout in microseconds. No timeout if
128 * set to zero (0).
129 *
130 * @return The phone of the needed service.
131 * @return ETIMEOUT if the connection timeouted.
132 * @return Other error codes as defined for the ipc_connect_to_me()
133 * function.
134 *
135 */
136int bind_service_timeout(services_t need, sysarg_t arg1, sysarg_t arg2,
137 sysarg_t arg3, async_client_conn_t client_receiver, suseconds_t timeout)
138{
139 int rc;
140
141 /* Connect to the needed service */
142 int phone = connect_to_service_timeout(need, timeout);
143 if (phone >= 0) {
144 /* Request the bidirectional connection */
145 sysarg_t phonehash;
146
147 rc = ipc_connect_to_me(phone, arg1, arg2, arg3, &phonehash);
148 if (rc != EOK) {
149 ipc_hangup(phone);
150 return rc;
151 }
152 async_new_connection(phonehash, 0, NULL, client_receiver);
153 }
154
155 return phone;
156}
157
158/** Connects to the needed module.
159 *
160 * @param[in] need The needed module service.
161 * @return The phone of the needed service.
162 */
163int connect_to_service(services_t need)
164{
165 return connect_to_service_timeout(need, 0);
166}
167
168/** Connects to the needed module.
169 *
170 * @param[in] need The needed module service.
171 * @param[in] timeout The connection timeout in microseconds. No timeout if
172 * set to zero (0).
173 * @return The phone of the needed service.
174 * @return ETIMEOUT if the connection timeouted.
175 */
176int connect_to_service_timeout(services_t need, suseconds_t timeout)
177{
178 int phone;
179
180 /* If no timeout is set */
181 if (timeout <= 0)
182 return async_connect_me_to_blocking(PHONE_NS, need, 0, 0);
183
184 while (true) {
185 phone = async_connect_me_to(PHONE_NS, need, 0, 0);
186 if ((phone >= 0) || (phone != ENOENT))
187 return phone;
188
189 /* Abort if no time is left */
190 if (timeout <= 0)
191 return ETIMEOUT;
192
193 /* Wait the minimum of the module wait time and the timeout */
194 usleep((timeout <= MODULE_WAIT_TIME) ?
195 timeout : MODULE_WAIT_TIME);
196 timeout -= MODULE_WAIT_TIME;
197 }
198}
199
200/** Replies the data to the other party.
201 *
202 * @param[in] data The data buffer to be sent.
203 * @param[in] data_length The buffer length.
204 * @return EOK on success.
205 * @return EINVAL if the client does not expect the data.
206 * @return EOVERFLOW if the client does not expect all the data.
207 * Only partial data are transfered.
208 * @return Other error codes as defined for the
209 * async_data_read_finalize() function.
210 */
211int data_reply(void *data, size_t data_length)
212{
213 size_t length;
214 ipc_callid_t callid;
215
216 /* Fetch the request */
217 if (!async_data_read_receive(&callid, &length))
218 return EINVAL;
219
220 /* Check the requested data size */
221 if (length < data_length) {
222 async_data_read_finalize(callid, data, length);
223 return EOVERFLOW;
224 }
225
226 /* Send the data */
227 return async_data_read_finalize(callid, data, data_length);
228}
229
230/** Refreshes answer structure and parameters count.
231 *
232 * Erases all attributes.
233 *
234 * @param[in,out] answer The message processing answer structure.
235 * @param[in,out] answer_count The number of answer parameters.
236 */
237void refresh_answer(ipc_call_t *answer, int *answer_count)
238{
239 if (answer_count)
240 *answer_count = 0;
241
242 if (answer) {
243 IPC_SET_RETVAL(*answer, 0);
244 /* Just to be precise */
245 IPC_SET_IMETHOD(*answer, 0);
246 IPC_SET_ARG1(*answer, 0);
247 IPC_SET_ARG2(*answer, 0);
248 IPC_SET_ARG3(*answer, 0);
249 IPC_SET_ARG4(*answer, 0);
250 IPC_SET_ARG5(*answer, 0);
251 }
252}
253
254/** @}
255 */
Note: See TracBrowser for help on using the repository browser.