/[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 616 by n-ki, Tue Feb 24 15:24:38 2004 UTC revision 745 by stargo, Mon Aug 9 11:40:41 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)
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  #define HAVE_MNTENT_H   * #include <sys/mntent.h> */
49    #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
# Line 118  Line 59 
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 132  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];
 {  
         uint32 device_id, flags_and_attributes;  
         char path[256];  
         DIR *pdir;  
         struct dirent *pdirent;  
         char pattern[64];  
         BOOL delete_on_close;  
 }  
 g_fileinfo[MAX_OPEN_FILES];  
84    
85  typedef struct  typedef struct
86  {  {
# Line 152  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 167  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 178  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 230  disk_enum_devices(uint32 * id, char *opt Line 169  disk_enum_devices(uint32 * id, char *opt
169  }  }
170    
171  /* Opens or creates a file or directory */  /* Opens or creates a file or directory */
172  NTSTATUS  static NTSTATUS
173  disk_create(uint32 device_id, uint32 accessmask, uint32 sharemode, uint32 create_disposition,  disk_create(uint32 device_id, uint32 accessmask, uint32 sharemode, uint32 create_disposition,
174              uint32 flags_and_attributes, char *filename, HANDLE * phandle)              uint32 flags_and_attributes, char *filename, HANDLE * phandle)
175  {  {
# Line 387  disk_create(uint32 device_id, uint32 acc Line 326  disk_create(uint32 device_id, uint32 acc
326          return STATUS_SUCCESS;          return STATUS_SUCCESS;
327  }  }
328    
329  NTSTATUS  static NTSTATUS
330  disk_close(HANDLE handle)  disk_close(HANDLE handle)
331  {  {
332          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
# Line 407  disk_close(HANDLE handle) Line 346  disk_close(HANDLE handle)
346          return STATUS_SUCCESS;          return STATUS_SUCCESS;
347  }  }
348    
349  NTSTATUS  static NTSTATUS
350  disk_read(HANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)  disk_read(HANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)
351  {  {
352          int n;          int n;
# Line 444  disk_read(HANDLE handle, uint8 * data, u Line 383  disk_read(HANDLE handle, uint8 * data, u
383          return STATUS_SUCCESS;          return STATUS_SUCCESS;
384  }  }
385    
386  NTSTATUS  static NTSTATUS
387  disk_write(HANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)  disk_write(HANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)
388  {  {
389          int n;          int n;
# Line 506  disk_query_information(HANDLE handle, ui Line 445  disk_query_information(HANDLE handle, ui
445          // Return requested data          // Return requested data
446          switch (info_class)          switch (info_class)
447          {          {
448                  case 4: /* FileBasicInformation */                  case FileBasicInformation:
449                          seconds_since_1970_to_filetime(get_create_time(&filestat), &ft_high,                          seconds_since_1970_to_filetime(get_create_time(&filestat), &ft_high,
450                                                         &ft_low);                                                         &ft_low);
451                          out_uint32_le(out, ft_low);     //create_access_time                          out_uint32_le(out, ft_low);     //create_access_time
# Line 527  disk_query_information(HANDLE handle, ui Line 466  disk_query_information(HANDLE handle, ui
466                          out_uint32_le(out, file_attributes);                          out_uint32_le(out, file_attributes);
467                          break;                          break;
468    
469                  case 5: /* FileStandardInformation */                  case FileStandardInformation:
470    
471                          out_uint32_le(out, filestat.st_size);   //Allocation size                          out_uint32_le(out, filestat.st_size);   //Allocation size
472                          out_uint32_le(out, 0);                          out_uint32_le(out, 0);
# Line 538  disk_query_information(HANDLE handle, ui Line 477  disk_query_information(HANDLE handle, ui
477                          out_uint8(out, S_ISDIR(filestat.st_mode) ? 1 : 0);      //Directory                          out_uint8(out, S_ISDIR(filestat.st_mode) ? 1 : 0);      //Directory
478                          break;                          break;
479    
480                  case 35:        /* FileObjectIdInformation */                  case FileObjectIdInformation:
481    
482                          out_uint32_le(out, file_attributes);    /* File Attributes */                          out_uint32_le(out, file_attributes);    /* File Attributes */
483                          out_uint32_le(out, 0);  /* Reparse Tag */                          out_uint32_le(out, 0);  /* Reparse Tag */
# Line 569  disk_set_information(HANDLE handle, uint Line 508  disk_set_information(HANDLE handle, uint
508    
509          switch (info_class)          switch (info_class)
510          {          {
511                  case 4: /* FileBasicInformation */                  case FileBasicInformation:
512                          write_time = change_time = access_time = 0;                          write_time = change_time = access_time = 0;
513    
514                          in_uint8s(in, 4);       /* Handle of root dir? */                          in_uint8s(in, 4);       /* Handle of root dir? */
# Line 649  disk_set_information(HANDLE handle, uint Line 588  disk_set_information(HANDLE handle, uint
588    
589                          break;                          break;
590    
591                  case 10:        /* FileRenameInformation */                  case FileRenameInformation:
592    
593                          in_uint8s(in, 4);       /* Handle of root dir? */                          in_uint8s(in, 4);       /* Handle of root dir? */
594                          in_uint8s(in, 0x1a);    /* unknown */                          in_uint8s(in, 0x1a);    /* unknown */
# Line 675  disk_set_information(HANDLE handle, uint Line 614  disk_set_information(HANDLE handle, uint
614                          }                          }
615                          break;                          break;
616    
617                  case 13:        /* FileDispositionInformation */                  case FileDispositionInformation:
618                            /* As far as I understand it, the correct
619                          //unimpl("IRP Set File Information class: FileDispositionInformation\n");                             thing to do here is to *schedule* a delete,
620                               so it will be deleted when the file is
621                               closed. Subsequent
622                               FileDispositionInformation requests with
623                               DeleteFile set to FALSE should unschedule
624                               the delete. See
625                               http://www.osronline.com/article.cfm?article=245. Currently,
626                               we are deleting the file immediately. I
627                               guess this is a FIXME. */
628    
629                          //in_uint32_le(in, delete_on_close);                          //in_uint32_le(in, delete_on_close);
630                          // disk_close(handle);  
631                            /* Make sure we close the file before
632                               unlinking it. Not doing so would trigger
633                               silly-delete if using NFS, which might fail
634                               on FAT floppies, for example. */
635                            disk_close(handle);
636    
637                          if ((pfinfo->flags_and_attributes & FILE_DIRECTORY_FILE))       // remove a directory                          if ((pfinfo->flags_and_attributes & FILE_DIRECTORY_FILE))       // remove a directory
638                          {                          {
639                                  if (rmdir(pfinfo->path) < 0)                                  if (rmdir(pfinfo->path) < 0)
# Line 691  disk_set_information(HANDLE handle, uint Line 644  disk_set_information(HANDLE handle, uint
644    
645                          break;                          break;
646    
647                  case 19:        /* FileAllocationInformation */                  case FileAllocationInformation:
648                            /* Fall through to FileEndOfFileInformation,
649                          unimpl("IRP Set File Information class: FileAllocationInformation\n");                             which uses ftrunc. This is like Samba with
650                          break;                             "strict allocation = false", and means that
651                               we won't detect out-of-quota errors, for
652                               example. */
653    
654                  case 20:        /* FileEndOfFileInformation */                  case FileEndOfFileInformation:
655                          in_uint8s(in, 28);      /* unknown */                          in_uint8s(in, 28);      /* unknown */
656                          in_uint32_le(in, length);       /* file size */                          in_uint32_le(in, length);       /* file size */
657    
# Line 705  disk_set_information(HANDLE handle, uint Line 660  disk_set_information(HANDLE handle, uint
660                                  if (stat_fs.f_bsize * stat_fs.f_bfree < length)                                  if (stat_fs.f_bsize * stat_fs.f_bfree < length)
661                                          return STATUS_DISK_FULL;                                          return STATUS_DISK_FULL;
662    
663                          //printf("FileEndOfFileInformation length = %d\n", length);                          /* FIXME: Growing file with ftruncate doesn't
664                          // ????????????                             work with Linux FAT fs */
665                          //unimpl("IRP Set File Information class: FileEndOfFileInformation\n");                          if (ftruncate(handle, length) != 0)
666                            {
667                                    perror("ftruncate");
668                                    return STATUS_DISK_FULL;
669                            }
670    
671                          break;                          break;
672                  default:                  default:
673    
# Line 717  disk_set_information(HANDLE handle, uint Line 677  disk_set_information(HANDLE handle, uint
677          return STATUS_SUCCESS;          return STATUS_SUCCESS;
678  }  }
679    
680  FsInfoType *  static FsInfoType *
681  FsVolumeInfo(char *fpath)  FsVolumeInfo(char *fpath)
682  {  {
683    
# Line 804  disk_query_volume_information(HANDLE han Line 764  disk_query_volume_information(HANDLE han
764    
765          switch (info_class)          switch (info_class)
766          {          {
767                  case 1: /* FileFsVolumeInformation */                  case FileFsVolumeInformation:
768    
769                          out_uint32_le(out, 0);  /* volume creation time low */                          out_uint32_le(out, 0);  /* volume creation time low */
770                          out_uint32_le(out, 0);  /* volume creation time high */                          out_uint32_le(out, 0);  /* volume creation time high */
# Line 816  disk_query_volume_information(HANDLE han Line 776  disk_query_volume_information(HANDLE han
776                          rdp_out_unistr(out, fsinfo->label, 2 * strlen(fsinfo->label) - 2);                          rdp_out_unistr(out, fsinfo->label, 2 * strlen(fsinfo->label) - 2);
777                          break;                          break;
778    
779                  case 3: /* FileFsSizeInformation */                  case FileFsSizeInformation:
780    
781                          out_uint32_le(out, stat_fs.f_blocks);   /* Total allocation units low */                          out_uint32_le(out, stat_fs.f_blocks);   /* Total allocation units low */
782                          out_uint32_le(out, 0);  /* Total allocation high units */                          out_uint32_le(out, 0);  /* Total allocation high units */
# Line 826  disk_query_volume_information(HANDLE han Line 786  disk_query_volume_information(HANDLE han
786                          out_uint32_le(out, 0x200);      /* Bytes per sector */                          out_uint32_le(out, 0x200);      /* Bytes per sector */
787                          break;                          break;
788    
789                  case 5: /* FileFsAttributeInformation */                  case FileFsAttributeInformation:
790    
791                          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 */
792                          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 835  disk_query_volume_information(HANDLE han Line 795  disk_query_volume_information(HANDLE han
795                          rdp_out_unistr(out, fsinfo->type, 2 * strlen(fsinfo->type) - 2);                          rdp_out_unistr(out, fsinfo->type, 2 * strlen(fsinfo->type) - 2);
796                          break;                          break;
797    
798                  case 2: /* FileFsLabelInformation */                  case FileFsLabelInformation:
799                  case 4: /* FileFsDeviceInformation */                  case FileFsDeviceInformation:
800                  case 6: /* FileFsControlInformation */                  case FileFsControlInformation:
801                  case 7: /* FileFsFullSizeInformation */                  case FileFsFullSizeInformation:
802                  case 8: /* FileFsObjectIdInformation */                  case FileFsObjectIdInformation:
803                  case 9: /* FileFsMaximumInformation */                  case FileFsMaximumInformation:
804    
805                  default:                  default:
806    
807                          unimpl("IRP Query Volume Information class: 0x%x\n", info_class);                          unimpl("IRP Query Volume Information class: 0x%x\n", info_class);
# Line 866  disk_query_directory(HANDLE handle, uint Line 827  disk_query_directory(HANDLE handle, uint
827    
828          switch (info_class)          switch (info_class)
829          {          {
830                  case 3: //FIXME: Why 3?                  case FileBothDirectoryInformation:
831    
832                          // If a search pattern is received, remember this pattern, and restart search                          // If a search pattern is received, remember this pattern, and restart search
833                          if (pattern[0] != 0)                          if (pattern[0] != 0)
# Line 886  disk_query_directory(HANDLE handle, uint Line 847  disk_query_directory(HANDLE handle, uint
847                          // Get information for directory entry                          // Get information for directory entry
848                          sprintf(fullpath, "%s/%s", dirname, pdirent->d_name);                          sprintf(fullpath, "%s/%s", dirname, pdirent->d_name);
849    
                         /* JIF  
                            printf("Stat: %s\n", fullpath); */  
850                          if (stat(fullpath, &fstat))                          if (stat(fullpath, &fstat))
851                          {                          {
852                                  perror("stat");                                  switch (errno)
853                                  out_uint8(out, 0);                                  {
854                                  return STATUS_ACCESS_DENIED;                                          case ENOENT:
855                                            case ELOOP:
856                                            case EACCES:
857                                                    /* These are non-fatal errors. */
858                                                    memset(&fstat, 0, sizeof(fstat));
859                                                    break;
860                                            default:
861                                                    /* Fatal error. By returning STATUS_NO_SUCH_FILE,
862                                                       the directory list operation will be aborted */
863                                                    perror(fullpath);
864                                                    out_uint8(out, 0);
865                                                    return STATUS_NO_SUCH_FILE;
866                                    }
867                          }                          }
868    
869                          if (S_ISDIR(fstat.st_mode))                          if (S_ISDIR(fstat.st_mode))
# Line 936  disk_query_directory(HANDLE handle, uint Line 907  disk_query_directory(HANDLE handle, uint
907                          break;                          break;
908    
909                  default:                  default:
910                            /* FIXME: Support FileDirectoryInformation,
911                               FileFullDirectoryInformation, and
912                               FileNamesInformation */
913    
914                          unimpl("IRP Query Directory sub: 0x%x\n", info_class);                          unimpl("IRP Query Directory sub: 0x%x\n", info_class);
915                          return STATUS_INVALID_PARAMETER;                          return STATUS_INVALID_PARAMETER;

Legend:
Removed from v.616  
changed lines
  Added in v.745

  ViewVC Help
Powered by ViewVC 1.1.26