[project @ 1999-09-20 10:18:29 by simonmar]
[ghc-hetmet.git] / ghc / lib / misc / cbits / connectSocket.c
1 #if 0
2 %
3 % (c) The GRASP/AQUA Project, Glasgow University, 1995
4 %
5 \subsection[connectSocket.lc]{Assign name to client socket}
6
7 \begin{code}
8 #endif
9
10 #define NON_POSIX_SOURCE
11 #include "Rts.h"
12 #include "ghcSockets.h"
13 #include "stgio.h"
14
15 StgInt
16 connectSocket(I_ sockfd, A_ servaddr, I_ addrlen, I_ isUnixDomain)
17 {
18     int rc;
19     
20     while ((rc = connect((int)sockfd, (struct sockaddr *)servaddr, (int)addrlen)) < 0) {
21       if (errno == EINPROGRESS) {
22         errno = 0;
23         return FILEOBJ_BLOCKED_WRITE;
24         
25       } else if (errno != EINTR) {
26           cvtErrno();
27           switch (ghc_errno) {
28           default:
29               stdErrno();
30               break;
31           case GHC_EACCES:
32               ghc_errtype = ERR_PERMISSIONDENIED;
33               if (isUnixDomain != 0)
34                  ghc_errstr = "For a component of path prefix of path name";
35               else
36                  ghc_errstr  = "Requested address protected, cannot bind socket";
37               break;
38           case GHC_EISCONN:
39           case GHC_EADDRINUSE:
40               ghc_errtype = ERR_RESOURCEBUSY;
41               ghc_errstr  = "Address already in use";
42               break;
43           case GHC_EADDRNOTAVAIL:
44               ghc_errtype = ERR_PERMISSIONDENIED;
45               ghc_errstr  = "Address not available from local machine";
46               break;
47           case GHC_EAFNOSUPPORT:
48               ghc_errtype = ERR_INVALIDARGUMENT;
49               ghc_errstr  = "Address cannot be used with socket";
50               break;
51           case GHC_EALREADY:
52               ghc_errtype = ERR_RESOURCEBUSY;
53               ghc_errstr  = "Non-blocking socket, previous connection attempt not completed";
54               break;
55           case GHC_EBADF:
56               ghc_errtype = ERR_INVALIDARGUMENT;
57               ghc_errstr  = "Not a valid socket file descriptor";
58               break;
59           case GHC_ECONNREFUSED:
60               ghc_errtype = ERR_PERMISSIONDENIED;
61               ghc_errstr  = "Connection rejected";
62               break;
63           case GHC_EFAULT:
64               ghc_errtype = ERR_INVALIDARGUMENT;
65               ghc_errstr  = "Address not in valid part of process address space";
66               break;
67           case GHC_EINVAL:
68               ghc_errtype = ERR_SYSTEMERROR;
69               ghc_errstr  = "Specified size of structure not equal valid address for family";
70               break;
71           case GHC_ENETUNREACH:
72               ghc_errtype = ERR_PERMISSIONDENIED;
73               ghc_errstr  = "Network not reachable from host";
74               break;
75           case GHC_ENOTSOCK:
76               ghc_errtype = ERR_INAPPROPRIATETYPE;
77               ghc_errstr  = "Descriptor for file, not a socket";
78               break;
79           case GHC_ETIMEDOUT:
80               ghc_errtype = ERR_TIMEEXPIRED;
81               ghc_errstr  = "Connection attempt timed out";
82               break;
83           case GHC_EIO:
84               ghc_errtype = ERR_SYSTEMERROR;
85               ghc_errstr  = "Could not make directory entry or alloc inode";
86               break;
87           case GHC_EISDIR:
88               ghc_errtype = ERR_INVALIDARGUMENT;
89               ghc_errstr  = "A null path name was given";
90               break;
91           case GHC_ELOOP:
92               ghc_errtype = ERR_SYSTEMERROR;
93               ghc_errstr  = "Too many symbolic links encountered";
94               break;
95           case GHC_ENAMETOOLONG:
96               ghc_errtype = ERR_INVALIDARGUMENT;
97               ghc_errstr  = "Max length of path name exceeded";
98               break;
99           case GHC_ENOENT:
100               ghc_errtype = ERR_INVALIDARGUMENT;
101               ghc_errstr  = "Component in path prefix does not exist";
102               break;
103           case GHC_ENOTDIR:
104               ghc_errtype = ERR_INVALIDARGUMENT;
105               ghc_errstr  = "Component in path prefix is not a directory";
106               break;
107           case GHC_EPROTOTYPE:
108               ghc_errtype = ERR_INVALIDARGUMENT;
109               ghc_errstr  = "File referred to is a socket of differing type";
110               break;
111           }
112           return -1;
113       }
114     }
115     return 0;
116 }