/[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 627 by n-ki, Thu Mar 4 08:24:40 2004 UTC revision 787 by astrand, Thu Oct 21 08:28:03 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  
   
 #if (defined(SOLARIS) || defined(__hpux))  
 #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 101  Line 31 
31  #include <utime.h>  #include <utime.h>
32  #include <time.h>               /* ctime */  #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__))  #if (defined(SOLARIS) || defined (__hpux) || defined(__BEOS__))
46  #include <sys/statvfs.h>        /* solaris statvfs */  #include <sys/statvfs.h>        /* solaris statvfs */
47  #include <sys/mntent.h>  /* TODO: Fix mntent-handling for solaris/hpux
48  /* TODO: Fix mntent-handling for solaris */   * #include <sys/mntent.h> */
49  #undef HAVE_MNTENT_H  #undef HAVE_MNTENT_H
50  #define MNTENT_PATH "/etc/mnttab"  #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>  #include <mntent.h>
# Line 144  typedef struct Line 91  typedef struct
91  } FsInfoType;  } FsInfoType;
92    
93    
94  time_t  static time_t
95  get_create_time(struct stat *st)  get_create_time(struct stat *st)
96  {  {
97          time_t ret, ret1;          time_t ret, ret1;
# Line 159  get_create_time(struct stat *st) Line 106  get_create_time(struct stat *st)
106  }  }
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 170  seconds_since_1970_to_filetime(time_t se Line 117  seconds_since_1970_to_filetime(time_t se
117  }  }
118    
119  /* Convert seconds since 1970 back to filetime */  /* Convert seconds since 1970 back to filetime */
120  time_t  static time_t
121  convert_1970_to_filetime(uint32 high, uint32 low)  convert_1970_to_filetime(uint32 high, uint32 low)
122  {  {
123          unsigned long long ticks;          unsigned long long ticks;
# Line 185  convert_1970_to_filetime(uint32 high, ui Line 132  convert_1970_to_filetime(uint32 high, ui
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. */
# Line 202  disk_enum_devices(uint32 * id, char *opt Line 208  disk_enum_devices(uint32 * id, char *opt
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);  
   
                 toupper_str(g_rdpdr_device[*id].name);  
211    
212                  /* add trailing colon to name. */                  strncpy(g_rdpdr_device[*id].name, optarg, sizeof(g_rdpdr_device[*id].name));
213                  strcat(g_rdpdr_device[*id].name, ":");                  if (strlen(optarg) > 8)
214                            fprintf(stderr, "share name %s truncated to %s\n", optarg,
215                                    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 222  disk_enum_devices(uint32 * id, char *opt Line 226  disk_enum_devices(uint32 * id, char *opt
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];
# Line 237  disk_create(uint32 device_id, uint32 acc Line 241  disk_create(uint32 device_id, uint32 acc
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            if (*filename && filename[strlen(filename) - 1] == '/')
         if (filename[strlen(filename) - 1] == '/')  
245                  filename[strlen(filename) - 1] = 0;                  filename[strlen(filename) - 1] = 0;
246          sprintf(path, "%s%s", g_rdpdr_device[device_id].local_path, filename);          sprintf(path, "%s%s", g_rdpdr_device[device_id].local_path, filename);
247    
# Line 379  disk_create(uint32 device_id, uint32 acc Line 382  disk_create(uint32 device_id, uint32 acc
382          return STATUS_SUCCESS;          return STATUS_SUCCESS;
383  }  }
384    
385  NTSTATUS  static NTSTATUS
386  disk_close(HANDLE handle)  disk_close(NTHANDLE handle)
387  {  {
388          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
389    
# Line 399  disk_close(HANDLE handle) Line 402  disk_close(HANDLE handle)
402          return STATUS_SUCCESS;          return STATUS_SUCCESS;
403  }  }
404    
405  NTSTATUS  static NTSTATUS
406  disk_read(HANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)  disk_read(NTHANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)
407  {  {
408          int n;          int n;
409    
# Line 436  disk_read(HANDLE handle, uint8 * data, u Line 439  disk_read(HANDLE handle, uint8 * data, u
439          return STATUS_SUCCESS;          return STATUS_SUCCESS;
440  }  }
441    
442  NTSTATUS  static NTSTATUS
443  disk_write(HANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)  disk_write(NTHANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)
444  {  {
445          int n;          int n;
446    
# Line 464  disk_write(HANDLE handle, uint8 * data, Line 467  disk_write(HANDLE handle, uint8 * data,
467  }  }
468    
469  NTSTATUS  NTSTATUS
470  disk_query_information(HANDLE handle, uint32 info_class, STREAM out)  disk_query_information(NTHANDLE handle, uint32 info_class, STREAM out)
471  {  {
472          uint32 file_attributes, ft_high, ft_low;          uint32 file_attributes, ft_high, ft_low;
473          struct stat filestat;          struct stat filestat;
# Line 498  disk_query_information(HANDLE handle, ui Line 501  disk_query_information(HANDLE handle, ui
501          // Return requested data          // Return requested data
502          switch (info_class)          switch (info_class)
503          {          {
504                  case 4: /* FileBasicInformation */                  case FileBasicInformation:
505                          seconds_since_1970_to_filetime(get_create_time(&filestat), &ft_high,                          seconds_since_1970_to_filetime(get_create_time(&filestat), &ft_high,
506                                                         &ft_low);                                                         &ft_low);
507                          out_uint32_le(out, ft_low);     //create_access_time                          out_uint32_le(out, ft_low);     //create_access_time
# Line 519  disk_query_information(HANDLE handle, ui Line 522  disk_query_information(HANDLE handle, ui
522                          out_uint32_le(out, file_attributes);                          out_uint32_le(out, file_attributes);
523                          break;                          break;
524    
525                  case 5: /* FileStandardInformation */                  case FileStandardInformation:
526    
527                          out_uint32_le(out, filestat.st_size);   //Allocation size                          out_uint32_le(out, filestat.st_size);   //Allocation size
528                          out_uint32_le(out, 0);                          out_uint32_le(out, 0);
# Line 530  disk_query_information(HANDLE handle, ui Line 533  disk_query_information(HANDLE handle, ui
533                          out_uint8(out, S_ISDIR(filestat.st_mode) ? 1 : 0);      //Directory                          out_uint8(out, S_ISDIR(filestat.st_mode) ? 1 : 0);      //Directory
534                          break;                          break;
535    
536                  case 35:        /* FileObjectIdInformation */                  case FileObjectIdInformation:
537    
538                          out_uint32_le(out, file_attributes);    /* File Attributes */                          out_uint32_le(out, file_attributes);    /* File Attributes */
539                          out_uint32_le(out, 0);  /* Reparse Tag */                          out_uint32_le(out, 0);  /* Reparse Tag */
# Line 545  disk_query_information(HANDLE handle, ui Line 548  disk_query_information(HANDLE handle, ui
548  }  }
549    
550  NTSTATUS  NTSTATUS
551  disk_set_information(HANDLE handle, uint32 info_class, STREAM in, STREAM out)  disk_set_information(NTHANDLE handle, uint32 info_class, STREAM in, STREAM out)
552  {  {
553          uint32 device_id, length, file_attributes, ft_high, ft_low;          uint32 length, file_attributes, ft_high, ft_low;
554          char newname[256], fullpath[256];          char newname[256], fullpath[256];
555          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
556    
# Line 561  disk_set_information(HANDLE handle, uint Line 564  disk_set_information(HANDLE handle, uint
564    
565          switch (info_class)          switch (info_class)
566          {          {
567                  case 4: /* FileBasicInformation */                  case FileBasicInformation:
568                          write_time = change_time = access_time = 0;                          write_time = change_time = access_time = 0;
569    
570                          in_uint8s(in, 4);       /* Handle of root dir? */                          in_uint8s(in, 4);       /* Handle of root dir? */
# Line 641  disk_set_information(HANDLE handle, uint Line 644  disk_set_information(HANDLE handle, uint
644    
645                          break;                          break;
646    
647                  case 10:        /* FileRenameInformation */                  case FileRenameInformation:
648    
649                          in_uint8s(in, 4);       /* Handle of root dir? */                          in_uint8s(in, 4);       /* Handle of root dir? */
650                          in_uint8s(in, 0x1a);    /* unknown */                          in_uint8s(in, 0x1a);    /* unknown */
# Line 667  disk_set_information(HANDLE handle, uint Line 670  disk_set_information(HANDLE handle, uint
670                          }                          }
671                          break;                          break;
672    
673                  case 13:        /* FileDispositionInformation */                  case FileDispositionInformation:
674                            /* As far as I understand it, the correct
675                          //unimpl("IRP Set File Information class: FileDispositionInformation\n");                             thing to do here is to *schedule* a delete,
676                               so it will be deleted when the file is
677                               closed. Subsequent
678                               FileDispositionInformation requests with
679                               DeleteFile set to FALSE should unschedule
680                               the delete. See
681                               http://www.osronline.com/article.cfm?article=245. Currently,
682                               we are deleting the file immediately. I
683                               guess this is a FIXME. */
684    
685                          //in_uint32_le(in, delete_on_close);                          //in_uint32_le(in, delete_on_close);
686                          // disk_close(handle);  
687                            /* Make sure we close the file before
688                               unlinking it. Not doing so would trigger
689                               silly-delete if using NFS, which might fail
690                               on FAT floppies, for example. */
691                            disk_close(handle);
692    
693                          if ((pfinfo->flags_and_attributes & FILE_DIRECTORY_FILE))       // remove a directory                          if ((pfinfo->flags_and_attributes & FILE_DIRECTORY_FILE))       // remove a directory
694                          {                          {
695                                  if (rmdir(pfinfo->path) < 0)                                  if (rmdir(pfinfo->path) < 0)
# Line 683  disk_set_information(HANDLE handle, uint Line 700  disk_set_information(HANDLE handle, uint
700    
701                          break;                          break;
702    
703                  case 19:        /* FileAllocationInformation */                  case FileAllocationInformation:
704                            /* Fall through to FileEndOfFileInformation,
705                          unimpl("IRP Set File Information class: FileAllocationInformation\n");                             which uses ftrunc. This is like Samba with
706                          break;                             "strict allocation = false", and means that
707                               we won't detect out-of-quota errors, for
708                               example. */
709    
710                  case 20:        /* FileEndOfFileInformation */                  case FileEndOfFileInformation:
711                          in_uint8s(in, 28);      /* unknown */                          in_uint8s(in, 28);      /* unknown */
712                          in_uint32_le(in, length);       /* file size */                          in_uint32_le(in, length);       /* file size */
713    
# Line 697  disk_set_information(HANDLE handle, uint Line 716  disk_set_information(HANDLE handle, uint
716                                  if (stat_fs.f_bsize * stat_fs.f_bfree < length)                                  if (stat_fs.f_bsize * stat_fs.f_bfree < length)
717                                          return STATUS_DISK_FULL;                                          return STATUS_DISK_FULL;
718    
719                          //printf("FileEndOfFileInformation length = %d\n", length);                          if (ftruncate_growable(handle, length) != 0)
720                          // ????????????                          {
721                          //unimpl("IRP Set File Information class: FileEndOfFileInformation\n");                                  return STATUS_DISK_FULL;
722                            }
723    
724                          break;                          break;
725                  default:                  default:
726    
# Line 709  disk_set_information(HANDLE handle, uint Line 730  disk_set_information(HANDLE handle, uint
730          return STATUS_SUCCESS;          return STATUS_SUCCESS;
731  }  }
732    
733  FsInfoType *  static FsInfoType *
734  FsVolumeInfo(char *fpath)  FsVolumeInfo(char *fpath)
735  {  {
736    
# Line 778  FsVolumeInfo(char *fpath) Line 799  FsVolumeInfo(char *fpath)
799    
800    
801  NTSTATUS  NTSTATUS
802  disk_query_volume_information(HANDLE handle, uint32 info_class, STREAM out)  disk_query_volume_information(NTHANDLE handle, uint32 info_class, STREAM out)
803  {  {
804          struct STATFS_T stat_fs;          struct STATFS_T stat_fs;
805          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
# Line 796  disk_query_volume_information(HANDLE han Line 817  disk_query_volume_information(HANDLE han
817    
818          switch (info_class)          switch (info_class)
819          {          {
820                  case 1: /* FileFsVolumeInformation */                  case FileFsVolumeInformation:
821    
822                          out_uint32_le(out, 0);  /* volume creation time low */                          out_uint32_le(out, 0);  /* volume creation time low */
823                          out_uint32_le(out, 0);  /* volume creation time high */                          out_uint32_le(out, 0);  /* volume creation time high */
# Line 808  disk_query_volume_information(HANDLE han Line 829  disk_query_volume_information(HANDLE han
829                          rdp_out_unistr(out, fsinfo->label, 2 * strlen(fsinfo->label) - 2);                          rdp_out_unistr(out, fsinfo->label, 2 * strlen(fsinfo->label) - 2);
830                          break;                          break;
831    
832                  case 3: /* FileFsSizeInformation */                  case FileFsSizeInformation:
833    
834                          out_uint32_le(out, stat_fs.f_blocks);   /* Total allocation units low */                          out_uint32_le(out, stat_fs.f_blocks);   /* Total allocation units low */
835                          out_uint32_le(out, 0);  /* Total allocation high units */                          out_uint32_le(out, 0);  /* Total allocation high units */
# Line 818  disk_query_volume_information(HANDLE han Line 839  disk_query_volume_information(HANDLE han
839                          out_uint32_le(out, 0x200);      /* Bytes per sector */                          out_uint32_le(out, 0x200);      /* Bytes per sector */
840                          break;                          break;
841    
842                  case 5: /* FileFsAttributeInformation */                  case FileFsAttributeInformation:
843    
844                          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 */
845                          out_uint32_le(out, F_NAMELEN(stat_fs)); /* max length of filename */                          out_uint32_le(out, F_NAMELEN(stat_fs)); /* max length of filename */
# Line 827  disk_query_volume_information(HANDLE han Line 848  disk_query_volume_information(HANDLE han
848                          rdp_out_unistr(out, fsinfo->type, 2 * strlen(fsinfo->type) - 2);                          rdp_out_unistr(out, fsinfo->type, 2 * strlen(fsinfo->type) - 2);
849                          break;                          break;
850    
851                  case 2: /* FileFsLabelInformation */                  case FileFsLabelInformation:
852                  case 4: /* FileFsDeviceInformation */                  case FileFsDeviceInformation:
853                  case 6: /* FileFsControlInformation */                  case FileFsControlInformation:
854                  case 7: /* FileFsFullSizeInformation */                  case FileFsFullSizeInformation:
855                  case 8: /* FileFsObjectIdInformation */                  case FileFsObjectIdInformation:
856                  case 9: /* FileFsMaximumInformation */                  case FileFsMaximumInformation:
857    
858                  default:                  default:
859    
860                          unimpl("IRP Query Volume Information class: 0x%x\n", info_class);                          unimpl("IRP Query Volume Information class: 0x%x\n", info_class);
# Line 842  disk_query_volume_information(HANDLE han Line 864  disk_query_volume_information(HANDLE han
864  }  }
865    
866  NTSTATUS  NTSTATUS
867  disk_query_directory(HANDLE handle, uint32 info_class, char *pattern, STREAM out)  disk_query_directory(NTHANDLE handle, uint32 info_class, char *pattern, STREAM out)
868  {  {
869          uint32 file_attributes, ft_low, ft_high;          uint32 file_attributes, ft_low, ft_high;
870          char *dirname, fullpath[256];          char *dirname, fullpath[256];
# Line 858  disk_query_directory(HANDLE handle, uint Line 880  disk_query_directory(HANDLE handle, uint
880    
881          switch (info_class)          switch (info_class)
882          {          {
883                  case 3: //FIXME: Why 3?                  case FileBothDirectoryInformation:
884    
885                          // If a search pattern is received, remember this pattern, and restart search                          // If a search pattern is received, remember this pattern, and restart search
886                          if (pattern[0] != 0)                          if (pattern[0] != 0)
# Line 878  disk_query_directory(HANDLE handle, uint Line 900  disk_query_directory(HANDLE handle, uint
900                          // Get information for directory entry                          // Get information for directory entry
901                          sprintf(fullpath, "%s/%s", dirname, pdirent->d_name);                          sprintf(fullpath, "%s/%s", dirname, pdirent->d_name);
902    
                         /* JIF  
                            printf("Stat: %s\n", fullpath); */  
903                          if (stat(fullpath, &fstat))                          if (stat(fullpath, &fstat))
904                          {                          {
905                                  perror("stat");                                  switch (errno)
906                                  out_uint8(out, 0);                                  {
907                                  return STATUS_ACCESS_DENIED;                                          case ENOENT:
908                                            case ELOOP:
909                                            case EACCES:
910                                                    /* These are non-fatal errors. */
911                                                    memset(&fstat, 0, sizeof(fstat));
912                                                    break;
913                                            default:
914                                                    /* Fatal error. By returning STATUS_NO_SUCH_FILE,
915                                                       the directory list operation will be aborted */
916                                                    perror(fullpath);
917                                                    out_uint8(out, 0);
918                                                    return STATUS_NO_SUCH_FILE;
919                                    }
920                          }                          }
921    
922                          if (S_ISDIR(fstat.st_mode))                          if (S_ISDIR(fstat.st_mode))
# Line 928  disk_query_directory(HANDLE handle, uint Line 960  disk_query_directory(HANDLE handle, uint
960                          break;                          break;
961    
962                  default:                  default:
963                            /* FIXME: Support FileDirectoryInformation,
964                               FileFullDirectoryInformation, and
965                               FileNamesInformation */
966    
967                          unimpl("IRP Query Directory sub: 0x%x\n", info_class);                          unimpl("IRP Query Directory sub: 0x%x\n", info_class);
968                          return STATUS_INVALID_PARAMETER;                          return STATUS_INVALID_PARAMETER;
# Line 939  disk_query_directory(HANDLE handle, uint Line 974  disk_query_directory(HANDLE handle, uint
974    
975    
976  static NTSTATUS  static NTSTATUS
977  disk_device_control(HANDLE handle, uint32 request, STREAM in, STREAM out)  disk_device_control(NTHANDLE handle, uint32 request, STREAM in, STREAM out)
978  {  {
         uint32 result;  
   
979          if (((request >> 16) != 20) || ((request >> 16) != 9))          if (((request >> 16) != 20) || ((request >> 16) != 9))
980                  return STATUS_INVALID_PARAMETER;                  return STATUS_INVALID_PARAMETER;
981    

Legend:
Removed from v.627  
changed lines
  Added in v.787

  ViewVC Help
Powered by ViewVC 1.1.26