1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/* ISC license. */
#include <string.h>
#include <errno.h>
#include <skalibs/posixplz.h>
#include <skalibs/stralloc.h>
#include <skalibs/djbunix.h>
#include <skalibs/webipc.h>
#include <skalibs/skamisc.h>
#include <skalibs/unix-timed.h>
#include <bcnm/config.h>
#include <bcnm/wpactrl.h>
#include "wpactrl-internal.h"
int wpactrl_start (wpactrl_t *a, char const *path, unsigned int timeout, tain_t *stamp)
{
tain_t tto, deadline ;
int fda, fds ;
size_t pos ;
stralloc sa = STRALLOC_ZERO ;
if (timeout) tain_from_millisecs(&tto, timeout) ;
else tto = tain_infinite_relative ;
if (!stralloc_cats(&sa, BCNM_TMPDIR)) return 0 ;
if (!stralloc_cats(&sa, "/clientfds")) goto err ;
pos = sa.len - 1 ;
if (!sauniquename(&sa) || !stralloc_0(&sa)) goto err ;
fds = ipc_datagram_nbcoe() ;
if (fds < 0) goto err ;
unlink_void(sa.s) ;
tain_add(&deadline, &tto, stamp) ;
if (ipc_bind(fds, sa.s) == -1
|| !ipc_timed_connect(fds, path, &deadline, stamp)) goto errs ;
fda = ipc_datagram_nbcoe() ;
if (fda < 0) goto errs ;
sa.s[pos] = 'a' ;
unlink_void(sa.s) ;
if (ipc_bind(fda, sa.s) == -1
|| !ipc_timed_connect(fda, path, &deadline, stamp)
|| !ipc_timed_send(fda, "ATTACH", 6, &deadline, stamp)) goto erra ;
{
ssize_t r ;
char answer[3] ;
r = wpactrl_fd_timed_recv(fda, answer, 3, &deadline, stamp) ;
if (r != 3 || memcmp(answer, "OK\n", 3)) goto erra ;
}
stralloc_free(&sa) ;
a->fds = fds ;
a->fda = fda ;
a->tto = tto ;
return 1 ;
erra:
fd_close(fda) ;
errs:
fd_close(fds) ;
err:
stralloc_free(&sa) ;
return 0 ;
}
|