/* Respond to a client request for a REPORT of type file-revs-report for the RESOURCE. Get request body from DOC and send result to OUTPUT. */ dav_error * dav_svn__file_revs_report(const dav_resource *resource, const apr_xml_doc *doc, ap_filter_t *output) { svn_error_t *serr; dav_error *derr = NULL; apr_xml_elem *child; int ns; struct file_rev_baton frb; dav_svn__authz_read_baton arb; const char *abs_path = NULL; /* These get determined from the request document. */ svn_revnum_t start = SVN_INVALID_REVNUM; svn_revnum_t end = SVN_INVALID_REVNUM; svn_boolean_t include_merged_revisions = FALSE; /* off by default */ /* Construct the authz read check baton. */ arb.r = resource->info->r; arb.repos = resource->info->repos; /* Sanity check. */ if (!resource->info->repos_path) return dav_svn__new_error(resource->pool, HTTP_BAD_REQUEST, 0, "The request does not specify a repository path"); ns = dav_svn__find_ns(doc->namespaces, SVN_XML_NAMESPACE); /* ### This is done on other places, but the document element is in this namespace, so is this necessary at all? */ if (ns == -1) { return dav_svn__new_error_tag(resource->pool, HTTP_BAD_REQUEST, 0, "The request does not contain the 'svn:' " "namespace, so it is not going to have " "certain required elements.", SVN_DAV_ERROR_NAMESPACE, SVN_DAV_ERROR_TAG); } /* Get request information. */ for (child = doc->root->first_child; child != NULL; child = child->next) { /* if this element isn't one of ours, then skip it */ if (child->ns != ns) continue; if (strcmp(child->name, "start-revision") == 0) start = SVN_STR_TO_REV(dav_xml_get_cdata(child, resource->pool, 1)); else if (strcmp(child->name, "end-revision") == 0) end = SVN_STR_TO_REV(dav_xml_get_cdata(child, resource->pool, 1)); else if (strcmp(child->name, "include-merged-revisions") == 0) include_merged_revisions = TRUE; /* presence indicates positivity */ else if (strcmp(child->name, "path") == 0) { const char *rel_path = dav_xml_get_cdata(child, resource->pool, 0); if ((derr = dav_svn__test_canonical(rel_path, resource->pool))) return derr; /* Force REL_PATH to be a relative path, not an fspath. */ rel_path = svn_relpath_canonicalize(rel_path, resource->pool); /* Append the REL_PATH to the base FS path to get an absolute repository path. */ abs_path = svn_fspath__join(resource->info->repos_path, rel_path, resource->pool); } /* else unknown element; skip it */ } /* Check that all parameters are present and valid. */ if (! abs_path) return dav_svn__new_error_tag(resource->pool, HTTP_BAD_REQUEST, 0, "Not all parameters passed.", SVN_DAV_ERROR_NAMESPACE, SVN_DAV_ERROR_TAG); frb.bb = apr_brigade_create(resource->pool, output->c->bucket_alloc); frb.output = output; frb.needs_header = TRUE; frb.svndiff_version = resource->info->svndiff_version; frb.compression_level = dav_svn__get_compression_level(resource->info->r); /* file_rev_handler will send header first time it is called. */ /* Get the revisions and send them. */ serr = svn_repos_get_file_revs2(resource->info->repos->repos, abs_path, start, end, include_merged_revisions, dav_svn__authz_read_func(&arb), &arb, file_rev_handler, &frb, resource->pool); if (serr) { /* We don't 'goto cleanup' because ap_fflush() tells httpd to write the HTTP headers out, and that includes whatever r->status is at that particular time. When we call dav_svn__convert_err(), we don't immediately set r->status right then, so r->status remains 0, hence HTTP status 200 would be misleadingly returned. */ return (dav_svn__convert_err(serr, HTTP_INTERNAL_SERVER_ERROR, serr->message, resource->pool)); } if ((serr = maybe_send_header(&frb))) { derr = dav_svn__convert_err(serr, HTTP_INTERNAL_SERVER_ERROR, "Error beginning REPORT reponse", resource->pool); goto cleanup; } if ((serr = dav_svn__brigade_puts(frb.bb, frb.output, "</S:file-revs-report>" DEBUG_CR))) { derr = dav_svn__convert_err(serr, HTTP_INTERNAL_SERVER_ERROR, "Error ending REPORT reponse", resource->pool); goto cleanup; } cleanup: /* We've detected a 'high level' svn action to log. */ dav_svn__operational_log(resource->info, svn_log__get_file_revs(abs_path, start, end, include_merged_revisions, resource->pool)); return dav_svn__final_flush_or_error(resource->info->r, frb.bb, output, derr, resource->pool); }
dav_error * dav_svn__replay_report(const dav_resource *resource, const apr_xml_doc *doc, dav_svn__output *output) { dav_error *derr = NULL; svn_revnum_t low_water_mark = SVN_INVALID_REVNUM; svn_revnum_t rev; const svn_delta_editor_t *editor; svn_boolean_t send_deltas = TRUE; dav_svn__authz_read_baton arb; const char *base_dir; apr_bucket_brigade *bb; apr_xml_elem *child; svn_fs_root_t *root; svn_error_t *err; void *edit_baton; int ns; /* In Subversion 1.8, we allowed this REPORT to be issue against a revision resource. Doing so means the REV is part of the request URL, and BASE_DIR is embedded in the request body. The old-school (and incorrect, see issue #4287 -- https://issues.apache.org/jira/browse/SVN-4287) way was to REPORT on the public URL of the BASE_DIR and embed the REV in the report body. */ if (resource->baselined && (resource->type == DAV_RESOURCE_TYPE_VERSION)) { rev = resource->info->root.rev; base_dir = NULL; } else { rev = SVN_INVALID_REVNUM; base_dir = resource->info->repos_path; } arb.r = resource->info->r; arb.repos = resource->info->repos; ns = dav_svn__find_ns(doc->namespaces, SVN_XML_NAMESPACE); if (ns == -1) return dav_svn__new_error_svn(resource->pool, HTTP_BAD_REQUEST, 0, 0, "The request does not contain the 'svn:' " "namespace, so it is not going to have an " "svn:revision element. That element is " "required"); for (child = doc->root->first_child; child != NULL; child = child->next) { if (child->ns == ns) { const char *cdata; if (strcmp(child->name, "revision") == 0) { if (SVN_IS_VALID_REVNUM(rev)) { /* Uh... we already have a revision to use, either because this tag is non-unique or because the request was submitted against a revision-bearing resource URL. Either way, something's not right. */ return malformed_element_error("revision", resource->pool); } cdata = dav_xml_get_cdata(child, resource->pool, 1); rev = SVN_STR_TO_REV(cdata); } else if (strcmp(child->name, "low-water-mark") == 0) { cdata = dav_xml_get_cdata(child, resource->pool, 1); if (! cdata) return malformed_element_error("low-water-mark", resource->pool); low_water_mark = SVN_STR_TO_REV(cdata); } else if (strcmp(child->name, "send-deltas") == 0) { apr_int64_t parsed_val; cdata = dav_xml_get_cdata(child, resource->pool, 1); if (! cdata) return malformed_element_error("send-deltas", resource->pool); err = svn_cstring_strtoi64(&parsed_val, cdata, 0, 1, 10); if (err) { svn_error_clear(err); return malformed_element_error("send-deltas", resource->pool); } send_deltas = parsed_val != 0; } else if (strcmp(child->name, "include-path") == 0) { cdata = dav_xml_get_cdata(child, resource->pool, 1); if ((derr = dav_svn__test_canonical(cdata, resource->pool))) return derr; /* Force BASE_DIR to be a relative path, not an fspath. */ base_dir = svn_relpath_canonicalize(cdata, resource->pool); } } } if (! SVN_IS_VALID_REVNUM(rev)) return dav_svn__new_error_svn (resource->pool, HTTP_BAD_REQUEST, 0, 0, "Request was missing the revision argument"); if (! SVN_IS_VALID_REVNUM(low_water_mark)) return dav_svn__new_error_svn (resource->pool, HTTP_BAD_REQUEST, 0, 0, "Request was missing the low-water-mark argument"); if (! base_dir) base_dir = ""; bb = apr_brigade_create(resource->pool, dav_svn__output_get_bucket_alloc(output)); if ((err = svn_fs_revision_root(&root, resource->info->repos->fs, rev, resource->pool))) { derr = dav_svn__convert_err(err, HTTP_INTERNAL_SERVER_ERROR, "Couldn't retrieve revision root", resource->pool); goto cleanup; } make_editor(&editor, &edit_baton, bb, output, dav_svn__get_compression_level(resource->info->r), resource->info->svndiff_version, resource->pool); if ((err = svn_repos_replay2(root, base_dir, low_water_mark, send_deltas, editor, edit_baton, dav_svn__authz_read_func(&arb), &arb, resource->pool))) { derr = dav_svn__convert_err(err, HTTP_INTERNAL_SERVER_ERROR, "Problem replaying revision", resource->pool); goto cleanup; } if ((err = end_report(edit_baton))) { derr = dav_svn__convert_err(err, HTTP_INTERNAL_SERVER_ERROR, "Problem closing editor drive", resource->pool); goto cleanup; } cleanup: dav_svn__operational_log(resource->info, svn_log__replay(base_dir, rev, resource->info->r->pool)); /* Flush the brigade. */ return dav_svn__final_flush_or_error(resource->info->r, bb, output, derr, resource->pool); }