Commit a9b095e4 authored by Neil Brown's avatar Neil Brown Committed by Linus Torvalds

[PATCH] Fix bugs introduced by recent improvements to readdir_plus

 - make sure cd->buffer is always inside a page - previously if an
   entry fit perfectly in the remainder of a page, cd->buffer would
   end up pointing past the end of that page.

 - make sure num_entry_words is always correct, even on the error
   path.
parent 9cfd4af7
...@@ -884,9 +884,10 @@ encode_entry(struct readdir_cd *ccd, const char *name, ...@@ -884,9 +884,10 @@ encode_entry(struct readdir_cd *ccd, const char *name,
if (plus) { if (plus) {
struct svc_fh fh; struct svc_fh fh;
if (compose_entry_fh(cd, &fh, name, namlen) > 0) if (compose_entry_fh(cd, &fh, name, namlen) > 0) {
goto noexec; *p++ = 0;
*p++ = 0;
} else
p = encode_entryplus_baggage(cd, p, &fh); p = encode_entryplus_baggage(cd, p, &fh);
} }
num_entry_words = p - cd->buffer; num_entry_words = p - cd->buffer;
...@@ -916,7 +917,7 @@ encode_entry(struct readdir_cd *ccd, const char *name, ...@@ -916,7 +917,7 @@ encode_entry(struct readdir_cd *ccd, const char *name,
/* determine entry word length and lengths to go in pages */ /* determine entry word length and lengths to go in pages */
num_entry_words = p1 - tmp; num_entry_words = p1 - tmp;
len1 = curr_page_addr + PAGE_SIZE - (caddr_t)cd->buffer; len1 = curr_page_addr + PAGE_SIZE - (caddr_t)cd->buffer;
if ((num_entry_words << 2) <= len1) { if ((num_entry_words << 2) < len1) {
/* the actual number of words in the entry is less /* the actual number of words in the entry is less
* than elen and can still fit in the current page * than elen and can still fit in the current page
*/ */
...@@ -945,16 +946,11 @@ encode_entry(struct readdir_cd *ccd, const char *name, ...@@ -945,16 +946,11 @@ encode_entry(struct readdir_cd *ccd, const char *name,
return -EINVAL; return -EINVAL;
} }
out:
cd->buflen -= num_entry_words; cd->buflen -= num_entry_words;
cd->buffer = p; cd->buffer = p;
cd->common.err = nfs_ok; cd->common.err = nfs_ok;
return 0; return 0;
noexec:
*p++ = 0;
*p++ = 0;
goto out;
} }
int int
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment