/[rdesktop]/sourceforge.net/trunk/rdesktop/disk.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/disk.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 597 by n-ki, Thu Feb 5 15:41:56 2004 UTC revision 786 by astrand, Thu Oct 21 08:13:33 2004 UTC
# Line 18  Line 18 
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */  */
20    
21  #define FILE_ATTRIBUTE_READONLY                 0x00000001  #include "disk.h"
 #define FILE_ATTRIBUTE_HIDDEN                   0x00000002  
 #define FILE_ATTRIBUTE_SYSTEM                   0x00000004  
 #define FILE_ATTRIBUTE_DIRECTORY                0x00000010  
 #define FILE_ATTRIBUTE_ARCHIVE                  0x00000020  
 #define FILE_ATTRIBUTE_DEVICE                   0x00000040  
 #define FILE_ATTRIBUTE_UNKNOWNXXX0              0x00000060      /* ??? ACTION i.e. 0x860 == compress this file ? */  
 #define FILE_ATTRIBUTE_NORMAL                   0x00000080  
 #define FILE_ATTRIBUTE_TEMPORARY                0x00000100  
 #define FILE_ATTRIBUTE_SPARSE_FILE              0x00000200  
 #define FILE_ATTRIBUTE_REPARSE_POINT            0x00000400  
 #define FILE_ATTRIBUTE_COMPRESSED               0x00000800  
 #define FILE_ATTRIBUTE_OFFLINE                  0x00001000  
 #define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED      0x00002000  
 #define FILE_ATTRIBUTE_ENCRYPTED                0x00004000  
   
 #define FILE_FLAG_OPEN_NO_RECALL                0x00100000  
 #define FILE_FLAG_OPEN_REPARSE_POINT            0x00200000  
 #define FILE_FLAG_POSIX_SEMANTICS               0x01000000  
 #define FILE_FLAG_BACKUP_SEMANTICS              0x02000000      /* sometimes used to create a directory */  
 #define FILE_FLAG_DELETE_ON_CLOSE               0x04000000  
 #define FILE_FLAG_SEQUENTIAL_SCAN               0x08000000  
 #define FILE_FLAG_RANDOM_ACCESS                 0x10000000  
 #define FILE_FLAG_NO_BUFFERING                  0x20000000  
 #define FILE_FLAG_OVERLAPPED                    0x40000000  
 #define FILE_FLAG_WRITE_THROUGH                 0x80000000  
   
 #define FILE_SHARE_READ                         0x01  
 #define FILE_SHARE_WRITE                        0x02  
 #define FILE_SHARE_DELETE                       0x04  
   
 #define FILE_BASIC_INFORMATION                  0x04  
 #define FILE_STANDARD_INFORMATION               0x05  
   
 #define FS_CASE_SENSITIVE                       0x00000001  
 #define FS_CASE_IS_PRESERVED                    0x00000002  
 #define FS_UNICODE_STORED_ON_DISK               0x00000004  
 #define FS_PERSISTENT_ACLS                      0x00000008  
 #define FS_FILE_COMPRESSION                     0x00000010  
 #define FS_VOLUME_QUOTAS                        0x00000020  
 #define FS_SUPPORTS_SPARSE_FILES                0x00000040  
 #define FS_SUPPORTS_REPARSE_POINTS              0x00000080  
 #define FS_SUPPORTS_REMOTE_STORAGE              0X00000100  
 #define FS_VOL_IS_COMPRESSED                    0x00008000  
 #define FILE_READ_ONLY_VOLUME                   0x00080000  
   
 #define OPEN_EXISTING                           1  
 #define CREATE_NEW                              2  
 #define OPEN_ALWAYS                             3  
 #define TRUNCATE_EXISTING                       4  
 #define CREATE_ALWAYS                           5  
   
 #define GENERIC_READ                            0x80000000  
 #define GENERIC_WRITE                           0x40000000  
 #define GENERIC_EXECUTE                         0x20000000  
 #define GENERIC_ALL                             0x10000000  
   
 #define ERROR_FILE_NOT_FOUND                    2L  
 #define ERROR_ALREADY_EXISTS                    183L  
   
 #define MAX_OPEN_FILES  0x100  
   
 #if (defined(sun) && (defined(__svr4__) || defined(__SVR4)))  
 #define SOLARIS  
 #endif  
   
 #ifdef SOLARIS  
 #define DIRFD(a) ((a)->dd_fd)  
 #else  
 #define DIRFD(a) (dirfd(a))  
 #endif  
