chiark / gitweb /
Rearrange @conn_init@ to be a bit more comprehensible.
[mLib] / conn.c
CommitLineData
97f65b00 1/* -*-c-*-
2 *
c9bb3f9e 3 * $Id: conn.c,v 1.7 2002/01/13 13:28:44 mdw Exp $
97f65b00 4 *
5 * Nonblocking connect handling
6 *
a3ddb778 7 * (c) 1999 Straylight/Edgeware
97f65b00 8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of the mLib utilities library.
13 *
14 * mLib is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU Library General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
18 *
19 * mLib is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Library General Public License for more details.
23 *
24 * You should have received a copy of the GNU Library General Public
25 * License along with mLib; if not, write to the Free
26 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27 * MA 02111-1307, USA.
28 */
29
30/*----- Revision history --------------------------------------------------*
31 *
32 * $Log: conn.c,v $
c9bb3f9e 33 * Revision 1.7 2002/01/13 13:28:44 mdw
34 * Rearrange @conn_init@ to be a bit more comprehensible.
35 *
ff34c6e7 36 * Revision 1.6 2001/06/22 19:35:20 mdw
37 * Interface change to @conn_init@ -- return error rather than calling the
38 * function. This reduces the number of different environments the
39 * callback has to cope with, and the old behaviour is easily simulatable
40 * with the new, while simulating the new behaviour was awkward and
41 * painful.
42 *
d320826d 43 * Revision 1.5 2000/10/08 11:17:26 mdw
44 * (conn_connect): Change sizes to be @size_t@.
45 *
89f167ab 46 * Revision 1.4 1999/07/26 23:21:02 mdw
47 * Bug fix: remove the selector before doing the callback, in case client
48 * adds a writer for the connected socket.
49 *
5feb52af 50 * Revision 1.3 1999/05/23 12:12:37 mdw
51 * Interface change to make the `conn' selector useful for generic stream
52 * sockets rather than just IPv4 ones.
53 *
a3ddb778 54 * Revision 1.2 1999/05/15 10:33:32 mdw
55 * Fix copyright notices.
56 *
97f65b00 57 * Revision 1.1 1999/05/14 21:01:14 mdw
58 * Integrated `select' handling bits from the background resolver project.
59 *
60 */
61
62/*----- Header files ------------------------------------------------------*/
63
64#include <errno.h>
5feb52af 65#include <limits.h>
97f65b00 66#include <stdio.h>
67#include <stdlib.h>
68#include <string.h>
69
70#include <sys/types.h>
97f65b00 71#include <sys/socket.h>
97f65b00 72
73#include <unistd.h>
74#include <fcntl.h>
75
76#include "conn.h"
77#include "sel.h"
78
79/*----- Main code ---------------------------------------------------------*/
80
81/* --- @conn_connect@ --- *
82 *
83 * Arguments: @int fd@ = file descriptor to try to connect
84 * @unsigned mode@ = what we can do to the file
85 * @void *p@ = pointer to connection context
86 *
87 * Returns: ---
88 *
89 * Use: Handles select results for pending connections.
90 */
91
92static void conn_connect(int fd, unsigned mode, void *p)
93{
5feb52af 94#ifndef PATH_MAX
95# define PATH_MAX 1024
96#endif
97
97f65b00 98 conn *c = p;
5feb52af 99 char buf[PATH_MAX + 8]; /* Big enough */
d320826d 100 size_t sinsz;
97f65b00 101
5feb52af 102 sinsz = sizeof(buf);
89f167ab 103 sel_rmfile(&c->writer);
5feb52af 104 if (getpeername(fd, (struct sockaddr *)buf, &sinsz) < 0) {
97f65b00 105 int err;
d320826d 106 size_t errsz = sizeof(err);
97f65b00 107 if (getsockopt(fd, SOL_SOCKET, SO_ERROR, &err, &errsz) == 0)
108 errno = err;
97f65b00 109 close(fd);
89f167ab 110 c->func(-1, c->p);
97f65b00 111 } else
112 c->func(fd, c->p);
97f65b00 113}
114
115/* --- @conn_init@ --- *
116 *
117 * Arguments: @conn *c@ = pointer to connection block
118 * @sel_state *s@ = pointer to select state to attach to
5feb52af 119 * @int fd@ = file descriptor of socket to connect
120 * @struct sockaddr *dst@ = destination address
121 * @int dsz@ = size of destination address
97f65b00 122 * @void (*func)(int fd, void *p) = handler function
123 * @void *p@ = argument for the handler function
124 *
ff34c6e7 125 * Returns: Zero on success, nonzero on failure.
97f65b00 126 *
5feb52af 127 * Use: Sets up a nonblocking connect job. The socket should already
128 * be bound if you care about that sort of thing. When the
129 * connection completes, the handler function is called with the
130 * connected socket as an argument. If the connect fails rather
131 * than completes, the socket is closed, and the handler is
132 * informed of this by being passed a negative file descriptor.
133 * In either case, the select job is then removed.
97f65b00 134 */
135
ff34c6e7 136int conn_init(conn *c, sel_state *s, int fd,
137 struct sockaddr *dst, int dsz,
138 void (*func)(int /*fd*/, void */*p*/),
139 void *p)
97f65b00 140{
5feb52af 141 int f;
97f65b00 142
5feb52af 143 if ((f = fcntl(fd, F_GETFL)) < 0 ||
144 fcntl(fd, F_SETFL, f | O_NONBLOCK))
97f65b00 145 goto fail;
146
c9bb3f9e 147 if (!connect(fd, dst, dsz))
148 func(fd, p);
149 else if (errno != EINPROGRESS)
150 goto fail;
151 else {
5feb52af 152 c->func = func;
153 c->p = p;
154 sel_initfile(s, &c->writer, fd, SEL_WRITE, conn_connect, c);
155 sel_addfile(&c->writer);
c9bb3f9e 156 }
ff34c6e7 157 return (0);
97f65b00 158
159 /* --- Something went pear-shaped --- */
160
97f65b00 161fail:
5feb52af 162 close(fd);
ff34c6e7 163 return (-1);
97f65b00 164}
165
166/* --- @conn_kill@ --- *
167 *
168 * Arguments: @conn *c@ = pointer to connection to dispose of
169 *
170 * Returns: ---
171 *
172 * Use: Disposes of a connection when it's not wanted any more.
173 */
174
175void conn_kill(conn *c)
176{
177 if (c->writer.fd != -1) {
178 close(c->writer.fd);
179 sel_rmfile(&c->writer);
180 c->writer.fd = -1;
181 }
182}
183
184/*----- That's all, folks -------------------------------------------------*/