chiark
/
gitweb
/
~mdw
/
zone
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
716105a
)
zone: Clean up the :cidr-delegation parser.
author
Mark Wooding
<mdw@distorted.org.uk>
Sun, 16 Mar 2008 15:02:14 +0000
(15:02 +0000)
committer
Mark Wooding
<mdw@distorted.org.uk>
Sun, 16 Mar 2008 15:02:14 +0000
(15:02 +0000)
zone.lisp
patch
|
blob
|
blame
|
history
diff --git
a/zone.lisp
b/zone.lisp
index 2e108bab4dcc00ddb145c7c088b92580089170ee..ea9fda3f93a1ab94c6df42690957943462fa6c10 100644
(file)
--- a/
zone.lisp
+++ b/
zone.lisp
@@
-656,9
+656,7
@@
(defzoneparse :net (name data rec)
(defzoneparse (:rev :reverse) (name data rec)
":reverse ((NET :bytes BYTES) ZONE*)"
(setf data (listify data))
(defzoneparse (:rev :reverse) (name data rec)
":reverse ((NET :bytes BYTES) ZONE*)"
(setf data (listify data))
- (destructuring-bind
- (net &key bytes)
- (listify (car data))
+ (destructuring-bind (net &key bytes) (listify (car data))
(setf net (zone-parse-net net name))
(unless bytes
(setf bytes (ipnet-changeable-bytes (ipnet-mask net))))
(setf net (zone-parse-net net name))
(unless bytes
(setf bytes (ipnet-changeable-bytes (ipnet-mask net))))
@@
-682,18
+680,15
@@
(defzoneparse (:rev :reverse) (name data rec)
:ttl (zr-ttl zr) :data (zr-name zr))
(setf (gethash name seen) t)))))))))
:ttl (zr-ttl zr) :data (zr-name zr))
(setf (gethash name seen) t)))))))))
-(defzoneparse (:cidr-delegation :cidr) (name data rec)
+(defzoneparse (:cidr-delegation :cidr) (name data rec
:zname zname
)
":cidr-delegation ((NET :bytes BYTES) (TARGET-NET [TARGET-ZONE])*)"
":cidr-delegation ((NET :bytes BYTES) (TARGET-NET [TARGET-ZONE])*)"
- (destructuring-bind
- (net &key bytes)
- (listify (car data))
+ (setf data (listify data))
+ (destructuring-bind (net &key bytes) (listify (car data))
(setf net (zone-parse-net net name))
(unless bytes
(setf bytes (ipnet-changeable-bytes (ipnet-mask net))))
(setf net (zone-parse-net net name))
(unless bytes
(setf bytes (ipnet-changeable-bytes (ipnet-mask net))))
- (dolist (map (cdr data))
- (destructuring-bind
- (tnet &optional tdom)
- (listify map)
+ (dolist (map (or (cdr data) (list (list net))))
+ (destructuring-bind (tnet &optional tdom) (listify map)
(setf tnet (zone-parse-net tnet name))
(unless (ipnet-subnetp net tnet)
(error "~A is not a subnet of ~A."
(setf tnet (zone-parse-net tnet name))
(unless (ipnet-subnetp net tnet)
(error "~A is not a subnet of ~A."
@@
-705,25
+700,25
@@
(defzoneparse (:cidr-delegation :cidr) (name data rec)
(join-strings
#\.
(append (reverse (loop
(join-strings
#\.
(append (reverse (loop
- for i from (1- bytes) downto 0
- until (zerop (logand mask
- (ash #xff
- (* 8 i))))
- collect (logand #xff
- (ash net (* -8 i)))))
+ for i from (1- bytes) downto 0
+ until (zerop (logand mask
+ (ash #xff
+ (* 8 i))))
+ collect (ldb (byte 8 (* i 8)) net)))
(list name))))))
(list name))))))
- (setf tdom (string-downcase
tdom
))
+ (setf tdom (string-downcase
(stringify tdom)
))
(dotimes (i (ipnet-hosts tnet))
(dotimes (i (ipnet-hosts tnet))
- (let* ((addr (ipnet-host tnet i))
- (tail (join-strings #\.
- (loop
+ (unless (zerop i)
+ (let* ((addr (ipnet-host tnet i))
+ (tail (join-strings #\.
+ (loop
for i from 0 below bytes
collect
for i from 0 below bytes
collect
-
(logand #xff
-
(ash addr (* 8 i)))))))
- (rec :name (format nil "~A.~A" tail name)
- :type :cname
-
:data (format nil "~A.~A" tail tdom
))))))))
+ (logand #xff
+ (ash addr (* 8 i)))))))
+
(rec :name (format nil "~A.~A" tail name)
+
:type :cname
+
:data (format nil "~A.~A" tail tdom)
))))))))
;;;--------------------------------------------------------------------------
;;; Zone file output.
;;;--------------------------------------------------------------------------
;;; Zone file output.