chiark / gitweb /
scripts/sedfiles.make, doc/disorder.cgi.8.in: Say where the file is.
[disorder] / lib / client-common.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder
cca89d7c 3 * Copyright (C) 2004-7, 2009, 2011-13 Richard Kettlewell
460b9539 4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
460b9539 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
460b9539 8 * (at your option) any later version.
e7eb3a27
RK
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
460b9539 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
460b9539 17 */
132a5a4a
RK
18/** @file lib/client-common.c
19 * @brief Common code to client APIs
20 */
460b9539 21
05b75f8d 22#include "common.h"
460b9539 23
cca89d7c
RK
24#if HAVE_NETINET_IN_H
25# include <netinet/in.h>
26#endif
27#if HAVE_SYS_UN_H
28# include <sys/un.h>
29#endif
460b9539 30#include <errno.h>
cca89d7c
RK
31#if HAVE_NETDB_H
32# include <netdb.h>
33#endif
34#if HAVE_UNISTD_H
35# include <unistd.h>
36#endif
9e42afcd
RK
37#if HAVE_WS2TCPIP_H
38# include <Ws2tcpip.h>
39#endif
460b9539 40
41#include "log.h"
42#include "configuration.h"
43#include "client-common.h"
44#include "addr.h"
0227f67d 45#include "mem.h"
460b9539 46
0227f67d 47/** @brief Figure out what address to connect to
319d7107 48 * @param c Configuration to honor
0227f67d
RK
49 * @param sap Where to store pointer to sockaddr
50 * @param namep Where to store socket name
51 * @return Socket length, or (socklen_t)-1
0e4472a0 52 */
319d7107
RK
53socklen_t find_server(struct config *c,
54 struct sockaddr **sap, char **namep) {
0227f67d 55 struct sockaddr *sa;
9e42afcd 56#if !_WIN32
460b9539 57 struct sockaddr_un su;
9e42afcd 58#endif
0227f67d 59 struct addrinfo *res = 0;
de37b640 60 char *name = NULL;
0227f67d 61 socklen_t len;
460b9539 62
e41a9999
RK
63 if(c->connect.af != -1) {
64 res = netaddress_resolve(&c->connect, 0, IPPROTO_TCP);
65 if(!res)
66 return -1;
0227f67d
RK
67 sa = res->ai_addr;
68 len = res->ai_addrlen;
460b9539 69 } else {
9e42afcd
RK
70#if _WIN32
71 disorder_fatal(0, "local connections are not supported on Windows");
72#else
1be9101e
RK
73 /* use the private socket if possible (which it should be) */
74 name = config_get_file2(c, "private/socket");
75 if(access(name, R_OK) != 0) {
76 xfree(name);
77 name = NULL;
de37b640
RK
78 }
79 if(!name)
80 name = config_get_file2(c, "socket");
0227f67d 81 if(strlen(name) >= sizeof su.sun_path) {
70adc86b 82 disorder_error(0, "socket path is too long");
460b9539 83 return -1;
84 }
85 memset(&su, 0, sizeof su);
86 su.sun_family = AF_UNIX;
0227f67d
RK
87 strcpy(su.sun_path, name);
88 sa = (struct sockaddr *)&su;
89 len = sizeof su;
f74f4f32 90 xfree(name);
9e42afcd 91#endif
460b9539 92 }
0227f67d
RK
93 *sap = xmalloc_noptr(len);
94 memcpy(*sap, sa, len);
95 if(namep)
e41a9999 96 *namep = format_sockaddr(sa);
0227f67d
RK
97 if(res)
98 freeaddrinfo(res);
99 return len;
460b9539 100}
101
ad131c25 102const char disorder__body[1];
ad131c25 103const char disorder__list[1];
bcb2af72
RK
104const char disorder__integer[1];
105const char disorder__time[1];
ad131c25 106
460b9539 107/*
108Local Variables:
109c-basic-offset:2
110comment-column:40
111fill-column:79
112indent-tabs-mode:nil
113End:
114*/