]> git.sur5r.net Git - openldap/blob - libraries/libldap/os-local.c
Don't assert on null
[openldap] / libraries / libldap / os-local.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*  Portions
7  *  Copyright (c) 1995 Regents of the University of Michigan.
8  *  All rights reserved.
9  *  Copyright (c) 1999 PADL Software Pty Ltd.
10  *  os-ip.c -- platform-specific domain socket code
11  */
12
13
14 #include "portable.h"
15
16 #ifdef LDAP_PF_LOCAL
17
18 #include <stdio.h>
19
20 #include <ac/stdlib.h>
21
22 #include <ac/errno.h>
23 #include <ac/socket.h>
24 #include <ac/string.h>
25 #include <ac/time.h>
26 #include <ac/unistd.h>
27
28 /* XXX non-portable */
29 #include <sys/stat.h>
30
31 #ifdef HAVE_IO_H
32 #include <io.h>
33 #endif /* HAVE_IO_H */
34
35 #include "ldap-int.h"
36 #include "ldap_defaults.h"
37
38 /* int ldap_int_tblsize = 0; */
39
40 #define oslocal_debug(ld,fmt,arg1,arg2,arg3) \
41 do { \
42         ldap_log_printf(ld, LDAP_DEBUG_TRACE, fmt, arg1, arg2, arg3); \
43 } while(0)
44
45 static void
46 ldap_pvt_set_errno(int err)
47 {
48         errno = err;
49 }
50
51 static int
52 ldap_pvt_ndelay_on(LDAP *ld, int fd)
53 {
54         oslocal_debug(ld, "ldap_ndelay_on: %d\n",fd,0,0);
55         return ber_pvt_socket_set_nonblock( fd, 1 );
56 }
57    
58 static int
59 ldap_pvt_ndelay_off(LDAP *ld, int fd)
60 {
61         oslocal_debug(ld, "ldap_ndelay_off: %d\n",fd,0,0);
62         return ber_pvt_socket_set_nonblock( fd, 0 );
63 }
64
65 static ber_socket_t
66 ldap_pvt_socket(LDAP *ld)
67 {
68         ber_socket_t s = socket(PF_LOCAL, SOCK_STREAM, 0);
69         oslocal_debug(ld, "ldap_new_socket: %d\n",s,0,0);
70         return ( s );
71 }
72
73 static int
74 ldap_pvt_close_socket(LDAP *ld, int s)
75 {
76         oslocal_debug(ld, "ldap_close_socket: %d\n",s,0,0);
77         return tcp_close(s);
78 }
79
80 #undef TRACE
81 #define TRACE do { \
82         oslocal_debug(ld, \
83                 "ldap_is_socket_ready: errror on socket %d: errno: %d (%s)\n", \
84                 s, \
85                 errno, \
86                 STRERROR(errno) ); \
87 } while( 0 )
88
89 /*
90  * check the socket for errors after select returned.
91  */
92 static int
93 ldap_pvt_is_socket_ready(LDAP *ld, int s)
94 {
95         oslocal_debug(ld, "ldap_is_sock_ready: %d\n",s,0,0);
96
97 #if defined( notyet ) /* && defined( SO_ERROR ) */
98 {
99         int so_errno;
100         int dummy = sizeof(so_errno);
101         if ( getsockopt( s, SOL_SOCKET, SO_ERROR, &so_errno, &dummy ) == -1 ) {
102                 return -1;
103         }
104         if ( so_errno ) {
105                 ldap_pvt_set_errno(so_errno);
106                 TRACE;
107                 return -1;
108         }
109         return 0;
110 }
111 #else
112 {
113         /* error slippery */
114         struct sockaddr_un sa;
115         char ch;
116         int dummy = sizeof(sa);
117         if ( getpeername( s, (struct sockaddr *) &sa, &dummy ) == -1 ) {
118                 /* XXX: needs to be replace with ber_stream_read() */
119                 read(s, &ch, 1);
120                 TRACE;
121                 return -1;
122         }
123         return 0;
124 }
125 #endif
126         return -1;
127 }
128 #undef TRACE
129
130 static int
131 ldap_pvt_connect(LDAP *ld, ber_socket_t s, struct sockaddr_un *sa, int async)
132 {
133         struct timeval  tv, *opt_tv=NULL;
134         fd_set          wfds, *z=NULL;
135
136         if ( (opt_tv = ld->ld_options.ldo_tm_net) != NULL ) {
137                 tv.tv_usec = opt_tv->tv_usec;
138                 tv.tv_sec = opt_tv->tv_sec;
139         }
140
141         oslocal_debug(ld, "ldap_connect_timeout: fd: %d tm: %ld async: %d\n",
142                         s, opt_tv ? tv.tv_sec : -1L, async);
143
144         if ( ldap_pvt_ndelay_on(ld, s) == -1 )
145                 return ( -1 );
146
147         if ( connect(s, (struct sockaddr *) sa, sizeof(struct sockaddr_un)) == 0 )
148         {
149                 if ( ldap_pvt_ndelay_off(ld, s) == -1 )
150                         return ( -1 );
151                 return ( 0 );
152         }
153
154         if ( errno != EINPROGRESS && errno != EWOULDBLOCK ) {
155                 return ( -1 );
156         }
157         
158 #ifdef notyet
159         if ( async ) return ( -2 );
160 #endif
161
162         FD_ZERO(&wfds);
163         FD_SET(s, &wfds );
164
165         if ( select(ldap_int_tblsize, z, &wfds, z, opt_tv ? &tv : NULL) == -1)
166                 return ( -1 );
167
168         if ( FD_ISSET(s, &wfds) ) {
169                 if ( ldap_pvt_is_socket_ready(ld, s) == -1 )
170                         return ( -1 );
171                 if ( ldap_pvt_ndelay_off(ld, s) == -1 )
172                         return ( -1 );
173                 return ( 0 );
174         }
175         oslocal_debug(ld, "ldap_connect_timeout: timed out\n",0,0,0);
176         ldap_pvt_set_errno( ETIMEDOUT );
177         return ( -1 );
178 }
179
180 int
181 ldap_connect_to_path(LDAP *ld, Sockbuf *sb, const char *path, int async)
182 {
183         struct sockaddr_un      server;
184         ber_socket_t            s = AC_SOCKET_INVALID;
185         int                     rc;
186
187         oslocal_debug(ld, "ldap_connect_to_path\n",0,0,0);
188
189         if ( (s = ldap_pvt_socket( ld )) == -1 ) {
190                 return -1;
191         }
192
193         if ( path == NULL || path[0] == '\0' ) {
194                 path = LDAPI_SOCK;
195         } else {
196                 if ( strlen(path) > (sizeof( server.sun_path ) - 1) ) {
197                         ldap_pvt_set_errno( ENAMETOOLONG );
198                         return -1;
199                 }
200         }
201
202         oslocal_debug(ld, "ldap_connect_to_path: Trying %s\n", path, 0, 0);
203
204         memset( &server, '\0', sizeof(server) );
205         server.sun_family = AF_LOCAL;
206         strcpy( server.sun_path, path );
207
208         rc = ldap_pvt_connect(ld, s, &server, async);
209
210         if (rc == 0) {
211                 ber_sockbuf_ctrl( sb, LBER_SB_OPT_SET_FD, (void *)&s );
212         } else {
213                 ldap_pvt_close_socket(ld, s);
214         }
215         return rc;
216 }
217 #else
218 static int dummy;
219 #endif /* LDAP_PF_LOCAL */