2 ;;;; Copyright (c) 2008 Zachary Beane, All Rights Reserved
4 ;;;; Redistribution and use in source and binary forms, with or without
5 ;;;; modification, are permitted provided that the following conditions
8 ;;;; * Redistributions of source code must retain the above copyright
9 ;;;; notice, this list of conditions and the following disclaimer.
11 ;;;; * Redistributions in binary form must reproduce the above
12 ;;;; copyright notice, this list of conditions and the following
13 ;;;; disclaimer in the documentation and/or other materials
14 ;;;; provided with the distribution.
16 ;;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
17 ;;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 ;;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 ;;;; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 ;;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 ;;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
22 ;;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 ;;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 ;;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 ;;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 ;;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 (defparameter *canned-access-policies
*
33 '((:private .
"private")
34 (:public-read .
"public-read")
35 (:public-read-write .
"public-read-write")
36 (:authenticated-read .
"authenticated-read")))
38 (defun canned-access-policy (access-policy)
39 (let ((value (assoc access-policy
*canned-access-policies
*)))
41 (error "~S is not a supported access policy.~%Supported policies are ~S"
43 (mapcar 'first
*canned-access-policies
*)))
44 (list (cons "acl" (cdr value
)))))
46 (defun access-policy-header (access-policy public
)
47 (cond ((and access-policy public
)
48 (error "Only one of ~S and ~S should be provided"
49 :public
:access-policy
))
51 (canned-access-policy :public-read
))
53 (canned-access-policy access-policy
))))
55 (defun head (&key bucket key parameters
56 ((:credentials
*credentials
*) *credentials
*))
57 "Return three values: the HTTP status, an alist of Drakma-style HTTP
58 headers, and the HTTP phrase, with the results of a HEAD request for
59 the object specified by the optional BUCKET and KEY arguments."
61 (submit-request (make-instance 'request
65 :parameters parameters
))))
67 (values (http-headers response
)
69 (http-phrase response
))))
71 ;;; Operations on buckets
73 (defun all-buckets (&key
((:credentials
*credentials
*) *credentials
*))
74 "Return a vector of all BUCKET objects associated with *CREDENTIALS*."
75 (let ((response (submit-request (make-instance 'request
79 (defun bucket-location (bucket &key
80 ((:credentials
*credentials
*) *credentials
*))
81 "If BUCKET was created with a LocationConstraint, return its
83 (let* ((request (make-instance 'request
85 :sub-resource
"location"
87 (response (submit-request request
))
88 (location (location response
)))
89 (when (plusp (length location
))
92 (defun query-bucket (bucket &key prefix marker max-keys delimiter
93 ((:credentials
*credentials
*) *credentials
*))
94 (submit-request (make-instance 'request
102 :delimiter delimiter
))))
104 (defun continue-bucket-query (response)
106 (let ((request (successive-request response
)))
108 (submit-request request
)))))
110 (defun all-keys (bucket &key prefix
111 ((:credentials
*credentials
*) *credentials
*))
112 "Reutrn a vector of all KEY objects in BUCKET."
113 (let ((response (query-bucket bucket
:prefix prefix
))
118 (push (keys response
) results
)
119 (setf response
(continue-bucket-query response
)))
120 (let ((combined (make-array (reduce #'+ results
:key
#'length
)))
122 (dolist (keys (nreverse results
) combined
)
123 (replace combined keys
:start1 start
)
124 (incf start
(length keys
))))))
126 (defun bucket-exists-p (bucket &key
127 ((:credentials
*credentials
*) *credentials
*))
128 (let ((code (nth-value 1 (head :bucket bucket
130 (parameters-alist :max-keys
0)))))
131 (not (<= 400 code
599))))
133 (defun create-bucket (name &key
137 ((:credentials
*credentials
*) *credentials
*))
138 (let ((policy-header (access-policy-header access-policy public
)))
139 (submit-request (make-instance 'request
142 :content
(and location
143 (location-constraint-xml
145 :amz-headers policy-header
))))
147 (defun delete-bucket (bucket &key
148 ((:credentials
*credentials
*) *credentials
*))
149 (let* ((request (make-instance 'request
152 (endpoint (endpoint request
))
153 (bucket (bucket request
)))
155 (submit-request request
)
156 (setf (redirected-endpoint endpoint bucket
) nil
))))
159 ;;; Getting objects as vectors, strings, or files
161 (defun check-request-success (response)
162 (let ((code (http-code response
)))
164 (throw 'not-modified
(values nil
(http-headers response
))))
165 ((not (<= 200 code
299))
166 (setf response
(specialize-response response
))
167 (maybe-signal-error response
)))))
169 (defun make-file-writer-handler (file &key
(if-exists :supersede
))
171 (check-request-success response
)
172 (with-open-stream (input (body response
))
173 (with-open-file (output file
:direction
:output
175 :element-type
'(unsigned-byte 8))
176 (copy-n-octets (content-length response
) input output
)))
177 (setf (body response
) (probe-file file
))
180 (defun vector-writer-handler (response)
181 (check-request-success response
)
182 (let ((buffer (make-octet-vector (content-length response
))))
183 (setf (body response
)
184 (with-open-stream (input (body response
))
185 (read-sequence buffer input
)
189 (defun stream-identity-handler (response)
190 (check-request-success response
)
193 (defun make-string-writer-handler (external-format)
195 (setf response
(vector-writer-handler response
))
196 (setf (body response
)
197 (flexi-streams:octets-to-string
(body response
)
198 :external-format external-format
))
203 (defun get-object (bucket key
&key
205 unless-modified-since
210 (if-exists :supersede
)
211 (string-external-format :utf-8
)
212 ((:credentials
*credentials
*) *credentials
*))
213 (flet ((range-argument (start end
)
215 (format nil
"bytes=~D-~@[~D~]" start
(and end
(1- end
)))))
217 (and time
(http-date-string time
))))
218 (when (and end
(not start
))
220 (when (and start end
(<= end start
))
221 (error "START must be less than END."))
222 (let ((request (make-instance 'request
230 (maybe-date when-modified-since
)
232 (maybe-date unless-modified-since
)
233 :if-match when-etag-matches
234 :if-none-match unless-etag-matches
235 :range
(range-argument start end
))))
236 (handler (cond ((eql output
:vector
)
237 'vector-writer-handler
)
238 ((eql output
:string
)
239 (make-string-writer-handler string-external-format
))
240 ((eql output
:stream
)
241 'stream-identity-handler
)
242 ((or (stringp output
)
244 (make-file-writer-handler output
:if-exists if-exists
))
246 (error "Unknown ~S option ~S -- should be ~
247 :VECTOR, :STRING, :STREAM, or a pathname"
251 (let ((response (submit-request request
252 :keep-stream
(eql output
:stream
)
255 (values (body response
) (http-headers response
)))
256 (precondition-failed (c)
259 (http-headers (request-error-response c
))))))))))
261 (defun get-vector (bucket key
263 when-modified-since unless-modified-since
264 when-etag-matches unless-etag-matches
265 (if-exists :supersede
)
266 ((:credentials
*credentials
*) *credentials
*))
267 (get-object bucket key
271 :when-modified-since when-modified-since
272 :unless-modified-since unless-modified-since
273 :when-etag-matches when-etag-matches
274 :unless-etag-matches unless-etag-matches
275 :if-exists if-exists
))
277 (defun get-string (bucket key
279 (external-format :utf-8
)
280 when-modified-since unless-modified-since
281 when-etag-matches unless-etag-matches
282 (if-exists :supersede
)
283 ((:credentials
*credentials
*) *credentials
*))
284 (get-object bucket key
286 :string-external-format external-format
289 :when-modified-since when-modified-since
290 :unless-modified-since unless-modified-since
291 :when-etag-matches when-etag-matches
292 :unless-etag-matches unless-etag-matches
293 :if-exists if-exists
))
295 (defun get-file (bucket key file
297 when-modified-since unless-modified-since
298 when-etag-matches unless-etag-matches
299 (if-exists :supersede
)
300 ((:credentials
*credentials
*) *credentials
*))
301 (get-object bucket key
302 :output
(pathname file
)
305 :when-modified-since when-modified-since
306 :unless-modified-since unless-modified-since
307 :when-etag-matches when-etag-matches
308 :unless-etag-matches unless-etag-matches
309 :if-exists if-exists
))
315 (defun put-object (object bucket key
&key
319 (string-external-format :utf-8
)
325 (storage-class "STANDARD")
326 ((:credentials
*credentials
*) *credentials
*))
330 (flexi-streams:string-to-octets object
332 string-external-format
))
333 ((or vector pathname
) object
)))
335 (policy-header (access-policy-header access-policy public
)))
336 (setf storage-class
(or storage-class
"STANDARD"))
337 (submit-request (make-instance 'request
343 (append policy-header
344 (list (cons "storage-class"
348 :cache-control cache-control
349 :content-encoding content-encoding
350 :content-disposition content-disposition
351 :expires
(and expires
352 (http-date-string expires
)))
353 :content-type content-type
354 :content-length content-length
358 (defun put-vector (vector bucket key
&key
366 (content-type "binary/octet-stream")
369 ((:credentials
*credentials
*) *credentials
*))
371 (setf vector
(subseq vector
(or start
0) end
)))
372 (put-object vector bucket key
373 :access-policy access-policy
376 :cache-control cache-control
377 :content-encoding content-encoding
378 :content-disposition content-disposition
379 :content-type content-type
381 :storage-class storage-class
))
383 (defun put-string (string bucket key
&key
388 (external-format :utf-8
)
392 (content-type "text/plain")
395 ((:credentials
*credentials
*) *credentials
*))
397 (setf string
(subseq string
(or start
0) end
)))
398 (put-object string bucket key
399 :access-policy access-policy
403 :content-disposition content-disposition
404 :content-encoding content-encoding
405 :content-type content-type
406 :cache-control cache-control
407 :string-external-format external-format
408 :storage-class storage-class
))
411 (defun put-file (file bucket key
&key
419 (content-type "binary/octet-stream")
422 ((:credentials
*credentials
*) *credentials
*))
424 (setf key
(file-namestring file
)))
425 (let ((content (pathname file
)))
427 ;;; FIXME: integrate with not-in-memory file uploading
428 (setf content
(file-subset-vector file start end
)))
429 (put-object content bucket key
430 :access-policy access-policy
433 :cache-control cache-control
434 :content-disposition content-disposition
435 :content-encoding content-encoding
436 :content-type content-type
438 :storage-class storage-class
)))
440 (defun put-stream (stream bucket key
&key
448 (content-type "binary/octet-stream")
451 ((:credentials
*credentials
*) *credentials
*))
452 (let ((content (stream-subset-vector stream start end
)))
453 (put-object content bucket key
454 :access-policy access-policy
457 :cache-control cache-control
458 :content-disposition content-disposition
459 :content-encoding content-encoding
460 :content-type content-type
462 :storage-class storage-class
)))
465 ;;; Delete & copy objects
467 (defun delete-object (bucket key
&key
468 ((:credentials
*credentials
*) *credentials
*))
469 "Delete one object from BUCKET identified by KEY."
470 (submit-request (make-instance 'request
475 (defun bulk-delete-document (keys)
477 (cxml:with-xml-output
(cxml:make-octet-vector-sink
)
478 (cxml:with-element
"Delete"
481 (cxml:with-element
"Object"
482 (cxml:with-element
"Key"
483 (cxml:text
(name key
)))))
487 (defbinder delete-objects-result
492 ("Key" (bind :deleted-key
)))
494 ("Key" (bind :error-key
))
495 ("Code" (bind :error-code
))
496 ("Message" (bind :error-message
)))))))
498 (defun delete-objects (bucket keys
&key
499 ((:credentials
*credentials
*) *credentials
*))
500 "Delete the objects in BUCKET identified by the sequence KEYS."
503 (subseqs (floor (length keys
) 1000)))
504 (flet ((bulk-delete (keys)
505 (unless (<= 1 (length keys
) 1000)
506 (error "Can only delete 1 to 1000 objects per request ~
509 (let* ((content (bulk-delete-document keys
))
510 (md5 (vector-md5/b64 content
)))
512 (submit-request (make-instance 'request
514 :sub-resource
"delete"
518 (bindings (xml-bind 'delete-objects-result
520 (results (bvalue :results bindings
)))
521 (dolist (result results
(values deleted failed
))
522 (if (bvalue :deleted-key result
)
524 (push result failed
)))))))
525 (loop for start from
0 by
1000
526 for end
= (+ start
1000)
528 (bulk-delete (subseq keys start end
)))
529 (let ((remainder (subseq keys
(* subseqs
1000))))
530 (when (plusp (length remainder
))
531 (bulk-delete (subseq keys
(* subseqs
1000)))))
532 (values deleted failed
))))
534 (defun delete-all-objects (bucket &key
535 ((:credentials
*credentials
*) *credentials
*))
536 "Delete all objects in BUCKET."
537 ;; FIXME: This should probably bucket-query and incrementally delete
538 ;; instead of fetching all keys upfront.
539 (delete-objects bucket
(all-keys bucket
)))
541 (defun copy-object (&key
547 unless-modified-since
548 (metadata nil metadata-supplied-p
)
552 (storage-class "STANDARD")
553 ((:credentials
*credentials
*) *credentials
*))
554 "Copy the object identified by FROM-BUCKET/FROM-KEY to
557 If TO-BUCKET is NIL, uses FROM-BUCKET as the target. If TO-KEY is NIL,
558 uses TO-KEY as the target.
560 If METADATA is provided, it should be an alist of metadata keys and
561 values to set on the new object. Otherwise, the source object's
564 Optional precondition variables are WHEN-ETAG-MATCHES,
565 UNLESS-ETAG-MATCHES, WHEN-MODIFIED-SINCE, UNLESS-MODIFIED-SINCE. The
566 etag variables use an etag as produced by the FILE-ETAG function,
567 i.e. a lowercase hex representation of the file's MD5 digest,
568 surrounded by quotes. The modified-since variables should use a
571 If PUBLIC is T, the new object is visible to all
572 users. Otherwise, a default ACL is present on the new object.
575 (error "FROM-BUCKET is required"))
577 (error "FROM-KEY is required"))
578 (setf to-bucket
(or to-bucket from-bucket
))
579 (setf to-key
(or to-key from-key
))
580 (handler-bind ((precondition-failed
582 (unless precondition-errors
583 (return-from copy-object
584 (values nil
(request-error-response condition
)))))))
586 (parameters-alist :copy-source
(format nil
"~A/~A"
587 (url-encode (name from-bucket
))
588 (url-encode (name from-key
)))
589 :storage-class storage-class
591 (if metadata-supplied-p
"REPLACE" "COPY")
592 :copy-source-if-match when-etag-matches
593 :copy-source-if-none-match unless-etag-matches
594 :copy-source-if-modified-since
595 (and when-modified-since
596 (http-date-string when-modified-since
))
597 :copy-source-if-unmodified-since
598 (and unless-modified-since
599 (http-date-string unless-modified-since
))))
600 (policy-header (access-policy-header access-policy public
)))
601 (submit-request (make-instance 'request
607 (nconc headers policy-header
))))))
610 (defun object-metadata (bucket key
&key
611 ((:credentials
*credentials
*) *credentials
*))
612 "Return the metadata headers as an alist, with keywords for the keys."
613 (let* ((prefix "X-AMZ-META-")
614 (plen (length prefix
)))
615 (flet ((metadata-symbol-p (k)
616 (and (< plen
(length (symbol-name k
)))
617 (string-equal k prefix
:end1 plen
)
618 (intern (subseq (symbol-name k
) plen
)
620 (let ((headers (head :bucket bucket
:key key
)))
621 (loop for
((k . value
)) on headers
622 for meta
= (metadata-symbol-p k
)
624 collect
(cons meta value
))))))
627 ;;; Convenience bit for storage class
629 (defun set-storage-class (bucket key storage-class
&key
630 ((:credentials
*credentials
*) *credentials
*))
631 "Set the storage class of the object identified by BUCKET and KEY to
633 (copy-object :from-bucket bucket
:from-key key
634 :storage-class storage-class
))
639 (defparameter *public-read-grant
*
640 (make-instance 'grant
642 :grantee
*all-users
*)
643 "This grant is added to or removed from an ACL to grant or revoke
644 read access for all users.")
646 (defun get-acl (&key bucket key
647 ((:credentials
*credentials
*) *credentials
*))
648 (let* ((request (make-instance 'request
652 :sub-resource
"acl"))
653 (response (submit-request request
))
654 (acl (acl response
)))
658 (defun put-acl (owner grants
&key bucket key
659 ((:credentials
*credentials
*) *credentials
*))
660 (let* ((acl (make-instance 'access-control-list
663 (request (make-instance 'request
668 :content
(acl-serialize acl
))))
669 (submit-request request
)))
672 (defun make-public (&key bucket key
673 ((:credentials
*credentials
*) *credentials
*))
674 (multiple-value-bind (owner grants
)
675 (get-acl :bucket bucket
:key key
)
677 (cons *public-read-grant
* grants
)
681 (defun make-private (&key bucket key
682 ((:credentials
*credentials
*) *credentials
*))
683 (multiple-value-bind (owner grants
)
684 (get-acl :bucket bucket
:key key
)
686 (remove *all-users
* grants
687 :test
#'acl-eqv
:key
#'grantee
))
688 (put-acl owner grants
:bucket bucket
:key key
)))
693 (defparameter *log-delivery-grants
*
694 (list (make-instance 'grant
696 :grantee
*log-delivery
*)
697 (make-instance 'grant
698 :permission
:read-acl
699 :grantee
*log-delivery
*))
700 "This list of grants is used to allow the Amazon log delivery group
701 to write logfile objects into a particular bucket.")
703 (defun enable-logging-to (bucket &key
704 ((:credentials
*credentials
*) *credentials
*))
705 "Configure the ACL of BUCKET to accept logfile objects."
706 (multiple-value-bind (owner grants
)
707 (get-acl :bucket bucket
)
708 (setf grants
(append *log-delivery-grants
* grants
))
709 (put-acl owner grants
:bucket bucket
)))
711 (defun disable-logging-to (bucket &key
712 ((:credentials
*credentials
*) *credentials
*))
713 "Configure the ACL of BUCKET to remove permissions for the log
715 (multiple-value-bind (owner grants
)
716 (get-acl :bucket bucket
)
717 (setf grants
(remove-if (lambda (grant)
718 (acl-eqv (grantee grant
) *log-delivery
*))
720 (put-acl owner grants
:bucket bucket
)))
722 (defun enable-logging (bucket target-bucket target-prefix
&key
724 ((:credentials
*credentials
*) *credentials
*))
725 "Enable logging of requests to BUCKET, putting logfile objects into
726 TARGET-BUCKET with a key prefix of TARGET-PREFIX."
727 (let* ((setup (make-instance 'logging-setup
728 :target-bucket target-bucket
729 :target-prefix target-prefix
730 :target-grants target-grants
))
731 (request (make-instance 'request
733 :sub-resource
"logging"
735 :content
(log-serialize setup
)))
739 (return (submit-request request
))
740 (invalid-logging-target (condition)
741 (when (starts-with "You must give the log-delivery group"
742 (message (request-error-response condition
)))
745 (enable-logging-to target-bucket
))))))))
748 (defparameter *empty-logging-setup
*
749 (log-serialize (make-instance 'logging-setup
))
750 "An empty logging setup; putting this into the logging setup of a
751 bucket effectively disables logging.")
753 (defun disable-logging (bucket &key
754 ((:credentials
*credentials
*) *credentials
*))
755 "Disable the creation of access logs for BUCKET."
756 (submit-request (make-instance 'request
758 :sub-resource
"logging"
760 :content
*empty-logging-setup
*)))
762 (defun logging-setup (bucket &key
763 ((:credentials
*credentials
*) *credentials
*))
765 (submit-request (make-instance 'request
767 :sub-resource
"logging")))))
768 (values (target-bucket setup
)
769 (target-prefix setup
)
770 (target-grants setup
))))
774 ;;; Creating unauthorized and authorized URLs for a resource
776 (defclass url-based-request
(request)
783 (defmethod date-string ((request url-based-request
))
784 (format nil
"~D" (expires request
)))
786 (defun resource-url (&key bucket key vhost ssl sub-resource
)
789 (format nil
"http~@[s~*~]://~A/~@[~A~]~@[?~A~]"
790 ssl bucket
(url-encode key
) sub-resource
))
792 (format nil
"http~@[s~*~]://~A.s3.amazonaws.com/~@[~A~]~@[?~A~]"
793 ssl bucket
(url-encode key
) sub-resource
))
795 (format nil
"http~@[s~*~]://s3.amazonaws.com/~@[~A/~]~@[~A~]~@[?~A~]"
798 (url-encode key
:encode-slash nil
)
801 (defun authorized-url (&key bucket key vhost expires ssl sub-resource
802 ((:credentials
*credentials
*) *credentials
*))
803 (unless (and expires
(integerp expires
) (plusp expires
))
804 (error "~S option must be a positive integer" :expires
))
805 (let* ((request (make-instance 'url-based-request
808 :sub-resource sub-resource
810 :expires
(unix-time expires
)))
812 (alist-to-url-encoded-string
813 (list (cons "AWSAccessKeyId" (access-key *credentials
*))
814 (cons "Expires" (format nil
"~D" (expires request
)))
816 (signature request
))))))
819 (format nil
"http~@[s~*~]://~A/~@[~A~]?~@[~A&~]~A"
820 ssl bucket
(url-encode key
) sub-resource parameters
))
822 (format nil
"http~@[s~*~]://~A.s3.amazonaws.com/~@[~A~]?~@[~A&~]~A"
823 ssl bucket
(url-encode key
) sub-resource parameters
))
825 (format nil
"http~@[s~*~]://s3.amazonaws.com/~@[~A/~]~@[~A~]?~@[~A&~]~A"
826 ssl
(url-encode bucket
) (url-encode key
) sub-resource
830 ;;; Miscellaneous operations
832 (defparameter *me-cache
*
833 (make-hash-table :test
'equal
)
834 "A cache for the result of the ME function. Keys are Amazon access
838 ((:credentials
*credentials
*) *credentials
*))
839 "Return a PERSON object corresponding to the current credentials. Cached."
840 (or (gethash (access-key *credentials
*) *me-cache
*)
842 (gethash (access-key *credentials
*) *me-cache
*)
843 (let ((response (submit-request (make-instance 'request
))))
846 (defun make-post-policy (&key expires conditions
847 ((:credentials
*credentials
*) *credentials
*))
848 "Return an encoded HTTP POST policy string and policy signature as
851 (error "~S is required" :expires
))
852 (let ((policy (make-instance 'post-policy
854 :conditions conditions
)))
855 (values (policy-string64 policy
)
856 (policy-signature (secret-key *credentials
*) policy
))))