return 404 properly when somebody requests a bunch of nonexistent statuses/servers
svn:r11110
- Fix compile on platforms without getaddrinfo: bug found by Li-Hui
Zhou.
+ o Minor features (directory servers):
+ - When somebody requests a list of statuses or servers, and we have
+ none of those, return a 404 rather than an empty 200.
+
o Minor features (directory voting):
- Store v3 consensus status consensuses on disk, and reload them
on startup.
o Minor bugfixes (directory voting):
- Read v3 keys from the right location.
-
+ - Numerous bugfixes to directory voting code.
Changes in version 0.2.0.4-alpha - 2007-08-01
o Major security fixes:
smartlist_free(dir_fps);
return 0;
}
- if (dirserv_remove_old_statuses(dir_fps, if_modified_since)) {
+
+ if (!dirserv_remove_old_statuses(dir_fps, if_modified_since)) {
+ write_http_status_line(conn, 404, "Not found");
+ SMARTLIST_FOREACH(dir_fps, char *, cp, tor_free(cp));
+ smartlist_free(dir_fps);
+ return 0;
+ } else if (!smartlist_len(dir_fps)) {
write_http_status_line(conn, 304, "Not modified");
- /* no need to free dir_fps's elements, since
- * dirserv_statuses_are_old() already did. */
+ SMARTLIST_FOREACH(dir_fps, char *, cp, tor_free(cp));
smartlist_free(dir_fps);
return 0;
}
conn->dir_spool_src =
is_extra ? DIR_SPOOL_EXTRA_BY_FP : DIR_SPOOL_SERVER_BY_FP;
tor_free(url_mem);
+
+ if (!dirserv_have_any_serverdesc(conn->fingerprint_stack,
+ conn->dir_spool_src)) {
+ res = -1;
+ msg = "Not found";
+ }
+
if (res < 0)
write_http_status_line(conn, 404, msg);
else {
* a) we have a networkstatus document and
* b) it is not newer than <b>cutoff</b>.
*
- * Return 1 if no keys remain, else return 0.
+ * Return 1 if any items were present at all; else return 0.
*/
int
dirserv_remove_old_statuses(smartlist_t *fps, time_t cutoff)
{
+ int found_any = 0;
SMARTLIST_FOREACH(fps, char *, digest,
{
cached_dir_t *d;
d = cached_v3_networkstatus;
else
d = digestmap_get(cached_v2_networkstatus, digest);
- if (d && d->published <= cutoff) {
+ if (!d)
+ continue;
+ found_any = 1;
+ if (d->published <= cutoff) {
tor_free(digest);
SMARTLIST_DEL_CURRENT(fps, digest);
}
});
- if (smartlist_len(fps))
- return 0; /* some items were not here or were not old */
- return 1; /* all items were here and old */
+ return found_any;
+}
+
+/** DOCDOC */
+int
+dirserv_have_any_serverdesc(smartlist_t *fps, int spool_src)
+{
+ SMARTLIST_FOREACH(fps, const char *, fp, {
+ switch (spool_src)
+ {
+ case DIR_SPOOL_EXTRA_BY_DIGEST:
+ if (extrainfo_get_by_descriptor_digest(fp)) return 1;
+ break;
+ case DIR_SPOOL_EXTRA_BY_FP: {
+ routerinfo_t *ri = router_get_by_digest(fp);
+ if (ri && extrainfo_get_by_descriptor_digest(
+ ri->cache_info.extra_info_digest))
+ return 1;
+ }
+ break;
+ case DIR_SPOOL_SERVER_BY_DIGEST:
+ if (router_get_by_descriptor_digest(fp)) return 1;
+ break;
+ case DIR_SPOOL_SERVER_BY_FP:
+ if (router_get_by_digest(fp)) return 1;
+ break;
+ }
+ });
+ return 0;
}
/** Return an approximate estimate of the number of bytes that will
int complain);
int dirserv_would_reject_router(routerstatus_t *rs);
int dirserv_remove_old_statuses(smartlist_t *fps, time_t cutoff);
+int dirserv_have_any_serverdesc(smartlist_t *fps, int spool_src);
size_t dirserv_estimate_data_size(smartlist_t *fps, int is_serverdescs,
int compressed);
int routerstatus_format_entry(char *buf, size_t buf_len,