A utility for downloading and verifying FreeBSD releases and snapshots
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

191 lines
5.3 KiB

  1. #
  2. # Copyright 2018 John-Mark Gurney.
  3. # All rights reserved.
  4. #
  5. # Redistribution and use in source and binary forms, with or without
  6. # modification, are permitted provided that the following conditions
  7. # are met:
  8. # 1. Redistributions of source code must retain the above copyright
  9. # notice, this list of conditions and the following disclaimer.
  10. # 2. Redistributions in binary form must reproduce the above copyright
  11. # notice, this list of conditions and the following disclaimer in the
  12. # documentation and/or other materials provided with the distribution.
  13. #
  14. # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  15. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  18. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  19. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  20. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  21. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  22. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  23. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  24. # SUCH DAMAGE.
  25. #
  26. # $Id$
  27. #
  28. BEGIN {
  29. vmroot = "https://download.freebsd.org/ftp/snapshots/VM-IMAGES/"
  30. isoroot = "https://download.freebsd.org/ftp/snapshots/ISO-IMAGES/"
  31. relvmroot = "https://download.freebsd.org/ftp/releases/VM-IMAGES/"
  32. relisoroot = "https://download.freebsd.org/ftp/releases/ISO-IMAGES/"
  33. }
  34. tolower($1) == "message-id:" {
  35. MID=$2
  36. sub(".*<", "", MID)
  37. sub(">.*", "", MID)
  38. }
  39. $0 == "== ISO CHECKSUMS ==" ||
  40. $0 == "ISO Image Checksums" {
  41. type = "iso"
  42. }
  43. $0 == "== VM IMAGE CHECKSUMS ==" ||
  44. $0 == "Virtual Machine Disk Image Checksums" {
  45. type = "vm"
  46. }
  47. function isdate(date) {
  48. m = match(date, "[0-9]+")
  49. if (m && RLENGTH == 8)
  50. return 1
  51. return 0
  52. }
  53. function isrev(s) {
  54. if (substr(rev, 1, 1) != "r")
  55. return 1
  56. m = match(s, "[0-9a-f]+")
  57. if (m && RLENGTH == 11)
  58. return 1
  59. return 0
  60. }
  61. function isrelease(relpart) {
  62. if (index(relpart, "BETA") == 1 || index(relpart, "RC") == 1 ||
  63. index(relpart, "RELEASE") == 1)
  64. return 1
  65. return 0
  66. }
  67. #FreeBSD-13.0-CURRENT-arm64-aarch64-20200903-c122cf32f2a.qcow2.xz
  68. #FreeBSD-13.0-CURRENT-powerpc-powerpcspe-20181026-r339752-bootonly.iso
  69. #FreeBSD-13.0-CURRENT-sparc64-20181026-r339752-bootonly.iso.asc
  70. #FreeBSD-13.0-CURRENT-arm64-aarch64-PINE64-LTS-20181026-r339752.img.xz
  71. #FreeBSD-13.0-CURRENT-i386-20181026-r339752.vmdk.xz
  72. #FreeBSD-12.1-BETA3-amd64-mini-memstick.img.xz
  73. #FreeBSD-12.1-RC1-amd64-mini-memstick.img.xz
  74. #FreeBSD-12.1-RELEASE-arm64-aarch64.vmdk.xz
  75. $1 == "SHA512" {
  76. # Strip parens
  77. fname = substr($2, 2, length($2) - 2)
  78. split(fname, dotparts, ".")
  79. # recombine around dot in version, strips off ALL extensions (including vm type)
  80. basename = dotparts[1] "." dotparts[2]
  81. cnt = split(basename, parts, "-")
  82. # make arch part, may include additional part
  83. arch = parts[4]
  84. basearch = arch
  85. if (parts[4] == "arm" ||
  86. (parts[4] == "powerpc" && parts[5] == "powerpcspe") ||
  87. (parts[4] == "powerpc" && parts[5] == "powerpc64") ||
  88. parts[4] == "arm64") {
  89. # FreeBSD-11.3-STABLE-arm64-aarch64-20191011-r353406-memstick.img
  90. basearch = parts[5]
  91. arch = parts[4] "-" parts[5]
  92. nextidx = 6
  93. } else {
  94. # FreeBSD-11.3-STABLE-amd64-20191011-r353406.qcow2.xz
  95. nextidx = 5
  96. }
  97. # find date, may be platform first
  98. if (isrelease(parts[3])) {
  99. if (nextidx > cnt) {
  100. # FreeBSD-12.1-BETA3-i386.vhd.xz
  101. platform = "xxx"
  102. } else if (cnt == nextidx) {
  103. # FreeBSD-12.1-RC1-powerpc-powerpcspe-dvd1.iso
  104. platform = parts[nextidx]
  105. nextidx += 1
  106. } else {
  107. # FreeBSD-12.1-BETA3-amd64-mini-memstick.img.xz
  108. platform = parts[nextidx] "-" parts[nextidx + 1]
  109. nextidx += 2
  110. }
  111. date = "xxx"
  112. } else if (isdate(parts[nextidx])) {
  113. # FreeBSD-11.3-STABLE-amd64-20191011-r353406.qcow2.xz
  114. platform = "xxx"
  115. date = parts[nextidx]
  116. nextidx += 1
  117. } else {
  118. # FreeBSD-13.0-CURRENT-arm64-aarch64-PINE64-LTS-20181026-r339752.img.xz
  119. platform = parts[nextidx]
  120. date = parts[nextidx + 1]
  121. if (isdate(date)) {
  122. # FreeBSD-13.0-CURRENT-arm64-aarch64-PINEBOOK-20191011-r353427.img.xz
  123. nextidx += 2
  124. } else {
  125. # FreeBSD-13.0-CURRENT-arm64-aarch64-PINE64-LTS-20181026-r339752.img.xz
  126. date = parts[nextidx + 2]
  127. platform = parts[nextidx] "-" parts[nextidx + 1]
  128. nextidx += 3
  129. }
  130. }
  131. if (nextidx >= cnt)
  132. vers="xxx"
  133. else {
  134. vers=""
  135. sep=""
  136. for (i = nextidx + 1; i <= cnt; i++) {
  137. vers = vers sep parts[i]
  138. sep="-"
  139. }
  140. }
  141. if (isrelease(parts[3])) {
  142. if (type == "vm") {
  143. vers = dotparts[3]
  144. url = relvmroot parts[2] "-" parts[3] "/" basearch "/Latest/" fname
  145. } else
  146. url = relisoroot parts[2] "/" fname
  147. } else {
  148. if (type == "vm") {
  149. vers = dotparts[3]
  150. url = vmroot parts[2] "-" parts[3] "/" basearch "/" date "/" fname
  151. } else
  152. url = isoroot parts[2] "/" fname
  153. }
  154. # if this part doesn't begin w/ r (for svn rev), skip it, we can't parse
  155. # others for now
  156. rev = parts[nextidx]
  157. if (isrelease(parts[3])) {
  158. # FreeBSD-12.1-RC1-amd64-mini-memstick.img.xz
  159. rev = "unspec"
  160. } else if (!isrev(rev)) {
  161. next
  162. }
  163. # double check that date is valid, if not, skip it
  164. if (date != "xxx" && !isdate(date))
  165. next
  166. printf("%s %s %s %s %s %s %s %s %s %s\n", type, parts[2] "-" parts[3], arch, platform, date, rev, vers, fname, url, MID)
  167. }