Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Stick to the file naming scheme used in the tutorial
[simgrid.git] / src / gras / Transport / transport_plugin_tcp.c
1 /* $Id$ */
2
3 /* buf trp (transport) - buffered transport using the TCP one               */
4
5 /* Copyright (c) 2004 Martin Quinson. All rights reserved.                  */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #include <stdlib.h>
11 #include <string.h>       /* memset */
12
13 #include "portable.h"
14 #include "xbt/misc.h"
15 #include "xbt/sysdep.h"
16 #include "xbt/ex.h"
17 #include "transport_private.h"
18
19 /* FIXME maybe READV is sometime a good thing? */
20 #undef HAVE_READV
21
22 #ifdef HAVE_READV
23 #include <sys/uio.h>
24 #endif       
25
26 #ifndef MIN
27 #define MIN(a,b) ((a)<(b)?(a):(b))
28 #endif
29
30 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(gras_trp_tcp,gras_trp,
31       "TCP buffered transport");
32
33 /***
34  *** Specific socket part
35  ***/
36
37 typedef enum { buffering_buf, buffering_iov } buffering_kind;
38
39 typedef struct {
40   int size;
41   char *data;
42   int pos; /* for receive; not exchanged over the net */
43 } gras_trp_buf_t;
44
45
46 struct gras_trp_bufdata_{
47   int buffsize;
48   gras_trp_buf_t in_buf;
49   gras_trp_buf_t out_buf;
50
51 #ifdef HAVE_READV
52   xbt_dynar_t in_buf_v;
53   xbt_dynar_t out_buf_v;
54 #endif
55
56   buffering_kind in;
57   buffering_kind out;
58 };
59
60
61 /*****************************/
62 /****[ SOCKET MANAGEMENT ]****/
63 /*****************************/
64 /* we exchange port number on client side on socket creation,
65    so we need to be able to talk right now. */
66 static inline void gras_trp_tcp_send(gras_socket_t sock, const char *data,
67                                      unsigned long int size);
68 static int gras_trp_tcp_recv(gras_socket_t sock, char *data,
69                              unsigned long int size);
70
71
72 static int _gras_tcp_proto_number(void);
73
74 static inline void gras_trp_sock_socket_client(gras_trp_plugin_t ignored,
75                                                gras_socket_t sock){
76   
77   struct sockaddr_in addr;
78   struct hostent *he;
79   struct in_addr *haddr;
80   int size = sock->buf_size; 
81   uint32_t myport = htonl(((gras_trp_procdata_t) gras_libdata_by_id(gras_trp_libdata_id))->myport);
82
83   sock->incoming = 1; /* TCP sockets are duplex'ed */
84
85   sock->sd = socket (AF_INET, SOCK_STREAM, 0);
86   
87   if (sock->sd < 0) {
88     THROW1(system_error,0, "Failed to create socket: %s", sock_errstr);
89   }
90
91   if (setsockopt(sock->sd, SOL_SOCKET, SO_RCVBUF, (char *)&size, sizeof(size)) ||
92       setsockopt(sock->sd, SOL_SOCKET, SO_SNDBUF, (char *)&size, sizeof(size))) {
93      WARN1("setsockopt failed, cannot set buffer size: %s",sock_errstr);
94   }
95   
96   he = gethostbyname (sock->peer_name);
97   if (he == NULL) {
98     THROW2(system_error,0, "Failed to lookup hostname %s: %s",
99            sock->peer_name, sock_errstr);
100   }
101   
102   haddr = ((struct in_addr *) (he->h_addr_list)[0]);
103   
104   memset(&addr, 0, sizeof(struct sockaddr_in));
105   memcpy (&addr.sin_addr, haddr, sizeof(struct in_addr));
106   addr.sin_family = AF_INET;
107   addr.sin_port = htons (sock->peer_port);
108
109   if (connect (sock->sd, (struct sockaddr*) &addr, sizeof (addr)) < 0) {
110     tcp_close(sock->sd);
111     THROW3(system_error,0,
112            "Failed to connect socket to %s:%d (%s)",
113            sock->peer_name, sock->peer_port, sock_errstr);
114   }
115
116   gras_trp_tcp_send(sock,(char*)&myport,sizeof(uint32_t));
117   DEBUG1("peerport sent to %d", sock->peer_port);
118
119   VERB4("Connect to %s:%d (sd=%d, port %d here)",
120         sock->peer_name, sock->peer_port, sock->sd, sock->port);
121 }
122
123 /**
124  * gras_trp_sock_socket_server:
125  *
126  * Open a socket used to receive messages.
127  */
128 static inline void gras_trp_sock_socket_server(gras_trp_plugin_t ignored,
129                                                gras_socket_t sock){
130   int size = sock->buf_size; 
131   int on = 1;
132   struct sockaddr_in server;
133
134   sock->outgoing  = 1; /* TCP => duplex mode */
135
136   server.sin_port = htons((u_short)sock->port);
137   server.sin_addr.s_addr = INADDR_ANY;
138   server.sin_family = AF_INET;
139   if((sock->sd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
140     THROW1(system_error,0,"Socket allocation failed: %s", sock_errstr);
141
142   if (setsockopt(sock->sd, SOL_SOCKET, SO_REUSEADDR, (char *)&on, sizeof(on)))
143      THROW1(system_error,0,"setsockopt failed, cannot condition the socket: %s",
144             sock_errstr);
145    
146   if (setsockopt(sock->sd, SOL_SOCKET, SO_RCVBUF, (char *)&size, sizeof(size)) ||
147       setsockopt(sock->sd, SOL_SOCKET, SO_SNDBUF, (char *)&size, sizeof(size))) {
148      WARN1("setsockopt failed, cannot set buffer size: %s",
149            sock_errstr);
150   }
151         
152   if (bind(sock->sd, (struct sockaddr *)&server, sizeof(server)) == -1) {
153     tcp_close(sock->sd);
154     THROW2(system_error,0,"Cannot bind to port %d: %s",sock->port, sock_errstr);
155   }
156
157   DEBUG2("Listen on port %d (sd=%d)",sock->port, sock->sd);
158   if (listen(sock->sd, 5) < 0) {
159     tcp_close(sock->sd);
160     THROW2(system_error,0,"Cannot listen on port %d: %s",sock->port,sock_errstr);
161   }
162
163   VERB2("Openned a server socket on port %d (sd=%d)",sock->port,sock->sd);
164 }
165
166 static gras_socket_t gras_trp_sock_socket_accept(gras_socket_t sock) {
167   gras_socket_t res;
168   
169   struct sockaddr_in peer_in;
170   socklen_t peer_in_len = sizeof(peer_in);
171
172   int sd;
173   int tmp_errno;
174   int size;
175
176   int i = 1;
177   socklen_t s = sizeof(int);
178
179   uint32_t hisport;
180                 
181   XBT_IN;
182   gras_trp_socket_new(1,&res);
183
184   sd = accept(sock->sd, (struct sockaddr *)&peer_in, &peer_in_len);
185   tmp_errno = errno;
186
187   if (sd == -1) {
188     gras_socket_close(sock);
189     THROW1(system_error,0,
190            "Accept failed (%s). Droping server socket.", sock_errstr);
191   }
192   
193   if (setsockopt(sd, SOL_SOCKET, SO_KEEPALIVE, (char *)&i, s) 
194       || setsockopt(sd, _gras_tcp_proto_number(), TCP_NODELAY, (char *)&i, s))
195     THROW1(system_error,0,"setsockopt failed, cannot condition the socket: %s",
196            sock_errstr);
197
198   res->buf_size = sock->buf_size;
199   size = sock->buf_size;
200   if (setsockopt(sd, SOL_SOCKET, SO_RCVBUF, (char *)&size, sizeof(size))
201       || setsockopt(sd, SOL_SOCKET, SO_SNDBUF, (char *)&size, sizeof(size)))
202     WARN1("setsockopt failed, cannot set buffer size: %s", sock_errstr);
203      
204   res->plugin    = sock->plugin;
205   res->incoming  = sock->incoming;
206   res->outgoing  = sock->outgoing;
207   res->accepting = 0;
208   res->sd        = sd;
209   res->port      = -1;
210
211   gras_trp_tcp_recv(res,(char*)&hisport,sizeof(hisport));
212   res->peer_port = ntohl(hisport);
213   DEBUG1("peerport %d received",res->peer_port);
214
215   /* FIXME: Lock to protect inet_ntoa */
216   if (((struct sockaddr *)&peer_in)->sa_family != AF_INET) {
217     res->peer_name = (char*)strdup("unknown");
218   } else {
219     struct in_addr addrAsInAddr;
220     char *tmp;
221     
222     addrAsInAddr.s_addr = peer_in.sin_addr.s_addr;
223     
224     tmp = inet_ntoa(addrAsInAddr);
225     if (tmp != NULL) {
226       res->peer_name = (char*)strdup(tmp);
227     } else {
228       res->peer_name = (char*)strdup("unknown");
229     }
230   }
231   
232   VERB3("Accepted from %s:%d (sd=%d)", res->peer_name,res->peer_port,sd);
233   
234   XBT_OUT;
235   return res;
236 }
237
238 static void gras_trp_sock_socket_close(gras_socket_t sock){
239   
240   if (!sock) return; /* close only once */
241
242   VERB1("close tcp connection %d", sock->sd);
243
244   /* FIXME: no pipe in GRAS so far  
245   if(!FD_ISSET(sd, &connectedPipes)) {
246     if(shutdown(sd, 2) < 0) {
247       GetNWSLock(&lock);
248       tmp_errno = errno;
249       ReleaseNWSLock(&lock);
250       
251       / * The other side may have beaten us to the reset. * /
252       if ((tmp_errno!=ENOTCONN) && (tmp_errno!=ECONNRESET)) {
253         WARN1("CloseSocket: shutdown error %d\n", tmp_errno);
254       }
255     }
256   } */
257
258    
259   /* close the socket */
260   if(tcp_close(sock->sd) < 0) {
261     WARN3("error while closing tcp socket %d: %d (%s)\n", 
262              sock->sd, sock_errno, sock_errstr);
263   }
264
265 }
266 /************************************/
267 /****[ end of SOCKET MANAGEMENT ]****/
268 /************************************/
269
270
271 /************************************/
272 /****[ UNBUFFERED DATA EXCHANGE ]****/
273 /************************************/
274 /* Temptation to merge this with file data exchange is great, 
275    but doesn't work on BillWare (see tcp_write() in portable.h) */
276 static inline void gras_trp_tcp_send(gras_socket_t sock,
277                                      const char *data,
278                                      unsigned long int size) {
279   
280   while (size) {
281     int status = 0;
282     
283     status = tcp_write(sock->sd, data, (size_t)size);
284     DEBUG3("write(%d, %p, %ld);", sock->sd, data, size);
285     
286     if (status < 0) {
287 #ifdef EWOULDBLOCK
288        if (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK)
289 #else
290        if (errno == EINTR || errno == EAGAIN)
291 #endif
292          continue;
293        
294       THROW4(system_error,0,"write(%d,%p,%ld) failed: %s",
295              sock->sd, data, size,
296              sock_errstr);
297     }
298     
299     if (status) {
300       size  -= status;
301       data  += status;
302     } else {
303       THROW1(system_error,0,"file descriptor closed (%s)",
304              sock_errstr);
305     }
306   }
307 }
308 static inline int 
309 gras_trp_tcp_recv_withbuffer(gras_socket_t sock,
310                                    char *data,
311                                    unsigned long int size,
312                                    unsigned long int bufsize) {
313
314   int got = 0;
315
316   while (size>got) {
317     int status = 0;
318     
319     DEBUG5("read(%d, %p, %ld) got %d so far (%s)",
320           sock->sd, data+got, bufsize, got,
321           hexa_str((unsigned char*)data,got,0));
322     status = tcp_read(sock->sd, data+got, (size_t)bufsize);
323     
324     if (status < 0) {
325       THROW7(system_error,0,"read(%d,%p,%d) from %s:%d failed: %s; got %d so far",
326              sock->sd, data+got, (int)size,
327              gras_socket_peer_name(sock),gras_socket_peer_port(sock),
328              sock_errstr,
329              got);
330     }
331     DEBUG2("Got %d more bytes (%s)",status,hexa_str((unsigned char*)data+got,status,0));
332     
333     if (status) {
334       bufsize -= status;
335       got     += status;
336     } else {
337       THROW1(system_error,0,"Socket closed by remote side (got %d bytes before this)",
338              got);
339     }
340   }
341   /* indicate to the gras_select function that there is more to read on this socket so that it does not actually select */
342   sock->moredata = (bufsize != 0);
343   return got;
344 }
345
346 static int gras_trp_tcp_recv(gras_socket_t sock,
347                                    char *data,
348                                    unsigned long int size) {
349   return gras_trp_tcp_recv_withbuffer(sock,data,size,size);
350
351 }
352 /*******************************************/
353 /****[ end of UNBUFFERED DATA EXCHANGE ]****/
354 /*******************************************/
355
356 /**********************************/
357 /****[ BUFFERED DATA EXCHANGE ]****/
358 /**********************************/
359
360 /* Make sure the data is sent */
361 static void
362 gras_trp_bufiov_flush(gras_socket_t sock) {
363 #ifdef HAVE_READV
364   xbt_dynar_t vect;
365   int size;
366 #endif
367   gras_trp_bufdata_t *data=sock->bufdata;
368   XBT_IN;    
369   
370   DEBUG0("Flush");
371   if (data->out == buffering_buf) {
372     if (XBT_LOG_ISENABLED(gras_trp_tcp,xbt_log_priority_debug))
373       hexa_print("chunk to send ",
374                  (unsigned char *) data->out_buf.data,data->out_buf.size);
375     if ((data->out_buf.size - data->out_buf.pos) != 0) { 
376       DEBUG3("Send the chunk (size=%d) to %s:%d",data->out_buf.size,
377              gras_socket_peer_name(sock),gras_socket_peer_port(sock));
378       gras_trp_tcp_send(sock, data->out_buf.data, data->out_buf.size);
379       VERB1("Chunk sent (size=%d)",data->out_buf.size);
380       data->out_buf.size = 0;
381     }
382   }
383
384 #ifdef HAVE_READV
385   if (data->out == buffering_iov) {
386     DEBUG0("Flush out iov");
387     vect = sock->bufdata->out_buf_v;
388     if ((size = xbt_dynar_length(vect))) {
389       DEBUG1("Flush %d chunks out of this socket",size);
390       writev(sock->sd,xbt_dynar_get_ptr(vect,0),size);
391       xbt_dynar_reset(vect);
392     }
393     data->out_buf.size = 0; /* reset the buffer containing non-stable data */
394   }
395
396   if (data->in == buffering_iov) {
397     DEBUG0("Flush in iov");
398     vect = sock->bufdata->in_buf_v;
399     if ((size = xbt_dynar_length(vect))) {
400       DEBUG1("Get %d chunks from of this socket",size);
401       readv(sock->sd,xbt_dynar_get_ptr(vect,0),size);
402       xbt_dynar_reset(vect);
403     }
404   }
405 #endif
406 }
407 static void
408 gras_trp_buf_send(gras_socket_t sock,
409                   const char *chunk,
410                   unsigned long int size,
411                   int stable_ignored) {
412
413   gras_trp_bufdata_t *data=(gras_trp_bufdata_t*)sock->bufdata;
414   int chunk_pos=0;
415
416   XBT_IN;
417
418   while (chunk_pos < size) {
419     /* size of the chunk to receive in that shot */
420     long int thissize = min(size-chunk_pos,data->buffsize-data->out_buf.size);
421     DEBUG4("Set the chars %d..%ld into the buffer; size=%ld, ctn=(%s)",
422            (int)data->out_buf.size,
423            ((int)data->out_buf.size) + thissize -1,
424            size,
425            hexa_str((unsigned char*)chunk,thissize,0));
426
427     memcpy(data->out_buf.data + data->out_buf.size, chunk + chunk_pos, thissize);
428
429     data->out_buf.size += thissize;
430     chunk_pos      += thissize;
431     DEBUG4("New pos = %d; Still to send = %ld of %ld; ctn sofar=(%s)",
432            data->out_buf.size,size-chunk_pos,size,hexa_str((unsigned char*)chunk,chunk_pos,0));
433
434     if (data->out_buf.size == data->buffsize) /* out of space. Flush it */
435       gras_trp_bufiov_flush(sock);
436   }
437
438   XBT_OUT;
439 }
440
441 static int
442 gras_trp_buf_recv(gras_socket_t sock,
443                   char *chunk,
444                   unsigned long int size) {
445
446   gras_trp_bufdata_t *data=sock->bufdata;
447   long int chunk_pos = 0;
448    
449   XBT_IN;
450
451   while (chunk_pos < size) {
452     /* size of the chunk to receive in that shot */
453     long int thissize;
454
455     if (data->in_buf.size == data->in_buf.pos) { /* out of data. Get more */
456
457       DEBUG2("Get more data (size=%d,bufsize=%d)",
458              (int)MIN(size-chunk_pos,data->buffsize),
459              (int)data->buffsize);
460
461        
462       data->in_buf.size = 
463         gras_trp_tcp_recv_withbuffer(sock, data->in_buf.data, 
464                                      MIN(size-chunk_pos,data->buffsize),
465                                      data->buffsize);
466        
467       data->in_buf.pos=0;
468     }
469      
470     thissize = min(size-chunk_pos ,  data->in_buf.size - data->in_buf.pos);
471     memcpy(chunk+chunk_pos, data->in_buf.data + data->in_buf.pos, thissize);
472
473     data->in_buf.pos += thissize;
474     chunk_pos        += thissize;
475     DEBUG4("New pos = %d; Still to receive = %ld of %ld. Ctn so far=(%s)",
476            data->in_buf.pos,size - chunk_pos,size,hexa_str((unsigned char*)chunk,chunk_pos,0));
477   }
478
479   XBT_OUT;
480   return chunk_pos;
481 }
482
483 /*****************************************/
484 /****[ end of BUFFERED DATA EXCHANGE ]****/
485 /*****************************************/
486
487 /********************************/
488 /****[ VECTOR DATA EXCHANGE ]****/
489 /********************************/
490 #ifdef HAVE_READV
491 static void
492 gras_trp_iov_send(gras_socket_t sock,
493                   const char *chunk,
494                   unsigned long int size,
495                   int stable) {
496   struct iovec elm;
497   gras_trp_bufdata_t *data=(gras_trp_bufdata_t*)sock->bufdata;
498     
499
500   DEBUG1("Buffer one chunk to be sent later (%s)",
501         hexa_str((char*)chunk,size,0));
502
503   elm.iov_len = (size_t)size;
504
505   if (!stable) {
506     /* data storage won't last until flush. Save it in a buffer if we can */
507
508     if (size > data->buffsize-data->out_buf.size) {
509       /* buffer too small: 
510          flush the socket, using data in its actual storage */
511       elm.iov_base = (void*)chunk;
512       xbt_dynar_push(data->out_buf_v,&elm);
513
514       gras_trp_bufiov_flush(sock);      
515       return;
516     } else {
517       /* buffer big enough: 
518          copy data into it, and chain it for upcoming writev */
519       memcpy(data->out_buf.data + data->out_buf.size, chunk, size);
520       elm.iov_base = (void*)(data->out_buf.data + data->out_buf.size);
521       data->out_buf.size += size;
522
523       xbt_dynar_push(data->out_buf_v,&elm);
524     }
525
526   } else {
527     /* data storage stable. Chain it */
528     
529     elm.iov_base = (void*)chunk;
530     xbt_dynar_push(data->out_buf_v,&elm);
531   }
532 }
533 static int
534 gras_trp_iov_recv(gras_socket_t sock,
535                   char *chunk,
536                   unsigned long int size) {
537   struct iovec elm;
538
539   DEBUG0("Buffer one chunk to be received later");
540   elm.iov_base = (void*)chunk;
541   elm.iov_len = (size_t)size;
542   xbt_dynar_push(sock->bufdata->in_buf_v,&elm);
543
544   return size;
545 }
546
547 #endif
548 /***************************************/
549 /****[ end of VECTOR DATA EXCHANGE ]****/
550 /***************************************/
551
552
553 /***
554  *** Prototypes of BUFFERED
555  ***/
556    
557 void gras_trp_buf_socket_client(gras_trp_plugin_t self,
558                                 gras_socket_t sock);
559 void gras_trp_buf_socket_server(gras_trp_plugin_t self,
560                                 gras_socket_t sock);
561 gras_socket_t gras_trp_buf_socket_accept(gras_socket_t sock);
562
563 void         gras_trp_buf_socket_close(gras_socket_t sd);
564   
565
566 gras_socket_t gras_trp_buf_init_sock(gras_socket_t sock) {
567   gras_trp_bufdata_t *data=xbt_new(gras_trp_bufdata_t,1);
568   
569   data->buffsize = 100 * 1024 ; /* 100k */ 
570
571   data->in_buf.size  = 0;
572   data->in_buf.data  = xbt_malloc(data->buffsize);
573   data->in_buf.pos   = 0; /* useless, indeed, since size==pos */
574    
575   data->out_buf.size = 0;
576   data->out_buf.data = xbt_malloc(data->buffsize);
577   data->out_buf.pos  = data->out_buf.size;
578
579 #ifdef HAVE_READV
580   data->in_buf_v = data->out_buf_v = NULL;
581   data->in_buf_v=xbt_dynar_new(sizeof(struct iovec),NULL);
582   data->out_buf_v=xbt_dynar_new(sizeof(struct iovec),NULL);
583   data->out = buffering_iov;
584 #else
585   data->out = buffering_buf;
586 #endif
587    
588   data->in = buffering_buf;
589
590   sock->bufdata = data;
591   return sock;
592 }
593
594 /***
595  *** Code
596  ***/
597 void
598 gras_trp_tcp_setup(gras_trp_plugin_t plug) {
599
600   plug->socket_client = gras_trp_buf_socket_client;
601   plug->socket_server = gras_trp_buf_socket_server;
602   plug->socket_accept = gras_trp_buf_socket_accept;
603   plug->socket_close  = gras_trp_buf_socket_close;
604
605 #ifdef HAVE_READV
606   plug->send = gras_trp_iov_send;
607 #else
608   plug->send = gras_trp_buf_send;
609 #endif
610   plug->recv = gras_trp_buf_recv;
611
612   plug->raw_send    = gras_trp_tcp_send;
613   plug->raw_recv    = gras_trp_tcp_recv;
614
615   plug->flush         = gras_trp_bufiov_flush;
616
617   plug->data = NULL;
618   plug->exit = NULL;
619 }
620
621 void gras_trp_buf_socket_client(gras_trp_plugin_t self,
622                                 /* OUT */ gras_socket_t sock){
623
624   gras_trp_sock_socket_client(NULL,sock);
625   gras_trp_buf_init_sock(sock);
626 }
627
628 /**
629  * gras_trp_buf_socket_server:
630  *
631  * Open a socket used to receive messages.
632  */
633 void gras_trp_buf_socket_server(gras_trp_plugin_t self,
634                                 /* OUT */ gras_socket_t sock){
635
636   gras_trp_sock_socket_server(NULL,sock);
637   gras_trp_buf_init_sock(sock);
638 }
639
640 gras_socket_t gras_trp_buf_socket_accept(gras_socket_t sock) {
641   return gras_trp_buf_init_sock(gras_trp_sock_socket_accept(sock));
642 }
643
644 void gras_trp_buf_socket_close(gras_socket_t sock){
645   gras_trp_bufdata_t *data=sock->bufdata;
646
647   if (data->in_buf.size!=data->in_buf.pos) {
648      WARN3("Socket closed, but %d bytes were unread (size=%d,pos=%d)",
649            data->in_buf.size - data->in_buf.pos,
650            data->in_buf.size, data->in_buf.pos);
651   }
652   if (data->in_buf.data)
653     free(data->in_buf.data);
654    
655   if (data->out_buf.size!=data->out_buf.pos) {
656     DEBUG2("Flush the socket before closing (in=%d,out=%d)",
657            data->in_buf.size, data->out_buf.size);
658     gras_trp_bufiov_flush(sock);
659   }   
660   if (data->out_buf.data)
661     free(data->out_buf.data);
662
663 #ifdef HAVE_READV
664   if (data->in_buf_v) {
665     if (xbt_dynar_length(data->in_buf_v)) 
666       WARN0("Socket closed, but some bytes were unread");
667     xbt_dynar_free(&data->in_buf_v);
668   }
669   if (data->out_buf_v) {
670     if (xbt_dynar_length(data->out_buf_v)) {
671       DEBUG0("Flush the socket before closing");
672       gras_trp_bufiov_flush(sock);
673     }
674     xbt_dynar_free(&data->out_buf_v);
675   }
676 #endif
677
678   free(data);
679   gras_trp_sock_socket_close(sock);
680 }
681
682 /****************************/
683 /****[ HELPER FUNCTIONS ]****/
684 /****************************/
685
686 /*
687  * Returns the tcp protocol number from the network protocol data base.
688  *
689  * getprotobyname() is not thread safe. We need to lock it.
690  */
691 static int _gras_tcp_proto_number(void) {
692   struct protoent *fetchedEntry;
693   static int returnValue = 0;
694   
695   if(returnValue == 0) {
696     fetchedEntry = getprotobyname("tcp");
697     xbt_assert0(fetchedEntry, "getprotobyname(tcp) gave NULL");
698     returnValue = fetchedEntry->p_proto;
699   }
700   
701   return returnValue;
702 }
703
704 #ifdef HAVE_WINSOCK_H
705 #define RETSTR( x ) case x: return #x
706
707 const char *gras_wsa_err2string( int err ) {
708    switch( err ) {
709       RETSTR( WSAEINTR );
710       RETSTR( WSAEBADF );
711       RETSTR( WSAEACCES );
712       RETSTR( WSAEFAULT );
713       RETSTR( WSAEINVAL );
714       RETSTR( WSAEMFILE );
715       RETSTR( WSAEWOULDBLOCK );
716       RETSTR( WSAEINPROGRESS );
717       RETSTR( WSAEALREADY );
718       RETSTR( WSAENOTSOCK );
719       RETSTR( WSAEDESTADDRREQ );
720       RETSTR( WSAEMSGSIZE );
721       RETSTR( WSAEPROTOTYPE );
722       RETSTR( WSAENOPROTOOPT );
723       RETSTR( WSAEPROTONOSUPPORT );
724       RETSTR( WSAESOCKTNOSUPPORT );
725       RETSTR( WSAEOPNOTSUPP );
726       RETSTR( WSAEPFNOSUPPORT );
727       RETSTR( WSAEAFNOSUPPORT );
728       RETSTR( WSAEADDRINUSE );
729       RETSTR( WSAEADDRNOTAVAIL );
730       RETSTR( WSAENETDOWN );
731       RETSTR( WSAENETUNREACH );
732       RETSTR( WSAENETRESET );
733       RETSTR( WSAECONNABORTED );
734       RETSTR( WSAECONNRESET );
735       RETSTR( WSAENOBUFS );
736       RETSTR( WSAEISCONN );
737       RETSTR( WSAENOTCONN );
738       RETSTR( WSAESHUTDOWN );
739       RETSTR( WSAETOOMANYREFS );
740       RETSTR( WSAETIMEDOUT );
741       RETSTR( WSAECONNREFUSED );
742       RETSTR( WSAELOOP );
743       RETSTR( WSAENAMETOOLONG );
744       RETSTR( WSAEHOSTDOWN );
745       RETSTR( WSAEHOSTUNREACH );
746       RETSTR( WSAENOTEMPTY );
747       RETSTR( WSAEPROCLIM );
748       RETSTR( WSAEUSERS );
749       RETSTR( WSAEDQUOT );
750       RETSTR( WSAESTALE );
751       RETSTR( WSAEREMOTE );
752       RETSTR( WSASYSNOTREADY );
753       RETSTR( WSAVERNOTSUPPORTED );
754       RETSTR( WSANOTINITIALISED );
755       RETSTR( WSAEDISCON );
756       
757 #ifdef HAVE_WINSOCK2
758       RETSTR( WSAENOMORE );
759       RETSTR( WSAECANCELLED );
760       RETSTR( WSAEINVALIDPROCTABLE );
761       RETSTR( WSAEINVALIDPROVIDER );
762       RETSTR( WSASYSCALLFAILURE );
763       RETSTR( WSASERVICE_NOT_FOUND );
764       RETSTR( WSATYPE_NOT_FOUND );
765       RETSTR( WSA_E_NO_MORE );
766       RETSTR( WSA_E_CANCELLED );
767       RETSTR( WSAEREFUSED );
768 #endif /* HAVE_WINSOCK2 */
769
770       RETSTR( WSAHOST_NOT_FOUND );
771       RETSTR( WSATRY_AGAIN );
772       RETSTR( WSANO_RECOVERY );
773       RETSTR( WSANO_DATA );
774    }
775    return "unknown WSA error";
776 }
777 #endif /* HAVE_WINSOCK_H */
778
779 /***********************************/
780 /****[ end of HELPER FUNCTIONS ]****/
781 /***********************************/