- got client code cleartext passwords working again in cli_session_setup.
[samba.git] / source3 / smbwrapper / smbw.c
index 39c3eec90c185514b7b73b26025afbdeadef4bc1..dfe99a7ed1afa7cd75e80ba05535cebe8af66d9b 100644 (file)
@@ -20,9 +20,9 @@
 */
 
 #include "includes.h"
-#include "wrapper.h"
+#include "realcalls.h"
 
-pstring smb_cwd;
+pstring smbw_cwd;
 
 static struct smbw_file *smbw_files;
 static struct smbw_server *smbw_srvs;
@@ -31,8 +31,14 @@ struct bitmap *smbw_file_bmap;
 extern pstring global_myname;
 extern int DEBUGLEVEL;
 
+fstring smbw_prefix = SMBW_PREFIX;
+
 int smbw_busy=0;
 
+/* needs to be here because of dumb include files on some systems */
+int creat_bits = O_WRONLY|O_CREAT|O_TRUNC;
+
+
 /***************************************************** 
 initialise structures
 *******************************************************/
@@ -43,19 +49,23 @@ void smbw_init(void)
        static pstring servicesf = CONFIGFILE;
        extern FILE *dbf;
        char *p;
+       int eno;
+       pstring line;
 
        if (initialised) return;
        initialised = 1;
 
+       eno = errno;
+
        smbw_busy++;
 
        DEBUGLEVEL = 0;
-       setup_logging("smbw",True);
+       setup_logging("smbsh",True);
 
        dbf = stderr;
 
