1 ;;; dns.el --- Domain Name Service lookups
3 ;; Copyright (C) 2002-2011 Free Software Foundation, Inc.
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: network comm
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 "How many seconds to wait when doing DNS queries.")
30 (defvar dns-servers nil
31 "List of DNS servers to query.
32 If nil, /etc/resolv.conf and nslookup will be consulted.")
36 (defvar dns-query-types
59 "Names of query types and their values.")
66 "Classes of queries.")
68 (defun dns-write-bytes (value &optional length
)
70 (dotimes (i (or length
1))
71 (push (% value
256) bytes
)
72 (setq value
(/ value
256)))
76 (defun dns-read-bytes (length)
79 (setq value
(logior (* value
256) (following-char)))
83 (defun dns-get (type spec
)
84 (cadr (assq type spec
)))
86 (defun dns-inverse-get (value spec
)
88 (while (and (not found
)
90 (if (eq value
(cadr (car spec
)))
91 (setq found
(caar spec
))
95 (defun dns-write-name (name)
96 (dolist (part (split-string name
"\\."))
97 (dns-write-bytes (length part
))
101 (defun dns-read-string-name (string buffer
)
103 (unless (featurep 'xemacs
) (set-buffer-multibyte nil
))
105 (goto-char (point-min))
106 (dns-read-name buffer
)))
108 (defun dns-read-name (&optional buffer
)
113 (setq length
(dns-read-bytes 1))
114 (if (= 192 (logand length
(lsh 3 6)))
115 (let ((offset (+ (* (logand 63 length
) 256)
116 (dns-read-bytes 1))))
120 (goto-char (1+ offset
))
121 (setq ended
(dns-read-name buffer
))))
124 (push (buffer-substring (point)
125 (progn (forward-char length
) (point)))
130 (concat (mapconcat 'identity
(nreverse name
) ".") "." ended
))
131 (mapconcat 'identity
(nreverse name
) "."))))
133 (defun dns-write (spec &optional tcp-p
)
134 "Write a DNS packet according to SPEC.
135 If TCP-P, the first two bytes of the package with be the length field."
137 (unless (featurep 'xemacs
) (set-buffer-multibyte nil
))
138 (dns-write-bytes (dns-get 'id spec
) 2)
141 (lsh (if (dns-get 'response-p spec
) 1 0) -
7)
144 ((eq (dns-get 'opcode spec
) 'query
) 0)
145 ((eq (dns-get 'opcode spec
) 'inverse-query
) 1)
146 ((eq (dns-get 'opcode spec
) 'status
) 2)
147 (t (error "No such opcode: %s" (dns-get 'opcode spec
))))
149 (lsh (if (dns-get 'authoritative-p spec
) 1 0) -
2)
150 (lsh (if (dns-get 'truncated-p spec
) 1 0) -
1)
151 (lsh (if (dns-get 'recursion-desired-p spec
) 1 0) 0)))
154 ((eq (dns-get 'response-code spec
) 'no-error
) 0)
155 ((eq (dns-get 'response-code spec
) 'format-error
) 1)
156 ((eq (dns-get 'response-code spec
) 'server-failure
) 2)
157 ((eq (dns-get 'response-code spec
) 'name-error
) 3)
158 ((eq (dns-get 'response-code spec
) 'not-implemented
) 4)
159 ((eq (dns-get 'response-code spec
) 'refused
) 5)
161 (dns-write-bytes (length (dns-get 'queries spec
)) 2)
162 (dns-write-bytes (length (dns-get 'answers spec
)) 2)
163 (dns-write-bytes (length (dns-get 'authorities spec
)) 2)
164 (dns-write-bytes (length (dns-get 'additionals spec
)) 2)
165 (dolist (query (dns-get 'queries spec
))
166 (dns-write-name (car query
))
167 (dns-write-bytes (cadr (assq (or (dns-get 'type query
) 'A
)
169 (dns-write-bytes (cadr (assq (or (dns-get 'class query
) 'IN
)
171 (dolist (slot '(answers authorities additionals
))
172 (dolist (resource (dns-get slot spec
))
173 (dns-write-name (car resource
))
174 (dns-write-bytes (cadr (assq (dns-get 'type resource
) dns-query-types
))
176 (dns-write-bytes (cadr (assq (dns-get 'class resource
) dns-classes
))
178 (dns-write-bytes (dns-get 'ttl resource
) 4)
179 (dns-write-bytes (length (dns-get 'data resource
)) 2)
180 (insert (dns-get 'data resource
))))
182 (goto-char (point-min))
183 (dns-write-bytes (buffer-size) 2))
186 (defun dns-read (packet)
188 (unless (featurep 'xemacs
) (set-buffer-multibyte nil
))
190 queries answers authorities additionals
)
192 (goto-char (point-min))
193 (push (list 'id
(dns-read-bytes 2)) spec
)
194 (let ((byte (dns-read-bytes 1)))
195 (push (list 'response-p
(if (zerop (logand byte
(lsh 1 7))) nil t
))
197 (let ((opcode (logand byte
(lsh 7 3))))
199 (cond ((eq opcode
0) 'query
)
200 ((eq opcode
1) 'inverse-query
)
201 ((eq opcode
2) 'status
)))
203 (push (list 'authoritative-p
(if (zerop (logand byte
(lsh 1 2)))
205 (push (list 'truncated-p
(if (zerop (logand byte
(lsh 1 2))) nil t
))
207 (push (list 'recursion-desired-p
208 (if (zerop (logand byte
(lsh 1 0))) nil t
)) spec
))
209 (let ((rc (logand (dns-read-bytes 1) 15)))
210 (push (list 'response-code
212 ((eq rc
0) 'no-error
)
213 ((eq rc
1) 'format-error
)
214 ((eq rc
2) 'server-failure
)
215 ((eq rc
3) 'name-error
)
216 ((eq rc
4) 'not-implemented
)
217 ((eq rc
5) 'refused
)))
219 (setq queries
(dns-read-bytes 2))
220 (setq answers
(dns-read-bytes 2))
221 (setq authorities
(dns-read-bytes 2))
222 (setq additionals
(dns-read-bytes 2))
225 (push (list (dns-read-name)
226 (list 'type
(dns-inverse-get (dns-read-bytes 2)
228 (list 'class
(dns-inverse-get (dns-read-bytes 2)
231 (push (list 'queries qs
) spec
))
232 (dolist (slot '(answers authorities additionals
))
235 (dotimes (i (symbol-value slot
))
236 (push (list (dns-read-name)
238 (setq type
(dns-inverse-get (dns-read-bytes 2)
240 (list 'class
(dns-inverse-get (dns-read-bytes 2)
242 (list 'ttl
(dns-read-bytes 4))
243 (let ((length (dns-read-bytes 2)))
248 (progn (forward-char length
) (point)))
251 (push (list slot qs
) spec
)))
254 (defun dns-read-int32 ()
255 ;; Full 32 bit Integers can't be handled by 32-bit Emacsen. If we
256 ;; use floats, it works.
257 (format "%.0f" (+ (* (dns-read-bytes 1) 16777216.0)
258 (dns-read-bytes 3))))
260 (defun dns-read-type (string type
)
261 (let ((buffer (current-buffer))
265 (unless (featurep 'xemacs
) (set-buffer-multibyte nil
))
267 (goto-char (point-min))
272 (push (dns-read-bytes 1) bytes
))
273 (mapconcat 'number-to-string
(nreverse bytes
) ".")))
277 (push (dns-read-bytes 2) hextets
))
278 (mapconcat (lambda (n) (format "%x" n
))
279 (nreverse hextets
) ":")))
281 (list (list 'mname
(dns-read-name buffer
))
282 (list 'rname
(dns-read-name buffer
))
283 (list 'serial
(dns-read-int32))
284 (list 'refresh
(dns-read-int32))
285 (list 'retry
(dns-read-int32))
286 (list 'expire
(dns-read-int32))
287 (list 'minimum
(dns-read-int32))))
289 (list (list 'priority
(dns-read-bytes 2))
290 (list 'weight
(dns-read-bytes 2))
291 (list 'port
(dns-read-bytes 2))
292 (list 'target
(dns-read-name buffer
))))
294 (cons (dns-read-bytes 2) (dns-read-name buffer
)))
295 ((or (eq type
'CNAME
) (eq type
'NS
) (eq type
'PTR
))
296 (dns-read-string-name string buffer
))
300 (defun dns-set-servers ()
301 "Set `dns-servers' to a list of DNS servers or nil if none are found.
302 Parses \"/etc/resolv.conf\" or calls \"nslookup\"."
303 (or (when (file-exists-p "/etc/resolv.conf")
304 (setq dns-servers nil
)
306 (insert-file-contents "/etc/resolv.conf")
307 (goto-char (point-min))
308 (while (re-search-forward "^nameserver[\t ]+\\([^ \t\n]+\\)" nil t
)
309 (push (match-string 1) dns-servers
))
310 (setq dns-servers
(nreverse dns-servers
))))
311 (when (executable-find "nslookup")
313 (call-process "nslookup" nil t nil
"localhost")
314 (goto-char (point-min))
316 "^Address:[ \t]*\\([0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+\\)" nil t
)
317 (setq dns-servers
(list (match-string 1)))))))
319 (defun dns-read-txt (string)
320 (if (> (length string
) 1)
324 (defun dns-get-txt-answer (answers)
327 (dolist (answer answers
)
328 (dolist (elem answer
)
331 ((eq (car elem
) 'type
)
332 (setq do-next
(eq (cadr elem
) 'TXT
)))
333 ((eq (car elem
) 'data
)
335 (setq result
(concat result
(dns-read-txt (cadr elem
))))))))))
338 ;;; Interface functions.
339 (defmacro dns-make-network-process
(server)
340 (if (featurep 'xemacs
)
341 `(let ((coding-system-for-read 'binary
)
342 (coding-system-for-write 'binary
))
343 (open-network-stream "dns" (current-buffer)
344 ,server
"domain" 'udp
))
345 `(let ((server ,server
)
346 (coding-system-for-read 'binary
)
347 (coding-system-for-write 'binary
))
348 (if (fboundp 'make-network-process
)
349 (make-network-process
352 :buffer
(current-buffer)
356 ;; Older versions of Emacs doesn't have
357 ;; `make-network-process', so we fall back on opening a TCP
358 ;; connection to the DNS server.
359 (open-network-stream "dns" (current-buffer) server
"domain")))))
361 (defvar dns-cache
(make-vector 4096 0))
363 (defun dns-query-cached (name &optional type fullp reversep
)
364 (let* ((key (format "%s:%s:%s:%s" name type fullp reversep
))
365 (sym (intern-soft key dns-cache
)))
369 (let ((result (dns-query name type fullp reversep
)))
370 (set (intern key dns-cache
) result
)
373 ;; The old names `query-dns' and `query-dns-cached' weren't used in Emacs 23
374 ;; yet, so no alias are provided. --rsteib
376 (defun dns-query (name &optional type fullp reversep
)
377 "Query a DNS server for NAME of TYPE.
378 If FULLP, return the entire record returned.
379 If REVERSEP, look up an IP address."
380 (setq type
(or type
'A
))
386 (mapconcat 'identity
(nreverse (split-string name
"\\.")) ".")
390 (if (not dns-servers
)
391 (message "No DNS server configuration found")
393 (unless (featurep 'xemacs
) (set-buffer-multibyte nil
))
394 (let ((process (condition-case ()
395 (dns-make-network-process (car dns-servers
))
398 "dns: Got an error while trying to talk to %s"
401 (tcp-p (and (not (fboundp 'make-network-process
))
402 (not (featurep 'xemacs
))))
404 (times (* dns-timeout
1000))
409 (dns-write `((id ,id
)
411 (queries ((,name
(type ,type
))))
412 (recursion-desired-p t
))
414 (while (and (zerop (buffer-size))
416 (sit-for (/ step
1000.0))
417 (accept-process-output process
0 step
)
418 (setq times
(- times step
)))
420 (delete-process process
)
423 (>= (buffer-size) 2))
424 (goto-char (point-min))
425 (delete-region (point) (+ (point) 2)))
426 (when (and (>= (buffer-size) 2)
427 ;; We had a time-out.
429 (let ((result (dns-read (buffer-string))))
432 (let ((answer (car (dns-get 'answers result
))))
433 (when (eq type
(dns-get 'type answer
))
435 (dns-get-txt-answer (dns-get 'answers result
))
436 (dns-get 'data answer
))))))))))))