/[rdesktop]/jpeg/rdesktop/trunk/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 /jpeg/rdesktop/trunk/disk.c

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

revision 572 by stargo, Wed Jan 21 21:51:59 2004 UTC revision 747 by astrand, Mon Aug 9 13:50: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_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_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 82  Line 28 
28  #include <fnmatch.h>  #include <fnmatch.h>
29  #include <errno.h>              /* errno */  #include <errno.h>              /* errno */
30    
31  #ifdef SOLARIS  #include <utime.h>
32    #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__))
46  #include <sys/statvfs.h>        /* solaris statvfs */  #include <sys/statvfs.h>        /* solaris statvfs */
47  #define HAVE_STATVFS  /* 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))
52    #define STATFS_T statvfs
53    #define F_NAMELEN(buf) ((buf).f_namemax)
54    
55    #elif (defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__))
56    #include <sys/param.h>
57    #include <sys/mount.h>
58    #define STATFS_FN(path, buf) (statfs(path,buf))
59    #define STATFS_T statfs
60    #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  #define HAVE_STATFS  #include <mntent.h>
72    #define HAVE_MNTENT_H
73    #define MNTENT_PATH "/etc/mtab"
74    #define STATFS_FN(path, buf) (statfs(path,buf))
75    #define STATFS_T statfs
76    #define F_NAMELEN(buf) ((buf).f_namelen)
77  #endif  #endif
78    
79  #include "rdesktop.h"  #include "rdesktop.h"
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;
         BOOL delete_on_close;  
 }  
 g_fileinfo[MAX_OPEN_FILES];  
