This file is indexed.

/usr/include/jdns/jdns.h is in libjdns-dev 2.0.3-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
/*
 * Copyright (C) 2005,2006  Justin Karneges
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

#ifndef JDNS_H
#define JDNS_H

#include "jdns_export.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef void (*jdns_object_dtor_func)(void *);
typedef void *(*jdns_object_cctor_func)(const void *);

#define JDNS_OBJECT \
	jdns_object_dtor_func dtor; \
	jdns_object_cctor_func cctor;

#define JDNS_OBJECT_NEW(name) \
	(name##_t *)jdns_object_new(sizeof(name##_t), \
		(jdns_object_dtor_func)name##_delete, \
		(jdns_object_cctor_func)name##_copy);

typedef struct jdns_object
{
	JDNS_OBJECT
} jdns_object_t;

JDNS_EXPORT void *jdns_object_new(int size, void (*dtor)(void *),
                                  void *(*cctor)(const void *));
JDNS_EXPORT void *jdns_object_copy(const void *a);
JDNS_EXPORT void jdns_object_delete(void *a);
JDNS_EXPORT void jdns_object_free(void *a);

#define JDNS_LIST_DECLARE(name) \
	JDNS_OBJECT \
	int count; \
	name##_t **item;

typedef struct jdns_list
{
	JDNS_OBJECT
	int count;
	void **item;
	int valueList;
	int autoDelete;
} jdns_list_t;

JDNS_EXPORT jdns_list_t *jdns_list_new();
JDNS_EXPORT jdns_list_t *jdns_list_copy(const jdns_list_t *a);
JDNS_EXPORT void jdns_list_delete(jdns_list_t *a);
JDNS_EXPORT void jdns_list_clear(jdns_list_t *a);
JDNS_EXPORT void jdns_list_insert(jdns_list_t *a, void *item, int pos);
JDNS_EXPORT void jdns_list_insert_value(jdns_list_t *a, const void *item, int pos);
JDNS_EXPORT void jdns_list_remove(jdns_list_t *a, void *item);
JDNS_EXPORT void jdns_list_remove_at(jdns_list_t *a, int pos);

typedef struct jdns_string
{
	JDNS_OBJECT
	unsigned char *data;
	int size;
} jdns_string_t;

JDNS_EXPORT jdns_string_t *jdns_string_new();
JDNS_EXPORT jdns_string_t *jdns_string_copy(const jdns_string_t *s);
JDNS_EXPORT void jdns_string_delete(jdns_string_t *s);
JDNS_EXPORT void jdns_string_set(jdns_string_t *s, const unsigned char *str,
                                 int str_len);
JDNS_EXPORT void jdns_string_set_cstr(jdns_string_t *s, const char *str);

 // overlays jdns_list
typedef struct jdns_stringlist
{
	JDNS_OBJECT
	int count;
	jdns_string_t **item;
} jdns_stringlist_t;

JDNS_EXPORT jdns_stringlist_t *jdns_stringlist_new();
JDNS_EXPORT jdns_stringlist_t *jdns_stringlist_copy(const jdns_stringlist_t *a);
JDNS_EXPORT void jdns_stringlist_delete(jdns_stringlist_t *a);
JDNS_EXPORT void jdns_stringlist_append(jdns_stringlist_t *a, const jdns_string_t *str);

typedef struct jdns_address
{
	int isIpv6;
	union
	{
		unsigned long int v4;
		unsigned char *v6; // 16 bytes
	} addr;
	char *c_str;
} jdns_address_t;

JDNS_EXPORT jdns_address_t *jdns_address_new();
JDNS_EXPORT jdns_address_t *jdns_address_copy(const jdns_address_t *a);
JDNS_EXPORT void jdns_address_delete(jdns_address_t *a);
JDNS_EXPORT void jdns_address_set_ipv4(jdns_address_t *a, unsigned long int ipv4);
JDNS_EXPORT void jdns_address_set_ipv6(jdns_address_t *a, const unsigned char *ipv6);
// return 1 if string was ok, else 0.  Note: IPv4 addresses only!
JDNS_EXPORT int jdns_address_set_cstr(jdns_address_t *a, const char *str);
// return 1 if the same, else 0
JDNS_EXPORT int jdns_address_cmp(const jdns_address_t *a, const jdns_address_t *b);

// convenient predefined addresses/ports
#define JDNS_UNICAST_PORT    53
#define JDNS_MULTICAST_PORT  5353
JDNS_EXPORT jdns_address_t *jdns_address_multicast4_new(); // 224.0.0.251
JDNS_EXPORT jdns_address_t *jdns_address_multicast6_new(); // FF02::FB

typedef struct jdns_server
{
	unsigned char *name;
	int port; // SRV only
	int priority;
	int weight; // SRV only
} jdns_server_t;

JDNS_EXPORT jdns_server_t *jdns_server_new();
JDNS_EXPORT jdns_server_t *jdns_server_copy(const jdns_server_t *s);
JDNS_EXPORT void jdns_server_delete(jdns_server_t *s);
JDNS_EXPORT void jdns_server_set_name(jdns_server_t *s, const unsigned char *name);

typedef struct jdns_nameserver
{
	jdns_address_t *address;
	int port;
} jdns_nameserver_t;

JDNS_EXPORT jdns_nameserver_t *jdns_nameserver_new();
JDNS_EXPORT jdns_nameserver_t *jdns_nameserver_copy(const jdns_nameserver_t *a);
JDNS_EXPORT void jdns_nameserver_delete(jdns_nameserver_t *a);
JDNS_EXPORT void jdns_nameserver_set(jdns_nameserver_t *a, const jdns_address_t *addr,
                                     int port);

typedef struct jdns_nameserverlist
{
	int count;
	jdns_nameserver_t **item;
} jdns_nameserverlist_t;

JDNS_EXPORT jdns_nameserverlist_t *jdns_nameserverlist_new();
JDNS_EXPORT jdns_nameserverlist_t *jdns_nameserverlist_copy(const jdns_nameserverlist_t *a);
JDNS_EXPORT void jdns_nameserverlist_delete(jdns_nameserverlist_t *a);
JDNS_EXPORT void jdns_nameserverlist_append(jdns_nameserverlist_t *a,
                                            const jdns_address_t *addr, int port);

typedef struct jdns_dnshost
{
	jdns_string_t *name;
	jdns_address_t *address;
} jdns_dnshost_t;

typedef struct jdns_dnshostlist
{
	int count;
	jdns_dnshost_t **item;
} jdns_dnshostlist_t;

typedef struct jdns_dnsparams
{
	jdns_nameserverlist_t *nameservers;
	jdns_stringlist_t *domains;
	jdns_dnshostlist_t *hosts;
} jdns_dnsparams_t;

JDNS_EXPORT jdns_dnsparams_t *jdns_dnsparams_new();
JDNS_EXPORT jdns_dnsparams_t *jdns_dnsparams_copy(jdns_dnsparams_t *a);
JDNS_EXPORT void jdns_dnsparams_delete(jdns_dnsparams_t *a);
JDNS_EXPORT void jdns_dnsparams_append_nameserver(jdns_dnsparams_t *a,
	const jdns_address_t *addr, int port);
JDNS_EXPORT void jdns_dnsparams_append_domain(jdns_dnsparams_t *a,
	const jdns_string_t *domain);
JDNS_EXPORT void jdns_dnsparams_append_host(jdns_dnsparams_t *a,
	const jdns_string_t *name, const jdns_address_t *address);

#define JDNS_RTYPE_A         1
#define JDNS_RTYPE_AAAA     28
#define JDNS_RTYPE_MX       15
#define JDNS_RTYPE_SRV      33
#define JDNS_RTYPE_CNAME     5
#define JDNS_RTYPE_PTR      12
#define JDNS_RTYPE_TXT      16
#define JDNS_RTYPE_HINFO    13
#define JDNS_RTYPE_NS        2
#define JDNS_RTYPE_ANY     255

typedef struct jdns_rr
{
	unsigned char *owner;
	int ttl;
	int type;
	int qclass;
	int rdlength;
	unsigned char *rdata;
	int haveKnown;

	union
	{
		jdns_address_t *address;  // for A, AAAA
		jdns_server_t *server;    // for MX, SRV
		unsigned char *name;      // for CNAME, PTR, NS
		jdns_stringlist_t *texts; // for TXT
		struct
		{
			jdns_string_t *cpu;
			jdns_string_t *os;
		} hinfo; // for HINFO
	} data;
} jdns_rr_t;

JDNS_EXPORT jdns_rr_t *jdns_rr_new();
JDNS_EXPORT jdns_rr_t *jdns_rr_copy(const jdns_rr_t *r);
JDNS_EXPORT void jdns_rr_delete(jdns_rr_t *r);
JDNS_EXPORT void jdns_rr_set_owner(jdns_rr_t *r, const unsigned char *name);
JDNS_EXPORT void jdns_rr_set_record(jdns_rr_t *r, int type, const unsigned char *rdata,
	int rdlength);
JDNS_EXPORT void jdns_rr_set_A(jdns_rr_t *r, const jdns_address_t *address);
JDNS_EXPORT void jdns_rr_set_AAAA(jdns_rr_t *r, const jdns_address_t *address);
JDNS_EXPORT void jdns_rr_set_MX(jdns_rr_t *r, const unsigned char *name, int priority);
JDNS_EXPORT void jdns_rr_set_SRV(jdns_rr_t *r, const unsigned char *name, int port,
	int priority, int weight);
JDNS_EXPORT void jdns_rr_set_CNAME(jdns_rr_t *r, const unsigned char *name);
JDNS_EXPORT void jdns_rr_set_PTR(jdns_rr_t *r, const unsigned char *name);
JDNS_EXPORT void jdns_rr_set_TXT(jdns_rr_t *r, const jdns_stringlist_t *texts);
JDNS_EXPORT void jdns_rr_set_HINFO(jdns_rr_t *r, const jdns_string_t *cpu,
	const jdns_string_t *os);
JDNS_EXPORT void jdns_rr_set_NS(jdns_rr_t *r, const unsigned char *name);
// note: only works on known types
JDNS_EXPORT int jdns_rr_verify(const jdns_rr_t *r);

typedef struct jdns_response
{
	int answerCount;
	jdns_rr_t **answerRecords;
	int authorityCount;
	jdns_rr_t **authorityRecords;
	int additionalCount;
	jdns_rr_t **additionalRecords;
} jdns_response_t;

JDNS_EXPORT jdns_response_t *jdns_response_new();
JDNS_EXPORT jdns_response_t *jdns_response_copy(const jdns_response_t *r);
JDNS_EXPORT void jdns_response_delete(jdns_response_t *r);
JDNS_EXPORT void jdns_response_append_answer(jdns_response_t *r, const jdns_rr_t *rr);
JDNS_EXPORT void jdns_response_append_authority(jdns_response_t *r, const jdns_rr_t *rr);
JDNS_EXPORT void jdns_response_append_additional(jdns_response_t *r,
	const jdns_rr_t *rr);

#define JDNS_PUBLISH_SHARED   0x0001
#define JDNS_PUBLISH_UNIQUE   0x0002

#define JDNS_STEP_TIMER       0x0001
#define JDNS_STEP_HANDLE      0x0002

#define JDNS_EVENT_RESPONSE   0x0001
#define JDNS_EVENT_PUBLISH    0x0002
#define JDNS_EVENT_SHUTDOWN   0x0003

#define JDNS_STATUS_SUCCESS   0x0001
#define JDNS_STATUS_NXDOMAIN  0x0002
#define JDNS_STATUS_ERROR     0x0003
#define JDNS_STATUS_TIMEOUT   0x0004
#define JDNS_STATUS_CONFLICT  0x0005

typedef struct jdns_session jdns_session_t;

typedef struct jdns_callbacks
{
	void *app; // user-supplied context

	// time_now:
	//   s: session
	//   app: user-supplied context
	//   return: milliseconds since session started
	int (*time_now)(jdns_session_t *s, void *app);

	// rand_int:
	//   s: session
	//   app: user-supplied context
	//   return: random integer between 0-65535
	int (*rand_int)(jdns_session_t *s, void *app);

	// debug_line:
	//   s: session
	//   app: user-supplied context
	//   str: a line of debug text
	//   return: nothing
	void (*debug_line)(jdns_session_t *s, void *app, const char *str);

	// udp_bind:
	//   s: session
	//   app: user-supplied context
	//   addr: ip address of interface to bind to.  0 for all
	//   port: port of interface to bind to.  0 for any
	//   maddr: multicast address.  0 if not using multicast
	//   return: handle (>0) of bound socket, or 0 on error
	// note: for multicast, the following must be done:
	//   use SO_REUSEPORT to share with other mdns programs
	//   use IP_ADD_MEMBERSHIP to associate addr and maddr
	//   set IP_MULTICAST_TTL to 255
	int (*udp_bind)(jdns_session_t *s, void *app,
		const jdns_address_t *addr, int port,
		const jdns_address_t *maddr);

	// udp_unbind:
	//   s: session
	//   app: user-supplied context
	//   handle: handle of socket obtained with udp_bind
	//   return: nothing
	void (*udp_unbind)(jdns_session_t *s, void *app, int handle);

	// udp_read:
	//   s: session
	//   app: user-supplied context
	//   handle: handle of socket obtained with udp_bind
	//   addr: store ip address of sender
	//   port: store port of sender
	//   buf: store packet content
	//   bufsize: value contains max size, to be changed to real size
	//   return: 1 if packet read, 0 if none available
	int (*udp_read)(jdns_session_t *s, void *app, int handle,
		jdns_address_t *addr, int *port, unsigned char *buf,
		int *bufsize);

	// udp_write:
	//   s: session
	//   app: user-supplied context
	//   handle: handle of socket obtained with udp_bind
	//   addr: ip address of recipient
	//   port: port of recipient
	//   buf: packet content
	//   bufsize: size of packet
	//   return: 1 if packet taken for writing, 0 if this is a bad time
	int (*udp_write)(jdns_session_t *s, void *app, int handle,
		const jdns_address_t *addr, int port, unsigned char *buf,
		int bufsize);
} jdns_callbacks_t;

typedef struct jdns_event
{
	int type;   // JDNS_EVENT
	int id;     // query id or publish id

	// for query, this can be SUCCESS, NXDOMAIN, ERROR, or TIMEOUT
	// for publish, this can be SUCCESS, ERROR, or CONFLICT
	int status;

	// for query
	jdns_response_t *response;
} jdns_event_t;

JDNS_EXPORT void jdns_event_delete(jdns_event_t *e);

// jdns_session_new:
//   callbacks: the struct of callbacks
//   return: newly allocated session
JDNS_EXPORT jdns_session_t *jdns_session_new(jdns_callbacks_t *callbacks);

// jdns_session_delete:
//   s: session to free
//   return: nothing
JDNS_EXPORT void jdns_session_delete(jdns_session_t *s);

// jdns_init_unicast:
//   s: session
//   addr: ip address of interface to bind to.  NULL for all
//   port: port of interface to bind to.  0 for any
//   return: 1 on success, 0 on failure
JDNS_EXPORT int jdns_init_unicast(jdns_session_t *s, const jdns_address_t *addr,
	int port);

// jdns_init_multicast:
//   s: session
//   addr: ip address of interface to bind to.  NULL for all
//   port: port of interface to bind to.  0 for any
//   addr: multicast address to associate with.  cannot be NULL
//   return: 1 on success, 0 on failure
JDNS_EXPORT int jdns_init_multicast(jdns_session_t *s, const jdns_address_t *addr,
	int port, const jdns_address_t *maddr);

// jdns_shutdown:
//   s: session
//   return: nothing
JDNS_EXPORT void jdns_shutdown(jdns_session_t *s);

// jdns_set_nameservers:
//   s: session
//   nslist: list of nameservers
//   return nothing
JDNS_EXPORT void jdns_set_nameservers(jdns_session_t *s,
	const jdns_nameserverlist_t *nslist);

// jdns_probe:
//   s: session
//   return: nothing
JDNS_EXPORT void jdns_probe(jdns_session_t *s);

// jdns_query:
//   s: session
//   name: the name to look up
//   rtype: the record type
//   return: id of this operation
JDNS_EXPORT int jdns_query(jdns_session_t *s, const unsigned char *name, int rtype);

// jdns_cancel_query:
//   s: session
//   id: the operation id to cancel
//   return: nothing
JDNS_EXPORT void jdns_cancel_query(jdns_session_t *s, int id);

// jdns_publish:
//   s: session
//   mode: JDNS_PUBLISH shared or unique
//   rec: the record data
//   return: id of this operation
// note: supported record types: A, AAAA, SRV, CNAME, PTR, TXT, and HINFO.
//   if the published type is not one of these, raw rdata must be set.
JDNS_EXPORT int jdns_publish(jdns_session_t *s, int mode, const jdns_rr_t *rec);

// jdns_update_publish:
//   s: session
//   id: the operation id to update
//   rec: the record data
//   return: nothing
// note: update only works on successfully published records, and no event
//   is generated for a successful update.
JDNS_EXPORT void jdns_update_publish(jdns_session_t *s, int id, const jdns_rr_t *rec);

// jdns_cancel_publish:
//   s: session
//   id: the operation id to cancel
//   return: nothing
JDNS_EXPORT void jdns_cancel_publish(jdns_session_t *s, int id);

// jdns_step:
//   s: session
//   return: JDNS_STEP flags OR'd together
JDNS_EXPORT int jdns_step(jdns_session_t *s);

// jdns_next_timer:
//   s: session
//   return: milliseconds until timeout
JDNS_EXPORT int jdns_next_timer(jdns_session_t *s);

// jdns_set_handle_readable:
//   s: session
//   handle: handle that is now readable
//   return: nothing
JDNS_EXPORT void jdns_set_handle_readable(jdns_session_t *s, int handle);

// jdns_set_handle_writable:
//   s: session
//   handle: handle that is now writable
//   return: nothing
JDNS_EXPORT void jdns_set_handle_writable(jdns_session_t *s, int handle);

// jdns_next_event:
//   s: session
//   return: newly allocated event, or zero if none are ready
JDNS_EXPORT jdns_event_t *jdns_next_event(jdns_session_t *s);

// jdns_system_dnsparams:
//   return: newly allocated dnsparams from the system
JDNS_EXPORT jdns_dnsparams_t *jdns_system_dnsparams();

// jdns_set_hold_ids_enabled
//   s: session
//   enabled: whether to enable id holding.  default is 0 (disabled)
//   return: nothing
// normally, when a unicast query completes or any kind of query or publish
//   operation results in an error, the operation is automatically "canceled".
//   when id holding is enabled, the operation still stops internally, but the
//   id value used by that operation is "held" until the application
//   explicitly calls jdns_cancel_query() or jdns_cancel_publish() to release
//   it.  this allows the application to ensure there is no ambiguity when
//   determining which operation a particular event belongs to.  it is disabled
//   be default so as to not introduce memory leaks in existing applications,
//   however new applications really should use it.
JDNS_EXPORT void jdns_set_hold_ids_enabled(jdns_session_t *s, int enabled);

#ifdef __cplusplus
}
#endif

#endif