22    
23  #include <sys/types.h>  #include <sys/types.h>
24  #include <sys/stat.h>  #include <sys/stat.h>
# Line 98  Line 28 
28  #include <fnmatch.h>  #include <fnmatch.h>
29  #include <errno.h>              /* errno */  #include <errno.h>              /* errno */
30    
31  #if defined(SOLARIS)  #include <utime.h>
32    #include <time.h>               /* ctime */
33    
34    #if (defined(HAVE_DIRFD) || (HAVE_DECL_DIRFD == 1))
35    #define DIRFD(a) (dirfd(a))
36    #else
37    #define DIRFD(a) ((a)->DIR_FD_MEMBER_NAME)
38    #endif
39    
40    /* TODO: let autoconf figure out everything below... */
41    #if (defined(sun) && (defined(__svr4__) || defined(__SVR4)))
42    #define SOLARIS
43    #endif
44    
45    #if (defined(SOLARIS) || defined (__hpux) || defined(__BEOS__))
46  #include <sys/statvfs.h>        /* solaris statvfs */  #include <sys/statvfs.h>        /* solaris statvfs */
47    /* TODO: Fix mntent-handling for solaris/hpux
48     * #include <sys/mntent.h> */
49    #undef HAVE_MNTENT_H
50    #define MNTENT_PATH "/etc/mnttab"
51  #define STATFS_FN(path, buf) (statvfs(path,buf))  #define STATFS_FN(path, buf) (statvfs(path,buf))
52  #define STATFS_T statvfs  #define STATFS_T statvfs
53  #define F_NAMELEN(buf) ((buf).f_namemax)  #define F_NAMELEN(buf) ((buf).f_namemax)
54    
55  #elif (defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__))  #elif (defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__APPLE__))
56  #include <sys/param.h>  #include <sys/param.h>
57  #include <sys/mount.h>  #include <sys/mount.h>
58  #define STATFS_FN(path, buf) (statfs(path,buf))  #define STATFS_FN(path, buf) (statfs(path,buf))
59  #define STATFS_T statfs  #define STATFS_T statfs
60  #define F_NAMELEN(buf) (NAME_MAX)  #define F_NAMELEN(buf) (NAME_MAX)
61    
62    #elif (defined(__SGI_IRIX__))
63    #include <sys/types.h>
64    #include <sys/statvfs.h>
65    #define STATFS_FN(path, buf) (statvfs(path,buf))
66    #define STATFS_T statvfs
67    #define F_NAMELEN(buf) ((buf).f_namemax)
68    
69  #else  #else
70  #include <sys/vfs.h>            /* linux statfs */  #include <sys/vfs.h>            /* linux statfs */
71    #include <mntent.h>
72    #define HAVE_MNTENT_H
73    #define MNTENT_PATH "/etc/mtab"
74  #define STATFS_FN(path, buf) (statfs(path,buf))  #define STATFS_FN(path, buf) (statfs(path,buf))
75  #define STATFS_T statfs  #define STATFS_T statfs
76  #define F_NAMELEN(buf) ((buf).f_namelen)  #define F_NAMELEN(buf) ((buf).f_namelen)
# Line 122  Line 80 
80    
81  extern RDPDR_DEVICE g_rdpdr_device[];  extern RDPDR_DEVICE g_rdpdr_device[];
82    
83  struct fileinfo  FILEINFO g_fileinfo[MAX_OPEN_FILES];
84    
85    typedef struct
86  {  {
87          uint32 device_id, flags_and_attributes;          char name[256];
88          char path[256];          char label[256];
89          DIR *pdir;          unsigned long serial;
90          struct dirent *pdirent;          char type[256];
91          char pattern[64];  } FsInfoType;
92          BOOL delete_on_close;  
93    
94    static time_t
95    get_create_time(struct stat *st)
96    {
97            time_t ret, ret1;
98    
99            ret = MIN(st->st_ctime, st->st_mtime);
100            ret1 = MIN(ret, st->st_atime);
101    
102            if (ret1 != (time_t) 0)
103                    return ret1;
104    
105            return ret;
106  }  }
 g_fileinfo[MAX_OPEN_FILES];  
