This file is indexed.

/usr/include/sipxtapi/resparse/rr.h is in libsipxtapi-dev 3.3.0~test17-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
/*
 * Copyright (C) 2006-2010 SIPez LLC.  All rights reserved.
 * Licensed to SIPfoundry under a Contributor Agreement.
 *
 * Copyright (C) 2010 SIPfoundry Inc.
 * Licensed by SIPfoundry under the LGPL license.
 *
 **********************************************************
 *
 *  DNS Resource record manipulation routines
 *
 *      Data structures
 *
 *  Dave Shield         November 1993
 */

#ifndef _Resparse_RR_h_
#define _Resparse_RR_h_

#include        <stdio.h>

#ifdef WINCE
#   include        <types.h>
#else
#   include        <sys/types.h>
#endif

#include "resparse/types.h"

/* #define RES_PARSE_NAPTR to define the NAPTR record support routines. */
#ifdef RES_PARSE_NAPTR
#include <regex.h>
#endif

/* Reordered includes and separated into win/vx --GAT */
#if defined(_WIN32)
#       include <winsock2.h>
#       include <resparse/wnt/netinet/in.h>
#       include <resparse/wnt/arpa/inet.h>
#       include <resparse/wnt/arpa/nameser.h>

#elif defined(_VXWORKS)
#       include <inetLib.h>
#       include <netdb.h>
#       include <resolvLib.h>
#       include <sockLib.h>
#       include <netinet/in.h>
#       include <arpa/inet.h>
/* Use local lnameser.h for info missing from VxWorks version --GAT */
/* lnameser.h is a subset of resparse/wnt/arpa/nameser.h                */
#       include <resolv/nameser.h>
#       include <resparse/vxw/arpa/lnameser.h>
#       include <stdlib.h>

#elif defined(__pingtel_on_posix__)
#       include <sys/socket.h>
#       include <netinet/in.h>
#       include <arpa/inet.h>
#       if defined(ANDROID)
#          include <arpa_nameser.h>
#       else
#          include <arpa/nameser_compat.h> /* T_SRV, etc., on recent BIND */
#          include <arpa/nameser.h>
#          include <resolv.h>
#       endif
#       include <string.h>

#       define T_NULL_RR T_NULL
/* These are from include/resparse/wnt/arpa/nameser.h */
#       define T_UINFO         100
#       define T_UID           101
#       define T_GID           102
#       define T_UNSPEC        103

#else
#       error Unsupported target platform.
#endif

#       include <ctype.h>

