summaryrefslogtreecommitdiff
path: root/examples/libsmbclient/smbwrapper/smbw_stat.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-02-03 15:06:48 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-02-09 01:58:24 +0100
commit4328f3ccf37d9a1baadbc55f658902e3b16ff125 (patch)
tree203f4238cd13e283b423ee97df6ce2714298fd7f /examples/libsmbclient/smbwrapper/smbw_stat.c
parentb93326b9689d0ad935eed35f7cf5201ad04ac1ff (diff)
downloadsamba-4328f3ccf37d9a1baadbc55f658902e3b16ff125.tar.gz
samba-4328f3ccf37d9a1baadbc55f658902e3b16ff125.tar.bz2
samba-4328f3ccf37d9a1baadbc55f658902e3b16ff125.zip
smbwrapper: Remove smbwrapper
There are now many better ways to access a remote SMB filesystem, which do not rely on LD_PRELOAD and the associated dangers. FUSE, gvfs and the CIFS VFS are all much better options which do not require knowing every possible libc entry point that can deal with a file descriptor. As an example of the maintainence that would be required to keep this going, recent changes to deal with thread races and close-on-exec have resulted in dup3(), but this isn't currently mapped. While this would not be hard to add, it illistrates why it is better to move to an interface designed for this task. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Thu Feb 9 01:58:24 CET 2012 on sn-devel-104
Diffstat (limited to 'examples/libsmbclient/smbwrapper/smbw_stat.c')
-rw-r--r--examples/libsmbclient/smbwrapper/smbw_stat.c100
1 files changed, 0 insertions, 100 deletions
diff --git a/examples/libsmbclient/smbwrapper/smbw_stat.c b/examples/libsmbclient/smbwrapper/smbw_stat.c
deleted file mode 100644
index 7b2b011282..0000000000
--- a/examples/libsmbclient/smbwrapper/smbw_stat.c
+++ /dev/null
@@ -1,100 +0,0 @@
-/*
- Unix SMB/Netbios implementation.
- Version 2.0
- SMB wrapper stat functions
- Copyright (C) Andrew Tridgell 1998
- Copyright (C) Derrell Lipman 2003-2005
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#include "smbw.h"
-
-static void copy_stat(struct SMBW_stat *external, struct stat *internal)
-{
- external->s_dev = internal->st_dev;
- external->s_ino = internal->st_ino;
- external->s_mode = internal->st_mode;
- external->s_nlink = internal->st_nlink;
- external->s_uid = internal->st_uid;
- external->s_gid = internal->st_gid;
- external->s_rdev = internal->st_rdev;
- external->s_size = internal->st_size;
- external->s_blksize = internal->st_blksize;
- external->s_blocks = internal->st_blocks;
- external->s_atime = internal->st_atime;
- external->s_mtime = internal->st_mtime;
- external->s_ctime = internal->st_ctime;
-}
-
-
-/*****************************************************
-a wrapper for fstat()
-*******************************************************/
-int smbw_fstat(int fd_smbw, struct SMBW_stat *st)
-{
- int fd_client = smbw_fd_map[fd_smbw];
- struct stat statbuf;
-
- if (smbc_fstat(fd_client, &statbuf) < 0) {
- return -1;
- }
-
- copy_stat(st, &statbuf);
-
- return 0;
-}
-
-
-/*****************************************************
-a wrapper for stat()
-*******************************************************/
-int smbw_stat(const char *fname, struct SMBW_stat *st)
-{
- int simulate;
- char *p;
- char path[PATH_MAX];
- struct stat statbuf;
-
- SMBW_INIT();
-
- smbw_fix_path(fname, path);
-
- p = path + 6; /* look just past smb:// */
- simulate = (strchr(p, '/') == NULL);
-
- /* special case for full-network scan, workgroups, and servers */
- if (simulate) {
- statbuf.st_dev = 0;
- statbuf.st_ino = 0;
- statbuf.st_mode = 0040777;
- statbuf.st_nlink = 1;
- statbuf.st_uid = 0;
- statbuf.st_gid = 0;
- statbuf.st_rdev = 0;
- statbuf.st_size = 0;
- statbuf.st_blksize = 1024;
- statbuf.st_blocks = 1;
- statbuf.st_atime = 0; /* beginning of epoch */
- statbuf.st_mtime = 0; /* beginning of epoch */
- statbuf.st_ctime = 0; /* beginning of epoch */
-
- } else if (smbc_stat(path, &statbuf) < 0) {
- return -1;
- }
-
- copy_stat(st, &statbuf);
-
- return 0;
-}