2 * libounbound.i: pyUnbound module (libunbound wrapper for Python)
4 * Copyright (c) 2009, Zdenek Vasicek (vasicek AT fit.vutbr.cz)
5 * Marek Vavrusa (xvavru00 AT stud.fit.vutbr.cz)
7 * This software is open source.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * * Redistributions of source code must retain the above copyright notice,
14 * this list of conditions and the following disclaimer.
16 * * Redistributions in binary form must reproduce the above copyright notice,
17 * this list of conditions and the following disclaimer in the documentation
18 * and/or other materials provided with the distribution.
20 * * Neither the name of the organization nor the names of its
21 * contributors may be used to endorse or promote products derived from this
22 * software without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
26 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
27 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 * POSSIBILITY OF SUCH DAMAGE.
38 #include <sys/types.h>
39 #include <sys/socket.h>
40 #include <netinet/in.h>
41 #include <arpa/inet.h>
42 #include "libunbound/unbound.h"
48 # Ensure compatibility with older python versions
49 if 'bytes' not in vars():
53 if isinstance(s, int):
55 return __builtins__.ord(s)
61 %feature("docstring") strerror "Convert error value to a human readable string."
63 // ================================================================================
64 // ub_resolve - perform resolution and validation
65 // ================================================================================
66 %typemap(in,numinputs=0,noblock=1) (struct ub_result** result)
68 struct ub_result* newubr;
72 /* result generation */
73 %typemap(argout,noblock=1) (struct ub_result** result)
75 if(1) { /* new code block for variable on stack */
77 tuple = PyTuple_New(2);
78 PyTuple_SetItem(tuple, 0, $result);
80 PyTuple_SetItem(tuple, 1, SWIG_NewPointerObj(SWIG_as_voidptr(newubr), SWIGTYPE_p_ub_result, SWIG_POINTER_OWN | 0 ));
82 PyTuple_SetItem(tuple, 1, Py_None);
89 // ================================================================================
90 // ub_ctx - validation context
91 // ================================================================================
92 %nodefaultctor ub_ctx; //no default constructor & destructor
93 %nodefaultdtor ub_ctx;
95 %newobject ub_ctx_create;
96 %delobject ub_ctx_delete;
97 %rename(_ub_ctx_delete) ub_ctx_delete;
99 %newobject ub_resolve;
102 void ub_ctx_free_dbg (struct ub_ctx* c) {
103 printf("******** UB_CTX free 0x%lX ************\n", (long unsigned int)c);
110 /** a host address */
112 /** an authoritative name server */
114 /** a mail destination (Obsolete - use MX) */
116 /** a mail forwarder (Obsolete - use MX) */
118 /** the canonical name for an alias */
120 /** marks the start of a zone of authority */
122 /** a mailbox domain name (EXPERIMENTAL) */
124 /** a mail group member (EXPERIMENTAL) */
126 /** a mail rename domain name (EXPERIMENTAL) */
128 /** a null RR (EXPERIMENTAL) */
130 /** a well known service description */
132 /** a domain name pointer */
134 /** host information */
136 /** mailbox or mail list information */
155 RR_TYPE_NSAP_PTR = 23,
166 /** LOC record RFC1876 */
170 /** draft-ietf-nimrod-dns-01.txt */
172 /** draft-ietf-nimrod-dns-01.txt */
174 /** SRV record RFC2782 */
176 /** http://www.jhsoft.com/rfc/af-saa-0069.000.rtf */
188 /** dnsind-kitchen-sink-02.txt */
190 /** Pseudo OPT record... */
194 /** draft-ietf-dnsext-delegation */
196 /** SSH Key Fingerprint */
198 /** draft-richardson-ipseckey-rr-11.txt */
199 RR_TYPE_IPSECKEY = 45,
200 /** draft-ietf-dnsext-dnssec-25 */
207 RR_TYPE_NSEC3PARAMS = 51,
212 RR_TYPE_UNSPEC = 103,
217 /** A request for mailbox-related records (MB, MG or MR) */
219 /** A request for mail agent RRs (Obsolete - see MX) */
221 /** any type (wildcard) */
224 /* RFC 4431, 5074, DNSSEC Lookaside Validation */
235 /** Hesiod (Dyer 87) */
237 /** None class, dynamic update */
244 %feature("docstring") ub_ctx "Unbound resolving and validation context.
246 The validation context is created to hold the resolver status, validation keys and a small cache (containing messages, rrsets, roundtrip times, trusted keys, lameness information).
251 >>> ctx = unbound.ub_ctx()
252 >>> ctx.resolvconf(\"/etc/resolv.conf\")
253 >>> status, result = ctx.resolve(\"www.google.com\", unbound.RR_TYPE_A, unbound.RR_CLASS_IN)
254 >>> if status==0 and result.havedata:
255 >>> print \"Result:\",result.data.address_list
256 Result: ['74.125.43.147', '74.125.43.99', '74.125.43.103', '74.125.43.104']
263 """Creates a resolving and validation context.
265 An exception is invoked if the process of creation an ub_ctx instance fails.
267 self.this = _unbound.ub_ctx_create()
269 raise Exception("Fatal error: unbound context initialization failed")
271 #__swig_destroy__ = _unbound.ub_ctx_free_dbg
272 __swig_destroy__ = _unbound._ub_ctx_delete
276 """Add a trust anchor to the given context.
278 The trust anchor is a string, on one line, that holds a valid DNSKEY or DS RR.
281 string, with zone-format RR on one line. [domainname] [TTL optional] [type] [class optional] [rdata contents]
282 :returns: (int) 0 if OK, else error.
284 return _unbound.ub_ctx_add_ta(self,ta)
285 #parameters: struct ub_ctx *,char *,
288 def add_ta_file(self,fname):
289 """Add trust anchors to the given context.
291 Pass name of a file with DS and DNSKEY records (like from dig or drill).
294 filename of file with keyfile with trust anchors.
295 :returns: (int) 0 if OK, else error.
297 return _unbound.ub_ctx_add_ta_file(self,fname)
298 #parameters: struct ub_ctx *,char *,
301 def config(self,fname):
302 """setup configuration for the given context.
305 unbound config file (not all settings applicable). This is a power-users interface that lets you specify all sorts of options. For some specific options, such as adding trust anchors, special routines exist.
306 :returns: (int) 0 if OK, else error.
308 return _unbound.ub_ctx_config(self,fname)
309 #parameters: struct ub_ctx *,char *,
312 def debuglevel(self,d):
313 """Set debug verbosity for the context Output is directed to stderr.
316 debug level, 0 is off, 1 is very minimal, 2 is detailed, and 3 is lots.
317 :returns: (int) 0 if OK, else error.
319 return _unbound.ub_ctx_debuglevel(self,d)
320 #parameters: struct ub_ctx *,int,
323 def debugout(self,out):
324 """Set debug output (and error output) to the specified stream.
326 Pass None to disable. Default is stderr.
329 File stream to log to.
330 :returns: (int) 0 if OK, else error.
334 In order to log into file, use
338 ctx = unbound.ub_ctx()
339 fw = fopen("debug.log")
343 Another option is to print the debug informations to stderr output
347 ctx = unbound.ub_ctx()
349 ctx.debugout(sys.stderr)
351 return _unbound.ub_ctx_debugout(self,out)
352 #parameters: struct ub_ctx *,void *,
355 def hosts(self,fname="/etc/hosts"):
356 """Read list of hosts from the filename given.
358 Usually "/etc/hosts". These addresses are not flagged as DNSSEC secure when queried for.
361 file name string. If None "/etc/hosts" is used.
362 :returns: (int) 0 if OK, else error.
364 return _unbound.ub_ctx_hosts(self,fname)
365 #parameters: struct ub_ctx *,char *,
368 def print_local_zones(self):
369 """Print the local zones and their content (RR data) to the debug output.
371 :returns: (int) 0 if OK, else error.
373 return _unbound.ub_ctx_print_local_zones(self)
374 #parameters: struct ub_ctx *,
377 def resolvconf(self,fname="/etc/resolv.conf"):
378 """Read list of nameservers to use from the filename given.
380 Usually "/etc/resolv.conf". Uses those nameservers as caching proxies. If they do not support DNSSEC, validation may fail.
382 Only nameservers are picked up, the searchdomain, ndots and other settings from resolv.conf(5) are ignored.
385 file name string. If None "/etc/resolv.conf" is used.
386 :returns: (int) 0 if OK, else error.
388 return _unbound.ub_ctx_resolvconf(self,fname)
389 #parameters: struct ub_ctx *,char *,
392 def set_async(self,dothread):
393 """Set a context behaviour for asynchronous action.
396 if True, enables threading and a call to :meth:`resolve_async` creates a thread to handle work in the background.
397 If False, a process is forked to handle work in the background.
398 Changes to this setting after :meth:`async` calls have been made have no effect (delete and re-create the context to change).
399 :returns: (int) 0 if OK, else error.
401 return _unbound.ub_ctx_async(self,dothread)
402 #parameters: struct ub_ctx *,int,
405 def set_fwd(self,addr):
406 """Set machine to forward DNS queries to, the caching resolver to use.
408 IP4 or IP6 address. Forwards all DNS requests to that machine, which is expected to run a recursive resolver. If the is not DNSSEC-capable, validation may fail. Can be called several times, in that case the addresses are used as backup servers.
410 To read the list of nameservers from /etc/resolv.conf (from DHCP or so), use the call :meth:`resolvconf`.
413 address, IP4 or IP6 in string format. If the addr is None, forwarding is disabled.
414 :returns: (int) 0 if OK, else error.
416 return _unbound.ub_ctx_set_fwd(self,addr)
417 #parameters: struct ub_ctx *,char *,
420 def set_option(self,opt,val):
421 """Set an option for the context.
423 Changes to the options after :meth:`resolve`, :meth:`resolve_async`, :meth:`zone_add`, :meth:`zone_remove`, :meth:`data_add` or :meth:`data_remove` have no effect (you have to delete and re-create the context).
426 option name from the unbound.conf config file format. (not all settings applicable). The name includes the trailing ':' for example set_option("logfile:", "mylog.txt"); This is a power-users interface that lets you specify all sorts of options. For some specific options, such as adding trust anchors, special routines exist.
429 :returns: (int) 0 if OK, else error.
431 return _unbound.ub_ctx_set_option(self,opt,val)
432 #parameters: struct ub_ctx *,char *,char *,
435 def trustedkeys(self,fname):
436 """Add trust anchors to the given context.
438 Pass the name of a bind-style config file with trusted-keys{}.
441 filename of file with bind-style config entries with trust anchors.
442 :returns: (int) 0 if OK, else error.
444 return _unbound.ub_ctx_trustedkeys(self,fname)
445 #parameters: struct ub_ctx *,char *,
449 def zone_print(self):
450 """Print local zones using debougout"""
451 _unbound.ub_ctx_print_local_zones(self)
453 def zone_add(self,zonename,zonetype):
454 """Add new local zone
456 :param zonename: zone domain name (e.g. myzone.)
457 :param zonetype: type of the zone ("static",...)
458 :returns: (int) 0 if OK, else error.
460 return _unbound.ub_ctx_zone_add(self,zonename, zonetype)
461 #parameters: struct ub_ctx *,char*, char*
464 def zone_remove(self,zonename):
467 If exists, removes local zone with all the RRs.
469 :param zonename: zone domain name
470 :returns: (int) 0 if OK, else error.
472 return _unbound.ub_ctx_zone_remove(self,zonename)
473 #parameters: struct ub_ctx *,char*
476 def data_add(self,rrdata):
477 """Add new local RR data
479 :param rrdata: string, in zone-format on one line. [domainname] [TTL optional] [type] [class optional] [rdata contents]
480 :returns: (int) 0 if OK, else error.
487 >>> ctx = unbound.ub_ctx()
488 >>> ctx.zone_add("mydomain.net.","static")
490 >>> status = ctx.data_add("test.mydomain.net. IN A 192.168.1.1")
492 >>> status, result = ctx.resolve("test.mydomain.net")
493 >>> if status==0 and result.havedata:
494 >>> print \"Result:\",result.data.address_list
495 Result: ['192.168.1.1']
498 return _unbound.ub_ctx_data_add(self,rrdata)
499 #parameters: struct ub_ctx *,char*
502 def data_remove(self,rrdata):
503 """Remove local RR data
505 If exists, remove resource record from local zone
507 :param rrdata: string, in zone-format on one line. [domainname] [TTL optional] [type] [class optional] [rdata contents]
508 :returns: (int) 0 if OK, else error.
510 return _unbound.ub_ctx_data_remove(self,rrdata)
511 #parameters: struct ub_ctx *,char*
515 def cancel(self,async_id):
516 """Cancel an async query in progress.
518 Its callback will not be called.
521 which query to cancel.
522 :returns: (int) 0 if OK, else error.
524 return _unbound.ub_cancel(self,async_id)
525 #parameters: struct ub_ctx *,int,
529 """Get file descriptor.
531 Wait for it to become readable, at this point answers are returned from the asynchronous validating resolver. Then call the ub_process to continue processing. This routine works immediately after context creation, the fd does not change.
533 :returns: (int) -1 on error, or file descriptor to use select(2) with.
535 return _unbound.ub_fd(self)
536 #parameters: struct ub_ctx *,
540 """Poll a context to see if it has any new results Do not poll in a loop, instead extract the fd below to poll for readiness, and then check, or wait using the wait routine.
542 :returns: (int) 0 if nothing to read, or nonzero if a result is available. If nonzero, call ctx_process() to do callbacks.
544 return _unbound.ub_poll(self)
545 #parameters: struct ub_ctx *,
549 """Call this routine to continue processing results from the validating resolver (when the fd becomes readable).
551 Will perform necessary callbacks.
553 :returns: (int) 0 if OK, else error.
555 return _unbound.ub_process(self)
556 #parameters: struct ub_ctx *,
559 def resolve(self,name,rrtype=RR_TYPE_A,rrclass=RR_CLASS_IN):
560 """Perform resolution and validation of the target name.
563 domain name in text format (a string or unicode string). IDN domain name have to be passed as a unicode string.
565 type of RR in host order (optional argument). Default value is RR_TYPE_A (A class).
567 class of RR in host order (optional argument). Default value is RR_CLASS_IN (for internet).
568 :returns: * (int) 0 if OK, else error.
569 * (:class:`ub_result`) the result data is returned in a newly allocated result structure. May be None on return, return value is set to an error in that case (out of memory).
571 if isinstance(name, bytes): #probably IDN
572 return _unbound.ub_resolve(self,name,rrtype,rrclass)
574 return _unbound.ub_resolve(self,idn2dname(name),rrtype,rrclass)
575 #parameters: struct ub_ctx *,char *,int,int,
576 #retvals: int,struct ub_result **
578 def resolve_async(self,name,mydata,callback,rrtype=RR_TYPE_A,rrclass=RR_CLASS_IN):
579 """Perform resolution and validation of the target name.
581 Asynchronous, after a while, the callback will be called with your data and the result.
582 If an error happens during processing, your callback will be called with error set to a nonzero value (and result==None).
585 domain name in text format (a string or unicode string). IDN domain name have to be passed as a unicode string.
587 this data is your own data (you can pass arbitrary python object or None) which are passed on to the callback function.
589 call-back function which is called on completion of the resolution.
591 type of RR in host order (optional argument). Default value is RR_TYPE_A (A class).
593 class of RR in host order (optional argument). Default value is RR_CLASS_IN (for internet).
594 :returns: * (int) 0 if OK, else error.
595 * (int) async_id, an identifier number is returned for the query as it is in progress. It can be used to cancel the query.
597 **Call-back function:**
598 The call-back function looks as the follows::
600 def call_back(mydata, status, result):
604 * `mydata` - mydata object
605 * `status` - 0 when a result has been found
606 * `result` - the result structure. The result may be None, in that case err is set.
609 if isinstance(name, bytes): #probably IDN
610 return _unbound._ub_resolve_async(self,name,rrtype,rrclass,mydata,callback)
612 return _unbound._ub_resolve_async(self,idn2dname(name),rrtype,rrclass,mydata,callback)
613 #parameters: struct ub_ctx *,char *,int,int,void *,ub_callback_t,
617 """Wait for a context to finish with results.
619 Calls after the wait for you. After the wait, there are no more outstanding asynchronous queries.
621 :returns: (int) 0 if OK, else error.
623 return _unbound.ub_wait(self)
624 #parameters: struct ub_ctx *,
632 // ================================================================================
633 // ub_result - validation and resolution results
634 // ================================================================================
635 %nodefaultctor ub_result; //no default constructor & destructor
636 %nodefaultdtor ub_result;
638 %delobject ub_resolve_free;
639 %rename(_ub_resolve_free) ub_resolve_free;
642 void ub_resolve_free_dbg (struct ub_result* r) {
643 printf("******** UB_RESOLVE free 0x%lX ************\n", (long unsigned int)r);
648 %feature("docstring") ub_result "The validation and resolution results."
652 enum result_enum_rcode {
669 """Class which makes the resolution results accessible"""
670 def __init__(self, data):
671 """Creates ub_data class
672 :param data: a list of the result data in RAW format
675 raise Exception("ub_data init: No data")
679 """Represents data as string"""
680 return ';'.join([' '.join(map(lambda x:"%02X" % ord(x),a)) for a in self.data])
683 def dname2str(s, ofs=0, maxlen=0):
684 """Parses DNAME and produces a list of labels
686 :param ofs: where the conversion should start to parse data
687 :param maxlen: maximum length (0 means parse to the end)
688 :returns: list of labels (string)
696 slen = min(slen, maxlen)
700 complen = ord(s[idx])
701 # In python 3.x `str()` converts the string to unicode which is the expected text string type
702 res.append(str(s[idx+1:idx+1+complen]))
707 def as_raw_data(self):
708 """Returns a list of RAW strings"""
711 raw = property(as_raw_data, doc="Returns RAW data (a list of binary encoded strings). See :meth:`as_raw_data`")
713 def as_mx_list(self):
714 """Represents data as a list of MX records (query for RR_TYPE_MX)
716 :returns: list of tuples (priority, dname)
718 return [(256*ord(rdf[0])+ord(rdf[1]),'.'.join([a for a in self.dname2str(rdf,2)])) for rdf in self.data]
720 mx_list = property(as_mx_list, doc="Returns a list of tuples containing priority and domain names. See :meth:`as_mx_list`")
722 def as_idn_mx_list(self):
723 """Represents data as a list of MX records (query for RR_TYPE_MX)
725 :returns: list of tuples (priority, unicode dname)
727 return [(256*ord(rdf[0])+ord(rdf[1]),'.'.join([encodings.idna.ToUnicode(a) for a in self.dname2str(rdf,2)])) for rdf in self.data]
729 mx_list_idn = property(as_idn_mx_list, doc="Returns a list of tuples containing priority and IDN domain names. See :meth:`as_idn_mx_list`")
731 def as_address_list(self):
732 """Represents data as a list of IP addresses (query for RR_TYPE_PTR)
734 :returns: list of strings
736 return ['.'.join(map(lambda x:str(ord(x)),a)) for a in self.data]
738 address_list = property(as_address_list, doc="Returns a list of IP addresses. See :meth:`as_address_list`")
740 def as_domain_list(self):
741 """Represents data as a list of domain names (query for RR_TYPE_A)
743 :returns: list of strings
745 return map(lambda x:'.'.join(self.dname2str(x)), self.data)
747 domain_list = property(as_domain_list, doc="Returns a list of domain names. See :meth:`as_domain_list`")
749 def as_idn_domain_list(self):
750 """Represents data as a list of unicode domain names (query for RR_TYPE_A)
752 :returns: list of strings
754 return map(lambda x: '.'.join([encodings.idna.ToUnicode(a) for a in self.dname2str(x)]), self.data)
756 domain_list_idn = property(as_idn_domain_list, doc="Returns a list of IDN domain names. See :meth:`as_idn_domain_list`")
764 PyObject* _ub_result_data(struct ub_result* result) {
768 if ((result == 0) || (!result->havedata) || (result->data == 0))
771 for (cnt=0,i=0;;i++,cnt++)
772 if (result->data[i] == 0)
775 list = PyList_New(cnt);
777 PyList_SetItem(list, i, PyBytes_FromStringAndSize(result->data[i],result->len[i]));
782 PyObject* _packet() {
783 return PyBytes_FromStringAndSize($self->answer_packet, $self->answer_len);
788 raise Exception("This class can't be created directly.")
790 #__swig_destroy__ = _unbound.ub_resolve_free_dbg
791 __swig_destroy__ = _unbound._ub_resolve_free
793 #havedata = property(_unbound.ub_result_havedata_get, _unbound.ub_result_havedata_set, "Havedata property")
795 rcode2str = {RCODE_NOERROR:'no error', RCODE_FORMERR:'form error', RCODE_SERVFAIL:'serv fail', RCODE_NXDOMAIN:'nx domain', RCODE_NOTIMPL:'not implemented', RCODE_REFUSED:'refused', RCODE_YXDOMAIN:'yxdomain', RCODE_YXRRSET:'yxrrset', RCODE_NXRRSET:'nxrrset', RCODE_NOTAUTH:'not auth', RCODE_NOTZONE:'not zone'}
797 def _get_rcode_str(self):
798 """Returns rcode in display representation form
802 return self.rcode2str[self.rcode]
804 __swig_getmethods__["rcode_str"] = _get_rcode_str
805 if _newclass:rcode_str = _swig_property(_get_rcode_str)
807 def _get_raw_data(self):
808 """Result data, a list of network order DNS rdata items.
810 Data are represented as a list of strings. To decode RAW data to the list of IP addresses use :attr:`data` attribute which returns an :class:`ub_data` instance containing conversion function.
812 return self._ub_result_data(self)
814 __swig_getmethods__["rawdata"] = _get_raw_data
815 rawdata = property(_get_raw_data, doc="Returns raw data, a list of rdata items. To decode RAW data use the :attr:`data` attribute which returns an instance of :class:`ub_data` containing the conversion functions.")
818 if not self.havedata: return None
819 return ub_data(self._ub_result_data(self))
821 __swig_getmethods__["data"] = _get_data
822 __swig_getmethods__["packet"] = _packet
823 data = property(_get_data, doc="Returns :class:`ub_data` instance containing various decoding functions or None")
829 %exception ub_resolve
831 //printf("resolve_start(%lX)\n",(long unsigned int)arg1);
832 Py_BEGIN_ALLOW_THREADS
835 //printf("resolve_stop()\n");
838 %include "libunbound/unbound.h"
841 //SWIG will see the ub_ctx as a class
846 //ub_ctx_debugout void* parameter correction
847 int ub_ctx_debugout(struct ub_ctx* ctx, FILE* out);
849 // ================================================================================
850 // ub_resolve_async - perform asynchronous resolution and validation
851 // ================================================================================
853 %typemap(in,numinputs=0,noblock=1) (int* async_id)
859 %apply PyObject* {void* mydata}
861 /* result generation */
862 %typemap(argout,noblock=1) (int* async_id)
864 if(1) { /* new code block for variable on stack */
866 tuple = PyTuple_New(2);
867 PyTuple_SetItem(tuple, 0, $result);
868 PyTuple_SetItem(tuple, 1, SWIG_From_int(asyncid));
873 // Grab a Python function object as a Python object.
874 %typemap(in) (PyObject *pyfunc) {
875 if (!PyCallable_Check($input))
877 PyErr_SetString(PyExc_TypeError, "Need a callable object!");
883 // Python callback workaround
884 int _ub_resolve_async(struct ub_ctx* ctx, char* name, int rrtype, int rrclass, void* mydata, PyObject *pyfunc, int* async_id);
892 static void PythonCallBack(void* iddata, int status, struct ub_result* result)
897 id = (struct cb_data*) iddata;
898 arglist = Py_BuildValue("(OiO)",id->data,status, SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ub_result, 0 | 0 )); // Build argument list
899 fresult = PyEval_CallObject(id->func,arglist); // Call Python
903 ub_resolve_free(result); //free ub_result
904 //ub_resolve_free_dbg(result); //free ub_result
905 Py_DECREF(arglist); // Trash arglist
909 int _ub_resolve_async(struct ub_ctx* ctx, char* name, int rrtype, int rrclass, PyObject* mydata, PyObject *pyfunc, int* async_id) {
912 id = (struct cb_data*) malloc(sizeof(struct cb_data));
916 r = ub_resolve_async(ctx,name,rrtype,rrclass, (void *) id, PythonCallBack, async_id);
925 ub_resolve_async = _unbound._ub_resolve_async
928 """Reverse domain name
930 Usable for reverse lookups when the IP address should be reversed
932 return '.'.join([a for a in domain.split(".")][::-1])
934 def idn2dname(idnname):
935 """Converts domain name in IDN format to canonic domain name
937 :param idnname: (unicode string) IDN name
938 :returns: (string) domain name
940 return '.'.join([encodings.idna.ToASCII(a) for a in idnname.split('.')])
943 """Converts canonic domain name in IDN format to unicode string
945 :param name: (string) domain name
946 :returns: (unicode string) domain name
948 return '.'.join([encodings.idna.ToUnicode(a) for a in name.split('.')])