Update docco for new options.
[fwd] / un.c
CommitLineData
aa1f699e 1/* -*-c-*-
2 *
0ac54f22 3 * $Id: un.c,v 1.6 2003/11/25 14:08:23 mdw Exp $
aa1f699e 4 *
5 * Protocol specific definitions for Unix-domain sockets
6 *
7 * (c) 1999 Straylight/Edgeware
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of the `fw' port forwarder.
13 *
14 * `fw' is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * `fw' 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 General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with `fw'; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28
29/*----- Revision history --------------------------------------------------*
30 *
31 * $Log: un.c,v $
0ac54f22 32 * Revision 1.6 2003/11/25 14:08:23 mdw
33 * Debianization. Socket target options. Internet binding.
34 *
b0805b27 35 * Revision 1.5 2002/02/22 23:43:32 mdw
36 * Call @xfree@ rather than @free@.
37 *
bc241e98 38 * Revision 1.4 2000/08/01 17:59:56 mdw
39 * Switch over to using `size_t' for socket address lengths.
40 *
c9d2d52a 41 * Revision 1.3 2000/08/01 17:58:32 mdw
42 * Remove unnecessary <ctype.h> header.
43 *
e0ce9d38 44 * Revision 1.2 1999/07/27 18:30:53 mdw
45 * Various minor portability fixes.
46 *
aa1f699e 47 * Revision 1.1 1999/07/26 23:34:11 mdw
48 * New socket address types.
49 *
50 */
51
52/*----- Header files ------------------------------------------------------*/
53
54#include "config.h"
e0ce9d38 55#undef sun /* Cretins */
aa1f699e 56
aa1f699e 57#include <errno.h>
58#include <limits.h>
59#include <stddef.h>
60#include <stdio.h>
61#include <stdlib.h>
62#include <string.h>
63
64#include <sys/types.h>
65#include <unistd.h>
66
67#include <sys/socket.h>
68#include <sys/un.h>
69#include <arpa/inet.h>
70#include <netdb.h>
71
72#include <mLib/alloc.h>
73#include <mLib/dstr.h>
74#include <mLib/report.h>
75#include <mLib/sub.h>
76
77#include "addr.h"
78#include "conf.h"
79#include "fattr.h"
80#include "fw.h"
81#include "reffd.h"
82#include "scan.h"
0ac54f22 83#include "socket.h"
aa1f699e 84#include "un.h"
85
86/*----- Data structures ---------------------------------------------------*/
87
88typedef struct un_addr {
89 addr a;
90 struct sockaddr_un sun;
91} un_addr;
92
93typedef struct un_opts {
94 addr_opts ao;
95 fattr f;
96} un_opts;
97
98/*----- Protocol operations -----------------------------------------------*/
99
100/* --- @read@ --- */
101
102static addr *un_read(scanner *sc, unsigned type)
103{
104 dstr d = DSTR_INIT;
105 un_addr *ua;
106
107 conf_name(sc, '/', &d);
108 ua = xmalloc(sizeof(addr) +
109 offsetof(struct sockaddr_un, sun_path) +
110 d.len + 1);
111 ua->a.ops = &un_ops;
112 ua->a.sz = offsetof(struct sockaddr_un, sun_path) + d.len + 1;
e0ce9d38 113 memset(&ua->sun, 0, ua->a.sz);
aa1f699e 114 ua->sun.sun_family = AF_UNIX;
115 memcpy(ua->sun.sun_path, d.buf, d.len + 1);
116 dstr_destroy(&d);
117 return (&ua->a);
118}
119
120/* --- @destroy@ --- */
121
122static void un_destroy(addr *a)
123{
124 un_addr *ua = (un_addr *)a;
b0805b27 125 xfree(ua);
aa1f699e 126}
127
128/* --- @print@ --- */
129
130static void un_print(addr *a, unsigned type, dstr *d)
131{
132 un_addr *ua = (un_addr *)a;
133 dstr_puts(d, "unix:");
134 dstr_puts(d, ua->sun.sun_path);
135}
136
137/* --- @initopts@ --- */
138
139static addr_opts *un_initopts(void)
140{
141 un_opts *uo = CREATE(un_opts);
142 uo->f = fattr_global;
143 return (&uo->ao);
144}
145
146/* --- @option@ --- */
147
0ac54f22 148static int srcopt(scanner *sc, addr_opts *ao)
aa1f699e 149{
150 un_opts *uo = (un_opts *)ao;
151 CONF_BEGIN(sc, "unix", "Unix domain socket")
152
153 if (fattr_option(sc, uo ? &uo->f : &fattr_global))
154 CONF_ACCEPT;
155
156 CONF_END;
157}
158
0ac54f22 159static int un_option(scanner *sc, addr_opts *ao, unsigned type)
160{
161 CONF_BEGIN(sc, "unix", "Unix domain socket");
162 if (type != ADDR_DEST && srcopt(sc, ao))
163 CONF_ACCEPT;
164 CONF_END;
165}
166
aa1f699e 167/* --- @accept@ --- */
168
169static reffd *un_accept(int fd, addr_opts *ao, const char *desc)
170{
171 int nfd;
172 un_opts *uo = (un_opts *)ao;
173
174 /* --- Accept the new connection --- */
175
176 {
177 char buf[PATH_MAX + sizeof(struct sockaddr)];
178 struct sockaddr_un *sun = (struct sockaddr_un *)buf;
bc241e98 179 size_t sunsz = sizeof(buf);
aa1f699e 180
181 if ((nfd = accept(fd, (struct sockaddr *)sun, &sunsz)) < 0)
182 return (0);
183 }
184
185 /* --- Log the connection --- *
186 *
187 * It'd be really nice if I could find out who the user is, but I can't in
188 * anything like a portable way.
189 */
190
191 if (!(uo->ao.f & ADDRF_NOLOG))
192 fw_log(-1, "[%s] accepted", desc);
193 return (reffd_init(nfd));
194}
195
196/* --- @freeopts@ --- */
197
198static void un_freeopts(addr_opts *ao)
199{
200 un_opts *uo = (un_opts *)ao;
201 DESTROY(uo);
202}
203
0ac54f22 204/* --- @bind@ --- */
aa1f699e 205
0ac54f22 206static int un_bind(addr *a, addr_opts *ao)
aa1f699e 207{
208 un_addr *ua = (un_addr *)a;
209 un_opts *uo = (un_opts *)ao;
0ac54f22 210 int fd;
211
212 if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
213 goto fail_0;
214 if (bind(fd, (struct sockaddr *)&ua->sun, sizeof(ua->sun)))
215 goto fail_1;
216 if (fattr_apply(ua->sun.sun_path, &uo->f))
217 goto fail_1;
218 return (fd);
219
220fail_1:
221 close(fd);
222fail_0:
223 return (-1);
aa1f699e 224}
225
226/* --- @unbind@ --- */
227
228static void un_unbind(addr *a)
229{
230 un_addr *ua = (un_addr *)a;
231 unlink(ua->sun.sun_path);
232}
233
0ac54f22 234/* --- @connect@ --- */
235
236static int un_connect(addr *a, addr_opts *ao, conn *c, endpt *e)
237{
238 un_addr *ua = (un_addr *)a;
239 int fd;
240
241 if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
242 goto fail_0;
243 return (conn_init(c, sel, fd, (struct sockaddr *)&ua->sun, sizeof(ua->sun),
244 starget_connected, e));
245fail_0:
246 return (-1);
247}
248
aa1f699e 249/* --- Protocol definition --- */
250
251addr_ops un_ops = {
0ac54f22 252 "unix",
aa1f699e 253 un_read, un_destroy, un_print,
0ac54f22 254 un_initopts, un_option, un_freeopts, un_bind, un_unbind, un_accept,
255 0, 0, un_connect
aa1f699e 256};
257
258/*----- That's all, folks -------------------------------------------------*/