chiark / gitweb /
distcheck needs fiddled cgiexecdir too
[disorder] / lib / client-common.c
1 /*
2  * This file is part of DisOrder
3  * Copyright (C) 2004, 2005, 2006, 2007 Richard Kettlewell
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
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  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include "common.h"
20
21 #include <netinet/in.h>
22 #include <sys/un.h>
23 #include <errno.h>
24 #include <netdb.h>
25
26 #include "log.h"
27 #include "configuration.h"
28 #include "client-common.h"
29 #include "addr.h"
30 #include "mem.h"
31
32 /** @brief Figure out what address to connect to
33  * @param c Configuration to honor
34  * @param sap Where to store pointer to sockaddr
35  * @param namep Where to store socket name
36  * @return Socket length, or (socklen_t)-1
37  */
38 socklen_t find_server(struct config *c,
39                       struct sockaddr **sap, char **namep) {
40   struct sockaddr *sa;
41   struct sockaddr_un su;
42   struct addrinfo *res = 0;
43   char *name;
44   socklen_t len;
45    
46   static const struct addrinfo pref = {
47     .ai_flags = 0,
48     .ai_family = PF_INET,
49     .ai_socktype = SOCK_STREAM,
50     .ai_protocol = IPPROTO_TCP,
51   };
52
53   if(c->connect.n) {
54     res = get_address(&c->connect, &pref, &name);
55     if(!res) return -1;
56     sa = res->ai_addr;
57     len = res->ai_addrlen;
58   } else {
59     name = config_get_file2(c, "socket");
60     if(strlen(name) >= sizeof su.sun_path) {
61       error(errno, "socket path is too long");
62       return -1;
63     }
64     memset(&su, 0, sizeof su);
65     su.sun_family = AF_UNIX;
66     strcpy(su.sun_path, name);
67     sa = (struct sockaddr *)&su;
68     len = sizeof su;
69   }
70   *sap = xmalloc_noptr(len);
71   memcpy(*sap, sa, len);
72   if(namep)
73     *namep = name;
74   if(res)
75     freeaddrinfo(res);
76   return len;
77 }
78
79 /*
80 Local Variables:
81 c-basic-offset:2
82 comment-column:40
83 fill-column:79
84 indent-tabs-mode:nil
85 End:
86 */