-
Notifications
You must be signed in to change notification settings - Fork 34
/
wsdd.h
153 lines (127 loc) · 3.79 KB
/
wsdd.h
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
WSDD - Web Service Dynamic Discovery protocol server
Copyright (c) 2016 NETGEAR
Copyright (c) 2016 Hiro Sugawara
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _WSDD_H_
#define _WSDD_H_
#include <stdbool.h> // bool
#include <stdio.h> // FILE, fopen(), fprintf()
#include <syslog.h> // syslog()
#include <net/if.h> // IFNAMSIZ
#include <arpa/inet.h> // ntohs()
#include <netinet/in.h> // struct sockaddr_in, struct ip_mreq
#include <linux/in.h> // struct ip_mreqn
#include <linux/netlink.h> // struct sockaddr_nl
#include <time.h> // time_t, time()
/* wsdd2.c */
extern const char *hostname, *hostaliases, *netbiosname, *netbiosaliases, *workgroup;
extern int debug_L, debug_W;
extern bool is_daemon;
#define LOG(level, ...) \
do { \
if (is_daemon) { \
syslog(LOG_USER | (level), __VA_ARGS__);\
} else { \
fprintf(stderr, __VA_ARGS__); \
putc('\n', stderr); \
} \
} while (0)
#define DEBUG(x, y, ...) \
do { \
if (debug_##y >= (x)) { \
if (is_daemon) { \
syslog(LOG_USER | LOG_DEBUG, __VA_ARGS__);\
} else { \
fprintf(stderr, __VA_ARGS__); \
putc('\n', stderr); \
} \
} \
} while (0)
#ifndef HOST_NAME_MAX
#define HOST_NAME_MAX 255
#endif
#ifndef ARRAY_SIZE
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
#endif
#ifndef MAX
#define MAX(a, b) ((a)>(b)?(a):(b))
#endif
#define _ADDRSTRLEN MAX(INET_ADDRSTRLEN, INET6_ADDRSTRLEN)
typedef union {
struct sockaddr sa;
struct sockaddr_in in;
struct sockaddr_in6 in6;
struct sockaddr_nl nl;
struct sockaddr_storage ss;
} _saddr_t;
#define _SIN_ADDR(x) (((x)->ss.ss_family == AF_INET) \
? (void *)&(x)->in.sin_addr \
: (void *)&(x)->in6.sin6_addr)
#define _SIN_PORT(x) ntohs(((x)->ss.ss_family == AF_INET) \
? (x)->in.sin_port \
: (x)->in6.sin6_port)
struct endpoint {
char ifname[IFNAMSIZ];
struct endpoint *next;
struct service *service;
int family, type, protocol;
in_port_t port;
int sock;
const char *errstr;
int _errno;
size_t mlen, llen, mreqlen;
_saddr_t mcast, local;
union {
#ifdef USE_ip_mreq
struct ip_mreq ip_mreq;
#else
struct ip_mreqn ip_mreq;
#endif
struct ipv6_mreq ipv6_mreq;
} mreq;
};
struct service {
const char *name;
const int family, type, protocol;
const char *port_name;
const in_port_t port_num;
const char *mcast_addr;
const uint32_t nl_groups;
int (*init)(struct endpoint *);
int (*recv)(struct endpoint *);
int (*timer)(struct endpoint *);
void (*exit)(struct endpoint *);
time_t interval;
};
// wsd.c
int wsd_init(struct endpoint *);
int wsd_recv(struct endpoint *);
void wsd_exit(struct endpoint *);
void init_getresp(void);
const char *get_getresp(const char *key);
int set_getresp(const char *key, const char **endp);
void printBootInfoKeys(FILE *fp, int indent);
// llmnr.c
int llmnr_init(struct endpoint *);
int llmnr_recv(struct endpoint *);
void llmnr_exit(struct endpoint *);
// wsdd2.c
int connected_if(const _saddr_t *, _saddr_t *);
char *ip2uri(const char *);
// nl_debug.c
int nl_debug(void *buf, int len);
void dump(const void *p, size_t len, unsigned long start, const char *prefix);
void dump_str(const void *p, size_t len);
void dump_hex(const void *p, size_t len);
#endif