1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00
samba-mirror/source3/smbwrapper/smbw.c

1735 lines
33 KiB
C
Raw Normal View History

/*
Unix SMB/Netbios implementation.
Version 2.0
SMB wrapper functions
Copyright (C) Andrew Tridgell 1998
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 2 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, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "includes.h"
#include "smbw.h"
#include "wrapper.h"
static pstring smb_cwd;
struct smbw_server {
struct smbw_server *next, *prev;
struct cli_state cli;
char *server_name;
char *share_name;
dev_t dev;
};
struct smbw_file {
struct smbw_file *next, *prev;
int cli_fd, fd;
char *fname;
off_t offset;
struct smbw_server *srv;
};
struct smbw_dir {
struct smbw_dir *next, *prev;
int fd;
int offset, count, malloced;
struct smbw_server *srv;
struct file_info *list;
char *path;
};
static struct smbw_file *smbw_files;
static struct smbw_dir *smbw_dirs;
static struct smbw_server *smbw_srvs;
static struct bitmap *file_bmap;
static pstring local_machine;
extern int DEBUGLEVEL;
static int smbw_busy;
/*****************************************************
initialise structures
*******************************************************/
void smbw_init(void)
{
extern BOOL in_client;
static int initialised;
static pstring servicesf = CONFIGFILE;
extern FILE *dbf;
char *p;
if (initialised) return;
initialised = 1;
smbw_busy++;
DEBUGLEVEL = 0;
setup_logging("smbw",True);
dbf = stderr;
if ((p=getenv("SMBW_LOGFILE"))) {
dbf = fopen(p, "a");
}
file_bmap = bitmap_allocate(SMBW_MAX_OPEN);
if (!file_bmap) {
exit(1);
}
charset_initialise();
in_client = True;
load_interfaces();
if (!lp_load(servicesf,True,False,False)) {
exit(1);
}
get_myname(local_machine,NULL);
if ((p=getenv("SMBW_DEBUG"))) {
DEBUGLEVEL = atoi(p);
}
if ((p=getenv(SMBW_PWD_ENV))) {
pstrcpy(smb_cwd, p);
DEBUG(4,("Initial cwd from smb_cwd is %s\n", smb_cwd));
} else {
sys_getwd(smb_cwd);
DEBUG(4,("Initial cwd from getwd is %s\n", smb_cwd));
}
smbw_busy--;
}
/*****************************************************
determine if a file descriptor is a smb one
*******************************************************/
BOOL smbw_fd(int fd)
{
if (smbw_busy) return False;
return (fd >= SMBW_FD_OFFSET);
}
/*****************************************************
a crude inode number generator
*******************************************************/
ino_t smbw_inode(const char *name)
{
return (ino_t)str_checksum(name);
}
/*****************************************************
remove redundent stuff from a filename
*******************************************************/
void clean_fname(char *name)
{
char *p, *p2;
int l;
int modified = 1;
if (!name) return;
while (modified) {
modified = 0;
DEBUG(5,("cleaning %s\n", name));
if ((p=strstr(name,"/./"))) {
modified = 1;
while (*p) {
p[0] = p[2];
p++;
}
}
if ((p=strstr(name,"//"))) {
modified = 1;
while (*p) {
p[0] = p[1];
p++;
}
}
if (strcmp(name,"/../")==0) {
modified = 1;
name[1] = 0;
}
if ((p=strstr(name,"/../"))) {
modified = 1;
for (p2=(p>name?p-1:p);p2>name;p2--) {
if (p2[0] == '/') break;
}
while (*p2) {
p2[0] = p2[3];
p2++;
}
}
if (strcmp(name,"/..")==0) {
modified = 1;
name[1] = 0;
}
l = strlen(name);
p = l>=3?(name+l-3):name;
if (strcmp(p,"/..")==0) {
modified = 1;
for (p2=p-1;p2>name;p2--) {
if (p2[0] == '/') break;
}
if (p2==name) {
p[0] = '/';
p[1] = 0;
} else {
p2[0] = 0;
}
}
l = strlen(name);
p = l>=2?(name+l-2):name;
if (strcmp(p,"/.")==0) {
if (p == name) {
p[1] = 0;
} else {
p[0] = 0;
}
}
if (strncmp(p=name,"./",2) == 0) {
modified = 1;
do {
p[0] = p[2];
} while (*p++);
}
l = strlen(p=name);
if (l > 1 && p[l-1] == '/') {
modified = 1;
p[l-1] = 0;
}
}
}
/*****************************************************
parse a smb path into its components.
*******************************************************/
char *smbw_parse_path(const char *fname, char *server, char *share, char *path)
{
static pstring s;
char *p, *p2;
int len;
*server = *share = *path = 0;
if (fname[0] == '/') {
pstrcpy(s, fname);
} else {
slprintf(s,sizeof(s)-1, "%s/%s", smb_cwd, fname);
}
clean_fname(s);
DEBUG(5,("cleaned %s (fname=%s cwd=%s)\n",
s, fname, smb_cwd));
if (strncmp(s,SMBW_PREFIX,strlen(SMBW_PREFIX))) return s;
p = s + strlen(SMBW_PREFIX);
p2 = strchr(p,'/');
if (p2) {
len = (int)(p2-p);
} else {
len = strlen(p);
}
len = MIN(len,sizeof(fstring)-1);
strncpy(server, p, len);
server[len] = 0;
p = p2;
if (!p) {
fstrcpy(share,"IPC$");
pstrcpy(path,"");
goto ok;
}
p++;
p2 = strchr(p,'/');
if (p2) {
len = (int)(p2-p);
} else {
len = strlen(p);
}
len = MIN(len,sizeof(fstring)-1);
strncpy(share, p, len);
share[len] = 0;
p = p2;
if (!p) {
pstrcpy(path,"\\");
goto ok;
}
pstrcpy(path,p);
string_sub(path, "/", "\\");
ok:
DEBUG(5,("parsed path name=%s cwd=%s [%s] [%s] [%s]\n",
fname, smb_cwd,
server, share, path));
return s;
}
/*****************************************************
determine if a path name (possibly relative) is in the
smb name space
*******************************************************/
BOOL smbw_path(const char *path)
{
fstring server, share;
pstring s;
char *cwd;
int l=strlen(SMBW_PREFIX)-1;
if (path[0] == '/' && strncmp(path,SMBW_PREFIX,l)) {
return False;
}
if (smbw_busy) return False;
smbw_init();
DEBUG(3,("smbw_path(%s)\n", path));
cwd = smbw_parse_path(path, server, share, s);
if (strncmp(cwd,SMBW_PREFIX,l) == 0 &&
(cwd[l] == '/' || cwd[l] == 0)) {
return True;
}
return False;
}
/*****************************************************
return a unix errno from a SMB error pair
*******************************************************/
int smbw_errno(struct cli_state *c)
{
uint8 eclass;
uint32 ecode;
int ret;
ret = cli_error(c, &eclass, &ecode);
if (ret) {
DEBUG(3,("smbw_error %d %d (0x%x)\n",
(int)eclass, (int)ecode, (int)ecode));
}
return ret;
}
/*****************************************************
return a connection to a server (existing or new)
*******************************************************/
struct smbw_server *smbw_server(char *server, char *share)
{
struct smbw_server *srv=NULL;
static struct cli_state c;
char *username;
char *password;
char *workgroup;
struct nmb_name called, calling;
username = getenv("SMBW_USER");
if (!username) username = getenv("USER");
if (!username) username = "guest";
workgroup = getenv("SMBW_WORKGROUP");
if (!workgroup) workgroup = lp_workgroup();
password = getenv("SMBW_PASSWORD");
if (!password) password = "";
/* try to use an existing connection */
for (srv=smbw_srvs;srv;srv=srv->next) {
if (strcmp(server,srv->server_name)==0 &&
strcmp(share,srv->share_name)==0) return srv;
}
if (server[0] == 0) {
errno = EPERM;
return NULL;
}
/* have to open a new connection */
if (!cli_initialise(&c) || !cli_connect(&c, server, NULL)) {
errno = ENOENT;
return NULL;
}
make_nmb_name(&calling, local_machine, 0x0, "");
make_nmb_name(&called , server, 0x20, "");
if (!cli_session_request(&c, &calling, &called)) {
cli_shutdown(&c);
errno = ENOENT;
return NULL;
}
if (!cli_negprot(&c)) {
cli_shutdown(&c);
errno = ENOENT;
return NULL;
}
if (!cli_session_setup(&c, username,
password, strlen(password),
password, strlen(password),
workgroup)) {
cli_shutdown(&c);
errno = EPERM;
return NULL;
}
if (!cli_send_tconX(&c, share,
strstr(share,"IPC$")?"IPC":"A:",
password, strlen(password)+1)) {
errno = smbw_errno(&c);
cli_shutdown(&c);
return NULL;
}
srv = (struct smbw_server *)malloc(sizeof(*srv));
if (!srv) {
errno = ENOMEM;
goto failed;
}
ZERO_STRUCTP(srv);
srv->cli = c;
srv->dev = (dev_t)(str_checksum(server) ^ str_checksum(share));
srv->server_name = strdup(server);
if (!srv->server_name) {
errno = ENOMEM;
goto failed;
}
srv->share_name = strdup(share);
if (!srv->share_name) {
errno = ENOMEM;
goto failed;
}
/* some programs play with file descriptors fairly intimately. We
try to get out of the way by duping to a high fd number */
if (fcntl(SMBW_CLI_FD + srv->cli.fd, F_GETFD) && errno == EBADF) {
if (dup2(srv->cli.fd,SMBW_CLI_FD+srv->cli.fd) ==
srv->cli.fd+SMBW_CLI_FD) {
close(srv->cli.fd);
srv->cli.fd += SMBW_CLI_FD;
}
}
DLIST_ADD(smbw_srvs, srv);
return srv;
failed:
cli_shutdown(&c);
if (!srv) return NULL;
if (srv->server_name) free(srv->server_name);
if (srv->share_name) free(srv->share_name);
free(srv);
return NULL;
}
/*****************************************************
map a fd to a smbw_file structure
*******************************************************/
struct smbw_file *smbw_file(int fd)
{
struct smbw_file *file;
for (file=smbw_files;file;file=file->next) {
if (file->fd == fd) return file;
}
return NULL;
}
/*****************************************************
map a fd to a smbw_dir structure
*******************************************************/
struct smbw_dir *smbw_dir(int fd)
{
struct smbw_dir *dir;
for (dir=smbw_dirs;dir;dir=dir->next) {
if (dir->fd == fd) return dir;
}
return NULL;
}
/*****************************************************
check if a DIR* is one of ours
*******************************************************/
BOOL smbw_dirp(struct smbw_dir *d)
{
struct smbw_dir *dir;
for (dir=smbw_dirs;dir;dir=dir->next) {
if (dir == d) return True;
}
return False;
}
/*****************************************************
setup basic info in a stat structure
*******************************************************/
void smbw_setup_stat(struct stat *st, char *fname, size_t size, int mode)
{
ZERO_STRUCTP(st);
if (IS_DOS_DIR(mode)) {
st->st_mode = SMBW_DIR_MODE;
} else {
st->st_mode = SMBW_FILE_MODE;
}
st->st_size = size;
st->st_blksize = 512;
st->st_blocks = (size+511)/512;
st->st_uid = getuid();
st->st_gid = getgid();
st->st_ino = smbw_inode(fname);
}
/*****************************************************
try to do a QPATHINFO and if that fails then do a getatr
this is needed because win95 sometimes refuses the qpathinfo
*******************************************************/
static BOOL smbw_getatr(struct smbw_server *srv, char *path,
uint32 *mode, size_t *size,
time_t *c_time, time_t *a_time, time_t *m_time)
{
if (cli_qpathinfo(&srv->cli, path, c_time, a_time, m_time,
size, mode)) return True;
/* if this is NT then don't bother with the getatr */
if (srv->cli.capabilities & CAP_NT_SMBS) return False;
if (cli_getatr(&srv->cli, path, mode, size, m_time)) {
a_time = c_time = m_time;
return True;
}
return False;
}
/*****************************************************
free a smbw_dir structure and all entries
*******************************************************/
static void free_dir(struct smbw_dir *dir)
{
if (dir->list) {
free(dir->list);
}
if (dir->path) free(dir->path);
ZERO_STRUCTP(dir);
free(dir);
}
static struct smbw_dir *cur_dir;
/*****************************************************
add a entry to a directory listing
*******************************************************/
void smbw_dir_add(struct file_info *finfo)
{
DEBUG(5,("%s\n", finfo->name));
if (cur_dir->malloced == cur_dir->count) {
cur_dir->list = (struct file_info *)Realloc(cur_dir->list,
sizeof(cur_dir->list[0])*
(cur_dir->count+100));
if (!cur_dir->list) {
/* oops */
return;
}
cur_dir->malloced += 100;
}
cur_dir->list[cur_dir->count] = *finfo;
cur_dir->count++;
}
/*****************************************************
add a entry to a directory listing
*******************************************************/
void smbw_share_add(const char *share, uint32 type, const char *comment)
{
struct file_info finfo;
ZERO_STRUCT(finfo);
pstrcpy(finfo.name, share);
finfo.mode = aRONLY | aDIR;
smbw_dir_add(&finfo);
}
/*****************************************************
open a directory on the server
*******************************************************/
int smbw_dir_open(const char *fname)
{
fstring server, share;
pstring path;
struct smbw_server *srv=NULL;
struct smbw_dir *dir=NULL;
pstring mask;
int fd;
char *s;
DEBUG(4,("%s\n", __FUNCTION__));
if (!fname) {
errno = EINVAL;
return -1;
}
smbw_init();
/* work out what server they are after */
s = smbw_parse_path(fname, server, share, path);
DEBUG(4,("dir_open share=%s\n", share));
/* get a connection to the server */
srv = smbw_server(server, share);
if (!srv) {
/* smbw_server sets errno */
goto failed;
}
dir = (struct smbw_dir *)malloc(sizeof(*dir));
if (!dir) {
errno = ENOMEM;
goto failed;
}
ZERO_STRUCTP(dir);
cur_dir = dir;
slprintf(mask, sizeof(mask)-1, "%s\\*", path);
string_sub(mask,"\\\\","\\");
if (strcmp(share,"IPC$") == 0) {
DEBUG(4,("doing NetShareEnum\n"));
if (cli_RNetShareEnum(&srv->cli, smbw_share_add) <= 0) {
errno = smbw_errno(&srv->cli);
goto failed;
}
} else {
if (cli_list(&srv->cli, mask, aHIDDEN|aSYSTEM|aDIR,
smbw_dir_add) <= 0) {
errno = smbw_errno(&srv->cli);
goto failed;
}
}
cur_dir = NULL;
fd = bitmap_find(file_bmap, 0);
if (fd == -1) {
errno = EMFILE;
goto failed;
}
DLIST_ADD(smbw_dirs, dir);
bitmap_set(file_bmap, fd);
dir->fd = fd + SMBW_FD_OFFSET;
dir->srv = srv;
dir->path = strdup(s);
DEBUG(4,(" -> %d\n", dir->count));
return dir->fd;
failed:
if (dir) {
free_dir(dir);
}
return -1;
}
/*****************************************************
a wrapper for open()
*******************************************************/
int smbw_open(const char *fname, int flags, mode_t mode)
{
fstring server, share;
pstring path;
struct smbw_server *srv=NULL;
int eno, fd = -1;
struct smbw_file *file=NULL;
DEBUG(4,("%s\n", __FUNCTION__));
smbw_init();
if (!fname) {
errno = EINVAL;
return -1;
}
smbw_busy++;
/* work out what server they are after */
smbw_parse_path(fname, server, share, path);
/* get a connection to the server */
srv = smbw_server(server, share);
if (!srv) {
/* smbw_server sets errno */
goto failed;
}
if (path[strlen(path)-1] == '\\') {
fd = -1;
} else {
fd = cli_open(&srv->cli, path, flags, DENY_NONE);
}
if (fd == -1) {
/* it might be a directory. Maybe we should use chkpath? */
fd = smbw_dir_open(fname);
smbw_busy--;
return fd;
}
if (fd == -1) {
errno = eno;
goto failed;
}
file = (struct smbw_file *)malloc(sizeof(*file));
if (!file) {
errno = ENOMEM;
goto failed;
}
ZERO_STRUCTP(file);
file->cli_fd = fd;
file->fname = strdup(path);
if (!file->fname) {
errno = ENOMEM;
goto failed;
}
file->srv = srv;
file->fd = bitmap_find(file_bmap, 0);
if (file->fd == -1) {
errno = EMFILE;
goto failed;
}
bitmap_set(file_bmap, file->fd);
file->fd += SMBW_FD_OFFSET;
DLIST_ADD(smbw_files, file);
DEBUG(4,("opened %s\n", fname));
smbw_busy--;
return file->fd;
failed:
if (fd != -1) {
cli_close(&srv->cli, fd);
}
if (file) {
if (file->fname) {
free(file->fname);
}
free(file);
}
smbw_busy--;
return -1;
}
/*****************************************************
a wrapper for fstat() on a directory
*******************************************************/
int smbw_dir_fstat(int fd, struct stat *st)
{
struct smbw_dir *dir;
DEBUG(4,("%s\n", __FUNCTION__));
dir = smbw_dir(fd);
if (!dir) {
errno = EBADF;
return -1;
}
ZERO_STRUCTP(st);
smbw_setup_stat(st, "", dir->count*sizeof(struct dirent), aDIR);
st->st_dev = dir->srv->dev;
return 0;
}
/*****************************************************
a wrapper for fstat()
*******************************************************/
int smbw_fstat(int fd, struct stat *st)
{
struct smbw_file *file;
time_t c_time, a_time, m_time;
uint32 size;
int mode;
DEBUG(4,("%s\n", __FUNCTION__));
smbw_busy++;
file = smbw_file(fd);
if (!file) {
int ret = smbw_dir_fstat(fd, st);
smbw_busy--;
return ret;
}
if (!cli_qfileinfo(&file->srv->cli, file->cli_fd,
&mode, &size, &c_time, &a_time, &m_time) &&
!cli_getattrE(&file->srv->cli, file->cli_fd,
&mode, &size, &c_time, &a_time, &m_time)) {
errno = EINVAL;
smbw_busy--;
return -1;
}
smbw_setup_stat(st, file->fname, size, mode);
st->st_atime = a_time;
st->st_ctime = c_time;
st->st_mtime = m_time;
st->st_dev = file->srv->dev;
DEBUG(4,("%s - OK\n", __FUNCTION__));
smbw_busy--;
return 0;
}
/*****************************************************
a wrapper for stat()
*******************************************************/
int smbw_stat(const char *fname, struct stat *st)
{
struct smbw_server *srv;
fstring server, share;
pstring path;
time_t m_time=0, a_time=0, c_time=0;
size_t size=0;
uint32 mode=0;
DEBUG(4,("%s (%s)\n", __FUNCTION__, fname));
if (!fname) {
errno = EINVAL;
return -1;
}
smbw_init();
smbw_busy++;
/* work out what server they are after */
smbw_parse_path(fname, server, share, path);
/* get a connection to the server */
srv = smbw_server(server, share);
if (!srv) {
/* smbw_server sets errno */
goto failed;
}
if (strcmp(share,"IPC$") == 0) {
mode = aDIR | aRONLY;
} else {
if (!smbw_getatr(srv, path,
&mode, &size, &c_time, &a_time, &m_time)) {
errno = smbw_errno(&srv->cli);
goto failed;
}
}
smbw_setup_stat(st, path, size, mode);
st->st_atime = time(NULL);
st->st_ctime = m_time;
st->st_mtime = m_time;
st->st_dev = srv->dev;
smbw_busy--;
return 0;
failed:
smbw_busy--;
return -1;
}
/*****************************************************
a wrapper for read()
*******************************************************/
ssize_t smbw_read(int fd, void *buf, size_t count)
{
struct smbw_file *file;
int ret;
DEBUG(4,("%s %d\n", __FUNCTION__, (int)count));
smbw_busy++;
file = smbw_file(fd);
if (!file) {
errno = EBADF;
smbw_busy--;
return -1;
}
ret = cli_read(&file->srv->cli, file->cli_fd, buf, file->offset, count);
if (ret == -1) {
errno = smbw_errno(&file->srv->cli);
smbw_busy--;
return -1;
}
file->offset += ret;
smbw_busy--;
return ret;
}
/*****************************************************
a wrapper for write()
*******************************************************/
ssize_t smbw_write(int fd, void *buf, size_t count)
{
struct smbw_file *file;
int ret;
DEBUG(4,("%s\n", __FUNCTION__));
smbw_busy++;
file = smbw_file(fd);
if (!file) {
DEBUG(3,("bad fd in read\n"));
errno = EBADF;
smbw_busy--;
return -1;
}
ret = cli_write(&file->srv->cli, file->cli_fd, buf, file->offset, count);
if (ret == -1) {
errno = smbw_errno(&file->srv->cli);
smbw_busy--;
return -1;
}
file->offset += ret;
smbw_busy--;
return ret;
}
/*****************************************************
close a directory handle
*******************************************************/
int smbw_dir_close(int fd)
{
struct smbw_dir *dir;
DEBUG(4,("%s\n", __FUNCTION__));
dir = smbw_dir(fd);
if (!dir) {
DEBUG(4,("%s(%d)\n", __FUNCTION__, __LINE__));
errno = EBADF;
return -1;
}
bitmap_clear(file_bmap, dir->fd - SMBW_FD_OFFSET);
DLIST_REMOVE(smbw_dirs, dir);
free_dir(dir);
return 0;
}
/*****************************************************
a wrapper for close()
*******************************************************/
int smbw_close(int fd)
{
struct smbw_file *file;
DEBUG(4,("%s\n", __FUNCTION__));
smbw_busy++;
file = smbw_file(fd);
if (!file) {
int ret = smbw_dir_close(fd);
smbw_busy--;
return ret;
}
if (!cli_close(&file->srv->cli, file->cli_fd)) {
errno = smbw_errno(&file->srv->cli);
smbw_busy--;
return -1;
}
bitmap_clear(file_bmap, file->fd - SMBW_FD_OFFSET);
DLIST_REMOVE(smbw_files, file);
free(file->fname);
ZERO_STRUCTP(file);
free(file);
smbw_busy--;
return 0;
}
/*****************************************************
a wrapper for fcntl()
*******************************************************/
int smbw_fcntl(int fd, int cmd, long arg)
{
DEBUG(4,("%s\n", __FUNCTION__));
return 0;
}
/*****************************************************
a wrapper for getdents()
*******************************************************/
int smbw_getdents(unsigned int fd, struct dirent *dirp, int count)
{
struct smbw_dir *dir;
int n=0;
DEBUG(4,("%s\n", __FUNCTION__));
smbw_busy++;
dir = smbw_dir(fd);
if (!dir) {
errno = EBADF;
smbw_busy--;
return -1;
}
while (count>=sizeof(*dirp) && (dir->offset < dir->count)) {
dirp->d_off = (dir->offset+1)*sizeof(*dirp);
dirp->d_reclen = sizeof(*dirp);
safe_strcpy(&dirp->d_name[0], dir->list[dir->offset].name,
sizeof(dirp->d_name)-1);
dirp->d_ino = smbw_inode(dir->list[dir->offset].name);
dir->offset++;
count -= dirp->d_reclen;
if (dir->offset == dir->count) {
dirp->d_off = -1;
}
dirp++;
n++;
}
smbw_busy--;
return n*sizeof(*dirp);
}
/*****************************************************
a wrapper for access()
*******************************************************/
int smbw_access(const char *name, int mode)
{
struct stat st;
/* how do we map this properly ?? */
return smbw_stat(name, &st);
}
/*****************************************************
a wrapper for realink() - needed for correct errno setting
*******************************************************/
int smbw_readlink(const char *path, char *buf, size_t bufsize)
{
struct stat st;
int ret;
ret = smbw_stat(path, &st);
if (ret != 0) {
DEBUG(4,("readlink(%s) failed\n", path));
return -1;
}
/* it exists - say it isn't a link */
DEBUG(4,("readlink(%s) not a link\n", path));
errno = EINVAL;
return -1;
}
/*****************************************************
a wrapper for chdir()
*******************************************************/
int smbw_chdir(const char *name)
{
struct smbw_server *srv;
fstring server, share;
pstring path;
uint32 mode = aDIR;
char *cwd;
smbw_init();
if (smbw_busy) return real_chdir(cwd);
smbw_busy++;
if (!name) {
errno = EINVAL;
goto failed;
}
DEBUG(4,("%s (%s)\n", __FUNCTION__, name));
/* work out what server they are after */
cwd = smbw_parse_path(name, server, share, path);
if (strncmp(cwd,SMBW_PREFIX,strlen(SMBW_PREFIX))) {
if (real_chdir(cwd) == 0) {
DEBUG(4,("set SMBW_CWD to %s\n", cwd));
pstrcpy(smb_cwd, cwd);
if (setenv(SMBW_PWD_ENV, smb_cwd, 1)) {
DEBUG(4,("setenv failed\n"));
}
goto success;
}
errno = ENOENT;
goto failed;
}
/* get a connection to the server */
srv = smbw_server(server, share);
if (!srv) {
/* smbw_server sets errno */
goto failed;
}
if (strcmp(share,"IPC$") &&
!smbw_getatr(srv, path,
&mode, NULL, NULL, NULL, NULL)) {
errno = smbw_errno(&srv->cli);
goto failed;
}
if (!(mode & aDIR)) {
errno = ENOTDIR;
goto failed;
}
DEBUG(4,("set SMBW_CWD2 to %s\n", cwd));
pstrcpy(smb_cwd, cwd);
if (setenv(SMBW_PWD_ENV, smb_cwd, 1)) {
DEBUG(4,("setenv failed\n"));
}
/* we don't want the old directory to be busy */
real_chdir("/");
success:
smbw_busy--;
return 0;
failed:
smbw_busy--;
return -1;
}
/*****************************************************
a wrapper for unlink()
*******************************************************/
int smbw_unlink(const char *fname)
{
struct smbw_server *srv;
fstring server, share;
pstring path;
DEBUG(4,("%s (%s)\n", __FUNCTION__, fname));
if (!fname) {
errno = EINVAL;
return -1;
}
smbw_init();
smbw_busy++;
/* work out what server they are after */
smbw_parse_path(fname, server, share, path);
/* get a connection to the server */
srv = smbw_server(server, share);
if (!srv) {
/* smbw_server sets errno */
goto failed;
}
if (!cli_unlink(&srv->cli, path)) {
errno = smbw_errno(&srv->cli);
goto failed;
}
smbw_busy--;
return 0;
failed:
smbw_busy--;
return -1;
}
/*****************************************************
a wrapper for rename()
*******************************************************/
int smbw_rename(const char *oldname, const char *newname)
{
struct smbw_server *srv;
fstring server1, share1;
pstring path1;
fstring server2, share2;
pstring path2;
DEBUG(4,("%s (%s, %s)\n", __FUNCTION__, oldname, newname));
if (!oldname || !newname) {
errno = EINVAL;
return -1;
}
smbw_init();
smbw_busy++;
/* work out what server they are after */
smbw_parse_path(oldname, server1, share1, path1);
smbw_parse_path(newname, server2, share2, path2);
if (strcmp(server1, server2) || strcmp(share1, share2)) {
/* can't cross filesystems */
errno = EXDEV;
return -1;
}
/* get a connection to the server */
srv = smbw_server(server1, share1);
if (!srv) {
/* smbw_server sets errno */
goto failed;
}
if (!cli_rename(&srv->cli, path1, path2)) {
errno = smbw_errno(&srv->cli);
goto failed;
}
smbw_busy--;
return 0;
failed:
smbw_busy--;
return -1;
}
/*****************************************************
a wrapper for utime()
*******************************************************/
int smbw_utime(const char *fname, struct utimbuf *buf)
{
struct smbw_server *srv;
fstring server, share;
pstring path;
uint32 mode;
DEBUG(4,("%s (%s)\n", __FUNCTION__, fname));
if (!fname) {
errno = EINVAL;
return -1;
}
smbw_init();
smbw_busy++;
/* work out what server they are after */
smbw_parse_path(fname, server, share, path);
/* get a connection to the server */
srv = smbw_server(server, share);
if (!srv) {
/* smbw_server sets errno */
goto failed;
}
if (!cli_getatr(&srv->cli, path, &mode, NULL, NULL)) {
errno = smbw_errno(&srv->cli);
goto failed;
}
if (!cli_setatr(&srv->cli, path, mode, buf->modtime)) {
errno = smbw_errno(&srv->cli);
goto failed;
}
smbw_busy--;
return 0;
failed:
smbw_busy--;
return -1;
}
/*****************************************************
a wrapper for chown()
*******************************************************/
int smbw_chown(const char *fname, uid_t owner, gid_t group)
{
struct smbw_server *srv;
fstring server, share;
pstring path;
uint32 mode;
DEBUG(4,("%s (%s)\n", __FUNCTION__, fname));
if (!fname) {
errno = EINVAL;
return -1;
}
smbw_init();
smbw_busy++;
/* work out what server they are after */
smbw_parse_path(fname, server, share, path);
/* get a connection to the server */
srv = smbw_server(server, share);
if (!srv) {
/* smbw_server sets errno */
goto failed;
}
if (!cli_getatr(&srv->cli, path, &mode, NULL, NULL)) {
errno = smbw_errno(&srv->cli);
goto failed;
}
/* assume success */
smbw_busy--;
return 0;
failed:
smbw_busy--;
return -1;
}
/*****************************************************
a wrapper for chmod()
*******************************************************/
int smbw_chmod(const char *fname, mode_t newmode)
{
struct smbw_server *srv;
fstring server, share;
pstring path;
uint32 mode;
DEBUG(4,("%s (%s)\n", __FUNCTION__, fname));
if (!fname) {
errno = EINVAL;
return -1;
}
smbw_init();
smbw_busy++;
/* work out what server they are after */
smbw_parse_path(fname, server, share, path);
/* get a connection to the server */
srv = smbw_server(server, share);
if (!srv) {
/* smbw_server sets errno */
goto failed;
}
if (!cli_getatr(&srv->cli, path, &mode, NULL, NULL)) {
errno = smbw_errno(&srv->cli);
goto failed;
}
/* assume success for the moment - need to add attribute mapping */
smbw_busy--;
return 0;
failed:
smbw_busy--;
return -1;
}
/*****************************************************
a wrapper for lseek() on directories
*******************************************************/
off_t smbw_dir_lseek(int fd, off_t offset, int whence)
{
struct smbw_dir *dir;
off_t ret;
DEBUG(4,("%s offset=%d whence=%d\n", __FUNCTION__,
(int)offset, whence));
dir = smbw_dir(fd);
if (!dir) {
errno = EBADF;
return -1;
}
switch (whence) {
case SEEK_SET:
dir->offset = offset/sizeof(struct dirent);
break;
case SEEK_CUR:
dir->offset += offset/sizeof(struct dirent);
break;
case SEEK_END:
dir->offset = (dir->count * sizeof(struct dirent)) + offset;
dir->offset /= sizeof(struct dirent);
break;
}
ret = dir->offset * sizeof(struct dirent);
DEBUG(4,(" -> %d\n", (int)ret));
return ret;
}
/*****************************************************
a wrapper for lseek()
*******************************************************/
off_t smbw_lseek(int fd, off_t offset, int whence)
{
struct smbw_file *file;
uint32 size;
DEBUG(4,("%s\n", __FUNCTION__));
smbw_busy++;
file = smbw_file(fd);
if (!file) {
off_t ret = smbw_dir_lseek(fd, offset, whence);
smbw_busy--;
return ret;
}
switch (whence) {
case SEEK_SET:
file->offset = offset;
break;
case SEEK_CUR:
file->offset += offset;
break;
case SEEK_END:
if (!cli_qfileinfo(&file->srv->cli, file->cli_fd,
NULL, &size, NULL, NULL, NULL) &&
!cli_getattrE(&file->srv->cli, file->cli_fd,
NULL, &size, NULL, NULL, NULL)) {
errno = EINVAL;
smbw_busy--;
return -1;
}
file->offset = size + offset;
break;
}
smbw_busy--;
return file->offset;
}
/*****************************************************
a wrapper for mkdir()
*******************************************************/
int smbw_mkdir(const char *fname, mode_t mode)
{
struct smbw_server *srv;
fstring server, share;
pstring path;
DEBUG(4,("%s (%s)\n", __FUNCTION__, fname));
if (!fname) {
errno = EINVAL;
return -1;
}
smbw_init();
smbw_busy++;
/* work out what server they are after */
smbw_parse_path(fname, server, share, path);
/* get a connection to the server */
srv = smbw_server(server, share);
if (!srv) {
/* smbw_server sets errno */
goto failed;
}
if (!cli_mkdir(&srv->cli, path)) {
errno = smbw_errno(&srv->cli);
goto failed;
}
smbw_busy--;
return 0;
failed:
smbw_busy--;
return -1;
}
/*****************************************************
a wrapper for rmdir()
*******************************************************/
int smbw_rmdir(const char *fname)
{
struct smbw_server *srv;
fstring server, share;
pstring path;
DEBUG(4,("%s (%s)\n", __FUNCTION__, fname));
if (!fname) {
errno = EINVAL;
return -1;
}
smbw_init();
smbw_busy++;
/* work out what server they are after */
smbw_parse_path(fname, server, share, path);
/* get a connection to the server */
srv = smbw_server(server, share);
if (!srv) {
/* smbw_server sets errno */
goto failed;
}
if (!cli_rmdir(&srv->cli, path)) {
errno = smbw_errno(&srv->cli);
goto failed;
}
smbw_busy--;
return 0;
failed:
smbw_busy--;
return -1;
}
/*****************************************************
a wrapper for getcwd()
*******************************************************/
char *smbw_getcwd(char *buf, size_t size)
{
smbw_init();
if (smbw_busy) {
return __getcwd(buf, size);
}
smbw_busy++;
if (!buf) {
if (size <= 0) size = strlen(smb_cwd)+1;
buf = (char *)malloc(size);
if (!buf) {
errno = ENOMEM;
smbw_busy--;
return NULL;
}
}
if (strlen(smb_cwd) > size-1) {
errno = ERANGE;
smbw_busy--;
return NULL;
}
safe_strcpy(buf, smb_cwd, size);
smbw_busy--;
return buf;
}
/*****************************************************
a wrapper for fchdir()
*******************************************************/
int smbw_fchdir(unsigned int fd)
{
struct smbw_dir *dir;
DEBUG(4,("%s\n", __FUNCTION__));
smbw_busy++;
dir = smbw_dir(fd);
if (!dir) {
errno = EBADF;
smbw_busy--;
return -1;
}
smbw_busy--;
return chdir(dir->path);
}
/*****************************************************
open a directory on the server
*******************************************************/
DIR *smbw_opendir(const char *fname)
{
int fd;
smbw_busy++;
fd = smbw_dir_open(fname);
if (fd == -1) {
smbw_busy--;
return NULL;
}
smbw_busy--;
return (DIR *)smbw_dir(fd);
}
/*****************************************************
read one entry from a directory
*******************************************************/
struct dirent *smbw_readdir(struct smbw_dir *d)
{
static struct dirent de;
if (smbw_getdents(d->fd, &de, sizeof(struct dirent)) > 0)
return &de;
return NULL;
}
/*****************************************************
close a DIR*
*******************************************************/
int smbw_closedir(struct smbw_dir *d)
{
return smbw_close(d->fd);
}
/*****************************************************
seek in a directory
*******************************************************/
void smbw_seekdir(struct smbw_dir *d, off_t offset)
{
smbw_dir_lseek(d->fd,offset, SEEK_SET);
}
/*****************************************************
current loc in a directory
*******************************************************/
off_t smbw_telldir(struct smbw_dir *d)
{
return smbw_dir_lseek(d->fd,0,SEEK_CUR);
}