Nested SLOs do not have their ETags verified on GET

Bug #1822387 reported by Tim Burke
12
This bug affects 1 person
Affects Status Importance Assigned to Milestone
OpenStack Object Storage (swift)
New
Medium
Unassigned

Bug Description

When servicing a GET for a flat SLO (i.e., an SLO that only points to normal objects), the slo middleware looks at the hashes that were recorded when the manifest was created and compares against the ETag for each segment as they are retrieved. This maintains some notion of object integrity; if a segment gets overwritten with different content, slo will truncate the response, and any attempt to start reading again at that offset will 409.

When there are nested SLOs, however, we just check the SLO-ness and never verify that we're looking at the *same* SLO that was there when the parent was created:

$ curl http://saio:8090/v1/AUTH_test/c -X PUT

$ curl http://saio:8090/v1/AUTH_test/c/seg1 -X PUT -d 1234

$ curl http://saio:8090/v1/AUTH_test/c/seg2 -X PUT -d 5678

$ curl http://saio:8090/v1/AUTH_test/c/slo?multipart-manifest=put -X PUT -d '[{"path":"c/seg1"},{"path":"c/seg2"}]'

$ curl http://saio:8090/v1/AUTH_test/c/slo
12345678
$ curl http://saio:8090/v1/AUTH_test/c/slo2?multipart-manifest=put -X PUT -d '[{"path":"c/slo"},{"path":"c/seg1"}]'

$ curl http://saio:8090/v1/AUTH_test/c/slo2
123456781234
$ curl http://saio:8090/v1/AUTH_test/c/slo?multipart-manifest=put -X PUT -d '[{"path":"c/seg2"},{"path":"c/seg1"}]'

$ curl http://saio:8090/v1/AUTH_test/c/slo2
567812341234

Tags: slo
Revision history for this message
Tim Burke (1-tim-z) wrote :

Note that there's similar fun behavior with DELETEs, even without nesting:

$ curl http://saio:8090/v1/AUTH_test/c -X PUT

$ curl http://saio:8090/v1/AUTH_test/c/seg1 -X PUT -d 1234

$ curl http://saio:8090/v1/AUTH_test/c/seg2 -X PUT -d 5678

$ curl http://saio:8090/v1/AUTH_test/c/slo?multipart-manifest=put -X PUT -d '[{"path":"c/seg1"},{"path":"c/seg2"}]'

$ curl http://saio:8090/v1/AUTH_test/c/slo
12345678
$ curl http://saio:8090/v1/AUTH_test/c/seg1 -X PUT -d asdf

$ curl http://saio:8090/v1/AUTH_test/c/slo?multipart-manifest=delete -X DELETE
Number Deleted: 3
Number Not Found: 0
Response Body:
Response Status: 200 OK
Errors:

... but without a DELETE That can respect If-Match: <etag>, I'm not sure there's much we can do.

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Duplicates of this bug

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.