#ifdef  __cplusplus
extern "C" {
#endif

#if defined(ANDROID)
void android_res_setDnsSrvTimeouts(int initialTimeoutInSecs, int retries);
void android_res_getDnsSrvTimeouts(int* initialTimeoutInSecs, int* retries);

// Had to pull this stuff out of bionic/libc/private/resolv_private.h
// as there were C++ compiler errors when trying to include it
int res_init(void);
int res_query(const char *, int, int, u_char *, int);
#endif

        /* Some systems don't define this */
#ifndef T_TXT
#define T_TXT   16
#endif

#ifndef T_AFSDB
#define T_AFSDB 18
#endif
#ifndef T_SRV
#define T_SRV   33
#endif
#ifndef T_NAPTR
#define T_NAPTR 35
#endif

        /* additional RFC 1183 types */
#ifndef T_RP
#define T_RP    17
#endif
#ifndef T_X25
#define T_X25   19
#endif
#ifndef T_ISDN
#define T_ISDN  20
#endif
#ifndef T_RT
#define T_RT    21
#endif

        /*
         *  RR-specific data
         *      Structured types - separate structures
         *      Single valued types - use union directly
         */

struct s_SOA
{
    char        *mname;
    char        *rname;
    u_long      serial;
    u_long      refresh;
    u_long      retry;
    u_long      expire;
    u_long      minimum;
};


struct s_NULL
{
    char        *anything;
    u_short     length;         /* Length of valid data */
};


struct s_WKS
{
    struct in_addr      address;
    char        *bitmap;
    u_long      maplength;
    u_char      protocol;
};


struct s_HINFO
{
    char        *cpu;
    char        *os;
};


struct s_MINFO
{
    char        *rmailbx;
    char        *emailbx;
};


struct s_MX
{
    char        *exchange;
    u_short     preference;
};

struct s_TXT
{
    char        *text;
    struct s_TXT        *next;
    u_short     len;
};

struct s_SRV
{
    u_short priority;
    u_short weight;
    u_short port;
    char *target;
};

struct s_NAPTR
{
    u_short order;
    u_short preference;
    char *flags;
    char *services;
    char *regexp;
    char *replacement;
};


        /*
         *  New RR types - RFC 1183
         */

struct s_AFSDB          /* AFS servers */
{
    u_short     subtype;
    char        *hostname;
};


struct s_RP             /* Responsible Person */
{
    char        *mbox_dname;
    char        *txt_dname;
};

                        /* X25  -  Use simple 'string' */

struct s_ISDN           /* ISDN Address */
{
    char        *address;
    char        *sa;    /* optional */
};

struct s_RT             /* Route Through */
{
    u_short     preference;
    char        *int_host;
};




        /*  Generic RDATA RR structure */
union u_rdata
{
    char                *string;        /* Any simple string record */
    u_long              number;         /* Any simple numeric record */
    struct in_addr      address;        /* Simple address (A record) */

                                        /* other structured RR types */
    struct s_SOA        soa;
    struct s_NULL       null;
    struct s_WKS        wks;
    struct s_HINFO      hinfo;
    struct s_MINFO      minfo;
    struct s_MX         mx;
    struct s_TXT        txt;
    struct s_SRV    srv;
                                        /* RFC 2915 RR type */
    struct s_NAPTR      naptr;
                                        /* RFC 1183 RR types */
    struct s_AFSDB      afsdb;
    struct s_RP         rp;
    struct s_ISDN       isdn;
    struct s_RT         rt;
};


        /*  Full RR structure */
typedef struct s_rr
{
    char                *name;
    u_short             type;
    u_short             rclass;
    u_long              ttl;
    u_long              dlen;
    union u_rdata       rdata;
} s_rr;

        /*  DNS Question sctructure */
typedef struct s_question
{
    char                *qname;
    u_short             qtype;
    u_short             qclass;
} s_question;


        /*  Full DNS message structure */
typedef struct s_res_response
{
    HEADER              header;
    s_question          **question;
    s_rr                **answer;
    s_rr                **authority;
    s_rr                **additional;
} res_response ;


                /*  Defined interface */

extern  void free_rr(s_rr *rrp);
void free_response(res_response *resp);
extern  res_response *  res_parse(char *msg);
extern  res_response *  res_copy(res_response   *resp);
extern  void            res_print(res_response  *resp);
extern  void            res_free(res_response   *resp);

/* Support functions for NAPTR records */

#ifdef RES_PARSE_NAPTR

/* Split the 'regexp' field of a NAPTR record into the regexp to match
 * and the replacement part, as well as test for flag values.
 * Processes the field according to the rules in RFC 2915 section 3.
 * Input: field points to a string which is the contents of the NAPTR
 * regexp field.
 * Returns: 1 if splitting operation is successful, 0 if not.
 * (Success includes syntax-checking the replacement field, but not the
 * match field.)
 * Outputs: *delim_p will be set to the delimiter character (needed by
 * res_naptr_replace).
 * match will have written into it the POSIX extended regexp to match,
 * with the extra escaping of *delim removed.  (match must be at least
 * as large as field.)
 * *replace_p will have written into it the pointer to the beginning
 * of the replacement string within field (needed by res_naptr_replace).
 * (There is no benefit in de-escaping the replacement string at this point.)
 * *i_flag_p will be set to 1 if the 'i' (case-insensitive) flag is found,
 * 0 otherwise.
 */
extern  int             res_naptr_split_regexp(const char *field,
                                               char       *delim_p,
                                               char       *match,
                                               const char **replace_p,
                                               int        *i_flag_p);

/* Construct the replacement string after a successful match.
 * Inputs: replace is the replace string as returned by a successful
 * call to res_naptr_split_regexp.
 * delim is the delimiter character, as returned by res_naptr_split_regexp.
 * match points to regmatch_t[9], as filled by a successful call to
 * regexec.
 * original is the string that was matched against.
 * Return: pointer to malloc'ed character string containing the replacement.
 * (Must be free'd by caller.)
 */
extern  char             *res_naptr_replace(const char *replace,
                                            char       delim,
                                            regmatch_t *match,
                                            const char *original,
                                            int        keep_context);

#endif /* RES_PARSE_NAPTR */

#ifdef  __cplusplus
}
#endif

#endif  /* _Resparse_RR_h_ */