Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
dca33b1f428d1cf38b57d29d87c1a9864344353b
[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 "gras/Transport/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 XBT_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 XBT_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(sock_errno));
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(sock_errno));
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(sock_errno));
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(sock_errno));
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 XBT_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(sock_errno));
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(sock_errno));
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(sock_errno));
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(sock_errno));
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(sock_errno));
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 = sock_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(tmp_errno));
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(tmp_errno));
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(tmp_errno));
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(sock_errno));
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 XBT_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(sock_errno));
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(sock_errno));
305     }
306   }
307 }
308 static XBT_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(sock_errno),
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
342   return got;
343 }
344
345 static int gras_trp_tcp_recv(gras_socket_t sock,
346                                    char *data,
347                                    unsigned long int size) {
348   return gras_trp_tcp_recv_withbuffer(sock,data,size,size);
349
350 }
351 /*******************************************/
352 /****[ end of UNBUFFERED DATA EXCHANGE ]****/
353 /*******************************************/
354
355 /**********************************/
356 /****[ BUFFERED DATA EXCHANGE ]****/
357 /**********************************/
358
359 /* Make sure the data is sent */
360 static void
361 gras_trp_bufiov_flush(gras_socket_t sock) {
362 #ifdef HAVE_READV
363   xbt_dynar_t vect;
364   int size;
365 #endif
366   gras_trp_bufdata_t *data=sock->bufdata;
367   XBT_IN;    
368   
369   DEBUG0("Flush");
370   if (data->out == buffering_buf) {
371     if (XBT_LOG_ISENABLED(gras_trp_tcp,xbt_log_priority_debug))
372       hexa_print("chunk to send ",
373                  (unsigned char *) data->out_buf.data,data->out_buf.size);
374     if ((data->out_buf.size - data->out_buf.pos) != 0) { 
375       DEBUG3("Send the chunk (size=%d) to %s:%d",data->out_buf.size,
376              gras_socket_peer_name(sock),gras_socket_peer_port(sock));
377       gras_trp_tcp_send(sock, data->out_buf.data, data->out_buf.size);
378       VERB1("Chunk sent (size=%d)",data->out_buf.size);
379       data->out_buf.size = 0;
380     }
381   }
382
383 #ifdef HAVE_READV
384   if (data->out == buffering_iov) {
385     DEBUG0("Flush out iov");
386     vect = sock->bufdata->out_buf_v;
387     if ((size = xbt_dynar_length(vect))) {
388       DEBUG1("Flush %d chunks out of this socket",size);
389       writev(sock->sd,xbt_dynar_get_ptr(vect,0),size);
390       xbt_dynar_reset(vect);
391     }
392     data->out_buf.size = 0; /* reset the buffer containing non-stable data */
393   }
394
395   if (data->in == buffering_iov) {
396     DEBUG0("Flush in iov");
397     vect = sock->bufdata->in_buf_v;
398     if ((size = xbt_dynar_length(vect))) {
399       DEBUG1("Get %d chunks from of this socket",size);
400       readv(sock->sd,xbt_dynar_get_ptr(vect,0),size);
401       xbt_dynar_reset(vect);
402     }
403   }
404 #endif
405 }
406 static void
407 gras_trp_buf_send(gras_socket_t sock,
408                   const char *chunk,
409                   unsigned long int size,
410                   int stable_ignored) {
411
412   gras_trp_bufdata_t *data=(gras_trp_bufdata_t*)sock->bufdata;
413   int chunk_pos=0;
414
415   XBT_IN;
416
417   while (chunk_pos < size) {
418     /* size of the chunk to receive in that shot */
419     long int thissize = min(size-chunk_pos,data->buffsize-data->out_buf.size);
420     DEBUG4("Set the chars %d..%ld into the buffer; size=%ld, ctn=(%s)",
421            (int)data->out_buf.size,
422            ((int)data->out_buf.size) + thissize -1,
423            size,
424            hexa_str((unsigned char*)chunk,thissize,0));
425
426     memcpy(data->out_buf.data + data->out_buf.size, chunk + chunk_pos, thissize);
427
428     data->out_buf.size += thissize;
429     chunk_pos      += thissize;
430     DEBUG4("New pos = %d; Still to send = %ld of %ld; ctn sofar=(%s)",
431            data->out_buf.size,size-chunk_pos,size,hexa_str((unsigned char*)chunk,chunk_pos,0));
432
433     if (data->out_buf.size == data->buffsize) /* out of space. Flush it */
434       gras_trp_bufiov_flush(sock);
435   }
436
437   XBT_OUT;
438 }
439
440 static int
441 gras_trp_buf_recv(gras_socket_t sock,
442                   char *chunk,
443                   unsigned long int size) {
444
445   gras_trp_bufdata_t *data=sock->bufdata;
446   long int chunk_pos = 0;
447    
448   XBT_IN;
449
450   while (chunk_pos < size) {
451     /* size of the chunk to receive in that shot */
452     long int thissize;
453
454     if (data->in_buf.size == data->in_buf.pos) { /* out of data. Get more */
455
456       DEBUG2("Get more data (size=%d,bufsize=%d)",
457              (int)MIN(size-chunk_pos,data->buffsize),
458              (int)data->buffsize);
459
460        
461       data->in_buf.size = 
462         gras_trp_tcp_recv_withbuffer(sock, data->in_buf.data, 
463                                      MIN(size-chunk_pos,data->buffsize),
464                                      data->buffsize);
465        
466       data->in_buf.pos=0;
467     }
468      
469     thissize = min(size-chunk_pos ,  data->in_buf.size - data->in_buf.pos);
470     memcpy(chunk+chunk_pos, data->in_buf.data + data->in_buf.pos, thissize);
471
472     data->in_buf.pos += thissize;
473     chunk_pos        += thissize;
474     DEBUG4("New pos = %d; Still to receive = %ld of %ld. Ctn so far=(%s)",
475            data->in_buf.pos,size - chunk_pos,size,hexa_str((unsigned char*)chunk,chunk_pos,0));
476   }
477   /* indicate on need to the gras_select function that there is more to read on this socket so that it does not actually select */
478   sock->moredata = (data->in_buf.size > data->in_buf.pos);
479   DEBUG1("There is %smore data",(sock->moredata?"":"no "));
480    
481   XBT_OUT;
482   return chunk_pos;
483 }
484
485 /*****************************************/
486 /****[ end of BUFFERED DATA EXCHANGE ]****/
487 /*****************************************/
488
489 /********************************/
490 /****[ VECTOR DATA EXCHANGE ]****/
491 /********************************/
492 #ifdef HAVE_READV
493 static void
494 gras_trp_iov_send(gras_socket_t sock,
495                   const char *chunk,
496                   unsigned long int size,
497                   int stable) {
498   struct iovec elm;
499   gras_trp_bufdata_t *data=(gras_trp_bufdata_t*)sock->bufdata;
500     
501
502   DEBUG1("Buffer one chunk to be sent later (%s)",
503         hexa_str((char*)chunk,size,0));
504
505   elm.iov_len = (size_t)size;
506
507   if (!stable) {
508     /* data storage won't last until flush. Save it in a buffer if we can */
509
510     if (size > data->buffsize-data->out_buf.size) {
511       /* buffer too small: 
512          flush the socket, using data in its actual storage */
513       elm.iov_base = (void*)chunk;
514       xbt_dynar_push(data->out_buf_v,&elm);
515
516       gras_trp_bufiov_flush(sock);      
517       return;
518     } else {
519       /* buffer big enough: 
520          copy data into it, and chain it for upcoming writev */
521       memcpy(data->out_buf.data + data->out_buf.size, chunk, size);
522       elm.iov_base = (void*)(data->out_buf.data + data->out_buf.size);
523       data->out_buf.size += size;
524
525       xbt_dynar_push(data->out_buf_v,&elm);
526     }
527
528   } else {
529     /* data storage stable. Chain it */
530     
531     elm.iov_base = (void*)chunk;
532     xbt_dynar_push(data->out_buf_v,&elm);
533   }
534 }
535 static int
536 gras_trp_iov_recv(gras_socket_t sock,
537                   char *chunk,
538                   unsigned long int size) {
539   struct iovec elm;
540
541   DEBUG0("Buffer one chunk to be received later");
542   elm.iov_base = (void*)chunk;
543   elm.iov_len = (size_t)size;
544   xbt_dynar_push(sock->bufdata->in_buf_v,&elm);
545
546   return size;
547 }
548
549 #endif
550 /***************************************/
551 /****[ end of VECTOR DATA EXCHANGE ]****/
552 /***************************************/
553
554
555 /***
556  *** Prototypes of BUFFERED
557  ***/
558    
559 void gras_trp_buf_socket_client(gras_trp_plugin_t self,
560                                 gras_socket_t sock);
561 void gras_trp_buf_socket_server(gras_trp_plugin_t self,
562                                 gras_socket_t sock);
563 gras_socket_t gras_trp_buf_socket_accept(gras_socket_t sock);
564
565 void         gras_trp_buf_socket_close(gras_socket_t sd);
566   
567
568 gras_socket_t gras_trp_buf_init_sock(gras_socket_t sock) {
569   gras_trp_bufdata_t *data=xbt_new(gras_trp_bufdata_t,1);
570   
571   data->buffsize = 100 * 1024 ; /* 100k */ 
572
573   data->in_buf.size  = 0;
574   data->in_buf.data  = xbt_malloc(data->buffsize);
575   data->in_buf.pos   = 0; /* useless, indeed, since size==pos */
576    
577   data->out_buf.size = 0;
578   data->out_buf.data = xbt_malloc(data->buffsize);
579   data->out_buf.pos  = data->out_buf.size;
580
581 #ifdef HAVE_READV
582   data->in_buf_v = data->out_buf_v = NULL;
583   data->in_buf_v=xbt_dynar_new(sizeof(struct iovec),NULL);
584   data->out_buf_v=xbt_dynar_new(sizeof(struct iovec),NULL);
585   data->out = buffering_iov;
586 #else
587   data->out = buffering_buf;
588 #endif
589    
590   data->in = buffering_buf;
591
592   sock->bufdata = data;
593   return sock;
594 }
595
596 /***
597  *** Code
598  ***/
599 void
600 gras_trp_tcp_setup(gras_trp_plugin_t plug) {
601
602   plug->socket_client = gras_trp_buf_socket_client;
603   plug->socket_server = gras_trp_buf_socket_server;
604   plug->socket_accept = gras_trp_buf_socket_accept;
605   plug->socket_close  = gras_trp_buf_socket_close;
606
607 #ifdef HAVE_READV
608   plug->send = gras_trp_iov_send;
609 #else
610   plug->send = gras_trp_buf_send;
611 #endif
612   plug->recv = gras_trp_buf_recv;
613
614   plug->raw_send    = gras_trp_tcp_send;
615   plug->raw_recv    = gras_trp_tcp_recv;
616
617   plug->flush         = gras_trp_bufiov_flush;
618
619   plug->data = NULL;
620   plug->exit = NULL;
621 }
622
623 void gras_trp_buf_socket_client(gras_trp_plugin_t self,
624                                 /* OUT */ gras_socket_t sock){
625
626   gras_trp_sock_socket_client(NULL,sock);
627   gras_trp_buf_init_sock(sock);
628 }
629
630 /**
631  * gras_trp_buf_socket_server:
632  *
633  * Open a socket used to receive messages.
634  */
635 void gras_trp_buf_socket_server(gras_trp_plugin_t self,
636                                 /* OUT */ gras_socket_t sock){
637
638   gras_trp_sock_socket_server(NULL,sock);
639   gras_trp_buf_init_sock(sock);
640 }
641
642 gras_socket_t gras_trp_buf_socket_accept(gras_socket_t sock) {
643   return gras_trp_buf_init_sock(gras_trp_sock_socket_accept(sock));
644 }
645
646 void gras_trp_buf_socket_close(gras_socket_t sock){
647   gras_trp_bufdata_t *data=sock->bufdata;
648
649   if (data->in_buf.size!=data->in_buf.pos) {
650      WARN3("Socket closed, but %d bytes were unread (size=%d,pos=%d)",
651            data->in_buf.size - data->in_buf.pos,
652            data->in_buf.size, data->in_buf.pos);
653   }
654   if (data->in_buf.data)
655     free(data->in_buf.data);
656    
657   if (data->out_buf.size!=data->out_buf.pos) {
658     DEBUG2("Flush the socket before closing (in=%d,out=%d)",
659            data->in_buf.size, data->out_buf.size);
660     gras_trp_bufiov_flush(sock);
661   }   
662   if (data->out_buf.data)
663     free(data->out_buf.data);
664
665 #ifdef HAVE_READV
666   if (data->in_buf_v) {
667     if (xbt_dynar_length(data->in_buf_v)) 
668       WARN0("Socket closed, but some bytes were unread");
669     xbt_dynar_free(&data->in_buf_v);
670   }
671   if (data->out_buf_v) {
672     if (xbt_dynar_length(data->out_buf_v)) {
673       DEBUG0("Flush the socket before closing");
674       gras_trp_bufiov_flush(sock);
675     }
676     xbt_dynar_free(&data->out_buf_v);
677   }
678 #endif
679
680   free(data);
681   gras_trp_sock_socket_close(sock);
682 }
683
684 /****************************/
685 /****[ HELPER FUNCTIONS ]****/
686 /****************************/
687
688 /*
689  * Returns the tcp protocol number from the network protocol data base.
690  *
691  * getprotobyname() is not thread safe. We need to lock it.
692  */
693 static int _gras_tcp_proto_number(void) {
694   struct protoent *fetchedEntry;
695   static int returnValue = 0;
696   
697   if(returnValue == 0) {
698     fetchedEntry = getprotobyname("tcp");
699     xbt_assert0(fetchedEntry, "getprotobyname(tcp) gave NULL");
700     returnValue = fetchedEntry->p_proto;
701   }
702   
703   return returnValue;
704 }
705
706 #ifdef HAVE_WINSOCK_H
707 #define RETSTR( x ) case x: return #x
708
709 const char *gras_wsa_err2string( int err ) {
710    switch( err ) {
711       RETSTR( WSAEINTR );
712       RETSTR( WSAEBADF );
713       RETSTR( WSAEACCES );
714       RETSTR( WSAEFAULT );
715       RETSTR( WSAEINVAL );
716       RETSTR( WSAEMFILE );
717       RETSTR( WSAEWOULDBLOCK );
718       RETSTR( WSAEINPROGRESS );
719       RETSTR( WSAEALREADY );
720       RETSTR( WSAENOTSOCK );
721       RETSTR( WSAEDESTADDRREQ );
722       RETSTR( WSAEMSGSIZE );
723       RETSTR( WSAEPROTOTYPE );
724       RETSTR( WSAENOPROTOOPT );
725       RETSTR( WSAEPROTONOSUPPORT );
726       RETSTR( WSAESOCKTNOSUPPORT );
727       RETSTR( WSAEOPNOTSUPP );
728       RETSTR( WSAEPFNOSUPPORT );
729       RETSTR( WSAEAFNOSUPPORT );
730       RETSTR( WSAEADDRINUSE );
731       RETSTR( WSAEADDRNOTAVAIL );
732       RETSTR( WSAENETDOWN );
733       RETSTR( WSAENETUNREACH );
734       RETSTR( WSAENETRESET );
735       RETSTR( WSAECONNABORTED );
736       RETSTR( WSAECONNRESET );
737       RETSTR( WSAENOBUFS );
738       RETSTR( WSAEISCONN );
739       RETSTR( WSAENOTCONN );
740       RETSTR( WSAESHUTDOWN );
741       RETSTR( WSAETOOMANYREFS );
742       RETSTR( WSAETIMEDOUT );
743       RETSTR( WSAECONNREFUSED );
744       RETSTR( WSAELOOP );
745       RETSTR( WSAENAMETOOLONG );
746       RETSTR( WSAEHOSTDOWN );
747       RETSTR( WSAEHOSTUNREACH );
748       RETSTR( WSAENOTEMPTY );
749       RETSTR( WSAEPROCLIM );
750       RETSTR( WSAEUSERS );
751       RETSTR( WSAEDQUOT );
752       RETSTR( WSAESTALE );
753       RETSTR( WSAEREMOTE );
754       RETSTR( WSASYSNOTREADY );
755       RETSTR( WSAVERNOTSUPPORTED );
756       RETSTR( WSANOTINITIALISED );
757       RETSTR( WSAEDISCON );
758       
759 #ifdef HAVE_WINSOCK2
760       RETSTR( WSAENOMORE );
761       RETSTR( WSAECANCELLED );
762       RETSTR( WSAEINVALIDPROCTABLE );
763       RETSTR( WSAEINVALIDPROVIDER );
764       RETSTR( WSASYSCALLFAILURE );
765       RETSTR( WSASERVICE_NOT_FOUND );
766       RETSTR( WSATYPE_NOT_FOUND );
767       RETSTR( WSA_E_NO_MORE );
768       RETSTR( WSA_E_CANCELLED );
769       RETSTR( WSAEREFUSED );
770 #endif /* HAVE_WINSOCK2 */
771
772       RETSTR( WSAHOST_NOT_FOUND );
773       RETSTR( WSATRY_AGAIN );
774       RETSTR( WSANO_RECOVERY );
775       RETSTR( WSANO_DATA );
776    }
777    return "unknown WSA error";
778 }
779 #endif /* HAVE_WINSOCK_H */
780
781 /***********************************/
782 /****[ end of HELPER FUNCTIONS ]****/
783 /***********************************/