1 | /*
|
---|
2 | * Copyright (c) 2012 Jiri Svoboda
|
---|
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 | * @brief IP link client stub
|
---|
35 | */
|
---|
36 |
|
---|
37 | #include <async.h>
|
---|
38 | #include <assert.h>
|
---|
39 | #include <errno.h>
|
---|
40 | #include <inet/iplink.h>
|
---|
41 | #include <inet/addr.h>
|
---|
42 | #include <ipc/iplink.h>
|
---|
43 | #include <ipc/services.h>
|
---|
44 | #include <loc.h>
|
---|
45 | #include <stdlib.h>
|
---|
46 |
|
---|
47 | static void iplink_cb_conn(ipc_callid_t iid, ipc_call_t *icall, void *arg);
|
---|
48 |
|
---|
49 | int iplink_open(async_sess_t *sess, iplink_ev_ops_t *ev_ops,
|
---|
50 | iplink_t **riplink)
|
---|
51 | {
|
---|
52 | iplink_t *iplink = calloc(1, sizeof(iplink_t));
|
---|
53 | if (iplink == NULL)
|
---|
54 | return ENOMEM;
|
---|
55 |
|
---|
56 | iplink->sess = sess;
|
---|
57 | iplink->ev_ops = ev_ops;
|
---|
58 |
|
---|
59 | async_exch_t *exch = async_exchange_begin(sess);
|
---|
60 |
|
---|
61 | int rc = async_connect_to_me(exch, 0, 0, 0, iplink_cb_conn, iplink);
|
---|
62 | async_exchange_end(exch);
|
---|
63 |
|
---|
64 | if (rc != EOK)
|
---|
65 | goto error;
|
---|
66 |
|
---|
67 | *riplink = iplink;
|
---|
68 | return EOK;
|
---|
69 |
|
---|
70 | error:
|
---|
71 | if (iplink != NULL)
|
---|
72 | free(iplink);
|
---|
73 |
|
---|
74 | return rc;
|
---|
75 | }
|
---|
76 |
|
---|
77 | void iplink_close(iplink_t *iplink)
|
---|
78 | {
|
---|
79 | /* XXX Synchronize with iplink_cb_conn */
|
---|
80 | free(iplink);
|
---|
81 | }
|
---|
82 |
|
---|
83 | int iplink_send(iplink_t *iplink, iplink_sdu_t *sdu)
|
---|
84 | {
|
---|
85 | async_exch_t *exch = async_exchange_begin(iplink->sess);
|
---|
86 |
|
---|
87 | ipc_call_t answer;
|
---|
88 | aid_t req = async_send_2(exch, IPLINK_SEND, (sysarg_t) sdu->src,
|
---|
89 | (sysarg_t) sdu->dest, &answer);
|
---|
90 |
|
---|
91 | int rc = async_data_write_start(exch, sdu->data, sdu->size);
|
---|
92 |
|
---|
93 | async_exchange_end(exch);
|
---|
94 |
|
---|
95 | if (rc != EOK) {
|
---|
96 | async_forget(req);
|
---|
97 | return rc;
|
---|
98 | }
|
---|
99 |
|
---|
100 | sysarg_t retval;
|
---|
101 | async_wait_for(req, &retval);
|
---|
102 |
|
---|
103 | return (int) retval;
|
---|
104 | }
|
---|
105 |
|
---|
106 | int iplink_send6(iplink_t *iplink, iplink_sdu6_t *sdu)
|
---|
107 | {
|
---|
108 | async_exch_t *exch = async_exchange_begin(iplink->sess);
|
---|
109 |
|
---|
110 | ipc_call_t answer;
|
---|
111 | aid_t req = async_send_0(exch, IPLINK_SEND6, &answer);
|
---|
112 |
|
---|
113 | int rc = async_data_write_start(exch, &sdu->dest, sizeof(addr48_t));
|
---|
114 | if (rc != EOK) {
|
---|
115 | async_exchange_end(exch);
|
---|
116 | async_forget(req);
|
---|
117 | return rc;
|
---|
118 | }
|
---|
119 |
|
---|
120 | rc = async_data_write_start(exch, sdu->data, sdu->size);
|
---|
121 |
|
---|
122 | async_exchange_end(exch);
|
---|
123 |
|
---|
124 | if (rc != EOK) {
|
---|
125 | async_forget(req);
|
---|
126 | return rc;
|
---|
127 | }
|
---|
128 |
|
---|
129 | sysarg_t retval;
|
---|
130 | async_wait_for(req, &retval);
|
---|
131 |
|
---|
132 | return (int) retval;
|
---|
133 | }
|
---|
134 |
|
---|
135 | int iplink_get_mtu(iplink_t *iplink, size_t *rmtu)
|
---|
136 | {
|
---|
137 | async_exch_t *exch = async_exchange_begin(iplink->sess);
|
---|
138 |
|
---|
139 | sysarg_t mtu;
|
---|
140 | int rc = async_req_0_1(exch, IPLINK_GET_MTU, &mtu);
|
---|
141 |
|
---|
142 | async_exchange_end(exch);
|
---|
143 |
|
---|
144 | if (rc != EOK)
|
---|
145 | return rc;
|
---|
146 |
|
---|
147 | *rmtu = mtu;
|
---|
148 | return EOK;
|
---|
149 | }
|
---|
150 |
|
---|
151 | int iplink_get_mac48(iplink_t *iplink, addr48_t *mac)
|
---|
152 | {
|
---|
153 | async_exch_t *exch = async_exchange_begin(iplink->sess);
|
---|
154 |
|
---|
155 | ipc_call_t answer;
|
---|
156 | aid_t req = async_send_0(exch, IPLINK_GET_MAC48, &answer);
|
---|
157 |
|
---|
158 | int rc = async_data_read_start(exch, mac, sizeof(addr48_t));
|
---|
159 |
|
---|
160 | loc_exchange_end(exch);
|
---|
161 |
|
---|
162 | if (rc != EOK) {
|
---|
163 | async_forget(req);
|
---|
164 | return rc;
|
---|
165 | }
|
---|
166 |
|
---|
167 | sysarg_t retval;
|
---|
168 | async_wait_for(req, &retval);
|
---|
169 |
|
---|
170 | return (int) retval;
|
---|
171 | }
|
---|
172 |
|
---|
173 | int iplink_addr_add(iplink_t *iplink, inet_addr_t *addr)
|
---|
174 | {
|
---|
175 | async_exch_t *exch = async_exchange_begin(iplink->sess);
|
---|
176 |
|
---|
177 | ipc_call_t answer;
|
---|
178 | aid_t req = async_send_0(exch, IPLINK_ADDR_ADD, &answer);
|
---|
179 |
|
---|
180 | int rc = async_data_write_start(exch, addr, sizeof(inet_addr_t));
|
---|
181 | async_exchange_end(exch);
|
---|
182 |
|
---|
183 | if (rc != EOK) {
|
---|
184 | async_forget(req);
|
---|
185 | return rc;
|
---|
186 | }
|
---|
187 |
|
---|
188 | sysarg_t retval;
|
---|
189 | async_wait_for(req, &retval);
|
---|
190 |
|
---|
191 | return (int) retval;
|
---|
192 | }
|
---|
193 |
|
---|
194 | int iplink_addr_remove(iplink_t *iplink, inet_addr_t *addr)
|
---|
195 | {
|
---|
196 | async_exch_t *exch = async_exchange_begin(iplink->sess);
|
---|
197 |
|
---|
198 | ipc_call_t answer;
|
---|
199 | aid_t req = async_send_0(exch, IPLINK_ADDR_REMOVE, &answer);
|
---|
200 |
|
---|
201 | int rc = async_data_write_start(exch, addr, sizeof(inet_addr_t));
|
---|
202 | async_exchange_end(exch);
|
---|
203 |
|
---|
204 | if (rc != EOK) {
|
---|
205 | async_forget(req);
|
---|
206 | return rc;
|
---|
207 | }
|
---|
208 |
|
---|
209 | sysarg_t retval;
|
---|
210 | async_wait_for(req, &retval);
|
---|
211 |
|
---|
212 | return (int) retval;
|
---|
213 | }
|
---|
214 |
|
---|
215 | static void iplink_ev_recv(iplink_t *iplink, ipc_callid_t iid,
|
---|
216 | ipc_call_t *icall)
|
---|
217 | {
|
---|
218 | iplink_recv_sdu_t sdu;
|
---|
219 |
|
---|
220 | uint16_t af = IPC_GET_ARG1(*icall);
|
---|
221 |
|
---|
222 | int rc = async_data_write_accept(&sdu.data, false, 0, 0, 0,
|
---|
223 | &sdu.size);
|
---|
224 | if (rc != EOK) {
|
---|
225 | async_answer_0(iid, rc);
|
---|
226 | return;
|
---|
227 | }
|
---|
228 |
|
---|
229 | rc = iplink->ev_ops->recv(iplink, &sdu, af);
|
---|
230 | free(sdu.data);
|
---|
231 | async_answer_0(iid, rc);
|
---|
232 | }
|
---|
233 |
|
---|
234 | static void iplink_cb_conn(ipc_callid_t iid, ipc_call_t *icall, void *arg)
|
---|
235 | {
|
---|
236 | iplink_t *iplink = (iplink_t *) arg;
|
---|
237 |
|
---|
238 | while (true) {
|
---|
239 | ipc_call_t call;
|
---|
240 | ipc_callid_t callid = async_get_call(&call);
|
---|
241 |
|
---|
242 | if (!IPC_GET_IMETHOD(call)) {
|
---|
243 | /* TODO: Handle hangup */
|
---|
244 | return;
|
---|
245 | }
|
---|
246 |
|
---|
247 | switch (IPC_GET_IMETHOD(call)) {
|
---|
248 | case IPLINK_EV_RECV:
|
---|
249 | iplink_ev_recv(iplink, callid, &call);
|
---|
250 | break;
|
---|
251 | default:
|
---|
252 | async_answer_0(callid, ENOTSUP);
|
---|
253 | }
|
---|
254 | }
|
---|
255 | }
|
---|
256 |
|
---|
257 | /** @}
|
---|
258 | */
|
---|