92    
93  struct fsinfo  
94    static time_t
95    get_create_time(struct stat *st)
96  {  {
97          uint32 f_blocks, f_bfree, f_bsize, f_namelen;          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    }
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 121  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    
136  /* Enumeration of devices from rdesktop.c        */  /* Enumeration of devices from rdesktop.c        */
137  /* returns numer of units found and initialized. */  /* returns numer of units found and initialized. */
138  /* optarg looks like ':h:=/mnt/floppy,b:=/mnt/usbdevice1' */  /* optarg looks like ':h=/mnt/floppy,b=/mnt/usbdevice1' */
139  /* when it arrives to this function.             */  /* when it arrives to this function.             */
140  int  int
141  disk_enum_devices(int *id, char *optarg)  disk_enum_devices(uint32 * id, char *optarg)
142  {  {
143          char *pos = optarg;          char *pos = optarg;
144          char *pos2;          char *pos2;
# Line 137  disk_enum_devices(int *id, char *optarg) Line 149  disk_enum_devices(int *id, char *optarg)
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);  
152    
153                  toupper_str(g_rdpdr_device[*id].name);                  strncpy(g_rdpdr_device[*id].name, optarg, sizeof(g_rdpdr_device[*id].name));
154                    if (strlen(optarg) > 8)
155                  /* add trailing colon to name. */                          fprintf(stderr, "share name %s truncated to %s\n", optarg,
156                  strcat(g_rdpdr_device[*id].name, ":");                                  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 156  disk_enum_devices(int *id, char *optarg) Line 166  disk_enum_devices(int *id, char *optarg)
166          return count;          return count;
167  }  }
168    
169  /* Opens of 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, HANDLE * phandle)
173  {  {
# Line 165  disk_create(uint32 device_id, uint32 acc Line 175  disk_create(uint32 device_id, uint32 acc
175          DIR *dirp;          DIR *dirp;
176          int flags, mode;          int flags, mode;
177          char path[256];          char path[256];
178            struct stat filestat;
179    
180          handle = 0;          handle = 0;
181          dirp = NULL;          dirp = NULL;
182          flags = 0;          flags = 0;
183          mode = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH;          mode = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH;
184    
185    
186          if (filename[strlen(filename) - 1] == '/')          if (filename[strlen(filename) - 1] == '/')
187                  filename[strlen(filename) - 1] = 0;                  filename[strlen(filename) - 1] = 0;
188          sprintf(path, "%s%s", g_rdpdr_device[device_id].local_path, filename);          sprintf(path, "%s%s", g_rdpdr_device[device_id].local_path, filename);
         //printf("Open: %s\n", path);  
189    
190          switch (create_disposition)          switch (create_disposition)
191          {          {
# Line 209  disk_create(uint32 device_id, uint32 acc Line 220  disk_create(uint32 device_id, uint32 acc
220                          break;                          break;
221          }          }
222    
223            //printf("Open: \"%s\"  flags: %u, accessmask: %u sharemode: %u create disp: %u\n", path, flags_and_attributes, accessmask, sharemode, create_disposition);
224    
225            // Get information about file and set that flag ourselfs
226            if ((stat(path, &filestat) == 0) && (S_ISDIR(filestat.st_mode)))
227            {
228                    if (flags_and_attributes & FILE_NON_DIRECTORY_FILE)
229                            return STATUS_FILE_IS_A_DIRECTORY;
230                    else
231                            flags_and_attributes |= FILE_DIRECTORY_FILE;
232            }
233    
234          if (flags_and_attributes & FILE_DIRECTORY_FILE)          if (flags_and_attributes & FILE_DIRECTORY_FILE)
235          {          {
236                  if (flags & O_CREAT)                  if (flags & O_CREAT)
# Line 239  disk_create(uint32 device_id, uint32 acc Line 261  disk_create(uint32 device_id, uint32 acc
261          }          }
262          else          else
263          {          {
264    
265                  if (accessmask & GENERIC_ALL                  if (accessmask & GENERIC_ALL
266                      || (accessmask & GENERIC_READ && accessmask & GENERIC_WRITE))                      || (accessmask & GENERIC_READ && accessmask & GENERIC_WRITE))
267                  {                  {
# Line 258  disk_create(uint32 device_id, uint32 acc Line 281  disk_create(uint32 device_id, uint32 acc
281                  {                  {
282                          switch (errno)                          switch (errno)
283                          {                          {
284                                    case EISDIR:
285    
286                                            return STATUS_FILE_IS_A_DIRECTORY;
287    
288                                  case EACCES:                                  case EACCES:
289    
290                                          return STATUS_ACCESS_DENIED;                                          return STATUS_ACCESS_DENIED;
# Line 265  disk_create(uint32 device_id, uint32 acc Line 292  disk_create(uint32 device_id, uint32 acc
292                                  case ENOENT:                                  case ENOENT:
293    
294                                          return STATUS_NO_SUCH_FILE;                                          return STATUS_NO_SUCH_FILE;
295                                    case EEXIST:
296    
297                                            return STATUS_OBJECT_NAME_COLLISION;
298                                  default:                                  default:
299    
300                                          perror("open");                                          perror("open");
301                                          return STATUS_NO_SUCH_FILE;                                          return STATUS_NO_SUCH_FILE;
302                          }                          }
303                  }                  }
304    
305                    /* all read and writes of files should be non blocking */
306                    if (fcntl(handle, F_SETFL, O_NONBLOCK) == -1)
307                            perror("fcntl");
308          }          }
309    
310          if (handle >= MAX_OPEN_FILES)          if (handle >= MAX_OPEN_FILES)
# Line 291  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(HANDLE handle)
329  {  {
330          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
# Line 311  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(HANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)
349  {  {
350          int n;          int n;
351    
352          if (offset)  #if 0
353                  lseek(handle, offset, SEEK_SET);          /* browsing dir ????        */
354            /* each request is 24 bytes */
355            if (g_fileinfo[handle].flags_and_attributes & FILE_DIRECTORY_FILE)
356            {
357                    *result = 0;
358                    return STATUS_SUCCESS;
359            }
360    #endif
361    
362            lseek(handle, offset, SEEK_SET);
363    
364          n = read(handle, data, length);          n = read(handle, data, length);
365    
366          if (n < 0)          if (n < 0)
367          {          {
                 perror("read");  
368                  *result = 0;                  *result = 0;
369                  return STATUS_INVALID_PARAMETER;                  switch (errno)
370                    {
371                            case EISDIR:
372                                    return STATUS_FILE_IS_A_DIRECTORY;
373                            default:
374                                    perror("read");
375                                    return STATUS_INVALID_PARAMETER;
376                    }
377          }          }
378    
379          *result = n;          *result = n;
# Line 332  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(HANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)
386  {  {
387          int n;          int n;
388    
389          if (offset)          lseek(handle, offset, SEEK_SET);
                 lseek(handle, offset, SEEK_SET);  
390    
391          n = write(handle, data, length);          n = write(handle, data, length);
392    
# Line 346  disk_write(HANDLE handle, uint8 * data, Line 394  disk_write(HANDLE handle, uint8 * data,
394          {          {
395                  perror("write");                  perror("write");
396                  *result = 0;                  *result = 0;
397                  return STATUS_ACCESS_DENIED;                  switch (errno)
398                    {
399                            case ENOSPC:
400                                    return STATUS_DISK_FULL;
401                            default:
402                                    return STATUS_ACCESS_DENIED;
403                    }
404          }          }
405    
406          *result = n;          *result = n;
# Line 374  disk_query_information(HANDLE handle, ui Line 428  disk_query_information(HANDLE handle, ui
428          // Set file attributes          // Set file attributes
429          file_attributes = 0;          file_attributes = 0;
430          if (S_ISDIR(filestat.st_mode))          if (S_ISDIR(filestat.st_mode))
         {  
431                  file_attributes |= FILE_ATTRIBUTE_DIRECTORY;                  file_attributes |= FILE_ATTRIBUTE_DIRECTORY;
432          }  
433          filename = 1 + strrchr(path, '/');          filename = 1 + strrchr(path, '/');
434          if (filename && filename[0] == '.')          if (filename && filename[0] == '.')
         {  
435                  file_attributes |= FILE_ATTRIBUTE_HIDDEN;                  file_attributes |= FILE_ATTRIBUTE_HIDDEN;
436          }  
437            if (!file_attributes)
438                    file_attributes |= FILE_ATTRIBUTE_NORMAL;
439    
440            if (!(filestat.st_mode & S_IWUSR))
441                    file_attributes |= FILE_ATTRIBUTE_READONLY;
442    
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,
448                          out_uint8s(out, 8);     //create_time not available;                                                         &ft_low);
449                            out_uint32_le(out, ft_low);     //create_access_time
450                            out_uint32_le(out, ft_high);
451    
452                          seconds_since_1970_to_filetime(filestat.st_atime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(filestat.st_atime, &ft_high, &ft_low);
453                          out_uint32_le(out, ft_low);     //last_access_time                          out_uint32_le(out, ft_low);     //last_access_time
# Line 398  disk_query_information(HANDLE handle, ui Line 457  disk_query_information(HANDLE handle, ui
457                          out_uint32_le(out, ft_low);     //last_write_time                          out_uint32_le(out, ft_low);     //last_write_time
458                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
459    
460                          out_uint8s(out, 8);     //unknown zero                          seconds_since_1970_to_filetime(filestat.st_ctime, &ft_high, &ft_low);
461                            out_uint32_le(out, ft_low);     //last_change_time
462                            out_uint32_le(out, ft_high);
463    
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 413  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 434  disk_set_information(HANDLE handle, uint Line 496  disk_set_information(HANDLE handle, uint
496          char newname[256], fullpath[256];          char newname[256], fullpath[256];
497          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
498    
499            int mode;
500            struct stat filestat;
501            time_t write_time, change_time, access_time, mod_time;
502            struct utimbuf tvs;
503            struct STATFS_T stat_fs;
504    
505          pfinfo = &(g_fileinfo[handle]);          pfinfo = &(g_fileinfo[handle]);
506    
507          switch (info_class)          switch (info_class)
508          {          {
509                  case 4: /* FileBasicInformation */                  case FileBasicInformation:
510                            write_time = change_time = access_time = 0;
511    
512                            in_uint8s(in, 4);       /* Handle of root dir? */
513                            in_uint8s(in, 24);      /* unknown */
514    
515                            // CreationTime
516                            in_uint32_le(in, ft_low);
517                            in_uint32_le(in, ft_high);
518    
519                            // AccessTime
520                            in_uint32_le(in, ft_low);
521                            in_uint32_le(in, ft_high);
522                            if (ft_low || ft_high)
523                                    access_time = convert_1970_to_filetime(ft_high, ft_low);
524    
525                            // WriteTime
526                            in_uint32_le(in, ft_low);
527                            in_uint32_le(in, ft_high);
528                            if (ft_low || ft_high)
529                                    write_time = convert_1970_to_filetime(ft_high, ft_low);
530    
531                            // ChangeTime
532                            in_uint32_le(in, ft_low);
533                            in_uint32_le(in, ft_high);
534                            if (ft_low || ft_high)
535                                    change_time = convert_1970_to_filetime(ft_high, ft_low);
536    
537                            in_uint32_le(in, file_attributes);
538    
539                            if (fstat(handle, &filestat))
540                                    return STATUS_ACCESS_DENIED;
541    
542                            tvs.modtime = filestat.st_mtime;
543                            tvs.actime = filestat.st_atime;
544                            if (access_time)
545                                    tvs.actime = access_time;
546    
547    
548                            if (write_time || change_time)
549                                    mod_time = MIN(write_time, change_time);
550                            else
551                                    mod_time = write_time ? write_time : change_time;
552    
553                            if (mod_time)
554                                    tvs.modtime = mod_time;
555    
556    
557                            if (access_time || write_time || change_time)
558                            {
559    #if WITH_DEBUG_RDP5
560                                    printf("FileBasicInformation access       time %s",
561                                           ctime(&tvs.actime));
562                                    printf("FileBasicInformation modification time %s",
563                                           ctime(&tvs.modtime));
564    #endif
565                                    if (utime(pfinfo->path, &tvs))
566                                            return STATUS_ACCESS_DENIED;
567                            }
568    
569                            if (!file_attributes)
570                                    break;  // not valid
571    
572                            mode = filestat.st_mode;
573    
574                            if (file_attributes & FILE_ATTRIBUTE_READONLY)
575                                    mode &= ~(S_IWUSR | S_IWGRP | S_IWOTH);
576                            else
577                                    mode |= S_IWUSR;
578    
579                            mode &= 0777;
580    #if WITH_DEBUG_RDP5
581                            printf("FileBasicInformation set access mode 0%o", mode);
582    #endif
583    
584                            if (fchmod(handle, mode))
585                                    return STATUS_ACCESS_DENIED;
586    
                         // Probably safe to ignore  
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 469  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                          // in_uint32_le(in, delete_on_close);                             so it will be deleted when the file is
619                          // disk_close(handle);                             closed. Subsequent
620                          unlink(pfinfo->path);                             FileDispositionInformation requests with
621                          break;                             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);
628    
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                  case 19:        /* FileAllocationInformation */                          if ((pfinfo->flags_and_attributes & FILE_DIRECTORY_FILE))       // remove a directory
636                            {
637                                    if (rmdir(pfinfo->path) < 0)
638                                            return STATUS_ACCESS_DENIED;
639                            }
640                            else if (unlink(pfinfo->path) < 0)      // unlink a file
641                                    return STATUS_ACCESS_DENIED;
642    
                         unimpl("IRP Set File Information class: FileAllocationInformation\n");  
643                          break;                          break;
644    
645                  case 20:        /* FileEndOfFileInformation */                  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                    case FileEndOfFileInformation:
653                            in_uint8s(in, 28);      /* unknown */
654                            in_uint32_le(in, length);       /* file size */
655    
656                            /* prevents start of writing if not enough space left on device */
657                            if (STATFS_FN(g_rdpdr_device[pfinfo->device_id].local_path, &stat_fs) == 0)
658                                    if (stat_fs.f_bsize * stat_fs.f_bfree < length)
659                                            return STATUS_DISK_FULL;
660    
661                            /* FIXME: Growing file with ftruncate doesn't
662                               work with Linux FAT fs */
663                            if (ftruncate(handle, length) != 0)
664                            {
665                                    perror("ftruncate");
666                                    return STATUS_DISK_FULL;
667                            }
668    
                         unimpl("IRP Set File Information class: FileEndOfFileInformation\n");  
669                          break;                          break;
   
670                  default:                  default:
671    
672                          unimpl("IRP Set File Information class: 0x%x\n", info_class);                          unimpl("IRP Set File Information class: 0x%x\n", info_class);
# Line 495  disk_set_information(HANDLE handle, uint Line 675  disk_set_information(HANDLE handle, uint
675          return STATUS_SUCCESS;          return STATUS_SUCCESS;
676  }  }
677    
678  int fsstat(const char *path, struct fsinfo *buf)  static FsInfoType *
679    FsVolumeInfo(char *fpath)
680  {  {
         int ret;  
 #if defined(HAVE_STATFS)  
         struct statfs statbuf;  
 #elif defined(HAVE_STATVFS)  
         struct statvfs statbuf;  
 #endif  
681    
682  #if defined(HAVE_STATFS)  #ifdef HAVE_MNTENT_H
683          ret = statfs(path, &statbuf);          FILE *fdfs;
684          buf->f_namelen = statbuf.f_namelen;          struct mntent *e;
685  #elif defined(HAVE_STATVFS)          static FsInfoType info;
686          ret = statvfs(path, &statbuf);  
687          buf->f_namelen = statbuf.f_namemax;          /* initialize */
688            memset(&info, 0, sizeof(info));
689            strcpy(info.label, "RDESKTOP");
690            strcpy(info.type, "RDPFS");
691    
692            fdfs = setmntent(MNTENT_PATH, "r");
693            if (!fdfs)
694                    return &info;
695    
696            while ((e = getmntent(fdfs)))
697            {
698                    if (strncmp(fpath, e->mnt_dir, strlen(fpath)) == 0)
699                    {
700                            strcpy(info.type, e->mnt_type);
701                            strcpy(info.name, e->mnt_fsname);
702                            if (strstr(e->mnt_opts, "vfat") || strstr(e->mnt_opts, "iso9660"))
703                            {
704                                    int fd = open(e->mnt_fsname, O_RDONLY);
705                                    if (fd >= 0)
706                                    {
707                                            unsigned char buf[512];
708                                            memset(buf, 0, sizeof(buf));
709                                            if (strstr(e->mnt_opts, "vfat"))
710                                                     /*FAT*/
711                                            {
712                                                    strcpy(info.type, "vfat");
713                                                    read(fd, buf, sizeof(buf));
714                                                    info.serial =
715                                                            (buf[42] << 24) + (buf[41] << 16) +
716                                                            (buf[40] << 8) + buf[39];
717                                                    strncpy(info.label, buf + 43, 10);
718                                                    info.label[10] = '\0';
719                                            }
720                                            else if (lseek(fd, 32767, SEEK_SET) >= 0)       /* ISO9660 */
721                                            {
722                                                    read(fd, buf, sizeof(buf));
723                                                    strncpy(info.label, buf + 41, 32);
724                                                    info.label[32] = '\0';
725                                                    //info.Serial = (buf[128]<<24)+(buf[127]<<16)+(buf[126]<<8)+buf[125];
726                                            }
727                                            close(fd);
728                                    }
729                            }
730                    }
731            }
732            endmntent(fdfs);
733  #else  #else
734          ret=-1;          static FsInfoType info;
 #endif  
735    
736          buf->f_blocks = statbuf.f_blocks;          /* initialize */
737          buf->f_bfree = statbuf.f_bfree;          memset(&info, 0, sizeof(info));
738          buf->f_bsize = statbuf.f_bsize;          strcpy(info.label, "RDESKTOP");
739            strcpy(info.type, "RDPFS");
740    
741          return ret;  #endif
742            return &info;
743  }  }
744    
745    
746  NTSTATUS  NTSTATUS
747  disk_query_volume_information(HANDLE handle, uint32 info_class, STREAM out)  disk_query_volume_information(HANDLE handle, uint32 info_class, STREAM out)
748  {  {
749          char *volume, *fs_type;          struct STATFS_T stat_fs;
         struct fsinfo stat_fs;  
750          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
751            FsInfoType *fsinfo;
752    
753          pfinfo = &(g_fileinfo[handle]);          pfinfo = &(g_fileinfo[handle]);
         volume = "RDESKTOP";  
         fs_type = "RDPFS";  
754    
755          if (fsstat(pfinfo->path, &stat_fs) != 0)        /* FIXME: statfs is not portable */          if (STATFS_FN(pfinfo->path, &stat_fs) != 0)
756          {          {
757                  perror("statfs");                  perror("statfs");
758                  return STATUS_ACCESS_DENIED;                  return STATUS_ACCESS_DENIED;
759          }          }
760    
761            fsinfo = FsVolumeInfo(pfinfo->path);
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 */
769                          out_uint32_le(out, 0);  /* serial */                          out_uint32_le(out, fsinfo->serial);     /* serial */
770                          out_uint32_le(out, 2 * strlen(volume)); /* length of string */  
771                            out_uint32_le(out, 2 * strlen(fsinfo->label));  /* length of string */
772    
773                          out_uint8(out, 0);      /* support objects? */                          out_uint8(out, 0);      /* support objects? */
774                          rdp_out_unistr(out, volume, 2 * strlen(volume) - 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 560  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, stat_fs.f_namelen);  /* max length of filename */                          out_uint32_le(out, F_NAMELEN(stat_fs)); /* max length of filename */
791                          out_uint32_le(out, 2 * strlen(fs_type));        /* length of fs_type */  
792                          rdp_out_unistr(out, fs_type, 2 * strlen(fs_type) - 2);                          out_uint32_le(out, 2 * strlen(fsinfo->type));   /* length of fs_type */
793                            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 599  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 611  disk_query_directory(HANDLE handle, uint Line 837  disk_query_directory(HANDLE handle, uint
837                          // find next dirent matching pattern                          // find next dirent matching pattern
838                          pdirent = readdir(pdir);                          pdirent = readdir(pdir);
839                          while (pdirent && fnmatch(pfinfo->pattern, pdirent->d_name, 0) != 0)                          while (pdirent && fnmatch(pfinfo->pattern, pdirent->d_name, 0) != 0)
                         {  
840                                  pdirent = readdir(pdir);                                  pdirent = readdir(pdir);
                         }  
841    
842                          if (pdirent == NULL)                          if (pdirent == NULL)
                         {  
843                                  return STATUS_NO_MORE_FILES;                                  return STATUS_NO_MORE_FILES;
                         }  
844    
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))
868                                  file_attributes |= FILE_ATTRIBUTE_DIRECTORY;                                  file_attributes |= FILE_ATTRIBUTE_DIRECTORY;
869                          if (pdirent->d_name[0] == '.')                          if (pdirent->d_name[0] == '.')
870                                  file_attributes |= FILE_ATTRIBUTE_HIDDEN;                                  file_attributes |= FILE_ATTRIBUTE_HIDDEN;
871                            if (!file_attributes)
872                                    file_attributes |= FILE_ATTRIBUTE_NORMAL;
873                            if (!(fstat.st_mode & S_IWUSR))
874                                    file_attributes |= FILE_ATTRIBUTE_READONLY;
875    
876                          // Return requested information                          // Return requested information
877                          out_uint8s(out, 8);     //unknown zero                          out_uint8s(out, 8);     //unknown zero
878                          out_uint8s(out, 8);     //create_time not available in posix;  
879                            seconds_since_1970_to_filetime(get_create_time(&fstat), &ft_high, &ft_low);
880                            out_uint32_le(out, ft_low);     // create time
881                            out_uint32_le(out, ft_high);
882    
883                          seconds_since_1970_to_filetime(fstat.st_atime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(fstat.st_atime, &ft_high, &ft_low);
884                          out_uint32_le(out, ft_low);     //last_access_time                          out_uint32_le(out, ft_low);     //last_access_time
# Line 648  disk_query_directory(HANDLE handle, uint Line 888  disk_query_directory(HANDLE handle, uint
888                          out_uint32_le(out, ft_low);     //last_write_time                          out_uint32_le(out, ft_low);     //last_write_time
889                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
890    
891                          out_uint8s(out, 8);     //unknown zero                          seconds_since_1970_to_filetime(fstat.st_ctime, &ft_high, &ft_low);
892                            out_uint32_le(out, ft_low);     //change_write_time
893                            out_uint32_le(out, ft_high);
894    
895                          out_uint32_le(out, fstat.st_size);      //filesize low                          out_uint32_le(out, fstat.st_size);      //filesize low
896                          out_uint32_le(out, 0);  //filesize high                          out_uint32_le(out, 0);  //filesize high
897                          out_uint32_le(out, fstat.st_size);      //filesize low                          out_uint32_le(out, fstat.st_size);      //filesize low
# Line 662  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 670  disk_query_directory(HANDLE handle, uint Line 916  disk_query_directory(HANDLE handle, uint
916          return STATUS_SUCCESS;          return STATUS_SUCCESS;
917  }  }
918    
919    
920    
921    static NTSTATUS
922    disk_device_control(HANDLE handle, uint32 request, STREAM in, STREAM out)
923    {
924            uint32 result;
925    
926            if (((request >> 16) != 20) || ((request >> 16) != 9))
927                    return STATUS_INVALID_PARAMETER;
928    
929            /* extract operation */
930            request >>= 2;
931            request &= 0xfff;
932    
933            printf("DISK IOCTL %d\n", request);
934    
935            switch (request)
936            {
937                    case 25:        // ?
938                    case 42:        // ?
939                    default:
940                            unimpl("DISK IOCTL %d\n", request);
941                            return STATUS_INVALID_PARAMETER;
942            }
943    
944            return STATUS_SUCCESS;
945    }
946    
947  DEVICE_FNS disk_fns = {  DEVICE_FNS disk_fns = {
948          disk_create,          disk_create,
949          disk_close,          disk_close,
950          disk_read,          disk_read,
951          disk_write,          disk_write,
952          NULL                    /* device_control */          disk_device_control     /* device_control */
953  };  };

Legend:
Removed from v.572  
changed lines
  Added in v.747

  ViewVC Help
Powered by ViewVC 1.1.26