publish.scm 50 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214
  1. ;;; GNU Guix --- Functional package management for GNU
  2. ;;; Copyright © 2015 David Thompson <davet@gnu.org>
  3. ;;; Copyright © 2020 by Amar M. Singh <nly@disroot.org>
  4. ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
  5. ;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
  6. ;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com>
  7. ;;;
  8. ;;; This file is part of GNU Guix.
  9. ;;;
  10. ;;; GNU Guix is free software; you can redistribute it and/or modify it
  11. ;;; under the terms of the GNU General Public License as published by
  12. ;;; the Free Software Foundation; either version 3 of the License, or (at
  13. ;;; your option) any later version.
  14. ;;;
  15. ;;; GNU Guix is distributed in the hope that it will be useful, but
  16. ;;; 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.
  19. ;;;
  20. ;;; You should have received a copy of the GNU General Public License
  21. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
  22. (define-module (guix scripts publish)
  23. #:use-module ((system repl server) #:prefix repl:)
  24. #:use-module (ice-9 binary-ports)
  25. #:use-module (ice-9 format)
  26. #:use-module (ice-9 match)
  27. #:use-module (ice-9 regex)
  28. #:use-module (ice-9 rdelim)
  29. #:use-module (ice-9 threads)
  30. #:use-module (rnrs bytevectors)
  31. #:use-module (srfi srfi-1)
  32. #:use-module (srfi srfi-2)
  33. #:use-module (srfi srfi-9)
  34. #:use-module (srfi srfi-9 gnu)
  35. #:use-module (srfi srfi-19)
  36. #:use-module (srfi srfi-26)
  37. #:use-module (srfi srfi-34)
  38. #:use-module (srfi srfi-37)
  39. #:use-module (web http)
  40. #:use-module (web request)
  41. #:use-module (web response)
  42. #:use-module (web server)
  43. #:use-module (web uri)
  44. #:autoload (sxml simple) (sxml->xml)
  45. #:autoload (guix avahi) (avahi-publish-service-thread)
  46. #:use-module (guix base32)
  47. #:use-module (guix base64)
  48. #:use-module (guix config)
  49. #:use-module (guix derivations)
  50. #:use-module (gcrypt hash)
  51. #:use-module (guix pki)
  52. #:use-module (gcrypt pk-crypto)
  53. #:use-module (guix workers)
  54. #:use-module (guix store)
  55. #:use-module ((guix serialization) #:select (write-file))
  56. #:use-module (zlib)
  57. #:autoload (lzlib) (call-with-lzip-output-port
  58. make-lzip-output-port)
  59. #:autoload (zstd) (call-with-zstd-output-port
  60. make-zstd-output-port)
  61. #:use-module (guix cache)
  62. #:use-module (guix ui)
  63. #:use-module (guix scripts)
  64. #:use-module ((guix utils)
  65. #:select (with-atomic-file-output compressed-file?))
  66. #:use-module ((guix build utils)
  67. #:select (dump-port mkdir-p find-files))
  68. #:use-module ((guix build syscalls) #:select (set-thread-name))
  69. #:export (%default-gzip-compression
  70. %public-key
  71. %private-key
  72. signed-string
  73. open-server-socket
  74. publish-service-type
  75. run-publish-server
  76. guix-publish))
  77. (define (show-help)
  78. (format #t (G_ "Usage: guix publish [OPTION]...
  79. Publish ~a over HTTP.\n") %store-directory)
  80. (display (G_ "
  81. -p, --port=PORT listen on PORT"))
  82. (display (G_ "
  83. --listen=HOST listen on the network interface for HOST"))
  84. (display (G_ "
  85. -u, --user=USER change privileges to USER as soon as possible"))
  86. (display (G_ "
  87. -a, --advertise advertise on the local network"))
  88. (display (G_ "
  89. -C, --compression[=METHOD:LEVEL]
  90. compress archives with METHOD at LEVEL"))
  91. (display (G_ "
  92. -c, --cache=DIRECTORY cache published items to DIRECTORY"))
  93. (display (G_ "
  94. --cache-bypass-threshold=SIZE
  95. serve store items below SIZE even when not cached"))
  96. (display (G_ "
  97. --workers=N use N workers to bake items"))
  98. (display (G_ "
  99. --ttl=TTL announce narinfos can be cached for TTL seconds"))
  100. (display (G_ "
  101. --negative-ttl=TTL announce missing narinfos can be cached for TTL seconds"))
  102. (display (G_ "
  103. --nar-path=PATH use PATH as the prefix for nar URLs"))
  104. (display (G_ "
  105. --public-key=FILE use FILE as the public key for signatures"))
  106. (display (G_ "
  107. --private-key=FILE use FILE as the private key for signatures"))
  108. (display (G_ "
  109. -r, --repl[=PORT] spawn REPL server on PORT"))
  110. (newline)
  111. (display (G_ "
  112. -h, --help display this help and exit"))
  113. (display (G_ "
  114. -V, --version display version information and exit"))
  115. (newline)
  116. (show-bug-report-information))
  117. (define (getaddrinfo* host)
  118. "Like 'getaddrinfo', but properly report errors."
  119. (catch 'getaddrinfo-error
  120. (lambda ()
  121. (getaddrinfo host))
  122. (lambda (key error)
  123. (leave (G_ "lookup of host '~a' failed: ~a~%")
  124. host (gai-strerror error)))))
  125. ;; Nar compression parameters.
  126. (define-record-type <compression>
  127. (compression type level)
  128. compression?
  129. (type compression-type)
  130. (level compression-level))
  131. (define %no-compression
  132. (compression 'none 0))
  133. (define %default-gzip-compression
  134. ;; Since we compress on the fly, default to fast compression.
  135. (compression 'gzip 3))
  136. (define (default-compression type)
  137. (compression type 3))
  138. (define (actual-compressions item requested)
  139. "Return the actual compressions used for ITEM, which may be %NO-COMPRESSION
  140. if ITEM is already compressed."
  141. (if (compressed-file? item)
  142. (list %no-compression)
  143. requested))
  144. (define (low-compression c)
  145. "Return <compression> of the same type as C, but optimized for low CPU
  146. usage."
  147. (compression (compression-type c)
  148. (min (compression-level c) 2)))
  149. (define %options
  150. (list (option '(#\h "help") #f #f
  151. (lambda _
  152. (show-help)
  153. (exit 0)))
  154. (option '(#\V "version") #f #f
  155. (lambda _
  156. (show-version-and-exit "guix publish")))
  157. (option '(#\a "advertise") #f #f
  158. (lambda (opt name arg result)
  159. (alist-cons 'advertise? #t result)))
  160. (option '(#\u "user") #t #f
  161. (lambda (opt name arg result)
  162. (alist-cons 'user arg result)))
  163. (option '(#\p "port") #t #f
  164. (lambda (opt name arg result)
  165. (alist-cons 'port (string->number* arg) result)))
  166. (option '("listen") #t #f
  167. (lambda (opt name arg result)
  168. (match (getaddrinfo* arg)
  169. ((info _ ...)
  170. (alist-cons 'address (addrinfo:addr info)
  171. result))
  172. (()
  173. (leave (G_ "lookup of host '~a' returned nothing")
  174. name)))))
  175. (option '(#\C "compression") #f #t
  176. (lambda (opt name arg result)
  177. (let* ((colon (string-index arg #\:))
  178. (type (cond
  179. (colon (string-take arg colon))
  180. ((string->number arg) "gzip")
  181. (else arg)))
  182. (level (if colon
  183. (string->number*
  184. (string-drop arg (+ 1 colon)))
  185. (or (string->number arg) 3))))
  186. (match level
  187. (0
  188. (alist-cons 'compression %no-compression result))
  189. (level
  190. (match (string->compression-type type)
  191. ((? symbol? type)
  192. (alist-cons 'compression
  193. (compression type level)
  194. result))
  195. (_
  196. (warning (G_ "~a: unsupported compression type~%")
  197. type)
  198. result)))))))
  199. (option '(#\c "cache") #t #f
  200. (lambda (opt name arg result)
  201. (alist-cons 'cache arg result)))
  202. (option '("cache-bypass-threshold") #t #f
  203. (lambda (opt name arg result)
  204. (alist-cons 'cache-bypass-threshold (size->number arg)
  205. result)))
  206. (option '("workers") #t #f
  207. (lambda (opt name arg result)
  208. (alist-cons 'workers (string->number* arg)
  209. result)))
  210. (option '("ttl") #t #f
  211. (lambda (opt name arg result)
  212. (let ((duration (string->duration arg)))
  213. (unless duration
  214. (leave (G_ "~a: invalid duration~%") arg))
  215. (alist-cons 'narinfo-ttl (time-second duration)
  216. result))))
  217. (option '("negative-ttl") #t #f
  218. (lambda (opt name arg result)
  219. (let ((duration (string->duration arg)))
  220. (unless duration
  221. (leave (G_ "~a: invalid duration~%") arg))
  222. (alist-cons 'narinfo-negative-ttl (time-second duration)
  223. result))))
  224. (option '("nar-path") #t #f
  225. (lambda (opt name arg result)
  226. (alist-cons 'nar-path arg result)))
  227. (option '("public-key") #t #f
  228. (lambda (opt name arg result)
  229. (alist-cons 'public-key-file arg result)))
  230. (option '("private-key" "secret-key") #t #f
  231. (lambda (opt name arg result)
  232. (alist-cons 'private-key-file arg result)))
  233. (option '(#\r "repl") #f #t
  234. (lambda (opt name arg result)
  235. ;; If port unspecified, use default Guile REPL port.
  236. (let ((port (and arg (string->number* arg))))
  237. (alist-cons 'repl (or port 37146) result))))))
  238. (define %default-options
  239. `((port . 8080)
  240. ;; By default, serve nars under "/nar".
  241. (nar-path . "nar")
  242. (public-key-file . ,%public-key-file)
  243. (private-key-file . ,%private-key-file)
  244. ;; Default number of workers when caching is enabled.
  245. (workers . ,(current-processor-count))
  246. (address . ,(make-socket-address AF_INET INADDR_ANY 0))
  247. (repl . #f)))
  248. ;; The key pair used to sign narinfos.
  249. (define %private-key
  250. (make-parameter #f))
  251. (define %public-key
  252. (make-parameter #f))
  253. (define %nix-cache-info
  254. `(("StoreDir" . ,%store-directory)
  255. ("WantMassQuery" . 0)
  256. ("Priority" . 100)))
  257. ;;; A common buffer size value used for the TCP socket SO_SNDBUF option and
  258. ;;; the gzip compressor buffer size.
  259. (define %default-buffer-size
  260. (* 208 1024))
  261. (define %default-socket-options
  262. ;; List of options passed to 'setsockopt' when transmitting files.
  263. (list (list SO_SNDBUF %default-buffer-size)))
  264. (define* (configure-socket socket #:key (level SOL_SOCKET)
  265. (options %default-socket-options))
  266. "Apply multiple option tuples in OPTIONS to SOCKET, using LEVEL."
  267. (for-each (cut apply setsockopt socket level <>)
  268. options))
  269. (define (signed-string s)
  270. "Sign the hash of the string S with the daemon's key. Return a canonical
  271. sexp for the signature."
  272. (let* ((public-key (%public-key))
  273. (hash (bytevector->hash-data (sha256 (string->utf8 s))
  274. #:key-type (key-type public-key))))
  275. (signature-sexp hash (%private-key) public-key)))
  276. (define base64-encode-string
  277. (compose base64-encode string->utf8))
  278. (define* (store-item->recutils store-item
  279. #:key
  280. (nar-path "nar")
  281. (compression %no-compression)
  282. file-size)
  283. "Return the 'Compression' and 'URL' fields of the narinfo for STORE-ITEM,
  284. with COMPRESSION, starting at NAR-PATH."
  285. (let ((url (encode-and-join-uri-path
  286. `(,@(split-and-decode-uri-path nar-path)
  287. ,@(match compression
  288. (($ <compression> 'none)
  289. '())
  290. (($ <compression> type)
  291. (list (symbol->string type))))
  292. ,(basename store-item)))))
  293. (format #f "URL: ~a~%Compression: ~a~%~@[FileSize: ~a~%~]"
  294. url (compression-type compression) file-size)))
  295. (define* (narinfo-string store store-path key
  296. #:key (compressions (list %no-compression))
  297. (nar-path "nar") (file-sizes '()))
  298. "Generate a narinfo key/value string for STORE-PATH; an exception is raised
  299. if STORE-PATH is invalid. Produce a URL that corresponds to COMPRESSION. The
  300. narinfo is signed with KEY. NAR-PATH specifies the prefix for nar URLs.
  301. Optionally, FILE-SIZES is a list of compression/integer pairs, where the
  302. integer is size in bytes of the compressed NAR; it informs the client of how
  303. much needs to be downloaded."
  304. (let* ((path-info (query-path-info store store-path))
  305. (compressions (actual-compressions store-path compressions))
  306. (hash (bytevector->nix-base32-string
  307. (path-info-hash path-info)))
  308. (size (path-info-nar-size path-info))
  309. (file-sizes `((,%no-compression . ,size) ,@file-sizes))
  310. (references (string-join
  311. (map basename (path-info-references path-info))
  312. " "))
  313. (deriver (path-info-deriver path-info))
  314. (base-info (format #f
  315. "\
  316. StorePath: ~a
  317. ~{~a~}\
  318. NarHash: sha256:~a
  319. NarSize: ~d
  320. References: ~a~%"
  321. store-path
  322. (map (lambda (compression)
  323. (let ((size (assoc-ref file-sizes
  324. compression)))
  325. (store-item->recutils store-path
  326. #:file-size size
  327. #:nar-path nar-path
  328. #:compression
  329. compression)))
  330. compressions)
  331. hash size references))
  332. ;; Do not render a "Deriver" or "System" line if we are rendering
  333. ;; info for a derivation.
  334. (info (if (not deriver)
  335. base-info
  336. (catch 'system-error
  337. (lambda ()
  338. (let ((drv (read-derivation-from-file deriver)))
  339. (format #f "~aSystem: ~a~%Deriver: ~a~%"
  340. base-info (derivation-system drv)
  341. (basename deriver))))
  342. (lambda args
  343. ;; DERIVER might be missing, but that's fine:
  344. ;; it's only used for <substitutable> where it's
  345. ;; optional. 'System' is currently unused.
  346. (if (= ENOENT (system-error-errno args))
  347. base-info
  348. (apply throw args))))))
  349. (signature (base64-encode-string
  350. (canonical-sexp->string (signed-string info)))))
  351. (format #f "~aSignature: 1;~a;~a~%" info (gethostname) signature)))
  352. (define* (not-found request
  353. #:key (phrase "Resource not found")
  354. ttl)
  355. "Render 404 response for REQUEST."
  356. (values (build-response #:code 404
  357. #:headers (if ttl
  358. `((cache-control (max-age . ,ttl)))
  359. '()))
  360. (string-append phrase ": "
  361. (uri-path (request-uri request)))))
  362. (define (render-nix-cache-info)
  363. "Render server information."
  364. (values '((content-type . (text/plain)))
  365. (lambda (port)
  366. (for-each (match-lambda
  367. ((key . value)
  368. (format port "~a: ~a~%" key value)))
  369. %nix-cache-info))))
  370. (define* (render-narinfo store request hash
  371. #:key ttl (compressions (list %no-compression))
  372. (nar-path "nar") negative-ttl)
  373. "Render metadata for the store path corresponding to HASH. If TTL is true,
  374. advertise it as the maximum validity period (in seconds) via the
  375. 'Cache-Control' header. This allows 'guix substitute' to cache it for an
  376. appropriate duration. NAR-PATH specifies the prefix for nar URLs."
  377. (let ((store-path (hash-part->path store hash)))
  378. (if (string-null? store-path)
  379. (not-found request #:phrase "" #:ttl negative-ttl)
  380. (values `((content-type . (application/x-nix-narinfo))
  381. ,@(if ttl
  382. `((cache-control (max-age . ,ttl)))
  383. '()))
  384. (cut display
  385. (narinfo-string store store-path (%private-key)
  386. #:nar-path nar-path
  387. #:compressions compressions)
  388. <>)))))
  389. (define* (nar-cache-file directory item
  390. #:key (compression %no-compression))
  391. (string-append directory "/"
  392. (symbol->string (compression-type compression))
  393. "/" (basename item) ".nar"))
  394. (define* (narinfo-cache-file directory item
  395. #:key (compression %no-compression))
  396. (string-append directory "/"
  397. (symbol->string (compression-type compression))
  398. "/" (basename item)
  399. ".narinfo"))
  400. (define (hash-part-mapping-cache-file directory hash)
  401. (string-append directory "/hashes/" hash))
  402. (define run-single-baker
  403. (let ((baking (make-weak-value-hash-table))
  404. (mutex (make-mutex)))
  405. (lambda (item thunk)
  406. "Run THUNK, which is supposed to bake ITEM, but make sure only one
  407. thread is baking ITEM at a given time."
  408. (define selected?
  409. (with-mutex mutex
  410. (and (not (hash-ref baking item))
  411. (begin
  412. (hash-set! baking item (current-thread))
  413. #t))))
  414. (when selected?
  415. (dynamic-wind
  416. (const #t)
  417. thunk
  418. (lambda ()
  419. (with-mutex mutex
  420. (hash-remove! baking item))))))))
  421. (define-syntax-rule (single-baker item exp ...)
  422. "Bake ITEM by evaluating EXP, but make sure there's only one baker for ITEM
  423. at a time."
  424. (run-single-baker item (lambda () exp ...)))
  425. (define (narinfo-files cache)
  426. "Return the list of .narinfo files under CACHE."
  427. (if (file-is-directory? cache)
  428. (find-files cache
  429. (lambda (file stat)
  430. (string-suffix? ".narinfo" file)))
  431. '()))
  432. (define (nar-expiration-time ttl)
  433. "Return the narinfo expiration time (in seconds since the Epoch). The
  434. expiration time is +inf.0 when passed an item that is still in the store; in
  435. other cases, it is the last-access time of the item plus TTL.
  436. This policy allows us to keep cached nars that correspond to valid store
  437. items. Failing that, we could eventually have to recompute them and return
  438. 404 in the meantime."
  439. (let ((expiration-time (file-expiration-time ttl)))
  440. (lambda (file)
  441. (let ((item (string-append (%store-prefix) "/"
  442. (basename file ".narinfo"))))
  443. ;; Note: We don't need to use 'valid-path?' here because FILE would
  444. ;; not exist if ITEM were not valid in the first place.
  445. (if (file-exists? item)
  446. +inf.0
  447. (expiration-time file))))))
  448. (define (hash-part->path* store hash cache)
  449. "Like 'hash-part->path' but cache results under CACHE. This ensures we can
  450. still map HASH to the corresponding store file name, even if said store item
  451. vanished from the store in the meantime."
  452. (let ((cached (hash-part-mapping-cache-file cache hash)))
  453. (catch 'system-error
  454. (lambda ()
  455. (call-with-input-file cached read-string))
  456. (lambda args
  457. (if (= ENOENT (system-error-errno args))
  458. (match (hash-part->path store hash)
  459. ("" "")
  460. (result
  461. (mkdir-p (dirname cached))
  462. (call-with-output-file (string-append cached ".tmp")
  463. (lambda (port)
  464. (display result port)))
  465. (rename-file (string-append cached ".tmp") cached)
  466. result))
  467. (apply throw args))))))
  468. (define cache-bypass-threshold
  469. ;; Maximum size of a store item that may be served by the '/cached' handlers
  470. ;; below even when not in cache.
  471. (make-parameter (* 10 (expt 2 20))))
  472. (define (bypass-cache? store item)
  473. "Return true if we allow ITEM to be downloaded before it is cached. ITEM is
  474. interpreted as the basename of a store item."
  475. (guard (c ((store-error? c) #f))
  476. (< (path-info-nar-size (query-path-info store item))
  477. (cache-bypass-threshold))))
  478. (define* (render-narinfo/cached store request hash
  479. #:key ttl (compressions (list %no-compression))
  480. (nar-path "nar") negative-ttl
  481. cache pool)
  482. "Respond to the narinfo request for REQUEST. If the narinfo is available in
  483. CACHE, then send it; otherwise, return 404 and \"bake\" that nar and narinfo
  484. requested using POOL."
  485. (define (delete-entry narinfo)
  486. ;; Delete NARINFO and the corresponding nar from CACHE.
  487. (let* ((nar (string-append (string-drop-right narinfo
  488. (string-length ".narinfo"))
  489. ".nar"))
  490. (base (basename narinfo ".narinfo"))
  491. (hash (string-take base (string-index base #\-)))
  492. (mapping (hash-part-mapping-cache-file cache hash)))
  493. (delete-file* narinfo)
  494. (delete-file* nar)
  495. (delete-file* mapping)))
  496. (let* ((item (hash-part->path* store hash cache))
  497. (compressions (actual-compressions item compressions))
  498. (cached (and (not (string-null? item))
  499. (narinfo-cache-file cache item
  500. #:compression
  501. (first compressions)))))
  502. (cond ((string-null? item)
  503. (not-found request #:ttl negative-ttl))
  504. ((file-exists? cached)
  505. ;; Narinfo is in cache, send it.
  506. (values `((content-type . (application/x-nix-narinfo))
  507. ,@(if ttl
  508. `((cache-control (max-age . ,ttl)))
  509. '()))
  510. (lambda (port)
  511. (display (call-with-input-file cached
  512. read-string)
  513. port))))
  514. ((and (file-exists? item) ;cheaper than the 'valid-path?' RPC
  515. (valid-path? store item))
  516. ;; Nothing in cache: bake the narinfo and nar in the background and
  517. ;; return 404.
  518. (eventually pool
  519. (single-baker item
  520. ;; Check whether CACHED has been produced in the meantime.
  521. (unless (file-exists? cached)
  522. ;; (format #t "baking ~s~%" item)
  523. (bake-narinfo+nar cache item
  524. #:ttl ttl
  525. #:compressions compressions
  526. #:nar-path nar-path)))
  527. (when ttl
  528. (single-baker 'cache-cleanup
  529. (maybe-remove-expired-cache-entries cache
  530. narinfo-files
  531. #:entry-expiration
  532. (nar-expiration-time ttl)
  533. #:delete-entry delete-entry
  534. #:cleanup-period ttl))))
  535. ;; If ITEM passes 'bypass-cache?', render a temporary narinfo right
  536. ;; away, with a short TTL. The narinfo is temporary because it
  537. ;; lacks 'FileSize', for instance, which the cached narinfo will
  538. ;; have. Chances are that the nar will be baked by the time the
  539. ;; client asks for it.
  540. (if (bypass-cache? store item)
  541. (render-narinfo store request hash
  542. #:ttl 300 ;temporary
  543. #:nar-path nar-path
  544. #:compressions compressions)
  545. (not-found request
  546. #:phrase "We're baking it"
  547. #:ttl 300))) ;should be available within 5m
  548. (else
  549. (not-found request #:phrase "" #:ttl negative-ttl)))))
  550. (define (compress-nar cache item compression)
  551. "Save in directory CACHE the nar for ITEM compressed with COMPRESSION."
  552. (define nar
  553. (nar-cache-file cache item #:compression compression))
  554. (define (write-compressed-file call-with-compressed-output-port)
  555. ;; Note: the file port gets closed along with the compressed port.
  556. (call-with-compressed-output-port (open-output-file (string-append nar ".tmp"))
  557. (lambda (port)
  558. (write-file item port))
  559. #:level (compression-level compression))
  560. (rename-file (string-append nar ".tmp") nar))
  561. (mkdir-p (dirname nar))
  562. (match (compression-type compression)
  563. ('gzip
  564. (write-compressed-file call-with-gzip-output-port))
  565. ('lzip
  566. (write-compressed-file call-with-lzip-output-port))
  567. ('zstd
  568. (write-compressed-file call-with-zstd-output-port))
  569. ('none
  570. ;; Cache nars even when compression is disabled so that we can
  571. ;; guarantee the TTL (see <https://bugs.gnu.org/28664>.)
  572. (with-atomic-file-output nar
  573. (lambda (port)
  574. (write-file item port)
  575. ;; Make the file world-readable, contrary to what
  576. ;; 'with-atomic-file-output' does.
  577. (chmod port (logand #o644 (lognot (umask)))))))))
  578. (define* (bake-narinfo+nar cache item
  579. #:key ttl (compressions (list %no-compression))
  580. (nar-path "/nar"))
  581. "Write the narinfo and nar for ITEM to CACHE."
  582. (define (compressed-nar-size compression)
  583. (let* ((nar (nar-cache-file cache item #:compression compression))
  584. (stat (stat nar #f)))
  585. (and stat
  586. (cons compression (stat:size stat)))))
  587. (let ((compression (actual-compressions item compressions)))
  588. (for-each (cut compress-nar cache item <>) compressions)
  589. (match compressions
  590. ((main others ...)
  591. (let ((narinfo (narinfo-cache-file cache item
  592. #:compression main)))
  593. (with-atomic-file-output narinfo
  594. (lambda (port)
  595. ;; Open a new connection to the store. We cannot reuse the main
  596. ;; thread's connection to the store since we would end up sending
  597. ;; stuff concurrently on the same channel.
  598. (with-store store
  599. (let ((sizes (filter-map compressed-nar-size compression)))
  600. (display (narinfo-string store item
  601. (%private-key)
  602. #:nar-path nar-path
  603. #:compressions compressions
  604. #:file-sizes sizes)
  605. port)))
  606. ;; Make the cached narinfo world-readable, contrary to what
  607. ;; 'with-atomic-file-output' does, so that other users can rsync
  608. ;; the whole cache.
  609. (chmod port (logand #o644 (lognot (umask))))))
  610. ;; Make narinfo files for OTHERS hard links to NARINFO such that the
  611. ;; atime-based cache eviction considers either all the nars or none
  612. ;; of them as candidates.
  613. (for-each (lambda (other)
  614. (let ((other (narinfo-cache-file cache item
  615. #:compression other)))
  616. (link narinfo other)))
  617. others))))))
  618. ;; XXX: Declare the 'X-Nar-Compression' HTTP header, which is in fact for
  619. ;; internal consumption: it allows us to pass the compression info to
  620. ;; 'http-write', as part of the workaround to <http://bugs.gnu.org/21093>.
  621. (declare-header! "X-Nar-Compression"
  622. (lambda (str)
  623. (match (call-with-input-string str read)
  624. (('compression type level)
  625. (compression type level))))
  626. compression?
  627. (lambda (compression port)
  628. (match compression
  629. (($ <compression> type level)
  630. (write `(compression ,type ,level) port)))))
  631. (define* (render-nar store request store-item
  632. #:key (compression %no-compression))
  633. "Render archive of the store path corresponding to STORE-ITEM."
  634. (let ((store-path (string-append %store-directory "/" store-item)))
  635. ;; The ISO-8859-1 charset *must* be used otherwise HTTP clients will
  636. ;; interpret the byte stream as UTF-8 and arbitrarily change invalid byte
  637. ;; sequences.
  638. (if (valid-path? store store-path)
  639. (values `((content-type . (application/x-nix-archive
  640. (charset . "ISO-8859-1")))
  641. (x-nar-compression . ,compression))
  642. ;; XXX: We're not returning the actual contents, deferring
  643. ;; instead to 'http-write'. This is a hack to work around
  644. ;; <http://bugs.gnu.org/21093>.
  645. store-path)
  646. (not-found request))))
  647. (define* (render-nar/cached store cache request store-item
  648. #:key ttl (compression %no-compression))
  649. "Respond to REQUEST with a nar for STORE-ITEM. If the nar is in CACHE,
  650. return it; otherwise, return 404. When TTL is true, use it as the
  651. 'Cache-Control' expiration time."
  652. (let ((cached (nar-cache-file cache store-item
  653. #:compression compression)))
  654. (cond ((file-exists? cached)
  655. (values `((content-type . (application/octet-stream
  656. (charset . "ISO-8859-1")))
  657. ,@(if ttl
  658. `((cache-control (max-age . ,ttl)))
  659. '())
  660. ;; XXX: We're not returning the actual contents, deferring
  661. ;; instead to 'http-write'. This is a hack to work around
  662. ;; <http://bugs.gnu.org/21093>.
  663. (x-raw-file . ,cached))
  664. #f))
  665. ((let* ((hash (and=> (string-index store-item #\-)
  666. (cut string-take store-item <>)))
  667. (item (and hash
  668. (guard (c ((store-error? c) #f))
  669. (hash-part->path store hash)))))
  670. (and item (not (string-null? item))
  671. (bypass-cache? store item)))
  672. ;; Render STORE-ITEM live. We reach this because STORE-ITEM is
  673. ;; being baked but clients are already asking for it. Thus, we're
  674. ;; duplicating work, but doing so allows us to reduce delays.
  675. (render-nar store request store-item
  676. #:compression (low-compression compression)))
  677. (else
  678. (not-found request)))))
  679. (define (render-content-addressed-file store request
  680. name algo hash)
  681. "Return the content of the result of the fixed-output derivation NAME that
  682. has the given HASH of type ALGO."
  683. ;; TODO: Support other hash algorithms.
  684. (if (and (eq? algo 'sha256) (= 32 (bytevector-length hash)))
  685. (let ((item (fixed-output-path name hash
  686. #:hash-algo algo
  687. #:recursive? #f)))
  688. (if (valid-path? store item)
  689. (values `((content-type . (application/octet-stream
  690. (charset . "ISO-8859-1")))
  691. ;; XXX: We're not returning the actual contents,
  692. ;; deferring instead to 'http-write'. This is a hack to
  693. ;; work around <http://bugs.gnu.org/21093>.
  694. (x-raw-file . ,item))
  695. #f)
  696. (not-found request)))
  697. (not-found request)))
  698. (define (render-log-file store request name)
  699. "Render the log file for NAME, the base name of a store item. Don't attempt
  700. to compress or decompress the log file; just return it as-is."
  701. (define (response-headers file)
  702. ;; XXX: We're not returning the actual contents, deferring instead to
  703. ;; 'http-write'. This is a hack to work around
  704. ;; <http://bugs.gnu.org/21093>.
  705. (cond ((string-suffix? ".gz" file)
  706. `((content-type . (text/plain (charset . "UTF-8")))
  707. (content-encoding . (gzip))
  708. (x-raw-file . ,file)))
  709. ((string-suffix? ".bz2" file)
  710. `((content-type . (application/x-bzip2
  711. (charset . "ISO-8859-1")))
  712. (x-raw-file . ,file)))
  713. (else ;uncompressed
  714. `((content-type . (text/plain (charset . "UTF-8")))
  715. (x-raw-file . ,file)))))
  716. (let ((log (log-file store
  717. (string-append (%store-prefix) "/" name))))
  718. (if log
  719. (values (response-headers log) log)
  720. (not-found request))))
  721. (define (render-signing-key)
  722. "Render signing key."
  723. (let ((file %public-key-file))
  724. (values `((content-type . (text/plain (charset . "UTF-8")))
  725. (x-raw-file . ,file))
  726. file)))
  727. (define (render-home-page request)
  728. "Render the home page."
  729. (values `((content-type . (text/html (charset . "UTF-8"))))
  730. (call-with-output-string
  731. (lambda (port)
  732. (sxml->xml '(html
  733. (head (title "GNU Guix Substitute Server"))
  734. (body
  735. (h1 "GNU Guix Substitute Server")
  736. (p "Hi, "
  737. (a (@ (href
  738. "https://guix.gnu.org/manual/en/html_node/Invoking-guix-publish.html"))
  739. (tt "guix publish"))
  740. " speaking. Welcome!")
  741. (p "Here is the "
  742. (a (@ (href
  743. "signing-key.pub"))
  744. (tt "signing key"))
  745. " for this server. Knock yourselves out!")))
  746. port)))))
  747. (define (extract-narinfo-hash str)
  748. "Return the hash within the narinfo resource string STR, or false if STR
  749. is invalid."
  750. (and (string-suffix? ".narinfo" str)
  751. (let ((base (string-drop-right str 8)))
  752. (and (string-every %nix-base32-charset base)
  753. base))))
  754. (define (get-request? request)
  755. "Return #t if REQUEST uses the GET method."
  756. (eq? (request-method request) 'GET))
  757. (define (request-path-components request)
  758. "Split the URI path of REQUEST into a list of component strings. For
  759. example: \"/foo/bar\" yields '(\"foo\" \"bar\")."
  760. (split-and-decode-uri-path (uri-path (request-uri request))))
  761. ;;;
  762. ;;; Server.
  763. ;;;
  764. (define %http-write
  765. (@@ (web server http) http-write))
  766. (define (strip-headers response)
  767. "Return RESPONSE's headers minus 'Content-Length' and our internal headers."
  768. (fold alist-delete
  769. (response-headers response)
  770. '(content-length x-raw-file x-nar-compression)))
  771. (define (sans-content-length response)
  772. "Return RESPONSE without its 'content-length' header."
  773. (set-field response (response-headers)
  774. (strip-headers response)))
  775. (define (with-content-length response length)
  776. "Return RESPONSE with a 'content-length' header set to LENGTH."
  777. (set-field response (response-headers)
  778. (alist-cons 'content-length length
  779. (strip-headers response))))
  780. (define-syntax-rule (swallow-EPIPE exp ...)
  781. "Swallow EPIPE errors raised by EXP..."
  782. (catch 'system-error
  783. (lambda ()
  784. exp ...)
  785. (lambda args
  786. (if (= EPIPE (system-error-errno args))
  787. (values)
  788. (apply throw args)))))
  789. (define-syntax-rule (swallow-zlib-error exp ...)
  790. "Swallow 'zlib-error' exceptions raised by EXP..."
  791. (catch 'zlib-error
  792. (lambda ()
  793. exp ...)
  794. (const #f)))
  795. (define (nar-response-port response compression)
  796. "Return a port on which to write the body of RESPONSE, the response of a
  797. /nar request, according to COMPRESSION."
  798. (match compression
  799. (($ <compression> 'gzip level)
  800. ;; Note: We cannot used chunked encoding here because
  801. ;; 'make-gzip-output-port' wants a file port.
  802. (make-gzip-output-port (response-port response)
  803. #:level level
  804. #:buffer-size %default-buffer-size))
  805. (($ <compression> 'lzip level)
  806. (make-lzip-output-port (response-port response)
  807. #:level level))
  808. (($ <compression> 'zstd level)
  809. (make-zstd-output-port (response-port response)
  810. #:level level))
  811. (($ <compression> 'none)
  812. (response-port response))
  813. (#f
  814. (response-port response))))
  815. (define (http-write server client response body)
  816. "Write RESPONSE and BODY to CLIENT, possibly in a separate thread to avoid
  817. blocking."
  818. (match (response-content-type response)
  819. (('application/x-nix-archive . _)
  820. ;; Sending the the whole archive can take time so do it in a separate
  821. ;; thread so that the main thread can keep working in the meantime.
  822. (call-with-new-thread
  823. (lambda ()
  824. (set-thread-name "publish nar")
  825. (let* ((compression (assoc-ref (response-headers response)
  826. 'x-nar-compression))
  827. (response (write-response (sans-content-length response)
  828. client))
  829. (port (begin
  830. (force-output client)
  831. (configure-socket client)
  832. (nar-response-port response compression))))
  833. ;; XXX: Given our ugly workaround for <http://bugs.gnu.org/21093> in
  834. ;; 'render-nar', BODY here is just the file name of the store item.
  835. ;; We call 'write-file' from here because we know that's the only
  836. ;; way to avoid building the whole nar in memory, which could
  837. ;; quickly become a real problem. As a bonus, we even do
  838. ;; sendfile(2) directly from the store files to the socket.
  839. (swallow-zlib-error
  840. (swallow-EPIPE
  841. (write-file (utf8->string body) port)))
  842. (swallow-zlib-error
  843. (close-port port))
  844. (values)))))
  845. (_
  846. (match (assoc-ref (response-headers response) 'x-raw-file)
  847. ((? string? file)
  848. ;; Send a raw file in a separate thread.
  849. (call-with-new-thread
  850. (lambda ()
  851. (set-thread-name "publish file")
  852. (catch 'system-error
  853. (lambda ()
  854. (call-with-input-file file
  855. (lambda (input)
  856. (let* ((size (stat:size (stat input)))
  857. (response (write-response (with-content-length response
  858. size)
  859. client))
  860. (output (response-port response)))
  861. (configure-socket client)
  862. (if (file-port? output)
  863. (sendfile output input size)
  864. (dump-port input output))
  865. (close-port output)
  866. (values)))))
  867. (lambda args
  868. ;; If the file was GC'd behind our back, that's fine. Likewise if
  869. ;; the client closes the connection.
  870. (unless (memv (system-error-errno args)
  871. (list ENOENT EPIPE ECONNRESET))
  872. (apply throw args))
  873. (values))))))
  874. (#f
  875. ;; Handle other responses sequentially.
  876. (%http-write server client response body))))))
  877. (define-server-impl concurrent-http-server
  878. ;; A variant of Guile's built-in HTTP server that offloads possibly long
  879. ;; responses to a different thread.
  880. (@@ (web server http) http-open)
  881. (@@ (web server http) http-read)
  882. http-write
  883. (@@ (web server http) http-close))
  884. (define (string->compression-type string)
  885. "Return a symbol denoting the compression method expressed by STRING; return
  886. #f if STRING doesn't match any supported method."
  887. (match string
  888. ("gzip" 'gzip)
  889. ("lzip" 'lzip)
  890. ("zstd" 'zstd)
  891. (_ #f)))
  892. (define (effective-compression requested-type compressions)
  893. "Given the REQUESTED-TYPE for compression and the set of chosen COMPRESSION
  894. methods, return the applicable compression."
  895. (or (find (match-lambda
  896. (($ <compression> type)
  897. (and (eq? type requested-type)
  898. compression)))
  899. compressions)
  900. (default-compression requested-type)))
  901. (define* (make-request-handler store
  902. #:key
  903. cache pool
  904. narinfo-ttl narinfo-negative-ttl
  905. (nar-path "nar")
  906. (compressions (list %no-compression)))
  907. (define compression-type?
  908. string->compression-type)
  909. (define nar-path?
  910. (let ((expected (split-and-decode-uri-path nar-path)))
  911. (cut equal? expected <>)))
  912. (lambda (request body)
  913. (format #t "~a ~a~%"
  914. (request-method request)
  915. (uri-path (request-uri request)))
  916. (if (get-request? request) ;reject POST, PUT, etc.
  917. (match (request-path-components request)
  918. ;; /nix-cache-info
  919. (("nix-cache-info")
  920. (render-nix-cache-info))
  921. ;; /
  922. ((or () ("index.html"))
  923. (render-home-page request))
  924. ;; guix signing-key
  925. (("signing-key.pub")
  926. (render-signing-key))
  927. ;; /<hash>.narinfo
  928. (((= extract-narinfo-hash (? string? hash)))
  929. (if cache
  930. (render-narinfo/cached store request hash
  931. #:cache cache
  932. #:pool pool
  933. #:ttl narinfo-ttl
  934. #:negative-ttl narinfo-negative-ttl
  935. #:nar-path nar-path
  936. #:compressions compressions)
  937. (render-narinfo store request hash
  938. #:ttl narinfo-ttl
  939. #:negative-ttl narinfo-negative-ttl
  940. #:nar-path nar-path
  941. #:compressions compressions)))
  942. ;; /nar/file/NAME/sha256/HASH
  943. (("file" name "sha256" hash)
  944. (guard (c ((invalid-base32-character? c)
  945. (not-found request)))
  946. (let ((hash (nix-base32-string->bytevector hash)))
  947. (render-content-addressed-file store request
  948. name 'sha256 hash))))
  949. ;; /log/OUTPUT
  950. (("log" name)
  951. (render-log-file store request name))
  952. ;; Use different URLs depending on the compression type. This
  953. ;; guarantees that /nar URLs remain valid even when 'guix publish'
  954. ;; is restarted with different compression parameters.
  955. ;; /nar/gzip/<store-item>
  956. ((components ... (? compression-type? type) store-item)
  957. (if (nar-path? components)
  958. (let* ((compression-type (string->compression-type type))
  959. (compression (effective-compression compression-type
  960. compressions)))
  961. (if cache
  962. (render-nar/cached store cache request store-item
  963. #:ttl narinfo-ttl
  964. #:compression compression)
  965. (render-nar store request store-item
  966. #:compression compression)))
  967. (not-found request)))
  968. ;; /nar/<store-item>
  969. ((components ... store-item)
  970. (if (nar-path? components)
  971. (if cache
  972. (render-nar/cached store cache request store-item
  973. #:ttl narinfo-ttl
  974. #:compression %no-compression)
  975. (render-nar store request store-item
  976. #:compression %no-compression))
  977. (not-found request)))
  978. (x (not-found request)))
  979. (not-found request))))
  980. (define (service-name)
  981. "Return the Avahi service name of the server."
  982. (string-append "guix-publish-" (gethostname)))
  983. (define publish-service-type
  984. ;; Return the Avahi service type of the server.
  985. "_guix_publish._tcp")
  986. (define* (run-publish-server socket store
  987. #:key
  988. advertise? port
  989. (compressions (list %no-compression))
  990. (nar-path "nar") narinfo-ttl narinfo-negative-ttl
  991. cache pool)
  992. (when advertise?
  993. (let ((name (service-name)))
  994. ;; XXX: Use a callback from Guile-Avahi here, as Avahi can pick a
  995. ;; different name to avoid name clashes.
  996. (info (G_ "Advertising ~a~%.") name)
  997. (avahi-publish-service-thread name
  998. #:type publish-service-type
  999. #:port port)))
  1000. (run-server (make-request-handler store
  1001. #:cache cache
  1002. #:pool pool
  1003. #:nar-path nar-path
  1004. #:narinfo-ttl narinfo-ttl
  1005. #:narinfo-negative-ttl narinfo-negative-ttl
  1006. #:compressions compressions)
  1007. concurrent-http-server
  1008. `(#:socket ,socket)))
  1009. (define (open-server-socket address)
  1010. "Return a TCP socket bound to ADDRESS, a socket address."
  1011. (let ((sock (socket (sockaddr:fam address) SOCK_STREAM 0)))
  1012. (configure-socket sock #:options (cons (list SO_REUSEADDR 1)
  1013. %default-socket-options))
  1014. (bind sock address)
  1015. sock))
  1016. (define (gather-user-privileges user)
  1017. "Switch to the identity of USER, a user name."
  1018. (catch 'misc-error
  1019. (lambda ()
  1020. (let ((user (getpw user)))
  1021. (setgroups #())
  1022. (setgid (passwd:gid user))
  1023. (setuid (passwd:uid user))))
  1024. (lambda (key proc message args . rest)
  1025. (leave (G_ "user '~a' not found: ~a~%")
  1026. user (apply format #f message args)))))
  1027. ;;;
  1028. ;;; Entry point.
  1029. ;;;
  1030. (define-command (guix-publish . args)
  1031. (category packaging)
  1032. (synopsis "publish build results over HTTP")
  1033. (with-error-handling
  1034. (let* ((opts (parse-command-line args %options (list %default-options)
  1035. #:build-options? #f
  1036. #:argument-handler
  1037. (lambda (arg result)
  1038. (leave (G_ "~A: extraneous argument~%") arg))))
  1039. (advertise? (assoc-ref opts 'advertise?))
  1040. (user (assoc-ref opts 'user))
  1041. (port (assoc-ref opts 'port))
  1042. (ttl (assoc-ref opts 'narinfo-ttl))
  1043. (negative-ttl (assoc-ref opts 'narinfo-negative-ttl))
  1044. (compressions (match (filter-map (match-lambda
  1045. (('compression . compression)
  1046. compression)
  1047. (_ #f))
  1048. opts)
  1049. (()
  1050. ;; Default to fast & low compression.
  1051. (list %default-gzip-compression))
  1052. (lst (reverse lst))))
  1053. (address (let ((addr (assoc-ref opts 'address)))
  1054. (make-socket-address (sockaddr:fam addr)
  1055. (sockaddr:addr addr)
  1056. port)))
  1057. (socket (open-server-socket address))
  1058. (nar-path (assoc-ref opts 'nar-path))
  1059. (repl-port (assoc-ref opts 'repl))
  1060. (cache (assoc-ref opts 'cache))
  1061. (workers (assoc-ref opts 'workers))
  1062. ;; Read the key right away so that (1) we fail early on if we can't
  1063. ;; access them, and (2) we can then drop privileges.
  1064. (public-key (read-file-sexp (assoc-ref opts 'public-key-file)))
  1065. (private-key (read-file-sexp (assoc-ref opts 'private-key-file))))
  1066. (when user
  1067. ;; Now that we've read the key material and opened the socket, we can
  1068. ;; drop privileges.
  1069. (gather-user-privileges user))
  1070. (when (zero? (getuid))
  1071. (warning (G_ "server running as root; \
  1072. consider using the '--user' option!~%")))
  1073. (parameterize ((%public-key public-key)
  1074. (%private-key private-key)
  1075. (cache-bypass-threshold
  1076. (or (assoc-ref opts 'cache-bypass-threshold)
  1077. (cache-bypass-threshold))))
  1078. (info (G_ "publishing ~a on ~a, port ~d~%")
  1079. %store-directory
  1080. (inet-ntop (sockaddr:fam address) (sockaddr:addr address))
  1081. (sockaddr:port address))
  1082. (for-each (lambda (compression)
  1083. (info (G_ "using '~a' compression method, level ~a~%")
  1084. (compression-type compression)
  1085. (compression-level compression)))
  1086. compressions)
  1087. (when repl-port
  1088. (repl:spawn-server (repl:make-tcp-server-socket #:port repl-port)))
  1089. ;; Set the name of the main thread.
  1090. (set-thread-name "guix publish")
  1091. (with-store store
  1092. (run-publish-server socket store
  1093. #:advertise? advertise?
  1094. #:port port
  1095. #:cache cache
  1096. #:pool (and cache (make-pool workers
  1097. #:thread-name
  1098. "publish worker"))
  1099. #:nar-path nar-path
  1100. #:compressions compressions
  1101. #:narinfo-negative-ttl negative-ttl
  1102. #:narinfo-ttl ttl))))))
  1103. ;;; Local Variables:
  1104. ;;; eval: (put 'single-baker 'scheme-indent-function 1)
  1105. ;;; End: