/[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 652 by astrand, Thu Apr 15 20:42:19 2004 UTC revision 776 by jsorg71, Sat Oct 2 01:30:33 2004 UTC
# Line 20  Line 20 
20    
21  #include "disk.h"  #include "disk.h"
22    
 #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  
   
23  #include <sys/types.h>  #include <sys/types.h>
24  #include <sys/stat.h>  #include <sys/stat.h>
25  #include <unistd.h>  #include <unistd.h>
# Line 41  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))
# Line 59  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 84  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 99  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 110  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 142  disk_enum_devices(uint32 * id, char *opt Line 149  disk_enum_devices(uint32 * id, char *opt
149          while ((pos = next_arg(optarg, ',')) && *id < RDPDR_MAX_DEVICES)          while ((pos = next_arg(optarg, ',')) && *id < RDPDR_MAX_DEVICES)
150          {          {
151                  pos2 = next_arg(optarg, '=');                  pos2 = next_arg(optarg, '=');
                 strcpy(g_rdpdr_device[*id].name, optarg);  
   
                 toupper_str(g_rdpdr_device[*id].name);  
152    
153                  /* add trailing colon to name. */                  strncpy(g_rdpdr_device[*id].name, optarg, sizeof(g_rdpdr_device[*id].name));
154                  strcat(g_rdpdr_device[*id].name, ":");                  if (strlen(optarg) > 8)
155                            fprintf(stderr, "share name %s truncated to %s\n", optarg,
156                                    g_rdpdr_device[*id].name);
157    
158                  g_rdpdr_device[*id].local_path = xmalloc(strlen(pos2) + 1);                  g_rdpdr_device[*id].local_path = xmalloc(strlen(pos2) + 1);
159                  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);  
160                  g_rdpdr_device[*id].device_type = DEVICE_TYPE_DISK;                  g_rdpdr_device[*id].device_type = DEVICE_TYPE_DISK;
161                  count++;                  count++;
162                  (*id)++;                  (*id)++;
# Line 162  disk_enum_devices(uint32 * id, char *opt Line 167  disk_enum_devices(uint32 * id, char *opt
167  }  }
168    
169  /* Opens or creates a file or directory */  /* Opens or creates a file or directory */
170  NTSTATUS  static NTSTATUS
171  disk_create(uint32 device_id, uint32 accessmask, uint32 sharemode, uint32 create_disposition,  disk_create(uint32 device_id, uint32 accessmask, uint32 sharemode, uint32 create_disposition,
172              uint32 flags_and_attributes, char *filename, HANDLE * phandle)              uint32 flags_and_attributes, char *filename, NTHANDLE * phandle)
173  {  {
174          HANDLE handle;          NTHANDLE handle;
175          DIR *dirp;          DIR *dirp;
176          int flags, mode;          int flags, mode;
177          char path[256];          char path[256];
# Line 319  disk_create(uint32 device_id, uint32 acc Line 324  disk_create(uint32 device_id, uint32 acc
324          return STATUS_SUCCESS;          return STATUS_SUCCESS;
325  }  }
326    
327  NTSTATUS  static NTSTATUS
328  disk_close(HANDLE handle)  disk_close(NTHANDLE handle)
329  {  {
330          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
331    
# Line 339  disk_close(HANDLE handle) Line 344  disk_close(HANDLE handle)
344          return STATUS_SUCCESS;          return STATUS_SUCCESS;
345  }  }
346    
347  NTSTATUS  static NTSTATUS
348  disk_read(HANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)  disk_read(NTHANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)
349  {  {
350          int n;          int n;
351    
# Line 376  disk_read(HANDLE handle, uint8 * data, u Line 381  disk_read(HANDLE handle, uint8 * data, u
381          return STATUS_SUCCESS;          return STATUS_SUCCESS;
382  }  }
383    
384  NTSTATUS  static NTSTATUS
385  disk_write(HANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)  disk_write(NTHANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)
386  {  {
387          int n;          int n;
388    
# Line 404  disk_write(HANDLE handle, uint8 * data, Line 409  disk_write(HANDLE handle, uint8 * data,
409  }  }
410    
411  NTSTATUS  NTSTATUS
412  disk_query_information(HANDLE handle, uint32 info_class, STREAM out)  disk_query_information(NTHANDLE handle, uint32 info_class, STREAM out)
413  {  {
414          uint32 file_attributes, ft_high, ft_low;          uint32 file_attributes, ft_high, ft_low;
415          struct stat filestat;          struct stat filestat;
# Line 438  disk_query_information(HANDLE handle, ui Line 443  disk_query_information(HANDLE handle, ui
443          // Return requested data          // Return requested data
444          switch (info_class)          switch (info_class)
445          {          {
446                  case 4: /* FileBasicInformation */                  case FileBasicInformation:
447                          seconds_since_1970_to_filetime(get_create_time(&filestat), &ft_high,                          seconds_since_1970_to_filetime(get_create_time(&filestat), &ft_high,
448                                                         &ft_low);                                                         &ft_low);
449                          out_uint32_le(out, ft_low);     //create_access_time                          out_uint32_le(out, ft_low);     //create_access_time
# Line 459  disk_query_information(HANDLE handle, ui Line 464  disk_query_information(HANDLE handle, ui
464                          out_uint32_le(out, file_attributes);                          out_uint32_le(out, file_attributes);
465                          break;                          break;
466    
467                  case 5: /* FileStandardInformation */                  case FileStandardInformation:
468    
469                          out_uint32_le(out, filestat.st_size);   //Allocation size                          out_uint32_le(out, filestat.st_size);   //Allocation size
470                          out_uint32_le(out, 0);                          out_uint32_le(out, 0);
# Line 470  disk_query_information(HANDLE handle, ui Line 475  disk_query_information(HANDLE handle, ui
475                          out_uint8(out, S_ISDIR(filestat.st_mode) ? 1 : 0);      //Directory                          out_uint8(out, S_ISDIR(filestat.st_mode) ? 1 : 0);      //Directory
476                          break;                          break;
477    
478                  case 35:        /* FileObjectIdInformation */                  case FileObjectIdInformation:
479    
480                          out_uint32_le(out, file_attributes);    /* File Attributes */                          out_uint32_le(out, file_attributes);    /* File Attributes */
481                          out_uint32_le(out, 0);  /* Reparse Tag */                          out_uint32_le(out, 0);  /* Reparse Tag */
# Line 485  disk_query_information(HANDLE handle, ui Line 490  disk_query_information(HANDLE handle, ui
490  }  }
491    
492  NTSTATUS  NTSTATUS
493  disk_set_information(HANDLE handle, uint32 info_class, STREAM in, STREAM out)  disk_set_information(NTHANDLE handle, uint32 info_class, STREAM in, STREAM out)
494  {  {
495          uint32 device_id, length, file_attributes, ft_high, ft_low;          uint32 device_id, length, file_attributes, ft_high, ft_low;
496          char newname[256], fullpath[256];          char newname[256], fullpath[256];
# Line 501  disk_set_information(HANDLE handle, uint Line 506  disk_set_information(HANDLE handle, uint
506    
507          switch (info_class)          switch (info_class)
508          {          {
509                  case 4: /* FileBasicInformation */                  case FileBasicInformation:
510                          write_time = change_time = access_time = 0;                          write_time = change_time = access_time = 0;
511    
512                          in_uint8s(in, 4);       /* Handle of root dir? */                          in_uint8s(in, 4);       /* Handle of root dir? */
# Line 581  disk_set_information(HANDLE handle, uint Line 586  disk_set_information(HANDLE handle, uint
586    
587                          break;                          break;
588    
589                  case 10:        /* FileRenameInformation */                  case FileRenameInformation:
590    
591                          in_uint8s(in, 4);       /* Handle of root dir? */                          in_uint8s(in, 4);       /* Handle of root dir? */
592                          in_uint8s(in, 0x1a);    /* unknown */                          in_uint8s(in, 0x1a);    /* unknown */
# Line 607  disk_set_information(HANDLE handle, uint Line 612  disk_set_information(HANDLE handle, uint
612                          }                          }
613                          break;                          break;
614    
615                  case 13:        /* FileDispositionInformation */                  case FileDispositionInformation:
616                            /* As far as I understand it, the correct
617                          //unimpl("IRP Set File Information class: FileDispositionInformation\n");                             thing to do here is to *schedule* a delete,
618                               so it will be deleted when the file is
619                               closed. Subsequent
620                               FileDispositionInformation requests with
621                               DeleteFile set to FALSE should unschedule
622                               the delete. See
623                               http://www.osronline.com/article.cfm?article=245. Currently,
624                               we are deleting the file immediately. I
625                               guess this is a FIXME. */
626    
627                          //in_uint32_le(in, delete_on_close);                          //in_uint32_le(in, delete_on_close);
628                          // disk_close(handle);  
629                            /* Make sure we close the file before
630                               unlinking it. Not doing so would trigger
631                               silly-delete if using NFS, which might fail
632                               on FAT floppies, for example. */
633                            disk_close(handle);
634    
635                          if ((pfinfo->flags_and_attributes & FILE_DIRECTORY_FILE))       // remove a directory                          if ((pfinfo->flags_and_attributes & FILE_DIRECTORY_FILE))       // remove a directory
636                          {                          {
637                                  if (rmdir(pfinfo->path) < 0)                                  if (rmdir(pfinfo->path) < 0)
# Line 623  disk_set_information(HANDLE handle, uint Line 642  disk_set_information(HANDLE handle, uint
642    
643                          break;                          break;
644    
645                  case 19:        /* FileAllocationInformation */                  case FileAllocationInformation:
646                            /* Fall through to FileEndOfFileInformation,
647                               which uses ftrunc. This is like Samba with
648                               "strict allocation = false", and means that
649                               we won't detect out-of-quota errors, for
650                               example. */
651    
652                          unimpl("IRP Set File Information class: FileAllocationInformation\n");                  case FileEndOfFileInformation:
                         break;  
   
                 case 20:        /* FileEndOfFileInformation */  
653                          in_uint8s(in, 28);      /* unknown */                          in_uint8s(in, 28);      /* unknown */
654                          in_uint32_le(in, length);       /* file size */                          in_uint32_le(in, length);       /* file size */
655    
# Line 637  disk_set_information(HANDLE handle, uint Line 658  disk_set_information(HANDLE handle, uint
658                                  if (stat_fs.f_bsize * stat_fs.f_bfree < length)                                  if (stat_fs.f_bsize * stat_fs.f_bfree < length)
659                                          return STATUS_DISK_FULL;                                          return STATUS_DISK_FULL;
660    
661                          //printf("FileEndOfFileInformation length = %d\n", length);                          /* FIXME: Growing file with ftruncate doesn't
662                          // ????????????                             work with Linux FAT fs */
663                          //unimpl("IRP Set File Information class: FileEndOfFileInformation\n");                          if (ftruncate(handle, length) != 0)
664                            {
665                                    perror("ftruncate");
666                                    return STATUS_DISK_FULL;
667                            }
668    
669                          break;                          break;
670                  default:                  default:
671    
# Line 649  disk_set_information(HANDLE handle, uint Line 675  disk_set_information(HANDLE handle, uint
675          return STATUS_SUCCESS;          return STATUS_SUCCESS;
676  }  }
677    
678  FsInfoType *  static FsInfoType *
679  FsVolumeInfo(char *fpath)  FsVolumeInfo(char *fpath)
680  {  {
681    
# Line 718  FsVolumeInfo(char *fpath) Line 744  FsVolumeInfo(char *fpath)
744    
745    
746  NTSTATUS  NTSTATUS
747  disk_query_volume_information(HANDLE handle, uint32 info_class, STREAM out)  disk_query_volume_information(NTHANDLE handle, uint32 info_class, STREAM out)
748  {  {
749          struct STATFS_T stat_fs;          struct STATFS_T stat_fs;
750          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
# Line 736  disk_query_volume_information(HANDLE han Line 762  disk_query_volume_information(HANDLE han
762    
763          switch (info_class)          switch (info_class)
764          {          {
765                  case 1: /* FileFsVolumeInformation */                  case FileFsVolumeInformation:
766    
767                          out_uint32_le(out, 0);  /* volume creation time low */                          out_uint32_le(out, 0);  /* volume creation time low */
768                          out_uint32_le(out, 0);  /* volume creation time high */                          out_uint32_le(out, 0);  /* volume creation time high */
# Line 748  disk_query_volume_information(HANDLE han Line 774  disk_query_volume_information(HANDLE han
774                          rdp_out_unistr(out, fsinfo->label, 2 * strlen(fsinfo->label) - 2);                          rdp_out_unistr(out, fsinfo->label, 2 * strlen(fsinfo->label) - 2);
775                          break;                          break;
776    
777                  case 3: /* FileFsSizeInformation */                  case FileFsSizeInformation:
778    
779                          out_uint32_le(out, stat_fs.f_blocks);   /* Total allocation units low */                          out_uint32_le(out, stat_fs.f_blocks);   /* Total allocation units low */
780                          out_uint32_le(out, 0);  /* Total allocation high units */                          out_uint32_le(out, 0);  /* Total allocation high units */
# Line 758  disk_query_volume_information(HANDLE han Line 784  disk_query_volume_information(HANDLE han
784                          out_uint32_le(out, 0x200);      /* Bytes per sector */                          out_uint32_le(out, 0x200);      /* Bytes per sector */
785                          break;                          break;
786    
787                  case 5: /* FileFsAttributeInformation */                  case FileFsAttributeInformation:
788    
789                          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 */
790                          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 767  disk_query_volume_information(HANDLE han Line 793  disk_query_volume_information(HANDLE han
793                          rdp_out_unistr(out, fsinfo->type, 2 * strlen(fsinfo->type) - 2);                          rdp_out_unistr(out, fsinfo->type, 2 * strlen(fsinfo->type) - 2);
794                          break;                          break;
795    
796                  case 2: /* FileFsLabelInformation */                  case FileFsLabelInformation:
797                  case 4: /* FileFsDeviceInformation */                  case FileFsDeviceInformation:
798                  case 6: /* FileFsControlInformation */                  case FileFsControlInformation:
799                  case 7: /* FileFsFullSizeInformation */                  case FileFsFullSizeInformation:
800                  case 8: /* FileFsObjectIdInformation */                  case FileFsObjectIdInformation:
801                  case 9: /* FileFsMaximumInformation */                  case FileFsMaximumInformation:
802    
803                  default:                  default:
804    
805                          unimpl("IRP Query Volume Information class: 0x%x\n", info_class);                          unimpl("IRP Query Volume Information class: 0x%x\n", info_class);
# Line 782  disk_query_volume_information(HANDLE han Line 809  disk_query_volume_information(HANDLE han
809  }  }
810    
811  NTSTATUS  NTSTATUS
812  disk_query_directory(HANDLE handle, uint32 info_class, char *pattern, STREAM out)  disk_query_directory(NTHANDLE handle, uint32 info_class, char *pattern, STREAM out)
813  {  {
814          uint32 file_attributes, ft_low, ft_high;          uint32 file_attributes, ft_low, ft_high;
815          char *dirname, fullpath[256];          char *dirname, fullpath[256];
# Line 798  disk_query_directory(HANDLE handle, uint Line 825  disk_query_directory(HANDLE handle, uint
825    
826          switch (info_class)          switch (info_class)
827          {          {
828                  case 3: //FIXME: Why 3?                  case FileBothDirectoryInformation:
829    
830                          // If a search pattern is received, remember this pattern, and restart search                          // If a search pattern is received, remember this pattern, and restart search
831                          if (pattern[0] != 0)                          if (pattern[0] != 0)
# Line 818  disk_query_directory(HANDLE handle, uint Line 845  disk_query_directory(HANDLE handle, uint
845                          // Get information for directory entry                          // Get information for directory entry
846                          sprintf(fullpath, "%s/%s", dirname, pdirent->d_name);                          sprintf(fullpath, "%s/%s", dirname, pdirent->d_name);
847    
                         /* JIF  
                            printf("Stat: %s\n", fullpath); */  
848                          if (stat(fullpath, &fstat))                          if (stat(fullpath, &fstat))
849                          {                          {
850                                  perror("stat");                                  switch (errno)
851                                  out_uint8(out, 0);                                  {
852                                  return STATUS_ACCESS_DENIED;                                          case ENOENT:
853                                            case ELOOP:
854                                            case EACCES:
855                                                    /* These are non-fatal errors. */
856                                                    memset(&fstat, 0, sizeof(fstat));
857                                                    break;
858                                            default:
859                                                    /* Fatal error. By returning STATUS_NO_SUCH_FILE,
860                                                       the directory list operation will be aborted */
861                                                    perror(fullpath);
862                                                    out_uint8(out, 0);
863                                                    return STATUS_NO_SUCH_FILE;
864                                    }
865                          }                          }
866    
867                          if (S_ISDIR(fstat.st_mode))                          if (S_ISDIR(fstat.st_mode))
# Line 868  disk_query_directory(HANDLE handle, uint Line 905  disk_query_directory(HANDLE handle, uint
905                          break;                          break;
906    
907                  default:                  default:
908                            /* FIXME: Support FileDirectoryInformation,
909                               FileFullDirectoryInformation, and
910                               FileNamesInformation */
911    
912                          unimpl("IRP Query Directory sub: 0x%x\n", info_class);                          unimpl("IRP Query Directory sub: 0x%x\n", info_class);
913                          return STATUS_INVALID_PARAMETER;                          return STATUS_INVALID_PARAMETER;
# Line 879  disk_query_directory(HANDLE handle, uint Line 919  disk_query_directory(HANDLE handle, uint
919    
920    
921  static NTSTATUS  static NTSTATUS
922  disk_device_control(HANDLE handle, uint32 request, STREAM in, STREAM out)  disk_device_control(NTHANDLE handle, uint32 request, STREAM in, STREAM out)
923  {  {
924          uint32 result;          uint32 result;
925    

Legend:
Removed from v.652  
changed lines
  Added in v.776

  ViewVC Help
Powered by ViewVC 1.1.26