-       if ((p=getenv("SMBW_LOGFILE"))) {
-               dbf = fopen(p, "a");
+       if ((p=smbw_getshared("LOGFILE"))) {
+               dbf = sys_fopen(p, "a");
        }
 
        smbw_file_bmap = bitmap_allocate(SMBW_MAX_OPEN);
@@ -69,24 +79,40 @@ void smbw_init(void)
 
        load_interfaces();
 
-       if (!lp_load(servicesf,True,False,False)) {
-               exit(1);
-       }
+       lp_load(servicesf,True,False,False);
 
        get_myname(global_myname,NULL);
 
-       if ((p=getenv("SMBW_DEBUG"))) {
+       if ((p=smbw_getshared("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));
+       if ((p=smbw_getshared("RESOLVE_ORDER"))) {
+               lp_set_name_resolve_order(p);
+       }
+
+       if ((p=smbw_getshared("PREFIX"))) {
+               slprintf(smbw_prefix,sizeof(fstring)-1, "/%s/", p);
+               string_sub(smbw_prefix,"//", "/");
+               DEBUG(2,("SMBW_PREFIX is %s\n", smbw_prefix));
+       }
+
+       slprintf(line,sizeof(line)-1,"PWD_%d", getpid());
+       
+       p = smbw_getshared(line);
+       if (!p) {
+               sys_getwd(smbw_cwd);
        }
+       pstrcpy(smbw_cwd, p);
+       DEBUG(4,("Initial cwd is %s\n", smbw_cwd));
+
        smbw_busy--;
+
+       set_maxfiles(SMBW_MAX_OPEN);
+
+       BlockSignals(True,SIGPIPE);
+
+       errno = eno;
 }
 
 /***************************************************** 
@@ -98,11 +124,31 @@ int smbw_fd(int fd)
        return smbw_file_bmap && bitmap_query(smbw_file_bmap, fd);
 }
 
+/***************************************************** 
+determine if a file descriptor is an internal smbw fd
+*******************************************************/
+int smbw_local_fd(int fd)
+{
+       struct smbw_server *srv;
+       
+       smbw_init();
+
+       if (smbw_busy) return 0;
+       if (smbw_shared_fd(fd)) return 1;
+
+       for (srv=smbw_srvs;srv;srv=srv->next) {
+               if (srv->cli.fd == fd) return 1;
+       }
+
+       return 0;
+}
+
 /***************************************************** 
 a crude inode number generator
 *******************************************************/
 ino_t smbw_inode(const char *name)
 {
+       if (!*name) return 2;
        return (ino_t)str_checksum(name);
 }
 
@@ -207,23 +253,26 @@ char *smbw_parse_path(const char *fname, char *server, char *share, char *path)
 {
        static pstring s;
        char *p, *p2;
-       int len;
+       int len = strlen(smbw_prefix)-1;
 
        *server = *share = *path = 0;
 
        if (fname[0] == '/') {
                pstrcpy(s, fname);
        } else {
-               slprintf(s,sizeof(s)-1, "%s/%s", smb_cwd, fname);
+               slprintf(s,sizeof(s)-1, "%s/%s", smbw_cwd, fname);
        }
        clean_fname(s);
 
        DEBUG(5,("cleaned %s (fname=%s cwd=%s)\n", 
-                s, fname, smb_cwd));
+                s, fname, smbw_cwd));
 
-       if (strncmp(s,SMBW_PREFIX,strlen(SMBW_PREFIX))) return s;
+       if (strncmp(s,smbw_prefix,len) || 
+           (s[len] != '/' && s[len] != 0)) return s;
+
+       p = s + len;
+       if (*p == '/') p++;
 
-       p = s + strlen(SMBW_PREFIX);
        p2 = strchr(p,'/');
 
        if (p2) {
@@ -239,6 +288,11 @@ char *smbw_parse_path(const char *fname, char *server, char *share, char *path)
 
        p = p2;
        if (!p) {
+               if (len == 0) {
+                       char *workgroup = smbw_getshared("WORKGROUP");
+                       if (!workgroup) workgroup = lp_workgroup();
+                       slprintf(server,sizeof(fstring)-1, "%s#1D", workgroup);
+               }
                fstrcpy(share,"IPC$");
                pstrcpy(path,"");
                goto ok;
@@ -269,8 +323,8 @@ char *smbw_parse_path(const char *fname, char *server, char *share, char *path)
        string_sub(path, "/", "\\");
 
  ok:
-       DEBUG(5,("parsed path name=%s cwd=%s [%s] [%s] [%s]\n", 
-                fname, smb_cwd,
+       DEBUG(4,("parsed path name=%s cwd=%s [%s] [%s] [%s]\n", 
+                fname, smbw_cwd,
                 server, share, path));
 
        return s;
@@ -285,22 +339,30 @@ int smbw_path(const char *path)
        fstring server, share;
        pstring s;
        char *cwd;
-       int l=strlen(SMBW_PREFIX)-1;
+       int len;
 
-       if (path[0] == '/' && strncmp(path,SMBW_PREFIX,l)) {
+       /* this is needed to prevent recursion with the BSD malloc which
+          opens /etc/malloc.conf on the first call */
+       if (strncmp(path,"/etc/", 5) == 0) {
                return 0;
        }
 
-       if (smbw_busy) return 0;
-
        smbw_init();
 
+       len = strlen(smbw_prefix)-1;
+
+       if (path[0] == '/' && strncmp(path,smbw_prefix,len)) {
+               return 0;
+       }
+
+       if (smbw_busy) return 0;
+
        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)) {
+       if (strncmp(cwd,smbw_prefix,len) == 0 &&
+           (cwd[len] == '/' || cwd[len] == 0)) {
                return 1;
        }
 
@@ -336,17 +398,24 @@ struct smbw_server *smbw_server(char *server, char *share)
        char *password;
        char *workgroup;
        struct nmb_name called, calling;
-
+       char *p, *server_n = server;
+       fstring group;
+       pstring ipenv;
+       struct in_addr ip;
+       extern struct in_addr ipzero;
+       char lm_24[24], nt_24[24];
+
+       ip = ipzero;
        ZERO_STRUCT(c);
 
-       username = getenv("SMBW_USER");
+       username = smbw_getshared("USER");
        if (!username) username = getenv("USER");
        if (!username) username = "guest";
 
-       workgroup = getenv("SMBW_WORKGROUP");
+       workgroup = smbw_getshared("WORKGROUP");
        if (!workgroup) workgroup = lp_workgroup();
 
-       password = getenv("SMBW_PASSWORD");
+       password = smbw_getshared("PASSWORD");
        if (!password) password = "";
 
        /* try to use an existing connection */
@@ -360,44 +429,93 @@ struct smbw_server *smbw_server(char *server, char *share)
                return NULL;
        }
 
+       make_nmb_name(&calling, global_myname, 0x0, "");
+       make_nmb_name(&called , server, 0x20, "");
+
+       DEBUG(4,("server_n=[%s] server=[%s]\n", server_n, server));
+
+       if ((p=strchr(server_n,'#')) && strcmp(p+1,"1D")==0) {
+               struct in_addr sip;
+               pstring s;
+
+               fstrcpy(group, server_n);
+               p = strchr(group,'#');
+               *p = 0;
+               
+               /* cache the workgroup master lookup */
+               slprintf(s,sizeof(s)-1,"MASTER_%s", group);
+               if (!(server_n = smbw_getshared(s))) {
+                       if (!find_master_ip(group, &sip)) {
+                               errno = ENOENT;
+                               return NULL;
+                       }
+                       fstrcpy(group, inet_ntoa(sip));
+                       server_n = group;
+                       smbw_setshared(s,server_n);
+               }
+       }
+
+       DEBUG(4,(" -> server_n=[%s] server=[%s]\n", server_n, server));
+
+ again:
+       slprintf(ipenv,sizeof(ipenv)-1,"HOST_%s", server_n);
+
+       ip = ipzero;
+       if ((p=smbw_getshared(ipenv))) {
+               ip = *(interpret_addr2(p));
+       }
+
        /* have to open a new connection */
-       if (!cli_initialise(&c) || !cli_connect(&c, server, NULL)) {
+       if (!cli_initialise(&c) || !cli_connect(&c, server_n, &ip)) {
                errno = ENOENT;
                return NULL;
        }
 
-       make_nmb_name(&calling, global_myname, 0x0, "");
-       make_nmb_name(&called , server, 0x20, "");
-
        if (!cli_session_request(&c, &calling, &called)) {
                cli_shutdown(&c);
+               if (strcmp(called.name, "*SMBSERVER")) {
+                       make_nmb_name(&called , "*SMBSERVER", 0x20, "");
+                       goto again;
+               }
                errno = ENOENT;
                return NULL;
        }
 
+       DEBUG(4,(" session request ok\n"));
+
        if (!cli_negprot(&c)) {
                cli_shutdown(&c);
                errno = ENOENT;
                return NULL;
        }
 
+       SMBencrypt  ((uchar *)password,(uchar *)c.cryptkey,(uchar *)lm_24);
+       SMBNTencrypt((uchar *)password,(uchar *)c.cryptkey,(uchar *)nt_24);
+
        if (!cli_session_setup(&c, username, 
-                              password, strlen(password),
-                              password, strlen(password),
-                              workgroup)) {
+                              lm_24, 24,
+                              nt_24, 24,
+                              workgroup) &&
+           /* try an anonymous login if it failed */
+           !cli_session_setup(&c, "", "", 1,"", 0, workgroup)) {
                cli_shutdown(&c);
                errno = EPERM;
                return NULL;
        }
 
-       if (!cli_send_tconX(&c, share, 
-                           strstr(share,"IPC$")?"IPC":"A:", 
+       DEBUG(4,(" session setup ok\n"));
+
+       if (!cli_send_tconX(&c, share, "?????",
                            password, strlen(password)+1)) {
                errno = smbw_errno(&c);
                cli_shutdown(&c);
                return NULL;
        }
 
+       smbw_setshared(ipenv,inet_ntoa(ip));
+       
+       DEBUG(4,(" tconx ok\n"));
+
        srv = (struct smbw_server *)malloc(sizeof(*srv));
        if (!srv) {
                errno = ENOMEM;
@@ -468,11 +586,9 @@ 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;
+       int eno=0, fd = -1;
        struct smbw_file *file=NULL;
 
-       DEBUG(4,("%s\n", __FUNCTION__));
-
        smbw_init();
 
        if (!fname) {
@@ -499,14 +615,12 @@ int smbw_open(const char *fname, int flags, mode_t mode)
        }
        if (fd == -1) {
                /* it might be a directory. Maybe we should use chkpath? */
+               eno = smbw_errno(&srv->cli);
                fd = smbw_dir_open(fname);
+               if (fd == -1) errno = eno;
                smbw_busy--;
                return fd;
        }
-       if (fd == -1) {
-               errno = eno;
-               goto failed;
-       }
 
        file = (struct smbw_file *)malloc(sizeof(*file));
        if (!file) {
@@ -516,9 +630,17 @@ int smbw_open(const char *fname, int flags, mode_t mode)
 
        ZERO_STRUCTP(file);
 
-       file->cli_fd = fd;
-       file->fname = strdup(path);
-       if (!file->fname) {
+       file->f = (struct smbw_filedes *)malloc(sizeof(*(file->f)));
+       if (!file->f) {
+               errno = ENOMEM;
+               goto failed;
+       }
+
+       ZERO_STRUCTP(file->f);
+
+       file->f->cli_fd = fd;
+       file->f->fname = strdup(path);
+       if (!file->f->fname) {
                errno = ENOMEM;
                goto failed;
        }
@@ -535,6 +657,8 @@ int smbw_open(const char *fname, int flags, mode_t mode)
                goto failed;
        }
 
+       file->f->ref_count=1;
+
        bitmap_set(smbw_file_bmap, file->fd);
 
        DLIST_ADD(smbw_files, file);
@@ -549,8 +673,11 @@ int smbw_open(const char *fname, int flags, mode_t mode)
                cli_close(&srv->cli, fd);
        }
        if (file) {
-               if (file->fname) {
-                       free(file->fname);
+               if (file->f) {
+                       if (file->f->fname) {
+                               free(file->f->fname);
+                       }
+                       free(file->f);
                }
                free(file);
        }
@@ -559,6 +686,35 @@ int smbw_open(const char *fname, int flags, mode_t mode)
 }
 
 
+/***************************************************** 
+a wrapper for pread()
+*******************************************************/
+ssize_t smbw_pread(int fd, void *buf, size_t count, off_t ofs)
+{
+       struct smbw_file *file;
+       int ret;
+
+       smbw_busy++;
+
+       file = smbw_file(fd);
+       if (!file) {
+               errno = EBADF;
+               smbw_busy--;
+               return -1;
+       }
+       
+       ret = cli_read(&file->srv->cli, file->f->cli_fd, buf, ofs, count);
+
+       if (ret == -1) {
+               errno = smbw_errno(&file->srv->cli);
+               smbw_busy--;
+               return -1;
+       }
+
+       smbw_busy--;
+       return ret;
+}
+
 /***************************************************** 
 a wrapper for read()
 *******************************************************/
@@ -567,8 +723,7 @@ 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));
+       DEBUG(4,("smbw_read(%d, %d)\n", fd, (int)count));
 
        smbw_busy++;
 
@@ -579,7 +734,8 @@ ssize_t smbw_read(int fd, void *buf, size_t count)
                return -1;
        }
        
-       ret = cli_read(&file->srv->cli, file->cli_fd, buf, file->offset, count);
+       ret = cli_read(&file->srv->cli, file->f->cli_fd, buf, 
+                      file->f->offset, count);
 
        if (ret == -1) {
                errno = smbw_errno(&file->srv->cli);
@@ -587,12 +743,16 @@ ssize_t smbw_read(int fd, void *buf, size_t count)
                return -1;
        }
 
-       file->offset += ret;
+       file->f->offset += ret;
+       
+       DEBUG(4,(" -> %d\n", ret));
 
        smbw_busy--;
        return ret;
 }
 
+       
+
 /***************************************************** 
 a wrapper for write()
 *******************************************************/
@@ -601,19 +761,16 @@ 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);
+       ret = cli_write(&file->srv->cli, file->f->cli_fd, 0, buf, file->f->offset, count);
 
        if (ret == -1) {
                errno = smbw_errno(&file->srv->cli);
@@ -621,7 +778,36 @@ ssize_t smbw_write(int fd, void *buf, size_t count)
                return -1;
        }
 
-       file->offset += ret;
+       file->f->offset += ret;
+
+       smbw_busy--;
+       return ret;
+}
+
+/***************************************************** 
+a wrapper for pwrite()
+*******************************************************/
+ssize_t smbw_pwrite(int fd, void *buf, size_t count, off_t ofs)
+{
+       struct smbw_file *file;
+       int ret;
+
+       smbw_busy++;
+
+       file = smbw_file(fd);
+       if (!file) {
+               errno = EBADF;
+               smbw_busy--;
+               return -1;
+       }
+       
+       ret = cli_write(&file->srv->cli, file->f->cli_fd, 0, buf, ofs, count);
+
+       if (ret == -1) {
+               errno = smbw_errno(&file->srv->cli);
+               smbw_busy--;
+               return -1;
+       }
 
        smbw_busy--;
        return ret;
@@ -634,8 +820,6 @@ int smbw_close(int fd)
 {
        struct smbw_file *file;
 
-       DEBUG(4,("%s\n", __FUNCTION__));
-
        smbw_busy++;
 
        file = smbw_file(fd);
@@ -645,7 +829,8 @@ int smbw_close(int fd)
                return ret;
        }
        
-       if (!cli_close(&file->srv->cli, file->cli_fd)) {
+       if (file->f->ref_count == 1 &&
+           !cli_close(&file->srv->cli, file->f->cli_fd)) {
                errno = smbw_errno(&file->srv->cli);
                smbw_busy--;
                return -1;
@@ -657,7 +842,11 @@ int smbw_close(int fd)
        
        DLIST_REMOVE(smbw_files, file);
 
-       free(file->fname);
+       file->f->ref_count--;
+       if (file->f->ref_count == 0) {
+               free(file->f->fname);
+               free(file->f);
+       }
        ZERO_STRUCTP(file);
        free(file);
        
@@ -672,7 +861,6 @@ a wrapper for fcntl()
 *******************************************************/
 int smbw_fcntl(int fd, int cmd, long arg)
 {
-       DEBUG(4,("%s\n", __FUNCTION__));
        return 0;
 }
 
@@ -683,8 +871,19 @@ 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);
+
+       DEBUG(4,("smbw_access(%s, 0x%x)\n", name, mode));
+
+       if (smbw_stat(name, &st)) return -1;
+
+       if (((mode & R_OK) && !(st.st_mode & S_IRUSR)) ||
+           ((mode & W_OK) && !(st.st_mode & S_IWUSR)) ||
+           ((mode & X_OK) && !(st.st_mode & S_IXUSR))) {
+               errno = EACCES;
+               return -1;
+       }
+       
+       return 0;
 }
 
 /***************************************************** 
@@ -718,8 +917,6 @@ int smbw_unlink(const char *fname)
        fstring server, share;
        pstring path;
 
-       DEBUG(4,("%s (%s)\n", __FUNCTION__, fname));
-
        if (!fname) {
                errno = EINVAL;
                return -1;
@@ -739,7 +936,15 @@ int smbw_unlink(const char *fname)
                goto failed;
        }
 
-       if (!cli_unlink(&srv->cli, path)) {
+       if (strncmp(srv->cli.dev, "LPT", 3) == 0) {
+               int job = smbw_stat_printjob(srv, path, NULL, NULL);
+               if (job == -1) {
+                       goto failed;
+               }
+               if (cli_printjob_del(&srv->cli, job) != 0) {
+                       goto failed;
+               }
+       } else if (!cli_unlink(&srv->cli, path)) {
                errno = smbw_errno(&srv->cli);
                goto failed;
        }
@@ -764,8 +969,6 @@ int smbw_rename(const char *oldname, const char *newname)
        fstring server2, share2;
        pstring path2;
 
-       DEBUG(4,("%s (%s, %s)\n", __FUNCTION__, oldname, newname));
-
        if (!oldname || !newname) {
                errno = EINVAL;
                return -1;
@@ -773,6 +976,8 @@ int smbw_rename(const char *oldname, const char *newname)
 
        smbw_init();
 
+       DEBUG(4,("smbw_rename(%s,%s)\n", oldname, newname));
+
        smbw_busy++;
 
        /* work out what server they are after */
@@ -793,8 +998,13 @@ int smbw_rename(const char *oldname, const char *newname)
        }
 
        if (!cli_rename(&srv->cli, path1, path2)) {
-               errno = smbw_errno(&srv->cli);
-               goto failed;
+               int eno = smbw_errno(&srv->cli);
+               if (eno != EEXIST ||
+                   !cli_unlink(&srv->cli, path2) ||
+                   !cli_rename(&srv->cli, path1, path2)) {
+                       errno = eno;
+                       goto failed;
+               }
        }
 
        smbw_busy--;
@@ -807,17 +1017,14 @@ int smbw_rename(const char *oldname, const char *newname)
 
 
 /***************************************************** 
-a wrapper for utime()
+a wrapper for utime and utimes
 *******************************************************/
-int smbw_utime(const char *fname, void *buf)
+static int smbw_settime(const char *fname, time_t t)
 {
-       struct utimbuf *tbuf = (struct utimbuf *)buf;
        struct smbw_server *srv;
        fstring server, share;
        pstring path;
-       uint32 mode;
-
-       DEBUG(4,("%s (%s)\n", __FUNCTION__, fname));
+       uint16 mode;
 
        if (!fname) {
                errno = EINVAL;
@@ -843,9 +1050,12 @@ int smbw_utime(const char *fname, void *buf)
                goto failed;
        }
 
-       if (!cli_setatr(&srv->cli, path, mode, tbuf->modtime)) {
-               errno = smbw_errno(&srv->cli);
-               goto failed;
+       if (!cli_setatr(&srv->cli, path, mode, t)) {
+               /* some servers always refuse directory changes */
+               if (!(mode & aDIR)) {
+                       errno = smbw_errno(&srv->cli);
+                       goto failed;
+               }
        }
 
        smbw_busy--;
@@ -856,6 +1066,25 @@ int smbw_utime(const char *fname, void *buf)
        return -1;
 }
 
+/***************************************************** 
+a wrapper for utime 
+*******************************************************/
+int smbw_utime(const char *fname, void *buf)
+{
+       struct utimbuf *tbuf = (struct utimbuf *)buf;
+       return smbw_settime(fname, tbuf?tbuf->modtime:time(NULL));
+}
+
+/***************************************************** 
+a wrapper for utime 
+*******************************************************/
+int smbw_utimes(const char *fname, void *buf)
+{
+       struct timeval *tbuf = (struct timeval *)buf;
+       return smbw_settime(fname, tbuf?tbuf->tv_sec:time(NULL));
+}
+
+
 /***************************************************** 
 a wrapper for chown()
 *******************************************************/
@@ -864,9 +1093,7 @@ 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));
+       uint16 mode;
 
        if (!fname) {
                errno = EINVAL;
@@ -912,8 +1139,6 @@ int smbw_chmod(const char *fname, mode_t newmode)
        pstring path;
        uint32 mode;
 
-       DEBUG(4,("%s (%s)\n", __FUNCTION__, fname));
-
        if (!fname) {
                errno = EINVAL;
                return -1;
@@ -933,13 +1158,18 @@ int smbw_chmod(const char *fname, mode_t newmode)
                goto failed;
        }
 
-       if (!cli_getatr(&srv->cli, path, &mode, NULL, NULL)) {
+       mode = 0;
+
+       if (!(newmode & (S_IWUSR | S_IWGRP | S_IWOTH))) mode |= aRONLY;
+       if ((newmode & S_IXUSR) && lp_map_archive(-1)) mode |= aARCH;
+       if ((newmode & S_IXGRP) && lp_map_system(-1)) mode |= aSYSTEM;
+       if ((newmode & S_IXOTH) && lp_map_hidden(-1)) mode |= aHIDDEN;
+
+       if (!cli_setatr(&srv->cli, path, mode, 0)) {
                errno = smbw_errno(&srv->cli);
                goto failed;
        }
        
-       /* assume success for the moment - need to add attribute mapping */
-
        smbw_busy--;
        return 0;
 
@@ -954,9 +1184,7 @@ 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__));
+       size_t size;
 
        smbw_busy++;
 
@@ -969,25 +1197,317 @@ off_t smbw_lseek(int fd, off_t offset, int whence)
 
        switch (whence) {
        case SEEK_SET:
-               file->offset = offset;
+               file->f->offset = offset;
                break;
        case SEEK_CUR:
-               file->offset += offset;
+               file->f->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, 
+               if (!cli_qfileinfo(&file->srv->cli, file->f->cli_fd, 
+                                  NULL, &size, NULL, NULL, NULL, 
+                                  NULL, NULL) &&
+                   !cli_getattrE(&file->srv->cli, file->f->cli_fd, 
                                  NULL, &size, NULL, NULL, NULL)) {
                        errno = EINVAL;
                        smbw_busy--;
                        return -1;
                }
-               file->offset = size + offset;
+               file->f->offset = size + offset;
                break;
        }
 
        smbw_busy--;
-       return file->offset;
+       return file->f->offset;
+}
+
+
+/***************************************************** 
+a wrapper for dup()
+*******************************************************/
+int smbw_dup(int fd)
+{
+       int fd2;
+       struct smbw_file *file, *file2;
+
+       smbw_busy++;
+
+       file = smbw_file(fd);
+       if (!file) {
+               errno = EBADF;
+               goto failed;
+       }
+
+       fd2 = dup(file->fd);
+       if (fd2 == -1) {
+               goto failed;
+       }
+
+       if (bitmap_query(smbw_file_bmap, fd2)) {
+               DEBUG(0,("ERROR: fd already open in dup!\n"));
+               errno = EIO;
+               goto failed;
+       }
+
+       file2 = (struct smbw_file *)malloc(sizeof(*file2));
+       if (!file2) {
+               close(fd2);
+               errno = ENOMEM;
+               goto failed;
+       }
+
+       ZERO_STRUCTP(file2);
+
+       *file2 = *file;
+       file2->fd = fd2;
+
+       file->f->ref_count++;
+
+       bitmap_set(smbw_file_bmap, fd2);
+       
+       DLIST_ADD(smbw_files, file2);
+       
+       smbw_busy--;
+       return fd2;
+
+ failed:
+       smbw_busy--;
+       return -1;
+}
+
+
+/***************************************************** 
+a wrapper for dup2()
+*******************************************************/
+int smbw_dup2(int fd, int fd2)
+{
+       struct smbw_file *file, *file2;
+
+       smbw_busy++;
+
+       file = smbw_file(fd);
+       if (!file) {
+               errno = EBADF;
+               goto failed;
+       }
+
+       if (bitmap_query(smbw_file_bmap, fd2)) {
+               DEBUG(0,("ERROR: fd already open in dup2!\n"));
+               errno = EIO;
+               goto failed;
+       }
+
+       if (dup2(file->fd, fd2) != fd2) {
+               goto failed;
+       }
+
+       file2 = (struct smbw_file *)malloc(sizeof(*file2));
+       if (!file2) {
+               close(fd2);
+               errno = ENOMEM;
+               goto failed;
+       }
+
+       ZERO_STRUCTP(file2);
+
+       *file2 = *file;
+       file2->fd = fd2;
+
+       file->f->ref_count++;
+
+       bitmap_set(smbw_file_bmap, fd2);
+       
+       DLIST_ADD(smbw_files, file2);
+       
+       smbw_busy--;
+       return fd2;
+
+ failed:
+       smbw_busy--;
+       return -1;
+}
+
+
+/***************************************************** 
+close a connection to a server
+*******************************************************/
+static void smbw_srv_close(struct smbw_server *srv)
+{
+       smbw_busy++;
+
+       cli_shutdown(&srv->cli);
+
+       free(srv->server_name);
+       free(srv->share_name);
+
+       DLIST_REMOVE(smbw_srvs, srv);
+
+       ZERO_STRUCTP(srv);
+
+       free(srv);
+       
+       smbw_busy--;
+}
+
+/***************************************************** 
+when we fork we have to close all connections and files
+in the child
+*******************************************************/
+int smbw_fork(void)
+{
+       pid_t child;
+       int p[2];
+       char c=0;
+       pstring line;
+
+       struct smbw_file *file, *next_file;
+       struct smbw_server *srv, *next_srv;
+
+       if (pipe(p)) return real_fork();
+
+       child = real_fork();
+
+       if (child) {
+               /* block the parent for a moment until the sockets are
+                   closed */
+               close(p[1]);
+               read(p[0], &c, 1);
+               close(p[0]);
+               return child;
+       }
+
+       close(p[0]);
+
+       /* close all files */
+       for (file=smbw_files;file;file=next_file) {
+               next_file = file->next;
+               close(file->fd);
+       }
+
+       /* close all server connections */
+       for (srv=smbw_srvs;srv;srv=next_srv) {
+               next_srv = srv->next;
+               smbw_srv_close(srv);
+       }
+
+       slprintf(line,sizeof(line)-1,"PWD_%d", getpid());
+       smbw_setshared(line,smbw_cwd);
+
+       /* unblock the parent */
+       write(p[1], &c, 1);
+       close(p[1]);
+
+       /* and continue in the child */
+       return 0;
+}
+
+#ifndef NO_ACL_WRAPPER
+/***************************************************** 
+say no to acls
+*******************************************************/
+ int smbw_acl(const char *pathp, int cmd, int nentries, aclent_t *aclbufp)
+{
+       if (cmd == GETACL || cmd == GETACLCNT) return 0;
+       errno = ENOSYS;
+       return -1;
+}
+#endif
+
+#ifndef NO_FACL_WRAPPER
+/***************************************************** 
+say no to acls
+*******************************************************/
+ int smbw_facl(int fd, int cmd, int nentries, aclent_t *aclbufp)
+{
+       if (cmd == GETACL || cmd == GETACLCNT) return 0;
+       errno = ENOSYS;
+       return -1;
 }
+#endif
 
+
+#ifdef HAVE_STAT64
+/* this can't be in wrapped.c because of include conflicts */
+ void stat64_convert(struct stat *st, struct stat64 *st64)
+{
+       st64->st_size = st->st_size;
+       st64->st_mode = st->st_mode;
+       st64->st_ino = st->st_ino;
+       st64->st_dev = st->st_dev;
+       st64->st_rdev = st->st_rdev;
+       st64->st_nlink = st->st_nlink;
+       st64->st_uid = st->st_uid;
+       st64->st_gid = st->st_gid;
+       st64->st_atime = st->st_atime;
+       st64->st_mtime = st->st_mtime;
+       st64->st_ctime = st->st_ctime;
+       st64->st_blksize = st->st_blksize;
+       st64->st_blocks = st->st_blocks;
+}
+#endif
+
+#ifdef HAVE_READDIR64
+ void dirent64_convert(struct dirent *d, struct dirent64 *d64)
+{
+       d64->d_ino = d->d_ino;
+       d64->d_off = d->d_off;
+       d64->d_reclen = d->d_reclen;
+       pstrcpy(d64->d_name, d->d_name);
+}
+#endif
+
+
+#ifdef HAVE___XSTAT
+/* Definition of `struct stat' used in the linux kernel..  */
+struct kernel_stat {
+       unsigned short int st_dev;
+       unsigned short int __pad1;
+       unsigned long int st_ino;
+       unsigned short int st_mode;
+       unsigned short int st_nlink;
+       unsigned short int st_uid;
+       unsigned short int st_gid;
+       unsigned short int st_rdev;
+       unsigned short int __pad2;
+       unsigned long int st_size;
+       unsigned long int st_blksize;
+       unsigned long int st_blocks;
+       unsigned long int st_atime;
+       unsigned long int __unused1;
+       unsigned long int st_mtime;
+       unsigned long int __unused2;
+       unsigned long int st_ctime;
+       unsigned long int __unused3;
+       unsigned long int __unused4;
+       unsigned long int __unused5;
+};
+
+/*
+ * Prototype for gcc in 'fussy' mode.
+ */
+ void xstat_convert(int vers, struct stat *st, struct kernel_stat *kbuf);
+ void xstat_convert(int vers, struct stat *st, struct kernel_stat *kbuf)
+{
+#ifdef _STAT_VER_LINUX_OLD
+       if (vers == _STAT_VER_LINUX_OLD) {
+               memcpy(st, kbuf, sizeof(*st));
+               return;
+       }
+#endif
+
+       ZERO_STRUCTP(st);
+
+       st->st_dev = kbuf->st_dev;
+       st->st_ino = kbuf->st_ino;
+       st->st_mode = kbuf->st_mode;
+       st->st_nlink = kbuf->st_nlink;
+       st->st_uid = kbuf->st_uid;
+       st->st_gid = kbuf->st_gid;
+       st->st_rdev = kbuf->st_rdev;
+       st->st_size = kbuf->st_size;
+       st->st_blksize = kbuf->st_blksize;
+       st->st_blocks = kbuf->st_blocks;
+       st->st_atime = kbuf->st_atime;
+       st->st_mtime = kbuf->st_mtime;
+       st->st_ctime = kbuf->st_ctime;
+}
+#endif