From 7387dab585dadf710dbb72ddd211db1a1ba725c7 Mon Sep 17 00:00:00 2001 From: Derrell Lipman Date: Wed, 30 Mar 2005 02:39:22 +0000 Subject: r6126: added utility for testing smbc_stat() (This used to be commit e1df648ea13651e1df3d209937034b351a7f1c2b) --- examples/libsmbclient/teststat.c | 117 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 examples/libsmbclient/teststat.c (limited to 'examples/libsmbclient/teststat.c') diff --git a/examples/libsmbclient/teststat.c b/examples/libsmbclient/teststat.c new file mode 100644 index 0000000000..46eeb13985 --- /dev/null +++ b/examples/libsmbclient/teststat.c @@ -0,0 +1,117 @@ +#include +#include +#include +#include +#include + +static void +get_auth_data_fn(const char * pServer, + const char * pShare, + char * pWorkgroup, + int maxLenWorkgroup, + char * pUsername, + int maxLenUsername, + char * pPassword, + int maxLenPassword) + +{ + char temp[128]; + + printf("Entered get_auth_data_fn\n"); + + fprintf(stdout, "Need password for //%s/%s\n", pServer, pShare); + + fprintf(stdout, "Username: [%s] ", pUsername); + fgets(temp, sizeof(temp), stdin); + + if (temp[strlen(temp) - 1] == '\n') /* A new line? */ + { + temp[strlen(temp) - 1] = '\0'; + } + + if (temp[0] != '\0') + { + strncpy(pUsername, temp, maxLenUsername - 1); + } + + strcpy(temp, getpass("Password: ")); + + if (temp[strlen(temp) - 1] == '\n') /* A new line? */ + { + temp[strlen(temp) - 1] = '\0'; + } + + if (temp[0] != '\0') + { + strncpy(pPassword, temp, maxLenPassword - 1); + } + + fprintf(stdout, "Workgroup: "); + fgets(temp, sizeof(temp), stdin); + + if (temp[strlen(temp) - 1] == '\n') /* A new line? */ + { + temp[strlen(temp) - 1] = '\0'; + } + + if (temp[0] != '\0') + { + strncpy(pWorkgroup, temp, maxLenWorkgroup - 1); + } + + putchar('\n'); +} + + + +int main(int argc, char * argv[]) +{ + char buffer[16384]; + char * pSmbPath = NULL; + char * pLocalPath = NULL; + struct stat st; + + if (argc == 1) + { + pSmbPath = "smb://RANDOM/Public/small"; + pLocalPath = "/random/home/samba/small"; + } + else if (argc == 2) + { + pSmbPath = argv[1]; + pLocalPath = NULL; + } + else if (argc == 3) + { + pSmbPath = argv[1]; + pLocalPath = argv[2]; + } + else + { + printf("usage: " + "%s [ smb://path/to/file [ /nfs/or/local/path/to/file ] ]\n", + argv[0]); + return 1; + } + + smbc_init(get_auth_data_fn, 0); + + int ret = smbc_stat(pSmbPath, &st); + + printf("SAMBA\nret=%d,\n mtime:%lu/%s ctime:%lu/%s atime:%lu/%s\n", ret, + st.st_mtime, ctime(&st.st_mtime), + st.st_ctime, ctime(&st.st_ctime), + st.st_atime, ctime(&st.st_atime)); + + if (pLocalPath != NULL) + { + ret = stat(pLocalPath, &st); + + printf("LOCAL\nret=%d,\n mtime:%lu/%s ctime:%lu/%s atime:%lu/%s\n", ret, + st.st_mtime, ctime(&st.st_mtime), + st.st_ctime, ctime(&st.st_ctime), + st.st_atime, ctime(&st.st_atime)); + } + + return 0; +} -- cgit From 9840db418bad5a39edc4a32a1786f5e2d2c9dff8 Mon Sep 17 00:00:00 2001 From: Derrell Lipman Date: Thu, 31 Mar 2005 05:06:04 +0000 Subject: r6149: Fixes bugs #2498 and 2484. 1. using smbc_getxattr() et al, one may now request all access control entities in the ACL without getting all other NT attributes. 2. added the ability to exclude specified attributes from the result set provided by smbc_getxattr() et al, when requesting all attributes, all NT attributes, or all DOS attributes. 3. eliminated all compiler warnings, including when --enable-developer compiler flags are in use. removed -Wcast-qual flag from list, as that is specifically to force warnings in the case of casting away qualifiers. Note: In the process of eliminating compiler warnings, a few nasties were discovered. In the file libads/sasl.c, PRIVATE kerberos interfaces are being used; and in libsmb/clikrb5.c, both PRIAVE and DEPRECATED kerberos interfaces are being used. Someone who knows kerberos should look at these and determine if there is an alternate method of accomplishing the task. (This used to be commit 994694f7f26da5099f071e1381271a70407f33bb) --- examples/libsmbclient/teststat.c | 60 +--------------------------------------- 1 file changed, 1 insertion(+), 59 deletions(-) (limited to 'examples/libsmbclient/teststat.c') diff --git a/examples/libsmbclient/teststat.c b/examples/libsmbclient/teststat.c index 46eeb13985..bea34cfc09 100644 --- a/examples/libsmbclient/teststat.c +++ b/examples/libsmbclient/teststat.c @@ -3,65 +3,7 @@ #include #include #include - -static void -get_auth_data_fn(const char * pServer, - const char * pShare, - char * pWorkgroup, - int maxLenWorkgroup, - char * pUsername, - int maxLenUsername, - char * pPassword, - int maxLenPassword) - -{ - char temp[128]; - - printf("Entered get_auth_data_fn\n"); - - fprintf(stdout, "Need password for //%s/%s\n", pServer, pShare); - - fprintf(stdout, "Username: [%s] ", pUsername); - fgets(temp, sizeof(temp), stdin); - - if (temp[strlen(temp) - 1] == '\n') /* A new line? */ - { - temp[strlen(temp) - 1] = '\0'; - } - - if (temp[0] != '\0') - { - strncpy(pUsername, temp, maxLenUsername - 1); - } - - strcpy(temp, getpass("Password: ")); - - if (temp[strlen(temp) - 1] == '\n') /* A new line? */ - { - temp[strlen(temp) - 1] = '\0'; - } - - if (temp[0] != '\0') - { - strncpy(pPassword, temp, maxLenPassword - 1); - } - - fprintf(stdout, "Workgroup: "); - fgets(temp, sizeof(temp), stdin); - - if (temp[strlen(temp) - 1] == '\n') /* A new line? */ - { - temp[strlen(temp) - 1] = '\0'; - } - - if (temp[0] != '\0') - { - strncpy(pWorkgroup, temp, maxLenWorkgroup - 1); - } - - putchar('\n'); -} - +#include "get_auth_data_fn.h" int main(int argc, char * argv[]) -- cgit From 8e6b4b9867b7507c8a1542a5b3389a08ffba722b Mon Sep 17 00:00:00 2001 From: Derrell Lipman Date: Thu, 31 Mar 2005 16:26:15 +0000 Subject: r6151: additional examples/tests for libsmbclient (This used to be commit a3bd496c921dc775b59be4ff2941f4824ffbec03) --- examples/libsmbclient/teststat.c | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) (limited to 'examples/libsmbclient/teststat.c') diff --git a/examples/libsmbclient/teststat.c b/examples/libsmbclient/teststat.c index bea34cfc09..d67f626d78 100644 --- a/examples/libsmbclient/teststat.c +++ b/examples/libsmbclient/teststat.c @@ -9,6 +9,9 @@ int main(int argc, char * argv[]) { char buffer[16384]; + char mtime[32]; + char ctime[32]; + char atime[32]; char * pSmbPath = NULL; char * pLocalPath = NULL; struct stat st; @@ -38,21 +41,29 @@ int main(int argc, char * argv[]) smbc_init(get_auth_data_fn, 0); - int ret = smbc_stat(pSmbPath, &st); + if (smbc_stat(pSmbPath, &st) < 0) + { + perror("smbc_stat"); + return 1; + } - printf("SAMBA\nret=%d,\n mtime:%lu/%s ctime:%lu/%s atime:%lu/%s\n", ret, - st.st_mtime, ctime(&st.st_mtime), - st.st_ctime, ctime(&st.st_ctime), - st.st_atime, ctime(&st.st_atime)); + printf("SAMBA\n mtime:%lu/%s ctime:%lu/%s atime:%lu/%s\n", + st.st_mtime, ctime_r(&st.st_mtime, mtime), + st.st_ctime, ctime_r(&st.st_ctime, ctime), + st.st_atime, ctime_r(&st.st_atime, atime)); if (pLocalPath != NULL) { - ret = stat(pLocalPath, &st); + if (stat(pLocalPath, &st) < 0) + { + perror("stat"); + return 1; + } - printf("LOCAL\nret=%d,\n mtime:%lu/%s ctime:%lu/%s atime:%lu/%s\n", ret, - st.st_mtime, ctime(&st.st_mtime), - st.st_ctime, ctime(&st.st_ctime), - st.st_atime, ctime(&st.st_atime)); + printf("LOCAL\n mtime:%lu/%s ctime:%lu/%s atime:%lu/%s\n", + st.st_mtime, ctime_r(&st.st_mtime, mtime), + st.st_ctime, ctime_r(&st.st_ctime, ctime), + st.st_atime, ctime_r(&st.st_atime, atime)); } return 0; -- cgit From eefc6f0ab4eb9aea426678228b2815c472f79b4a Mon Sep 17 00:00:00 2001 From: Derrell Lipman Date: Thu, 31 Mar 2005 21:17:36 +0000 Subject: r6157: 'editorial changes' to example code (This used to be commit fa0294ddbf7c93c24fca670b7ed52821a0507174) --- examples/libsmbclient/teststat.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'examples/libsmbclient/teststat.c') diff --git a/examples/libsmbclient/teststat.c b/examples/libsmbclient/teststat.c index d67f626d78..29517efb6f 100644 --- a/examples/libsmbclient/teststat.c +++ b/examples/libsmbclient/teststat.c @@ -8,6 +8,7 @@ int main(int argc, char * argv[]) { + int debug = 0; char buffer[16384]; char mtime[32]; char ctime[32]; @@ -39,7 +40,7 @@ int main(int argc, char * argv[]) return 1; } - smbc_init(get_auth_data_fn, 0); + smbc_init(get_auth_data_fn, debug); if (smbc_stat(pSmbPath, &st) < 0) { -- cgit From 9d36d5ee2dc42b55e97ff23f2ee2b9ac11aba116 Mon Sep 17 00:00:00 2001 From: Derrell Lipman Date: Sun, 25 Dec 2005 02:00:35 +0000 Subject: r12467: r12029@cabra: derrell | 2005-12-24 20:25:59 -0500 add another libsmbclient test program (This used to be commit 133cd3952b7f5fc9e9ca8d82a33ed1272067a6c8) --- examples/libsmbclient/teststat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/libsmbclient/teststat.c') diff --git a/examples/libsmbclient/teststat.c b/examples/libsmbclient/teststat.c index 29517efb6f..86c69e4e2c 100644 --- a/examples/libsmbclient/teststat.c +++ b/examples/libsmbclient/teststat.c @@ -48,7 +48,7 @@ int main(int argc, char * argv[]) return 1; } - printf("SAMBA\n mtime:%lu/%s ctime:%lu/%s atime:%lu/%s\n", + printf("\nSAMBA\n mtime:%lu/%s ctime:%lu/%s atime:%lu/%s\n", st.st_mtime, ctime_r(&st.st_mtime, mtime), st.st_ctime, ctime_r(&st.st_ctime, ctime), st.st_atime, ctime_r(&st.st_atime, atime)); -- cgit