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
|
=head1 NAME
Unbound.xs - Perl bindings for NLnetLabs libunbound
=head1 DESCRIPTION
Perl XS extension providing bindings for the libunbound resolver library.
This implementation is intended to support Net::DNS::Resolver::Unbound.
It is NOT, nor will it ever be, suitable for general use.
=head1 COPYRIGHT
Copyright (c)2022-2024 Dick Franks
All Rights Reserved
=head1 LICENSE
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted, provided
that the original copyright notices appear in all copies and that both
copyright notice and this permission notice appear in supporting
documentation, and that the name of the author not be used in advertising
or publicity pertaining to distribution of the software without specific
prior written permission.
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.
=cut
#ifdef __cplusplus
extern "C" {
#endif
#define PERL_NO_GET_CONTEXT
#define PERL_REENTRANT
#include <EXTERN.h>
#include <perl.h>
#include <XSUB.h>
#include <unbound.h>
#ifdef __cplusplus
}
#endif
#ifdef UNBOUND_VERSION_MAJOR
#define UB_VERSION (UNBOUND_VERSION_MAJOR*100 + UNBOUND_VERSION_MINOR)*100 + UNBOUND_VERSION_MICRO
#else
#define UB_VERSION 10400
#define ub_version() "1.4.0 ?"
#endif
#define checkerr(arg) checkret( (arg), __LINE__ )
static void checkret(const int err, int line)
{
if (err) croak( "%s (%d) %s line %d", ub_strerror(err), err, __FILE__, line );
}
typedef struct ub_ctx* Net__DNS__Resolver__Unbound__Context;
typedef struct ub_result* Net__DNS__Resolver__Unbound__Result;
typedef struct av* Net__DNS__Resolver__Unbound__Handle;
static void async_callback(void* mydata, int err, struct ub_result* result)
{
dTHX; /* fetch context */
SV* resobj = newSV(0);
sv_setref_pv(resobj, "Net::DNS::Resolver::Unbound::Result", (void*)result);
av_push( (AV*)mydata, newSViv(err) );
av_push( (AV*)mydata, resobj );
return;
}
MODULE = Net::DNS::Resolver::Unbound PACKAGE = Net::DNS::Resolver::Unbound::Handle
PROTOTYPES: ENABLE
void
DESTROY(struct av* handle)
CODE:
sv_2mortal( (SV*) handle );
int
query_id(struct av* handle)
INIT:
SV** index = av_fetch(handle, 0, 0);
int id = SvIVX(*index);
CODE:
RETVAL = id;
OUTPUT:
RETVAL
SV*
err(struct av* handle)
INIT:
SV** index = av_fetch(handle, 1, 0);
int err = index ? SvIVX(*index) : 0;
CODE:
RETVAL = newSVpvf( err ? "%s (%d)" : "", ub_strerror(err), err );
OUTPUT:
RETVAL
SV*
result(struct av* handle)
INIT:
SV** index = av_fetch(handle, 2, 0);
CODE:
RETVAL = index ? av_pop(handle) : newSVpv("", 0);
OUTPUT:
RETVAL
int
waiting(struct av* handle)
INIT:
SV** index = av_fetch(handle, 1, 0);
CODE:
RETVAL = index ? 0 : 1;
OUTPUT:
RETVAL
MODULE = Net::DNS::Resolver::Unbound PACKAGE = Net::DNS::Resolver::Unbound::Result
void
DESTROY(struct ub_result* result)
CODE:
ub_resolve_free(result);
SV*
answer_packet(struct ub_result* result)
CODE:
RETVAL = newSVpvn( result->answer_packet, result->answer_len );
OUTPUT:
RETVAL
int
secure(struct ub_result* result)
CODE:
RETVAL = result->secure;
OUTPUT:
RETVAL
int
bogus(struct ub_result* result)
CODE:
RETVAL = result->bogus;
OUTPUT:
RETVAL
SV*
why_bogus(struct ub_result* result)
CODE:
RETVAL = newSVpv( result->why_bogus, 0 );
OUTPUT:
RETVAL
MODULE = Net::DNS::Resolver::Unbound PACKAGE = Net::DNS::Resolver::Unbound::Context
Net::DNS::Resolver::Unbound::Context
new(void)
CODE:
RETVAL = ub_ctx_create();
OUTPUT:
RETVAL
void
DESTROY(struct ub_ctx* context)
CODE:
ub_ctx_delete(context);
void
set_option(struct ub_ctx* ctx, SV* opt, SV* val)
CODE:
checkerr( ub_ctx_set_option(ctx, (const char*) SvPVX(opt), (const char*) SvPVX(val)) );
void
config(struct ub_ctx* ctx, const char* fname)
CODE:
checkerr( ub_ctx_config(ctx, fname) );
void
set_fwd(struct ub_ctx* ctx, const char* addr)
CODE:
checkerr( ub_ctx_set_fwd(ctx, addr) );
#if !(UB_VERSION < 10900)
void
set_tls(struct ub_ctx* ctx, int tls)
CODE:
checkerr( ub_ctx_set_tls(ctx, tls) );
#endif
#if !(UB_VERSION < 10508)
void
set_stub(struct ub_ctx* ctx, const char* zone, const char* addr, int isprime)
CODE:
checkerr( ub_ctx_set_stub(ctx, zone, addr, isprime) );
#endif
void
resolvconf(struct ub_ctx* ctx, const char* fname)
CODE:
checkerr( ub_ctx_resolvconf(ctx, fname) );
void
hosts(struct ub_ctx* ctx, const char* fname)
CODE:
checkerr( ub_ctx_hosts(ctx, fname) );
void
add_ta(struct ub_ctx* ctx, const char* ta)
CODE:
checkerr( ub_ctx_add_ta(ctx, ta) );
void
add_ta_file(struct ub_ctx* ctx, const char* fname)
CODE:
checkerr( ub_ctx_add_ta_file(ctx, fname) );
#if !(UB_VERSION < 10500)
void
add_ta_autr(struct ub_ctx* ctx, const char* fname)
CODE:
checkerr( ub_ctx_add_ta_autr(ctx, fname) );
#endif
void
trustedkeys(struct ub_ctx* ctx, const char* fname)
CODE:
checkerr( ub_ctx_trustedkeys(ctx, fname) );
void
debugout(struct ub_ctx* ctx, const char* out)
CODE:
checkerr( ub_ctx_debugout(ctx, (void*) out) );
void
debuglevel(struct ub_ctx* ctx, int d)
CODE:
checkerr( ub_ctx_debuglevel(ctx, d) );
void
async(struct ub_ctx* ctx, int dothread)
CODE:
checkerr( ub_ctx_async(ctx, dothread) );
Net::DNS::Resolver::Unbound::Result
ub_resolve(struct ub_ctx* ctx, const char* qname, int qtype, int qclass)
CODE:
checkerr( ub_resolve(ctx, qname, qtype, qclass, &RETVAL) );
OUTPUT:
RETVAL
Net::DNS::Resolver::Unbound::Handle
ub_resolve_async(struct ub_ctx* ctx, const char* qname, int qtype, int qclass, int query_id)
INIT:
int async_id = 0;
CODE:
RETVAL = newAV();
checkerr( ub_resolve_async(ctx, qname, qtype, qclass, (void*) RETVAL, async_callback, &async_id) );
av_push(RETVAL, newSViv(query_id) );
OUTPUT:
RETVAL
void
ub_process(struct ub_ctx* ctx)
CODE:
checkerr( ub_process(ctx) );
void
ub_wait(struct ub_ctx* ctx)
CODE:
checkerr( ub_wait(ctx) );
########################
## TEST PURPOSES ONLY ##
########################
Net::DNS::Resolver::Unbound::Result
mock_resolve(struct ub_ctx* ctx, const char* qname, int secure, int bogus)
CODE:
checkerr( ub_resolve(ctx, qname, 1, 1, &RETVAL) );
RETVAL->secure = secure;
RETVAL->bogus = bogus;
if (bogus) RETVAL->answer_packet = NULL;
OUTPUT:
RETVAL
MODULE = Net::DNS::Resolver::Unbound PACKAGE = Net::DNS::Resolver::libunbound
SV*
VERSION(void)
CODE:
RETVAL = newSVpv( ub_version(), 0 );
OUTPUT:
RETVAL
Net::DNS::Resolver::Unbound::Handle
emulate_callback(int async_id, int err, struct ub_result* result=NULL)
CODE:
RETVAL = newAV();
av_push(RETVAL, newSViv(async_id) );
async_callback( (void*) RETVAL, err, result );
OUTPUT:
RETVAL
Net::DNS::Resolver::Unbound::Handle
emulate_wait(int async_id)
CODE:
RETVAL = newAV();
av_push(RETVAL, newSViv(async_id) );
OUTPUT:
RETVAL
void
checkerr(int ret)
#ifdef croak_memory_wrap
void
croak_memory_wrap()
#endif
########################
|