From: Brian Chrisman <brchrisman@gmail.com>
To: ceph-devel@vger.kernel.org
Cc: Brian Chrisman <brchrisman@gmail.com>
Subject: [PATCH 2/2] add basic test case for readdir_r
Date: Thu, 12 May 2011 23:39:38 -0700 [thread overview]
Message-ID: <1305268778-18691-3-git-send-email-brchrisman@gmail.com> (raw)
In-Reply-To: <1305268778-18691-1-git-send-email-brchrisman@gmail.com>
Signed-off-by: Brian Chrisman <brchrisman@gmail.com>
---
src/client/testceph.cc | 36 +++++++++++++++++++++++++++++++++++-
1 files changed, 35 insertions(+), 1 deletions(-)
diff --git a/src/client/testceph.cc b/src/client/testceph.cc
index 520fa75..c24cc03 100644
--- a/src/client/testceph.cc
+++ b/src/client/testceph.cc
@@ -17,6 +17,7 @@
#include <stdlib.h>
#include <errno.h>
+#include <dirent.h>
#include <iostream>
#include <fcntl.h>
#include <sys/xattr.h>
@@ -190,8 +191,41 @@ int main(int argc, const char **argv)
} else {
cout << "ceph_lstat: success" << std::endl;
}
+ cout << "Attempting readdir_r" << std::endl;
+ ret = ceph_mkdir(cmount, "readdir_r_test", 0777);
+ if (ret) {
+ cerr << "ceph_mkdir error: " << cpp_strerror(ret) << std::endl;
+ return 1;
+ } else {
+ cout << "ceph_mkdir: success" << std::endl;
+ }
+ struct ceph_dir_result *readdir_r_test_dir;
+ ret = ceph_opendir(cmount, "readdir_r_test", &readdir_r_test_dir);
+ if (ret != 0) {
+ cerr << "ceph_opendir error: unexpected result from trying to open readdir_r_test: "
+ << cpp_strerror(ret) << std::endl;
+ return 1;
+ } else {
+ cout << "ceph_opendir: success" << std::endl;
+ }
+ ret = ceph_open(cmount, "readdir_r_test/opened_file", O_CREAT, 0666);
+ if (ret < 0) {
+ cerr << "ceph_open O_CREAT error: " << cpp_strerror(ret) << std::endl;
+ return 1;
+ } else {
+ cout << "ceph_open: success" << std::endl;
+ }
-
+ struct dirent * result;
+ result = (struct dirent *) malloc(sizeof(struct dirent));
+ ret = ceph_readdir_r(cmount, readdir_r_test_dir, result);
+ if (ret != 0) {
+ cerr << "ceph_readdir_r: fail, returned: " << ret << std::endl;
+ } else {
+ cerr << "ceph_readdir_r: success: " << *result->d_name << std::endl;
+ return 1;
+ }
+
ceph_shutdown(cmount);
return 0;
--
1.7.1
prev parent reply other threads:[~2011-05-13 6:39 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-13 6:39 [PATCH 0/2] fix null deref in readdir_r callback and test Brian Chrisman
2011-05-13 6:39 ` [PATCH 1/2] fix null deref when callback invoked en route from readdir_r rather than readdirplus_r Brian Chrisman
2011-05-13 6:39 ` Brian Chrisman [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1305268778-18691-3-git-send-email-brchrisman@gmail.com \
--to=brchrisman@gmail.com \
--cc=ceph-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.