107    
108  /* Convert seconds since 1970 to a filetime */  /* Convert seconds since 1970 to a filetime */
109  void  static void
110  seconds_since_1970_to_filetime(time_t seconds, uint32 * high, uint32 * low)  seconds_since_1970_to_filetime(time_t seconds, uint32 * high, uint32 * low)
111  {  {
112          unsigned long long ticks;          unsigned long long ticks;
# Line 144  seconds_since_1970_to_filetime(time_t se Line 116  seconds_since_1970_to_filetime(time_t se
116          *high = (uint32) (ticks >> 32);          *high = (uint32) (ticks >> 32);
117  }  }
118    
119    /* Convert seconds since 1970 back to filetime */
120    static time_t
121    convert_1970_to_filetime(uint32 high, uint32 low)
122    {
123            unsigned long long ticks;
124            time_t val;
125    
126            ticks = low + (((unsigned long long) high) << 32);
127            ticks /= 10000000;
128            ticks -= 11644473600LL;
129    
130            val = (time_t) ticks;
131            return (val);
132    
133    }
134    
135    /* A wrapper for ftruncate which supports growing files, even if the
136       native ftruncate doesn't. This is needed on Linux FAT filesystems,
137       for example. */
138    static int
139    ftruncate_growable(int fd, off_t length)
140    {
141            int ret;
142            off_t pos;
143            static const char zero;
144    
145            /* Try the simple method first */
146            if ((ret = ftruncate(fd, length)) != -1)
147            {
148                    return ret;
149            }
150    
151            /*
152             * Some kind of error. Perhaps we were trying to grow. Retry
153             * in a safe way.
154             */
155    
156            /* Get current position */
157            if ((pos = lseek(fd, 0, SEEK_CUR)) == -1)
158            {
159                    perror("lseek");
160                    return -1;
161            }
162    
163            /* Seek to new size */
164            if (lseek(fd, length, SEEK_SET) == -1)
165            {
166                    perror("lseek");
167                    return -1;
168            }
169    
170            /* Write a zero */
171            if (write(fd, &zero, 1) == -1)
172            {
173                    perror("write");
174                    return -1;
175            }
176    
177            /* Truncate. This shouldn't fail. */
178            if (ftruncate(fd, length) == -1)
179            {
180                    perror("ftruncate");
181                    return -1;
182            }
183    
184            /* Restore position */
185            if (lseek(fd, pos, SEEK_SET) == -1)
186            {
187                    perror("lseek");
188                    return -1;
189            }
190    
191            return 0;
192    }
193    
194    
195  /* Enumeration of devices from rdesktop.c        */  /* Enumeration of devices from rdesktop.c        */
196  /* returns numer of units found and initialized. */  /* returns numer of units found and initialized. */
197  /* optarg looks like ':h:=/mnt/floppy,b:=/mnt/usbdevice1' */  /* optarg looks like ':h=/mnt/floppy,b=/mnt/usbdevice1' */
198  /* when it arrives to this function.             */  /* when it arrives to this function.             */
199  int  int
200  disk_enum_devices(int *id, char *optarg)  disk_enum_devices(uint32 * id, char *optarg)
201  {  {
202          char *pos = optarg;          char *pos = optarg;
203          char *pos2;          char *pos2;
# Line 160  disk_enum_devices(int *id, char *optarg) Line 208  disk_enum_devices(int *id, char *optarg)
208          while ((pos = next_arg(optarg, ',')) && *id < RDPDR_MAX_DEVICES)          while ((pos = next_arg(optarg, ',')) && *id < RDPDR_MAX_DEVICES)
209          {          {
210                  pos2 = next_arg(optarg, '=');                  pos2 = next_arg(optarg, '=');
                 strcpy(g_rdpdr_device[*id].name, optarg);  
211    
212                  toupper_str(g_rdpdr_device[*id].name);                  strncpy(g_rdpdr_device[*id].name, optarg, sizeof(g_rdpdr_device[*id].name));
213                    if (strlen(optarg) > 8)
214                  /* add trailing colon to name. */                          fprintf(stderr, "share name %s truncated to %s\n", optarg,
215                  strcat(g_rdpdr_device[*id].name, ":");                                  g_rdpdr_device[*id].name);
216    
217                  g_rdpdr_device[*id].local_path = xmalloc(strlen(pos2) + 1);                  g_rdpdr_device[*id].local_path = xmalloc(strlen(pos2) + 1);
218                  strcpy(g_rdpdr_device[*id].local_path, pos2);                  strcpy(g_rdpdr_device[*id].local_path, pos2);
                 printf("DISK %s to %s\n", g_rdpdr_device[*id].name, g_rdpdr_device[*id].local_path);  
219                  g_rdpdr_device[*id].device_type = DEVICE_TYPE_DISK;                  g_rdpdr_device[*id].device_type = DEVICE_TYPE_DISK;
220                  count++;                  count++;
221                  (*id)++;                  (*id)++;
# Line 180  disk_enum_devices(int *id, char *optarg) Line 226  disk_enum_devices(int *id, char *optarg)
226  }  }
227    
228  /* Opens or creates a file or directory */  /* Opens or creates a file or directory */
229  NTSTATUS  static NTSTATUS
230  disk_create(uint32 device_id, uint32 accessmask, uint32 sharemode, uint32 create_disposition,  disk_create(uint32 device_id, uint32 accessmask, uint32 sharemode, uint32 create_disposition,
231              uint32 flags_and_attributes, char *filename, HANDLE * phandle)              uint32 flags_and_attributes, char *filename, NTHANDLE * phandle)
232  {  {
233          HANDLE handle;          NTHANDLE handle;
234          DIR *dirp;          DIR *dirp;
235          int flags, mode;          int flags, mode;
236          char path[256];          char path[256];
237            struct stat filestat;
238    
239          handle = 0;          handle = 0;
240          dirp = NULL;          dirp = NULL;
241          flags = 0;          flags = 0;
242          mode = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH;          mode = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH;
243    
244    
245          if (filename[strlen(filename) - 1] == '/')          if (filename[strlen(filename) - 1] == '/')
246                  filename[strlen(filename) - 1] = 0;                  filename[strlen(filename) - 1] = 0;
247          sprintf(path, "%s%s", g_rdpdr_device[device_id].local_path, filename);          sprintf(path, "%s%s", g_rdpdr_device[device_id].local_path, filename);
# Line 233  disk_create(uint32 device_id, uint32 acc Line 281  disk_create(uint32 device_id, uint32 acc
281    
282          //printf("Open: \"%s\"  flags: %u, accessmask: %u sharemode: %u create disp: %u\n", path, flags_and_attributes, accessmask, sharemode, create_disposition);          //printf("Open: \"%s\"  flags: %u, accessmask: %u sharemode: %u create disp: %u\n", path, flags_and_attributes, accessmask, sharemode, create_disposition);
283    
         /* since we can't trust the FILE_DIRECTORY_FILE flag */  
         /* we need to double check that the file isn't a dir */  
         struct stat filestat;  
   
284          // Get information about file and set that flag ourselfs          // Get information about file and set that flag ourselfs
285          if ((stat(path, &filestat) == 0) && (S_ISDIR(filestat.st_mode)))          if ((stat(path, &filestat) == 0) && (S_ISDIR(filestat.st_mode)))
286                  flags_and_attributes |= FILE_DIRECTORY_FILE;          {
287                    if (flags_and_attributes & FILE_NON_DIRECTORY_FILE)
288                            return STATUS_FILE_IS_A_DIRECTORY;
289                    else
290                            flags_and_attributes |= FILE_DIRECTORY_FILE;
291            }
292    
293          if (flags_and_attributes & FILE_DIRECTORY_FILE)          if (flags_and_attributes & FILE_DIRECTORY_FILE)
294          {          {
# Line 291  disk_create(uint32 device_id, uint32 acc Line 340  disk_create(uint32 device_id, uint32 acc
340                  {                  {
341                          switch (errno)                          switch (errno)
342                          {                          {
343                                    case EISDIR:
344    
345                                            return STATUS_FILE_IS_A_DIRECTORY;
346    
347                                  case EACCES:                                  case EACCES:
348    
349                                          return STATUS_ACCESS_DENIED;                                          return STATUS_ACCESS_DENIED;
# Line 298  disk_create(uint32 device_id, uint32 acc Line 351  disk_create(uint32 device_id, uint32 acc
351                                  case ENOENT:                                  case ENOENT:
352    
353                                          return STATUS_NO_SUCH_FILE;                                          return STATUS_NO_SUCH_FILE;
354                                    case EEXIST:
355    
356                                            return STATUS_OBJECT_NAME_COLLISION;
357                                  default:                                  default:
358    
359                                          perror("open");                                          perror("open");
# Line 327  disk_create(uint32 device_id, uint32 acc Line 383  disk_create(uint32 device_id, uint32 acc
383          return STATUS_SUCCESS;          return STATUS_SUCCESS;
384  }  }
385    
386  NTSTATUS  static NTSTATUS
387  disk_close(HANDLE handle)  disk_close(NTHANDLE handle)
388  {  {
389          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
390    
# Line 347  disk_close(HANDLE handle) Line 403  disk_close(HANDLE handle)
403          return STATUS_SUCCESS;          return STATUS_SUCCESS;
404  }  }
405    
406  NTSTATUS  static NTSTATUS
407  disk_read(HANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)  disk_read(NTHANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)
408  {  {
409          int n;          int n;
410    
411    #if 0
412          /* browsing dir ????        */          /* browsing dir ????        */
413          /* each request is 24 bytes */          /* each request is 24 bytes */
414          if (g_fileinfo[handle].flags_and_attributes & FILE_DIRECTORY_FILE)          if (g_fileinfo[handle].flags_and_attributes & FILE_DIRECTORY_FILE)
# Line 359  disk_read(HANDLE handle, uint8 * data, u Line 416  disk_read(HANDLE handle, uint8 * data, u
416                  *result = 0;                  *result = 0;
417                  return STATUS_SUCCESS;                  return STATUS_SUCCESS;
418          }          }
419    #endif
420    
421            lseek(handle, offset, SEEK_SET);
422    
         if (offset)  
                 lseek(handle, offset, SEEK_SET);  
423          n = read(handle, data, length);          n = read(handle, data, length);
424    
425          if (n < 0)          if (n < 0)
426          {          {
                 perror("read");  
427                  *result = 0;                  *result = 0;
428                  return STATUS_INVALID_PARAMETER;                  switch (errno)
429                    {
430                            case EISDIR:
431                                    return STATUS_FILE_IS_A_DIRECTORY;
432                            default:
433                                    perror("read");
434                                    return STATUS_INVALID_PARAMETER;
435                    }
436          }          }
437    
438          *result = n;          *result = n;
# Line 376  disk_read(HANDLE handle, uint8 * data, u Line 440  disk_read(HANDLE handle, uint8 * data, u
440          return STATUS_SUCCESS;          return STATUS_SUCCESS;
441  }  }
442    
443  NTSTATUS  static NTSTATUS
444  disk_write(HANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)  disk_write(NTHANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)
445  {  {
446          int n;          int n;
447    
448          if (offset)          lseek(handle, offset, SEEK_SET);
                 lseek(handle, offset, SEEK_SET);  
449    
450          n = write(handle, data, length);          n = write(handle, data, length);
451    
# Line 390  disk_write(HANDLE handle, uint8 * data, Line 453  disk_write(HANDLE handle, uint8 * data,
453          {          {
454                  perror("write");                  perror("write");
455                  *result = 0;                  *result = 0;
456                  return STATUS_ACCESS_DENIED;                  switch (errno)
457                    {
458                            case ENOSPC:
459                                    return STATUS_DISK_FULL;
460                            default:
461                                    return STATUS_ACCESS_DENIED;
462                    }
463          }          }
464    
465          *result = n;          *result = n;
# Line 399  disk_write(HANDLE handle, uint8 * data, Line 468  disk_write(HANDLE handle, uint8 * data,
468  }  }
469    
470  NTSTATUS  NTSTATUS
471  disk_query_information(HANDLE handle, uint32 info_class, STREAM out)  disk_query_information(NTHANDLE handle, uint32 info_class, STREAM out)
472  {  {
473          uint32 file_attributes, ft_high, ft_low;          uint32 file_attributes, ft_high, ft_low;
474          struct stat filestat;          struct stat filestat;
# Line 418  disk_query_information(HANDLE handle, ui Line 487  disk_query_information(HANDLE handle, ui
487          // Set file attributes          // Set file attributes
488          file_attributes = 0;          file_attributes = 0;
489          if (S_ISDIR(filestat.st_mode))          if (S_ISDIR(filestat.st_mode))
         {  
490                  file_attributes |= FILE_ATTRIBUTE_DIRECTORY;                  file_attributes |= FILE_ATTRIBUTE_DIRECTORY;
491          }  
492          filename = 1 + strrchr(path, '/');          filename = 1 + strrchr(path, '/');
493          if (filename && filename[0] == '.')          if (filename && filename[0] == '.')
         {  
494                  file_attributes |= FILE_ATTRIBUTE_HIDDEN;                  file_attributes |= FILE_ATTRIBUTE_HIDDEN;
495          }  
496            if (!file_attributes)
497                    file_attributes |= FILE_ATTRIBUTE_NORMAL;
498    
499            if (!(filestat.st_mode & S_IWUSR))
500                    file_attributes |= FILE_ATTRIBUTE_READONLY;
501    
502          // Return requested data          // Return requested data
503          switch (info_class)          switch (info_class)
504          {          {
505                  case 4: /* FileBasicInformation */                  case FileBasicInformation:
506                            seconds_since_1970_to_filetime(get_create_time(&filestat), &ft_high,
507                          out_uint8s(out, 8);     //create_time not available;                                                         &ft_low);
508                            out_uint32_le(out, ft_low);     //create_access_time
509                            out_uint32_le(out, ft_high);
510    
511                          seconds_since_1970_to_filetime(filestat.st_atime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(filestat.st_atime, &ft_high, &ft_low);
512                          out_uint32_le(out, ft_low);     //last_access_time                          out_uint32_le(out, ft_low);     //last_access_time
# Line 442  disk_query_information(HANDLE handle, ui Line 516  disk_query_information(HANDLE handle, ui
516                          out_uint32_le(out, ft_low);     //last_write_time                          out_uint32_le(out, ft_low);     //last_write_time
517                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
518    
519                          out_uint8s(out, 8);     //unknown zero                          seconds_since_1970_to_filetime(filestat.st_ctime, &ft_high, &ft_low);
520                            out_uint32_le(out, ft_low);     //last_change_time
521                            out_uint32_le(out, ft_high);
522    
523                          out_uint32_le(out, file_attributes);                          out_uint32_le(out, file_attributes);
524                          break;                          break;
525    
526                  case 5: /* FileStandardInformation */                  case FileStandardInformation:
527    
528                          out_uint32_le(out, filestat.st_size);   //Allocation size                          out_uint32_le(out, filestat.st_size);   //Allocation size
529                          out_uint32_le(out, 0);                          out_uint32_le(out, 0);
# Line 457  disk_query_information(HANDLE handle, ui Line 534  disk_query_information(HANDLE handle, ui
534                          out_uint8(out, S_ISDIR(filestat.st_mode) ? 1 : 0);      //Directory                          out_uint8(out, S_ISDIR(filestat.st_mode) ? 1 : 0);      //Directory
535                          break;                          break;
536    
537                  case 35:        /* FileObjectIdInformation */                  case FileObjectIdInformation:
538    
539                          out_uint32_le(out, file_attributes);    /* File Attributes */                          out_uint32_le(out, file_attributes);    /* File Attributes */
540                          out_uint32_le(out, 0);  /* Reparse Tag */                          out_uint32_le(out, 0);  /* Reparse Tag */
# Line 472  disk_query_information(HANDLE handle, ui Line 549  disk_query_information(HANDLE handle, ui
549  }  }
550    
551  NTSTATUS  NTSTATUS
552  disk_set_information(HANDLE handle, uint32 info_class, STREAM in, STREAM out)  disk_set_information(NTHANDLE handle, uint32 info_class, STREAM in, STREAM out)
553  {  {
554          uint32 device_id, length, file_attributes, ft_high, ft_low;          uint32 length, file_attributes, ft_high, ft_low;
555          char newname[256], fullpath[256];          char newname[256], fullpath[256];
556          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
557    
558            int mode;
559            struct stat filestat;
560            time_t write_time, change_time, access_time, mod_time;
561            struct utimbuf tvs;
562            struct STATFS_T stat_fs;
563    
564          pfinfo = &(g_fileinfo[handle]);          pfinfo = &(g_fileinfo[handle]);
565    
566          switch (info_class)          switch (info_class)
567          {          {
568                  case 4: /* FileBasicInformation */                  case FileBasicInformation:
569                            write_time = change_time = access_time = 0;
570    
571                            in_uint8s(in, 4);       /* Handle of root dir? */
572                            in_uint8s(in, 24);      /* unknown */
573    
574                            // CreationTime
575                            in_uint32_le(in, ft_low);
576                            in_uint32_le(in, ft_high);
577    
578                            // AccessTime
579                            in_uint32_le(in, ft_low);
580                            in_uint32_le(in, ft_high);
581                            if (ft_low || ft_high)
582                                    access_time = convert_1970_to_filetime(ft_high, ft_low);
583    
584                            // WriteTime
585                            in_uint32_le(in, ft_low);
586                            in_uint32_le(in, ft_high);
587                            if (ft_low || ft_high)
588                                    write_time = convert_1970_to_filetime(ft_high, ft_low);
589    
590                            // ChangeTime
591                            in_uint32_le(in, ft_low);
592                            in_uint32_le(in, ft_high);
593                            if (ft_low || ft_high)
594                                    change_time = convert_1970_to_filetime(ft_high, ft_low);
595    
596                            in_uint32_le(in, file_attributes);
597    
598                            if (fstat(handle, &filestat))
599                                    return STATUS_ACCESS_DENIED;
600    
601                            tvs.modtime = filestat.st_mtime;
602                            tvs.actime = filestat.st_atime;
603                            if (access_time)
604                                    tvs.actime = access_time;
605    
606    
607                            if (write_time || change_time)
608                                    mod_time = MIN(write_time, change_time);
609                            else
610                                    mod_time = write_time ? write_time : change_time;
611    
612                            if (mod_time)
613                                    tvs.modtime = mod_time;
614    
615    
616                            if (access_time || write_time || change_time)
617                            {
618    #if WITH_DEBUG_RDP5
619                                    printf("FileBasicInformation access       time %s",
620                                           ctime(&tvs.actime));
621                                    printf("FileBasicInformation modification time %s",
622                                           ctime(&tvs.modtime));
623    #endif
624                                    if (utime(pfinfo->path, &tvs))
625                                            return STATUS_ACCESS_DENIED;
626                            }
627    
628                            if (!file_attributes)
629                                    break;  // not valid
630    
631                            mode = filestat.st_mode;
632    
633                            if (file_attributes & FILE_ATTRIBUTE_READONLY)
634                                    mode &= ~(S_IWUSR | S_IWGRP | S_IWOTH);
635                            else
636                                    mode |= S_IWUSR;
637    
638                            mode &= 0777;
639    #if WITH_DEBUG_RDP5
640                            printf("FileBasicInformation set access mode 0%o", mode);
641    #endif
642    
643                            if (fchmod(handle, mode))
644                                    return STATUS_ACCESS_DENIED;
645    
                         // Probably safe to ignore  
646                          break;                          break;
647    
648                  case 10:        /* FileRenameInformation */                  case FileRenameInformation:
649    
650                          in_uint8s(in, 4);       /* Handle of root dir? */                          in_uint8s(in, 4);       /* Handle of root dir? */
651                          in_uint8s(in, 0x1a);    /* unknown */                          in_uint8s(in, 0x1a);    /* unknown */
# Line 513  disk_set_information(HANDLE handle, uint Line 671  disk_set_information(HANDLE handle, uint
671                          }                          }
672                          break;                          break;
673    
674                  case 13:        /* FileDispositionInformation */                  case FileDispositionInformation:
675                            /* As far as I understand it, the correct
676                               thing to do here is to *schedule* a delete,
677                               so it will be deleted when the file is
678                               closed. Subsequent
679                               FileDispositionInformation requests with
680                               DeleteFile set to FALSE should unschedule
681                               the delete. See
682                               http://www.osronline.com/article.cfm?article=245. Currently,
683                               we are deleting the file immediately. I
684                               guess this is a FIXME. */
685    
686                            //in_uint32_le(in, delete_on_close);
687    
688                            /* Make sure we close the file before
689                               unlinking it. Not doing so would trigger
690                               silly-delete if using NFS, which might fail
691                               on FAT floppies, for example. */
692                            disk_close(handle);
693    
694                          //unimpl("IRP Set File Information class: FileDispositionInformation\n");                          if ((pfinfo->flags_and_attributes & FILE_DIRECTORY_FILE))       // remove a directory
695                          // in_uint32_le(in, delete_on_close);                          {
696                          // disk_close(handle);                                  if (rmdir(pfinfo->path) < 0)
697                          unlink(pfinfo->path);                                          return STATUS_ACCESS_DENIED;
698                          break;                          }
699                            else if (unlink(pfinfo->path) < 0)      // unlink a file
700                  case 19:        /* FileAllocationInformation */                                  return STATUS_ACCESS_DENIED;
701    
                         unimpl("IRP Set File Information class: FileAllocationInformation\n");  
702                          break;                          break;
703    
704                  case 20:        /* FileEndOfFileInformation */                  case FileAllocationInformation:
705                            /* Fall through to FileEndOfFileInformation,
706                               which uses ftrunc. This is like Samba with
707                               "strict allocation = false", and means that
708                               we won't detect out-of-quota errors, for
709                               example. */
710    
711                    case FileEndOfFileInformation:
712                            in_uint8s(in, 28);      /* unknown */
713                            in_uint32_le(in, length);       /* file size */
714    
715                            /* prevents start of writing if not enough space left on device */
716                            if (STATFS_FN(g_rdpdr_device[pfinfo->device_id].local_path, &stat_fs) == 0)
717                                    if (stat_fs.f_bsize * stat_fs.f_bfree < length)
718                                            return STATUS_DISK_FULL;
719    
720                          unimpl("IRP Set File Information class: FileEndOfFileInformation\n");                          if (ftruncate_growable(handle, length) != 0)
721                          break;                          {
722                                    return STATUS_DISK_FULL;
723                            }
724    
725                            break;
726                  default:                  default:
727    
728                          unimpl("IRP Set File Information class: 0x%x\n", info_class);                          unimpl("IRP Set File Information class: 0x%x\n", info_class);
# Line 539  disk_set_information(HANDLE handle, uint Line 731  disk_set_information(HANDLE handle, uint
731          return STATUS_SUCCESS;          return STATUS_SUCCESS;
732  }  }
733    
734    static FsInfoType *
735    FsVolumeInfo(char *fpath)
736    {
737    
738    #ifdef HAVE_MNTENT_H
739            FILE *fdfs;
740            struct mntent *e;
741            static FsInfoType info;
742    
743            /* initialize */
744            memset(&info, 0, sizeof(info));
745            strcpy(info.label, "RDESKTOP");
746            strcpy(info.type, "RDPFS");
747    
748            fdfs = setmntent(MNTENT_PATH, "r");
749            if (!fdfs)
750                    return &info;
751    
752            while ((e = getmntent(fdfs)))
753            {
754                    if (strncmp(fpath, e->mnt_dir, strlen(fpath)) == 0)
755                    {
756                            strcpy(info.type, e->mnt_type);
757                            strcpy(info.name, e->mnt_fsname);
758                            if (strstr(e->mnt_opts, "vfat") || strstr(e->mnt_opts, "iso9660"))
759                            {
760                                    int fd = open(e->mnt_fsname, O_RDONLY);
761                                    if (fd >= 0)
762                                    {
763                                            unsigned char buf[512];
764                                            memset(buf, 0, sizeof(buf));
765                                            if (strstr(e->mnt_opts, "vfat"))
766                                                     /*FAT*/
767                                            {
768                                                    strcpy(info.type, "vfat");
769                                                    read(fd, buf, sizeof(buf));
770                                                    info.serial =
771                                                            (buf[42] << 24) + (buf[41] << 16) +
772                                                            (buf[40] << 8) + buf[39];
773                                                    strncpy(info.label, buf + 43, 10);
774                                                    info.label[10] = '\0';
775                                            }
776                                            else if (lseek(fd, 32767, SEEK_SET) >= 0)       /* ISO9660 */
777                                            {
778                                                    read(fd, buf, sizeof(buf));
779                                                    strncpy(info.label, buf + 41, 32);
780                                                    info.label[32] = '\0';
781                                                    //info.Serial = (buf[128]<<24)+(buf[127]<<16)+(buf[126]<<8)+buf[125];
782                                            }
783                                            close(fd);
784                                    }
785                            }
786                    }
787            }
788            endmntent(fdfs);
789    #else
790            static FsInfoType info;
791    
792            /* initialize */
793            memset(&info, 0, sizeof(info));
794            strcpy(info.label, "RDESKTOP");
795            strcpy(info.type, "RDPFS");
796    
797    #endif
798            return &info;
799    }
800    
801    
802  NTSTATUS  NTSTATUS
803  disk_query_volume_information(HANDLE handle, uint32 info_class, STREAM out)  disk_query_volume_information(NTHANDLE handle, uint32 info_class, STREAM out)
804  {  {
         char *volume, *fs_type;  
805          struct STATFS_T stat_fs;          struct STATFS_T stat_fs;
806          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
807            FsInfoType *fsinfo;
808    
809          pfinfo = &(g_fileinfo[handle]);          pfinfo = &(g_fileinfo[handle]);
         volume = "RDESKTOP";  
         fs_type = "RDPFS";  
810    
811          if (STATFS_FN(pfinfo->path, &stat_fs) != 0)     /* FIXME: statfs is not portable */          if (STATFS_FN(pfinfo->path, &stat_fs) != 0)
812          {          {
813                  perror("statfs");                  perror("statfs");
814                  return STATUS_ACCESS_DENIED;                  return STATUS_ACCESS_DENIED;
815          }          }
816    
817            fsinfo = FsVolumeInfo(pfinfo->path);
818    
819          switch (info_class)          switch (info_class)
820          {          {
821                  case 1: /* FileFsVolumeInformation */                  case FileFsVolumeInformation:
822    
823                          out_uint32_le(out, 0);  /* volume creation time low */                          out_uint32_le(out, 0);  /* volume creation time low */
824                          out_uint32_le(out, 0);  /* volume creation time high */                          out_uint32_le(out, 0);  /* volume creation time high */
825                          out_uint32_le(out, 0);  /* serial */                          out_uint32_le(out, fsinfo->serial);     /* serial */
826                          out_uint32_le(out, 2 * strlen(volume)); /* length of string */  
827                            out_uint32_le(out, 2 * strlen(fsinfo->label));  /* length of string */
828    
829                          out_uint8(out, 0);      /* support objects? */                          out_uint8(out, 0);      /* support objects? */
830                          rdp_out_unistr(out, volume, 2 * strlen(volume) - 2);                          rdp_out_unistr(out, fsinfo->label, 2 * strlen(fsinfo->label) - 2);
831                          break;                          break;
832    
833                  case 3: /* FileFsSizeInformation */                  case FileFsSizeInformation:
834    
835                          out_uint32_le(out, stat_fs.f_blocks);   /* Total allocation units low */                          out_uint32_le(out, stat_fs.f_blocks);   /* Total allocation units low */
836                          out_uint32_le(out, 0);  /* Total allocation high units */                          out_uint32_le(out, 0);  /* Total allocation high units */
# Line 578  disk_query_volume_information(HANDLE han Line 840  disk_query_volume_information(HANDLE han
840                          out_uint32_le(out, 0x200);      /* Bytes per sector */                          out_uint32_le(out, 0x200);      /* Bytes per sector */
841                          break;                          break;
842    
843                  case 5: /* FileFsAttributeInformation */                  case FileFsAttributeInformation:
844    
845                          out_uint32_le(out, FS_CASE_SENSITIVE | FS_CASE_IS_PRESERVED);   /* fs attributes */                          out_uint32_le(out, FS_CASE_SENSITIVE | FS_CASE_IS_PRESERVED);   /* fs attributes */
846                          out_uint32_le(out, F_NAMELEN(stat_fs)); /* max length of filename */                          out_uint32_le(out, F_NAMELEN(stat_fs)); /* max length of filename */
847                          out_uint32_le(out, 2 * strlen(fs_type));        /* length of fs_type */  
848                          rdp_out_unistr(out, fs_type, 2 * strlen(fs_type) - 2);                          out_uint32_le(out, 2 * strlen(fsinfo->type));   /* length of fs_type */
849                            rdp_out_unistr(out, fsinfo->type, 2 * strlen(fsinfo->type) - 2);
850                          break;                          break;
851    
852                  case 2: /* FileFsLabelInformation */                  case FileFsLabelInformation:
853                  case 4: /* FileFsDeviceInformation */                  case FileFsDeviceInformation:
854                  case 6: /* FileFsControlInformation */                  case FileFsControlInformation:
855                  case 7: /* FileFsFullSizeInformation */                  case FileFsFullSizeInformation:
856                  case 8: /* FileFsObjectIdInformation */                  case FileFsObjectIdInformation:
857                  case 9: /* FileFsMaximumInformation */                  case FileFsMaximumInformation:
858    
859                  default:                  default:
860    
861                          unimpl("IRP Query Volume Information class: 0x%x\n", info_class);                          unimpl("IRP Query Volume Information class: 0x%x\n", info_class);
# Line 601  disk_query_volume_information(HANDLE han Line 865  disk_query_volume_information(HANDLE han
865  }  }
866    
867  NTSTATUS  NTSTATUS
868  disk_query_directory(HANDLE handle, uint32 info_class, char *pattern, STREAM out)  disk_query_directory(NTHANDLE handle, uint32 info_class, char *pattern, STREAM out)
869  {  {
870          uint32 file_attributes, ft_low, ft_high;          uint32 file_attributes, ft_low, ft_high;
871          char *dirname, fullpath[256];          char *dirname, fullpath[256];
# Line 617  disk_query_directory(HANDLE handle, uint Line 881  disk_query_directory(HANDLE handle, uint
881    
882          switch (info_class)          switch (info_class)
883          {          {
884                  case 3: //FIXME: Why 3?                  case FileBothDirectoryInformation:
885    
886                          // If a search pattern is received, remember this pattern, and restart search                          // If a search pattern is received, remember this pattern, and restart search
887                          if (pattern[0] != 0)                          if (pattern[0] != 0)
# Line 629  disk_query_directory(HANDLE handle, uint Line 893  disk_query_directory(HANDLE handle, uint
893                          // find next dirent matching pattern                          // find next dirent matching pattern
894                          pdirent = readdir(pdir);                          pdirent = readdir(pdir);
895                          while (pdirent && fnmatch(pfinfo->pattern, pdirent->d_name, 0) != 0)                          while (pdirent && fnmatch(pfinfo->pattern, pdirent->d_name, 0) != 0)
                         {  
896                                  pdirent = readdir(pdir);                                  pdirent = readdir(pdir);
                         }  
897    
898                          if (pdirent == NULL)                          if (pdirent == NULL)
                         {  
899                                  return STATUS_NO_MORE_FILES;                                  return STATUS_NO_MORE_FILES;
                         }  
900    
901                          // Get information for directory entry                          // Get information for directory entry
902                          sprintf(fullpath, "%s/%s", dirname, pdirent->d_name);                          sprintf(fullpath, "%s/%s", dirname, pdirent->d_name);
903                          /* JIF  
                            printf("Stat: %s\n", fullpath); */  
904                          if (stat(fullpath, &fstat))                          if (stat(fullpath, &fstat))
905                          {                          {
906                                  perror("stat");                                  switch (errno)
907                                  out_uint8(out, 0);                                  {
908                                  return STATUS_ACCESS_DENIED;                                          case ENOENT:
909                                            case ELOOP:
910                                            case EACCES:
911                                                    /* These are non-fatal errors. */
912                                                    memset(&fstat, 0, sizeof(fstat));
913                                                    break;
914                                            default:
915                                                    /* Fatal error. By returning STATUS_NO_SUCH_FILE,
916                                                       the directory list operation will be aborted */
917                                                    perror(fullpath);
918                                                    out_uint8(out, 0);
919                                                    return STATUS_NO_SUCH_FILE;
920                                    }
921                          }                          }
922    
923                          if (S_ISDIR(fstat.st_mode))                          if (S_ISDIR(fstat.st_mode))
924                                  file_attributes |= FILE_ATTRIBUTE_DIRECTORY;                                  file_attributes |= FILE_ATTRIBUTE_DIRECTORY;
925                          if (pdirent->d_name[0] == '.')                          if (pdirent->d_name[0] == '.')
926                                  file_attributes |= FILE_ATTRIBUTE_HIDDEN;                                  file_attributes |= FILE_ATTRIBUTE_HIDDEN;
927                            if (!file_attributes)
928                                    file_attributes |= FILE_ATTRIBUTE_NORMAL;
929                            if (!(fstat.st_mode & S_IWUSR))
930                                    file_attributes |= FILE_ATTRIBUTE_READONLY;
931    
932                          // Return requested information                          // Return requested information
933                          out_uint8s(out, 8);     //unknown zero                          out_uint8s(out, 8);     //unknown zero
934                          out_uint8s(out, 8);     //create_time not available in posix;  
935                            seconds_since_1970_to_filetime(get_create_time(&fstat), &ft_high, &ft_low);
936                            out_uint32_le(out, ft_low);     // create time
937                            out_uint32_le(out, ft_high);
938    
939                          seconds_since_1970_to_filetime(fstat.st_atime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(fstat.st_atime, &ft_high, &ft_low);
940                          out_uint32_le(out, ft_low);     //last_access_time                          out_uint32_le(out, ft_low);     //last_access_time
# Line 666  disk_query_directory(HANDLE handle, uint Line 944  disk_query_directory(HANDLE handle, uint
944                          out_uint32_le(out, ft_low);     //last_write_time                          out_uint32_le(out, ft_low);     //last_write_time
945                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
946    
947                          out_uint8s(out, 8);     //unknown zero                          seconds_since_1970_to_filetime(fstat.st_ctime, &ft_high, &ft_low);
948                            out_uint32_le(out, ft_low);     //change_write_time
949                            out_uint32_le(out, ft_high);
950    
951                          out_uint32_le(out, fstat.st_size);      //filesize low                          out_uint32_le(out, fstat.st_size);      //filesize low
952                          out_uint32_le(out, 0);  //filesize high                          out_uint32_le(out, 0);  //filesize high
953                          out_uint32_le(out, fstat.st_size);      //filesize low                          out_uint32_le(out, fstat.st_size);      //filesize low
# Line 680  disk_query_directory(HANDLE handle, uint Line 961  disk_query_directory(HANDLE handle, uint
961                          break;                          break;
962    
963                  default:                  default:
964                            /* FIXME: Support FileDirectoryInformation,
965                               FileFullDirectoryInformation, and
966                               FileNamesInformation */
967    
968                          unimpl("IRP Query Directory sub: 0x%x\n", info_class);                          unimpl("IRP Query Directory sub: 0x%x\n", info_class);
969                          return STATUS_INVALID_PARAMETER;                          return STATUS_INVALID_PARAMETER;
# Line 688  disk_query_directory(HANDLE handle, uint Line 972  disk_query_directory(HANDLE handle, uint
972          return STATUS_SUCCESS;          return STATUS_SUCCESS;
973  }  }
974    
975    
976    
977    static NTSTATUS
978    disk_device_control(NTHANDLE handle, uint32 request, STREAM in, STREAM out)
979    {
980            if (((request >> 16) != 20) || ((request >> 16) != 9))
981                    return STATUS_INVALID_PARAMETER;
982    
983            /* extract operation */
984            request >>= 2;
985            request &= 0xfff;
986    
987            printf("DISK IOCTL %d\n", request);
988    
989            switch (request)
990            {
991                    case 25:        // ?
992                    case 42:        // ?
993                    default:
994                            unimpl("DISK IOCTL %d\n", request);
995                            return STATUS_INVALID_PARAMETER;
996            }
997    
998            return STATUS_SUCCESS;
999    }
1000    
1001  DEVICE_FNS disk_fns = {  DEVICE_FNS disk_fns = {
1002          disk_create,          disk_create,
1003          disk_close,          disk_close,
1004          disk_read,          disk_read,
1005          disk_write,          disk_write,
1006          NULL                    /* device_control */          disk_device_control     /* device_control */
1007  };  };

Legend:
Removed from v.597  
changed lines
  Added in v.786

  ViewVC Help
Powered by ViewVC 1.1.26