chiark / gitweb /
log: more general error message formatting
[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
460b9539 37
38#include "log.h"
39#include "configuration.h"
40#include "client-common.h"
41#include "addr.h"
0227f67d 42#include "mem.h"
460b9539 43
0227f67d 44/** @brief Figure out what address to connect to
319d7107 45 * @param c Configuration to honor
0227f67d
RK
46 * @param sap Where to store pointer to sockaddr
47 * @param namep Where to store socket name
48 * @return Socket length, or (socklen_t)-1
0e4472a0 49 */
319d7107
RK
50socklen_t find_server(struct config *c,
51 struct sockaddr **sap, char **namep) {
0227f67d 52 struct sockaddr *sa;
460b9539 53 struct sockaddr_un su;
0227f67d 54 struct addrinfo *res = 0;
de37b640 55 char *name = NULL;
0227f67d 56 socklen_t len;
460b9539 57
e41a9999
RK
58 if(c->connect.af != -1) {
59 res = netaddress_resolve(&c->connect, 0, IPPROTO_TCP);
60 if(!res)
61 return -1;
0227f67d
RK
62 sa = res->ai_addr;
63 len = res->ai_addrlen;
460b9539 64 } else {
1be9101e
RK
65 /* use the private socket if possible (which it should be) */
66 name = config_get_file2(c, "private/socket");
67 if(access(name, R_OK) != 0) {
68 xfree(name);
69 name = NULL;
de37b640
RK
70 }
71 if(!name)
72 name = config_get_file2(c, "socket");
0227f67d 73 if(strlen(name) >= sizeof su.sun_path) {
2e9ba080 74 disorder_error(errno, "socket path is too long");
460b9539 75 return -1;
76 }
77 memset(&su, 0, sizeof su);
78 su.sun_family = AF_UNIX;
0227f67d
RK
79 strcpy(su.sun_path, name);
80 sa = (struct sockaddr *)&su;
81 len = sizeof su;
f74f4f32 82 xfree(name);
460b9539 83 }
0227f67d
RK
84 *sap = xmalloc_noptr(len);
85 memcpy(*sap, sa, len);
86 if(namep)
e41a9999 87 *namep = format_sockaddr(sa);
0227f67d
RK
88 if(res)
89 freeaddrinfo(res);
90 return len;
460b9539 91}
92
ad131c25 93const char disorder__body[1];
ad131c25 94const char disorder__list[1];
bcb2af72
RK
95const char disorder__integer[1];
96const char disorder__time[1];
ad131c25 97
460b9539 98/*
99Local Variables:
100c-basic-offset:2
101comment-column:40
102fill-column:79
103indent-tabs-mode:nil
104End:
105*/