Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
911ae8b6a8b0d0316e48cee3738af2ffbe6f1f43
[simgrid.git] / src / gras / Transport / transport_plugin_sg.c
1 /* file trp (transport) - send/receive a bunch of bytes in SG realm         */
2
3 /* Note that this is only used to debug other parts of GRAS since message   */
4 /*  exchange in SG realm is implemented directly without mimicing real life */
5 /*  This would be terribly unefficient.                                     */
6
7 /* Copyright (c) 2004, 2005, 2006, 2007, 2009, 2010. The SimGrid Team.
8  * All rights reserved.                                                     */
9
10 /* This program is free software; you can redistribute it and/or modify it
11  * under the terms of the license (GNU LGPL) which comes with this package. */
12
13 #include "xbt/ex.h"
14
15 #include "simix/simix.h"
16 #include "gras/Msg/msg_private.h"
17 #include "gras/Transport/transport_private.h"
18 #include "gras/Virtu/virtu_sg.h"
19
20 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(gras_trp_sg, gras_trp,
21                                 "SimGrid pseudo-transport");
22
23 /***
24  *** Prototypes 
25  ***/
26
27 /* retrieve the port record associated to a numerical port on an host */
28 static gras_sg_portrec_t find_port(gras_hostdata_t * hd, int port);
29
30 void gras_trp_sg_socket_client(gras_trp_plugin_t self,
31                                const char*host,
32                                int port,
33                                /* OUT */ gras_socket_t sock);
34 void gras_trp_sg_socket_server(gras_trp_plugin_t self,
35                                int port,
36                                /* OUT */ gras_socket_t sock);
37 void gras_trp_sg_socket_close(gras_socket_t sd);
38
39 void gras_trp_sg_chunk_send_raw(gras_socket_t sd,
40                                 const char *data, unsigned long int size);
41 void gras_trp_sg_chunk_send(gras_socket_t sd,
42                             const char *data,
43                             unsigned long int size, int stable_ignored);
44
45 int gras_trp_sg_chunk_recv(gras_socket_t sd,
46                            char *data, unsigned long int size);
47
48 /***
49  *** Specific plugin part
50  ***/
51 typedef struct {
52   int placeholder;              /* nothing plugin specific so far */
53 } gras_trp_sg_plug_data_t;
54
55
56 /***
57  *** Code
58  ***/
59 static gras_sg_portrec_t find_port(gras_hostdata_t * hd, int port)
60 {
61   unsigned int cpt;
62   gras_sg_portrec_t pr;
63
64   xbt_assert0(hd, "Please run gras_process_init on each process");
65
66   xbt_dynar_foreach(hd->ports, cpt, pr) {
67     if (pr->port == port)
68       return pr;
69   }
70   return NULL;
71 }
72
73 /***
74  *** Info about who's speaking
75  ***/
76 static int gras_trp_sg_my_port(gras_socket_t s) {
77   gras_trp_sg_sock_data_t sockdata = s->data;
78   if (sockdata->rdv_client == NULL) /* Master socket, I'm server */
79     return sockdata->server_port;
80   else
81     return sockdata->client_port;
82 }
83 static int gras_trp_sg_peer_port(gras_socket_t s) {
84   gras_trp_sg_sock_data_t sockdata = s->data;
85   if (sockdata->server == SIMIX_process_self())
86     return sockdata->client_port;
87   else
88     return sockdata->server_port;
89 }
90 static const char* gras_trp_sg_peer_name(gras_socket_t s) {
91   gras_trp_sg_sock_data_t sockdata = s->data;
92   if (sockdata->server == SIMIX_process_self())
93     return SIMIX_host_get_name(SIMIX_process_get_host(sockdata->client));
94   else
95     return SIMIX_host_get_name(SIMIX_process_get_host(sockdata->server));
96 }
97 static const char* gras_trp_sg_peer_proc(gras_socket_t s) {
98   THROW_UNIMPLEMENTED;
99 }
100 static void gras_trp_sg_peer_proc_set(gras_socket_t s,char *name) {
101   THROW_UNIMPLEMENTED;
102 }
103
104 void gras_trp_sg_setup(gras_trp_plugin_t plug)
105 {
106
107   plug->my_port = gras_trp_sg_my_port;
108   plug->peer_port = gras_trp_sg_peer_port;
109   plug->peer_name = gras_trp_sg_peer_name;
110   plug->peer_proc = gras_trp_sg_peer_proc;
111   plug->peer_proc_set = gras_trp_sg_peer_proc_set;
112
113   gras_trp_sg_plug_data_t *data = xbt_new(gras_trp_sg_plug_data_t, 1);
114
115   plug->data = data;
116
117   plug->socket_client = gras_trp_sg_socket_client;
118   plug->socket_server = gras_trp_sg_socket_server;
119   plug->socket_close = gras_trp_sg_socket_close;
120
121   plug->raw_send = gras_trp_sg_chunk_send_raw;
122   plug->send = gras_trp_sg_chunk_send;
123   plug->raw_recv = plug->recv = gras_trp_sg_chunk_recv;
124
125   plug->flush = NULL;           /* nothing cached */
126 }
127
128 void gras_trp_sg_socket_client(gras_trp_plugin_t self,
129                                const char*host,
130                                int port,
131                                /* OUT */ gras_socket_t sock)
132 {
133
134   smx_host_t peer;
135   gras_hostdata_t *hd;
136   gras_trp_sg_sock_data_t data;
137   gras_sg_portrec_t pr;
138
139   /* make sure this socket will reach someone */
140   if (!(peer = SIMIX_host_get_by_name(host)))
141     THROW1(mismatch_error, 0,
142            "Can't connect to %s: no such host.\n", host);
143
144   if (!(hd = (gras_hostdata_t *) SIMIX_host_get_data(peer)))
145     THROW1(mismatch_error, 0,
146            "can't connect to %s: no process on this host",
147            host);
148
149   pr = find_port(hd, port);
150
151   if (pr == NULL) {
152     THROW2(mismatch_error, 0,
153            "can't connect to %s:%d, no process listen on this port",
154            host, port);
155   }
156
157   /* Ensure that the listener is expecting the kind of stuff we want to send */
158   if (pr->meas && !sock->meas) {
159     THROW2(mismatch_error, 0,
160            "can't connect to %s:%d in regular mode, the process listen "
161            "in measurement mode on this port", host,
162            port);
163   }
164   if (!pr->meas && sock->meas) {
165     THROW2(mismatch_error, 0,
166            "can't connect to %s:%d in measurement mode, the process listen "
167            "in regular mode on this port", host,
168            port);
169   }
170
171   /* create simulation data of the socket */
172   data = xbt_new(s_gras_trp_sg_sock_data_t, 1);
173   data->client = SIMIX_process_self();
174   data->server = pr->server;
175   data->server_port = port;
176
177   /* initialize synchronization stuff on the socket */
178   data->rdv_server = pr->rdv;
179   data->rdv_client = SIMIX_rdv_create(NULL);
180   data->comm_recv = SIMIX_network_irecv(data->rdv_client, NULL, 0);
181
182   /* connect that simulation data to the socket */
183   sock->data = data;
184   sock->incoming = 1;
185
186   DEBUG5("%s (PID %d) connects in %s mode to %s:%d",
187          SIMIX_process_get_name(SIMIX_process_self()), gras_os_getpid(),
188          sock->meas ? "meas" : "regular", host,
189          port);
190 }
191
192 void gras_trp_sg_socket_server(gras_trp_plugin_t self, int port, gras_socket_t sock)
193 {
194
195   gras_hostdata_t *hd =
196       (gras_hostdata_t *) SIMIX_host_get_data(SIMIX_host_self());
197   gras_sg_portrec_t pr;
198   gras_trp_sg_sock_data_t data;
199
200   xbt_assert0(hd, "Please run gras_process_init on each process");
201
202   sock->accepting = 1;
203
204   /* Check whether a server is already listening on that port or not */
205   pr = find_port(hd, port);
206
207   if (pr)
208     THROW2(mismatch_error, 0,
209            "can't listen on address %s:%d: port already in use.",
210            SIMIX_host_get_name(SIMIX_host_self()), port);
211
212   /* This port is free, let's take it */
213   pr = xbt_new(s_gras_sg_portrec_t, 1);
214   pr->port = port;
215   pr->meas = sock->meas;
216   pr->server = SIMIX_process_self();
217   pr->rdv = SIMIX_rdv_create(NULL);
218   xbt_dynar_push(hd->ports, &pr);
219
220   /* Create the socket */
221   data = xbt_new(s_gras_trp_sg_sock_data_t, 1);
222   data->server = SIMIX_process_self();
223   data->server_port = port;
224   data->client = NULL;
225   data->rdv_server = pr->rdv;
226   data->rdv_client = NULL;
227   data->comm_recv = SIMIX_network_irecv(pr->rdv, NULL, 0);
228
229   sock->data = data;
230
231   VERB10
232       ("'%s' (%d) ears on %s:%d%s (%p; data:%p); Here rdv: %p; Remote rdv: %p; Comm %p",
233        SIMIX_process_get_name(SIMIX_process_self()), gras_os_getpid(),
234        SIMIX_host_get_name(SIMIX_host_self()), port,
235        sock->meas ? " (mode meas)" : "", sock, data,
236        (data->server ==
237         SIMIX_process_self())? data->rdv_server : data->rdv_client,
238        (data->server ==
239         SIMIX_process_self())? data->rdv_client : data->rdv_server,
240        data->comm_recv);
241
242 }
243
244 void gras_trp_sg_socket_close(gras_socket_t sock)
245 {
246   gras_hostdata_t *hd =
247       (gras_hostdata_t *) SIMIX_host_get_data(SIMIX_host_self());
248   unsigned int cpt;
249   gras_sg_portrec_t pr;
250
251   XBT_IN1(" (sock=%p)", sock);
252
253   if (!sock)
254     return;
255
256   xbt_assert0(hd, "Please run gras_process_init on each process");
257
258   gras_trp_sg_sock_data_t sockdata = sock->data;
259
260   if (sock->incoming && !sock->outgoing && sockdata->server_port >= 0) {
261     /* server mode socket. Unregister it from 'OS' tables */
262     xbt_dynar_foreach(hd->ports, cpt, pr) {
263       DEBUG2("Check pr %d of %lu", cpt, xbt_dynar_length(hd->ports));
264       if (pr->port == sockdata->server_port) {
265         xbt_dynar_cursor_rm(hd->ports, &cpt);
266         XBT_OUT;
267         return;
268       }
269     }
270     WARN2
271         ("socket_close called on the unknown incoming socket %p (port=%d)",
272          sock, sockdata->server_port);
273   }
274   if (sock->data) {
275     /* FIXME: kill the rdv point if receiver side */
276     free(sock->data);
277   }
278   XBT_OUT;
279 }
280
281 typedef struct {
282   int size;
283   void *data;
284 } sg_task_data_t;
285
286 void gras_trp_sg_chunk_send(gras_socket_t sock,
287                             const char *data,
288                             unsigned long int size, int stable_ignored)
289 {
290   gras_trp_sg_chunk_send_raw(sock, data, size);
291 }
292
293 void gras_trp_sg_chunk_send_raw(gras_socket_t sock,
294                                 const char *data, unsigned long int size)
295 {
296 #ifdef KILLME
297   char name[256];
298   static unsigned int count = 0;
299
300   smx_action_t act;             /* simix action */
301   gras_trp_procdata_t trp_remote_proc;
302   gras_msg_procdata_t msg_remote_proc;
303   gras_msg_t msg;               /* message to send */
304
305   gras_trp_sg_sock_data_t sock_data = (gras_trp_sg_sock_data_t) sock->data;
306   xbt_assert0(sock->meas,
307               "SG chunk exchange shouldn't be used on non-measurement sockets");
308
309
310   /* creates simix action and waits its ends, waits in the sender host
311      condition */
312   if (XBT_LOG_ISENABLED(gras_trp_sg, xbt_log_priority_debug)) {
313     smx_process_t remote_dude =
314         (sock_data->server ==
315          SIMIX_process_self())? (sock_data->client) : (sock_data->server);
316     smx_host_t remote_host = SIMIX_process_get_host(remote_dude);
317   }
318   //SIMIX_network_send(sock_data->rdv,size,1,-1,NULL,0,NULL,NULL);
319 #endif
320   THROW_UNIMPLEMENTED;
321 }
322
323 int gras_trp_sg_chunk_recv(gras_socket_t sock,
324                            char *data, unsigned long int size)
325 {
326   //gras_trp_sg_sock_data_t *sock_data =
327   //    (gras_trp_sg_sock_data_t *) sock->data;
328
329   //SIMIX_network_recv(sock_data->rdv,-1,NULL,0,NULL);
330   THROW_UNIMPLEMENTED;
331 #ifdef KILLME
332   gras_trp_sg_sock_data_t *remote_sock_data;
333   gras_socket_t remote_socket = NULL;
334   gras_msg_t msg_got;
335   gras_msg_procdata_t msg_procdata =
336       (gras_msg_procdata_t) gras_libdata_by_name("gras_msg");
337   gras_trp_procdata_t trp_proc =
338       (gras_trp_procdata_t) gras_libdata_by_id(gras_trp_libdata_id);
339
340   xbt_assert0(sock->meas,
341               "SG chunk exchange shouldn't be used on non-measurement sockets");
342   xbt_queue_shift_timed(trp_proc->meas_selectable_sockets,
343                         &remote_socket, 60);
344
345   if (remote_socket == NULL) {
346     THROW0(timeout_error, 0, "Timeout");
347   }
348
349   remote_sock_data = (gras_trp_sg_sock_data_t *) remote_socket->data;
350   msg_got = xbt_fifo_shift(msg_procdata->msg_to_receive_queue_meas);
351
352   sock_data = (gras_trp_sg_sock_data_t *) sock->data;
353
354   /* ok, I'm here, you can continue the communication */
355   SIMIX_cond_signal(remote_sock_data->cond);
356
357   SIMIX_mutex_lock(remote_sock_data->mutex);
358   /* wait for communication end */
359   SIMIX_cond_wait(remote_sock_data->cond, remote_sock_data->mutex);
360
361   if (msg_got->payl_size != size)
362     THROW5(mismatch_error, 0,
363            "Got %d bytes when %ld where expected (in %s->%s:%d)",
364            msg_got->payl_size, size,
365            SIMIX_host_get_name(sock_data->to_host),
366            SIMIX_host_get_name(SIMIX_host_self()), sock->peer_port);
367
368   if (data)
369     memcpy(data, msg_got->payl, size);
370
371   if (msg_got->payl)
372     xbt_free(msg_got->payl);
373
374   xbt_free(msg_got);
375   SIMIX_mutex_unlock(remote_sock_data->mutex);
376 #endif
377   return 0;
378 }