aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2004-08-24 20:48:22 +0000
committerNick Mathewson <nickm@torproject.org>2004-08-24 20:48:22 +0000
commit015232bd394367b8422b69222847e622a45b3714 (patch)
tree0c464d0e902cef4e7bab58556b86a2f0c32f3399 /src/common
parent4b4bfd500a1b4919f385314172ae71e0acfa79e2 (diff)
downloadtor-015232bd394367b8422b69222847e622a45b3714.tar
tor-015232bd394367b8422b69222847e622a45b3714.tar.gz
As far as I can tell, CONFIG_LEGAL_FILENAME_CHARACTERS is both pointless and broken. #if it out, pending agreement from arma. This fixes a bug on win32 that rejected paths with a : in them.
svn:r2309
Diffstat (limited to 'src/common')
-rw-r--r--src/common/crypto.c2
-rw-r--r--src/common/util.c2
-rw-r--r--src/common/util.h4
3 files changed, 8 insertions, 0 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c
index 6a9dc348e..4339e8c75 100644
--- a/src/common/crypto.c
+++ b/src/common/crypto.c
@@ -344,10 +344,12 @@ int crypto_pk_read_private_key_from_filename(crypto_pk_env_t *env, const char *k
tor_assert(env && keyfile);
+#if 0
if(strspn(keyfile,CONFIG_LEGAL_FILENAME_CHARACTERS) != strlen(keyfile)) {
/* filename contains nonlegal characters */
return -1;
}
+#endif
/* open the keyfile */
f_pr=fopen(keyfile,"rb");
diff --git a/src/common/util.c b/src/common/util.c
index 43d6d41ab..e3a918c05 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -1507,10 +1507,12 @@ char *read_file_to_str(const char *filename) {
tor_assert(filename);
+#if 0
if(strcspn(filename,CONFIG_LEGAL_FILENAME_CHARACTERS) != 0) {
log_fn(LOG_WARN,"Filename %s contains illegal characters.",filename);
return NULL;
}
+#endif
if(stat(filename, &statbuf) < 0) {
log_fn(LOG_INFO,"Could not stat %s.",filename);
diff --git a/src/common/util.h b/src/common/util.h
index ba5319e56..f7e4cc7fa 100644
--- a/src/common/util.h
+++ b/src/common/util.h
@@ -74,12 +74,16 @@ struct timeval {
#define tor_close_socket(s) close(s)
#endif
+#if 0
+/* XXXX Remove this -- These lists are incomplete, and detecting bad filenames
+ * is the OS's job. -NM */
/** Legal characters in a filename */
#ifdef MS_WINDOWS
#define CONFIG_LEGAL_FILENAME_CHARACTERS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_/\\ "
#else
#define CONFIG_LEGAL_FILENAME_CHARACTERS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_/ "
#endif
+#endif
#define HEX_CHARACTERS "0123456789ABCDEFabcdef"