1 ;;; dns.el --- Domain Name Service lookups
3 ;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 ;; Free Software Foundation, Inc.
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29 "How many seconds to wait when doing DNS queries.")
31 (defvar dns-servers nil
32 "Which DNS servers to query.
33 If nil, /etc/resolv.conf will be consulted.")
37 (defvar dns-query-types
60 "Names of query types and their values.")
67 "Classes of queries.")
69 (defun dns-write-bytes (value &optional length
)
71 (dotimes (i (or length
1))
72 (push (% value
256) bytes
)
73 (setq value
(/ value
256)))
77 (defun dns-read-bytes (length)
80 (setq value
(logior (* value
256) (following-char)))
84 (defun dns-get (type spec
)
85 (cadr (assq type spec
)))
87 (defun dns-inverse-get (value spec
)
89 (while (and (not found
)
91 (if (eq value
(cadr (car spec
)))
92 (setq found
(caar spec
))
96 (defun dns-write-name (name)
97 (dolist (part (split-string name
"\\."))
98 (dns-write-bytes (length part
))
102 (defun dns-read-string-name (string buffer
)
104 (set-buffer-multibyte nil
)
106 (goto-char (point-min))
107 (dns-read-name buffer
)))
109 (defun dns-read-name (&optional buffer
)
114 (setq length
(dns-read-bytes 1))
115 (if (= 192 (logand length
(lsh 3 6)))
116 (let ((offset (+ (* (logand 63 length
) 256)
117 (dns-read-bytes 1))))
121 (goto-char (1+ offset
))
122 (setq ended
(dns-read-name buffer
))))
125 (push (buffer-substring (point)
126 (progn (forward-char length
) (point)))
131 (concat (mapconcat 'identity
(nreverse name
) ".") "." ended
))
132 (mapconcat 'identity
(nreverse name
) "."))))
134 (defun dns-write (spec &optional tcp-p
)
135 "Write a DNS packet according to SPEC.
136 If TCP-P, the first two bytes of the package with be the length field."
138 (set-buffer-multibyte nil
)
139 (dns-write-bytes (dns-get 'id spec
) 2)
142 (lsh (if (dns-get 'response-p spec
) 1 0) -
7)
145 ((eq (dns-get 'opcode spec
) 'query
) 0)
146 ((eq (dns-get 'opcode spec
) 'inverse-query
) 1)
147 ((eq (dns-get 'opcode spec
) 'status
) 2)
148 (t (error "No such opcode: %s" (dns-get 'opcode spec
))))
150 (lsh (if (dns-get 'authoritative-p spec
) 1 0) -
2)
151 (lsh (if (dns-get 'truncated-p spec
) 1 0) -
1)
152 (lsh (if (dns-get 'recursion-desired-p spec
) 1 0) 0)))
155 ((eq (dns-get 'response-code spec
) 'no-error
) 0)
156 ((eq (dns-get 'response-code spec
) 'format-error
) 1)
157 ((eq (dns-get 'response-code spec
) 'server-failure
) 2)
158 ((eq (dns-get 'response-code spec
) 'name-error
) 3)
159 ((eq (dns-get 'response-code spec
) 'not-implemented
) 4)
160 ((eq (dns-get 'response-code spec
) 'refused
) 5)
162 (dns-write-bytes (length (dns-get 'queries spec
)) 2)
163 (dns-write-bytes (length (dns-get 'answers spec
)) 2)
164 (dns-write-bytes (length (dns-get 'authorities spec
)) 2)
165 (dns-write-bytes (length (dns-get 'additionals spec
)) 2)
166 (dolist (query (dns-get 'queries spec
))
167 (dns-write-name (car query
))
168 (dns-write-bytes (cadr (assq (or (dns-get 'type query
) 'A
)
170 (dns-write-bytes (cadr (assq (or (dns-get 'class query
) 'IN
)
172 (dolist (slot '(answers authorities additionals
))
173 (dolist (resource (dns-get slot spec
))
174 (dns-write-name (car resource
))
175 (dns-write-bytes (cadr (assq (dns-get 'type resource
) dns-query-types
))
177 (dns-write-bytes (cadr (assq (dns-get 'class resource
) dns-classes
))
179 (dns-write-bytes (dns-get 'ttl resource
) 4)
180 (dns-write-bytes (length (dns-get 'data resource
)) 2)
181 (insert (dns-get 'data resource
))))
183 (goto-char (point-min))
184 (dns-write-bytes (buffer-size) 2))
187 (defun dns-read (packet)
189 (set-buffer-multibyte nil
)
191 queries answers authorities additionals
)
193 (goto-char (point-min))
194 (push (list 'id
(dns-read-bytes 2)) spec
)
195 (let ((byte (dns-read-bytes 1)))
196 (push (list 'response-p
(if (zerop (logand byte
(lsh 1 7))) nil t
))
198 (let ((opcode (logand byte
(lsh 7 3))))
200 (cond ((eq opcode
0) 'query
)
201 ((eq opcode
1) 'inverse-query
)
202 ((eq opcode
2) 'status
)))
204 (push (list 'authoritative-p
(if (zerop (logand byte
(lsh 1 2)))
206 (push (list 'truncated-p
(if (zerop (logand byte
(lsh 1 2))) nil t
))
208 (push (list 'recursion-desired-p
209 (if (zerop (logand byte
(lsh 1 0))) nil t
)) spec
))
210 (let ((rc (logand (dns-read-bytes 1) 15)))
211 (push (list 'response-code
213 ((eq rc
0) 'no-error
)
214 ((eq rc
1) 'format-error
)
215 ((eq rc
2) 'server-failure
)
216 ((eq rc
3) 'name-error
)
217 ((eq rc
4) 'not-implemented
)
218 ((eq rc
5) 'refused
)))
220 (setq queries
(dns-read-bytes 2))
221 (setq answers
(dns-read-bytes 2))
222 (setq authorities
(dns-read-bytes 2))
223 (setq additionals
(dns-read-bytes 2))
226 (push (list (dns-read-name)
227 (list 'type
(dns-inverse-get (dns-read-bytes 2)
229 (list 'class
(dns-inverse-get (dns-read-bytes 2)
232 (push (list 'queries qs
) spec
))
233 (dolist (slot '(answers authorities additionals
))
236 (dotimes (i (symbol-value slot
))
237 (push (list (dns-read-name)
239 (setq type
(dns-inverse-get (dns-read-bytes 2)
241 (list 'class
(dns-inverse-get (dns-read-bytes 2)
243 (list 'ttl
(dns-read-bytes 4))
244 (let ((length (dns-read-bytes 2)))
249 (progn (forward-char length
) (point)))
252 (push (list slot qs
) spec
)))
255 (defun dns-read-int32 ()
256 ;; Full 32 bit Integers can't be handled by Emacs. If we use
258 (format "%.0f" (+ (* (dns-read-bytes 1) 16777216.0)
259 (dns-read-bytes 3))))
261 (defun dns-read-type (string type
)
262 (let ((buffer (current-buffer))
266 (set-buffer-multibyte nil
)
268 (goto-char (point-min))
273 (push (dns-read-bytes 1) bytes
))
274 (mapconcat 'number-to-string
(nreverse bytes
) ".")))
278 (push (dns-read-bytes 2) hextets
))
279 (mapconcat (lambda (n) (format "%x" n
))
280 (nreverse hextets
) ":")))
282 (list (list 'mname
(dns-read-name buffer
))
283 (list 'rname
(dns-read-name buffer
))
284 (list 'serial
(dns-read-int32))
285 (list 'refresh
(dns-read-int32))
286 (list 'retry
(dns-read-int32))
287 (list 'expire
(dns-read-int32))
288 (list 'minimum
(dns-read-int32))))
290 (list (list 'priority
(dns-read-bytes 2))
291 (list 'weight
(dns-read-bytes 2))
292 (list 'port
(dns-read-bytes 2))
293 (list 'target
(dns-read-name buffer
))))
295 (cons (dns-read-bytes 2) (dns-read-name buffer
)))
296 ((or (eq type
'CNAME
) (eq type
'NS
) (eq type
'PTR
))
297 (dns-read-string-name string buffer
))
301 (defun dns-parse-resolv-conf ()
302 (when (file-exists-p "/etc/resolv.conf")
304 (insert-file-contents "/etc/resolv.conf")
305 (goto-char (point-min))
306 (while (re-search-forward "^nameserver[\t ]+\\([^ \t\n]+\\)" nil t
)
307 (push (match-string 1) dns-servers
))
308 (setq dns-servers
(nreverse dns-servers
)))))
310 (defun dns-read-txt (string)
311 (if (> (length string
) 1)
315 (defun dns-get-txt-answer (answers)
318 (dolist (answer answers
)
319 (dolist (elem answer
)
322 ((eq (car elem
) 'type
)
323 (setq do-next
(eq (cadr elem
) 'TXT
)))
324 ((eq (car elem
) 'data
)
326 (setq result
(concat result
(dns-read-txt (cadr elem
))))))))))
329 ;;; Interface functions.
330 (defmacro dns-make-network-process
(server)
331 (if (featurep 'xemacs
)
332 `(let ((coding-system-for-read 'binary
)
333 (coding-system-for-write 'binary
))
334 (open-network-stream "dns" (current-buffer)
335 ,server
"domain" 'udp
))
336 `(let ((server ,server
)
337 (coding-system-for-read 'binary
)
338 (coding-system-for-write 'binary
))
339 (if (fboundp 'make-network-process
)
340 (make-network-process
343 :buffer
(current-buffer)
347 ;; Older versions of Emacs doesn't have
348 ;; `make-network-process', so we fall back on opening a TCP
349 ;; connection to the DNS server.
350 (open-network-stream "dns" (current-buffer) server
"domain")))))
352 (defvar dns-cache
(make-vector 4096 0))
354 (defun query-dns-cached (name &optional type fullp reversep
)
355 (let* ((key (format "%s:%s:%s:%s" name type fullp reversep
))
356 (sym (intern-soft key dns-cache
)))
360 (let ((result (query-dns name type fullp reversep
)))
361 (set (intern key dns-cache
) result
)
364 (defun query-dns (name &optional type fullp reversep
)
365 "Query a DNS server for NAME of TYPE.
366 If FULLP, return the entire record returned.
367 If REVERSEP, look up an IP address."
368 (setq type
(or type
'A
))
370 (dns-parse-resolv-conf))
374 (mapconcat 'identity
(nreverse (split-string name
"\\.")) ".")
378 (if (not dns-servers
)
379 (message "No DNS server configuration found")
381 (set-buffer-multibyte nil
)
382 (let ((process (condition-case ()
383 (dns-make-network-process (car dns-servers
))
386 "dns: Got an error while trying to talk to %s"
389 (tcp-p (and (not (fboundp 'make-network-process
))
390 (not (featurep 'xemacs
))))
392 (times (* dns-timeout
1000))
397 (dns-write `((id ,id
)
399 (queries ((,name
(type ,type
))))
400 (recursion-desired-p t
))
402 (while (and (zerop (buffer-size))
404 (sit-for (/ step
1000.0))
405 (accept-process-output process
0 step
)
406 (setq times
(- times step
)))
408 (delete-process process
)
411 (>= (buffer-size) 2))
412 (goto-char (point-min))
413 (delete-region (point) (+ (point) 2)))
414 (when (and (>= (buffer-size) 2)
415 ;; We had a time-out.
417 (let ((result (dns-read (buffer-string))))
420 (let ((answer (car (dns-get 'answers result
))))
421 (when (eq type
(dns-get 'type answer
))
423 (dns-get-txt-answer (dns-get 'answers result
))
424 (dns-get 'data answer
))))))))))))
428 ;; arch-tag: d0edd0c4-4cce-4538-ae92-06c3356ee80a