/[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 827 by astrand, Thu Mar 3 08:48:24 2005 UTC revision 1364 by jsorg71, Thu Jan 4 04:55:56 2007 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    
 #include "rdesktop.h"  
21  #include "disk.h"  #include "disk.h"
22    
23  #include <sys/types.h>  #include <sys/types.h>
# Line 28  Line 27 
27  #include <dirent.h>             /* opendir, closedir, readdir */  #include <dirent.h>             /* opendir, closedir, readdir */
28  #include <fnmatch.h>  #include <fnmatch.h>
29  #include <errno.h>              /* errno */  #include <errno.h>              /* errno */
30    #include <stdio.h>
31    
32  #include <utime.h>  #include <utime.h>
33  #include <time.h>               /* ctime */  #include <time.h>               /* ctime */
# Line 38  Line 38 
38  #define DIRFD(a) ((a)->DIR_FD_MEMBER_NAME)  #define DIRFD(a) ((a)->DIR_FD_MEMBER_NAME)
39  #endif  #endif
40    
41  /* TODO: let autoconf figure out everything below... */  /* TODO: Fix mntent-handling for solaris
42  #if (defined(sun) && (defined(__svr4__) || defined(__SVR4)))   * #include <sys/mntent.h> */
43  #define SOLARIS  #if (defined(HAVE_MNTENT_H) && defined(HAVE_SETMNTENT))
44    #include <mntent.h>
45    #define MNTENT_PATH "/etc/mtab"
46    #define USE_SETMNTENT
47  #endif  #endif
48    
49  #if (defined(SOLARIS) || defined (__hpux) || defined(__BEOS__))  #ifdef HAVE_SYS_VFS_H
50  #include <sys/statvfs.h>        /* solaris statvfs */  #include <sys/vfs.h>
51  /* TODO: Fix mntent-handling for solaris/hpux  #endif
52   * #include <sys/mntent.h> */  
53  #undef HAVE_MNTENT_H  #ifdef HAVE_SYS_STATVFS_H
54  #define MNTENT_PATH "/etc/mnttab"  #include <sys/statvfs.h>
55  #define STATFS_FN(path, buf) (statvfs(path,buf))  #endif
 #define STATFS_T statvfs  
 #define F_NAMELEN(buf) ((buf).f_namemax)  
56    
57  #elif (defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__APPLE__))  #ifdef HAVE_SYS_STATFS_H
58    #include <sys/statfs.h>
59    #endif
60    
61    #ifdef HAVE_SYS_PARAM_H
62  #include <sys/param.h>  #include <sys/param.h>
63    #endif
64    
65    #ifdef HAVE_SYS_MOUNT_H
66  #include <sys/mount.h>  #include <sys/mount.h>
67  #define STATFS_FN(path, buf) (statfs(path,buf))  #endif
68    
69    #include "rdesktop.h"
70    
71    #ifdef STAT_STATFS3_OSF1
72    #define STATFS_FN(path, buf) (statfs(path,buf,sizeof(buf)))
73  #define STATFS_T statfs  #define STATFS_T statfs
74  #define F_NAMELEN(buf) (NAME_MAX)  #define USE_STATFS
75    #endif
76    
77  #elif (defined(__SGI_IRIX__))  #ifdef STAT_STATVFS
 #include <sys/types.h>  
 #include <sys/statvfs.h>  
78  #define STATFS_FN(path, buf) (statvfs(path,buf))  #define STATFS_FN(path, buf) (statvfs(path,buf))
79  #define STATFS_T statvfs  #define STATFS_T statvfs
80  #define F_NAMELEN(buf) ((buf).f_namemax)  #define USE_STATVFS
81    #endif
82    
83  #elif (defined(__alpha) && !defined(linux))  #ifdef STAT_STATVFS64
84  #include <sys/mount.h>          /* osf1 statfs */  #define STATFS_FN(path, buf) (statvfs64(path,buf))
85  #define STATFS_FN(path, buf) (statfs(path,buf,sizeof(buf)))  #define STATFS_T statvfs64
86  #define STATFS_T statfs  #define USE_STATVFS
87  #define F_NAMELEN(buf) (255)  #endif
88    
89  #else  #if (defined(STAT_STATFS2_FS_DATA) || defined(STAT_STATFS2_BSIZE) || defined(STAT_STATFS2_FSIZE))
 #include <sys/vfs.h>            /* linux statfs */  
 #include <mntent.h>  
 #define HAVE_MNTENT_H  
 #define MNTENT_PATH "/etc/mtab"  
90  #define STATFS_FN(path, buf) (statfs(path,buf))  #define STATFS_FN(path, buf) (statfs(path,buf))
91  #define STATFS_T statfs  #define STATFS_T statfs
92    #define USE_STATFS
93    #endif
94    
95    #ifdef STAT_STATFS4
96    #define STATFS_FN(path, buf) (statfs(path,buf,sizeof(buf),0))
97    #define STATFS_T statfs
98    #define USE_STATFS
99    #endif
100    
101    #if ((defined(USE_STATFS) && defined(HAVE_STRUCT_STATFS_F_NAMEMAX)) || (defined(USE_STATVFS) && defined(HAVE_STRUCT_STATVFS_F_NAMEMAX)))
102    #define F_NAMELEN(buf) ((buf).f_namemax)
103    #endif
104    
105    #if ((defined(USE_STATFS) && defined(HAVE_STRUCT_STATFS_F_NAMELEN)) || (defined(USE_STATVFS) && defined(HAVE_STRUCT_STATVFS_F_NAMELEN)))
106  #define F_NAMELEN(buf) ((buf).f_namelen)  #define F_NAMELEN(buf) ((buf).f_namelen)
107  #endif  #endif
108    
109    #ifndef F_NAMELEN
110    #define F_NAMELEN(buf) (255)
111    #endif
112    
113    /* Dummy statfs fallback */
114    #ifndef STATFS_T
115    struct dummy_statfs_t
116    {
117            long f_bfree;
118            long f_bsize;
119            long f_blocks;
120            int f_namelen;
121            int f_namemax;
122    };
123    
124    static int
125    dummy_statfs(struct dummy_statfs_t *buf)
126    {
127            buf->f_blocks = 262144;
128            buf->f_bfree = 131072;
129            buf->f_bsize = 512;
130            buf->f_namelen = 255;
131            buf->f_namemax = 255;
132    
133            return 0;
134    }
135    
136    #define STATFS_T dummy_statfs_t
137    #define STATFS_FN(path,buf) (dummy_statfs(buf))
138    #endif
139    
140  extern RDPDR_DEVICE g_rdpdr_device[];  extern RDPDR_DEVICE g_rdpdr_device[];
141    
142  FILEINFO g_fileinfo[MAX_OPEN_FILES];  FILEINFO g_fileinfo[MAX_OPEN_FILES];
# Line 90  BOOL g_notify_stamp = False; Line 144  BOOL g_notify_stamp = False;
144    
145  typedef struct  typedef struct
146  {  {
147          char name[256];          char name[PATH_MAX];
148          char label[256];          char label[PATH_MAX];
149          unsigned long serial;          unsigned long serial;
150          char type[256];          char type[PATH_MAX];
151  } FsInfoType;  } FsInfoType;
152    
153  static NTSTATUS NotifyInfo(NTHANDLE handle, uint32 info_class, NOTIFY * p);  static RD_NTSTATUS NotifyInfo(RD_NTHANDLE handle, uint32 info_class, NOTIFY * p);
154    
155  static time_t  static time_t
156  get_create_time(struct stat *st)  get_create_time(struct stat *st)
# Line 147  ftruncate_growable(int fd, off_t length) Line 201  ftruncate_growable(int fd, off_t length)
201  {  {
202          int ret;          int ret;
203          off_t pos;          off_t pos;
204          static const char zero;          static const char zero = 0;
205    
206          /* Try the simple method first */          /* Try the simple method first */
207          if ((ret = ftruncate(fd, length)) != -1)          if ((ret = ftruncate(fd, length)) != -1)
# Line 155  ftruncate_growable(int fd, off_t length) Line 209  ftruncate_growable(int fd, off_t length)
209                  return ret;                  return ret;
210          }          }
211    
212          /*          /*
213           * Some kind of error. Perhaps we were trying to grow. Retry           * Some kind of error. Perhaps we were trying to grow. Retry
214           * in a safe way.           * in a safe way.
215           */           */
# Line 260  disk_enum_devices(uint32 * id, char *opt Line 314  disk_enum_devices(uint32 * id, char *opt
314          char *pos2;          char *pos2;
315          int count = 0;          int count = 0;
316    
317          // skip the first colon          /* skip the first colon */
318          optarg++;          optarg++;
319          while ((pos = next_arg(optarg, ',')) && *id < RDPDR_MAX_DEVICES)          while ((pos = next_arg(optarg, ',')) && *id < RDPDR_MAX_DEVICES)
320          {          {
# Line 271  disk_enum_devices(uint32 * id, char *opt Line 325  disk_enum_devices(uint32 * id, char *opt
325                          fprintf(stderr, "share name %s truncated to %s\n", optarg,                          fprintf(stderr, "share name %s truncated to %s\n", optarg,
326                                  g_rdpdr_device[*id].name);                                  g_rdpdr_device[*id].name);
327    
328                  g_rdpdr_device[*id].local_path = xmalloc(strlen(pos2) + 1);                  g_rdpdr_device[*id].local_path = (char *) xmalloc(strlen(pos2) + 1);
329                  strcpy(g_rdpdr_device[*id].local_path, pos2);                  strcpy(g_rdpdr_device[*id].local_path, pos2);
330                  g_rdpdr_device[*id].device_type = DEVICE_TYPE_DISK;                  g_rdpdr_device[*id].device_type = DEVICE_TYPE_DISK;
331                  count++;                  count++;
# Line 283  disk_enum_devices(uint32 * id, char *opt Line 337  disk_enum_devices(uint32 * id, char *opt
337  }  }
338    
339  /* Opens or creates a file or directory */  /* Opens or creates a file or directory */
340  static NTSTATUS  static RD_NTSTATUS
341  disk_create(uint32 device_id, uint32 accessmask, uint32 sharemode, uint32 create_disposition,  disk_create(uint32 device_id, uint32 accessmask, uint32 sharemode, uint32 create_disposition,
342              uint32 flags_and_attributes, char *filename, NTHANDLE * phandle)              uint32 flags_and_attributes, char *filename, RD_NTHANDLE * phandle)
343  {  {
344          NTHANDLE handle;          RD_NTHANDLE handle;
345          DIR *dirp;          DIR *dirp;
346          int flags, mode;          int flags, mode;
347          char path[256];          char path[PATH_MAX];
348          struct stat filestat;          struct stat filestat;
349    
350          handle = 0;          handle = 0;
# Line 306  disk_create(uint32 device_id, uint32 acc Line 360  disk_create(uint32 device_id, uint32 acc
360          {          {
361                  case CREATE_ALWAYS:                  case CREATE_ALWAYS:
362    
363                          // Delete existing file/link.                          /* Delete existing file/link. */
364                          unlink(path);                          unlink(path);
365                          flags |= O_CREAT;                          flags |= O_CREAT;
366                          break;                          break;
367    
368                  case CREATE_NEW:                  case CREATE_NEW:
369    
370                          // If the file already exists, then fail.                          /* If the file already exists, then fail. */
371                          flags |= O_CREAT | O_EXCL;                          flags |= O_CREAT | O_EXCL;
372                          break;                          break;
373    
374                  case OPEN_ALWAYS:                  case OPEN_ALWAYS:
375    
376                          // Create if not already exists.                          /* Create if not already exists. */
377                          flags |= O_CREAT;                          flags |= O_CREAT;
378                          break;                          break;
379    
380                  case OPEN_EXISTING:                  case OPEN_EXISTING:
381    
382                          // Default behaviour                          /* Default behaviour */
383                          break;                          break;
384    
385                  case TRUNCATE_EXISTING:                  case TRUNCATE_EXISTING:
386    
387                          // If the file does not exist, then fail.                          /* If the file does not exist, then fail. */
388                          flags |= O_TRUNC;                          flags |= O_TRUNC;
389                          break;                          break;
390          }          }
391    
392          //printf("Open: \"%s\"  flags: %X, accessmask: %X sharemode: %X create disp: %X\n", path, flags_and_attributes, accessmask, sharemode, create_disposition);          /*printf("Open: \"%s\"  flags: %X, accessmask: %X sharemode: %X create disp: %X\n", path, flags_and_attributes, accessmask, sharemode, create_disposition); */
393    
394          // Get information about file and set that flag ourselfs          /* Get information about file and set that flag ourselfs */
395          if ((stat(path, &filestat) == 0) && (S_ISDIR(filestat.st_mode)))          if ((stat(path, &filestat) == 0) && (S_ISDIR(filestat.st_mode)))
396          {          {
397                  if (flags_and_attributes & FILE_NON_DIRECTORY_FILE)                  if (flags_and_attributes & FILE_NON_DIRECTORY_FILE)
398                          return STATUS_FILE_IS_A_DIRECTORY;                          return RD_STATUS_FILE_IS_A_DIRECTORY;
399                  else                  else
400                          flags_and_attributes |= FILE_DIRECTORY_FILE;                          flags_and_attributes |= FILE_DIRECTORY_FILE;
401          }          }
# Line 360  disk_create(uint32 device_id, uint32 acc Line 414  disk_create(uint32 device_id, uint32 acc
414                          {                          {
415                                  case EACCES:                                  case EACCES:
416    
417                                          return STATUS_ACCESS_DENIED;                                          return RD_STATUS_ACCESS_DENIED;
418    
419                                  case ENOENT:                                  case ENOENT:
420    
421                                          return STATUS_NO_SUCH_FILE;                                          return RD_STATUS_NO_SUCH_FILE;
422    
423                                  default:                                  default:
424    
425                                          perror("opendir");                                          perror("opendir");
426                                          return STATUS_NO_SUCH_FILE;                                          return RD_STATUS_NO_SUCH_FILE;
427                          }                          }
428                  }                  }
429                  handle = DIRFD(dirp);                  handle = DIRFD(dirp);
# Line 398  disk_create(uint32 device_id, uint32 acc Line 452  disk_create(uint32 device_id, uint32 acc
452                          {                          {
453                                  case EISDIR:                                  case EISDIR:
454    
455                                          return STATUS_FILE_IS_A_DIRECTORY;                                          return RD_STATUS_FILE_IS_A_DIRECTORY;
456    
457                                  case EACCES:                                  case EACCES:
458    
459                                          return STATUS_ACCESS_DENIED;                                          return RD_STATUS_ACCESS_DENIED;
460    
461                                  case ENOENT:                                  case ENOENT:
462    
463                                          return STATUS_NO_SUCH_FILE;                                          return RD_STATUS_NO_SUCH_FILE;
464                                  case EEXIST:                                  case EEXIST:
465    
466                                          return STATUS_OBJECT_NAME_COLLISION;                                          return RD_STATUS_OBJECT_NAME_COLLISION;
467                                  default:                                  default:
468    
469                                          perror("open");                                          perror("open");
470                                          return STATUS_NO_SUCH_FILE;                                          return RD_STATUS_NO_SUCH_FILE;
471                          }                          }
472                  }                  }
473    
# Line 437  disk_create(uint32 device_id, uint32 acc Line 491  disk_create(uint32 device_id, uint32 acc
491          g_fileinfo[handle].device_id = device_id;          g_fileinfo[handle].device_id = device_id;
492          g_fileinfo[handle].flags_and_attributes = flags_and_attributes;          g_fileinfo[handle].flags_and_attributes = flags_and_attributes;
493          g_fileinfo[handle].accessmask = accessmask;          g_fileinfo[handle].accessmask = accessmask;
494          strncpy(g_fileinfo[handle].path, path, 255);          strncpy(g_fileinfo[handle].path, path, PATH_MAX - 1);
495          g_fileinfo[handle].delete_on_close = False;          g_fileinfo[handle].delete_on_close = False;
496          g_notify_stamp = True;          g_notify_stamp = True;
497    
498          *phandle = handle;          *phandle = handle;
499          return STATUS_SUCCESS;          return RD_STATUS_SUCCESS;
500  }  }
501    
502  static NTSTATUS  static RD_NTSTATUS
503  disk_close(NTHANDLE handle)  disk_close(RD_NTHANDLE handle)
504  {  {
505          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
506    
# Line 454  disk_close(NTHANDLE handle) Line 508  disk_close(NTHANDLE handle)
508    
509          g_notify_stamp = True;          g_notify_stamp = True;
510    
511          rdpdr_abort_io(handle, 0, STATUS_CANCELLED);          rdpdr_abort_io(handle, 0, RD_STATUS_CANCELLED);
512    
513          if (pfinfo->pdir)          if (pfinfo->pdir)
514          {          {
515                  if (closedir(pfinfo->pdir) < 0)                  if (closedir(pfinfo->pdir) < 0)
516                  {                  {
517                          perror("closedir");                          perror("closedir");
518                          return STATUS_INVALID_HANDLE;                          return RD_STATUS_INVALID_HANDLE;
519                  }                  }
520    
521                  if (pfinfo->delete_on_close)                  if (pfinfo->delete_on_close)
522                          if (rmdir(pfinfo->path) < 0)                          if (rmdir(pfinfo->path) < 0)
523                          {                          {
524                                  perror(pfinfo->path);                                  perror(pfinfo->path);
525                                  return STATUS_ACCESS_DENIED;                                  return RD_STATUS_ACCESS_DENIED;
526                          }                          }
527                  pfinfo->delete_on_close = False;                  pfinfo->delete_on_close = False;
528          }          }
# Line 477  disk_close(NTHANDLE handle) Line 531  disk_close(NTHANDLE handle)
531                  if (close(handle) < 0)                  if (close(handle) < 0)
532                  {                  {
533                          perror("close");                          perror("close");
534                          return STATUS_INVALID_HANDLE;                          return RD_STATUS_INVALID_HANDLE;
535                  }                  }
536                  if (pfinfo->delete_on_close)                  if (pfinfo->delete_on_close)
537                          if (unlink(pfinfo->path) < 0)                          if (unlink(pfinfo->path) < 0)
538                          {                          {
539                                  perror(pfinfo->path);                                  perror(pfinfo->path);
540                                  return STATUS_ACCESS_DENIED;                                  return RD_STATUS_ACCESS_DENIED;
541                          }                          }
542    
543                  pfinfo->delete_on_close = False;                  pfinfo->delete_on_close = False;
544          }          }
545    
546          return STATUS_SUCCESS;          return RD_STATUS_SUCCESS;
547  }  }
548    
549  static NTSTATUS  static RD_NTSTATUS
550  disk_read(NTHANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)  disk_read(RD_NTHANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)
551  {  {
552          int n;          int n;
553    
# Line 520  disk_read(NTHANDLE handle, uint8 * data, Line 574  disk_read(NTHANDLE handle, uint8 * data,
574                                  /* Implement 24 Byte directory read ??                                  /* Implement 24 Byte directory read ??
575                                     with STATUS_NOT_IMPLEMENTED server doesn't read again */                                     with STATUS_NOT_IMPLEMENTED server doesn't read again */
576                                  /* return STATUS_FILE_IS_A_DIRECTORY; */                                  /* return STATUS_FILE_IS_A_DIRECTORY; */
577                                  return STATUS_NOT_IMPLEMENTED;                                  return RD_STATUS_NOT_IMPLEMENTED;
578                          default:                          default:
579                                  perror("read");                                  perror("read");
580                                  return STATUS_INVALID_PARAMETER;                                  return RD_STATUS_INVALID_PARAMETER;
581                  }                  }
582          }          }
583    
584          *result = n;          *result = n;
585    
586          return STATUS_SUCCESS;          return RD_STATUS_SUCCESS;
587  }  }
588    
589  static NTSTATUS  static RD_NTSTATUS
590  disk_write(NTHANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)  disk_write(RD_NTHANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)
591  {  {
592          int n;          int n;
593    
# Line 548  disk_write(NTHANDLE handle, uint8 * data Line 602  disk_write(NTHANDLE handle, uint8 * data
602                  switch (errno)                  switch (errno)
603                  {                  {
604                          case ENOSPC:                          case ENOSPC:
605                                  return STATUS_DISK_FULL;                                  return RD_STATUS_DISK_FULL;
606                          default:                          default:
607                                  return STATUS_ACCESS_DENIED;                                  return RD_STATUS_ACCESS_DENIED;
608                  }                  }
609          }          }
610    
611          *result = n;          *result = n;
612    
613          return STATUS_SUCCESS;          return RD_STATUS_SUCCESS;
614  }  }
615    
616  NTSTATUS  RD_NTSTATUS
617  disk_query_information(NTHANDLE handle, uint32 info_class, STREAM out)  disk_query_information(RD_NTHANDLE handle, uint32 info_class, STREAM out)
618  {  {
619          uint32 file_attributes, ft_high, ft_low;          uint32 file_attributes, ft_high, ft_low;
620          struct stat filestat;          struct stat filestat;
# Line 568  disk_query_information(NTHANDLE handle, Line 622  disk_query_information(NTHANDLE handle,
622    
623          path = g_fileinfo[handle].path;          path = g_fileinfo[handle].path;
624    
625          // Get information about file          /* Get information about file */
626          if (fstat(handle, &filestat) != 0)          if (fstat(handle, &filestat) != 0)
627          {          {
628                  perror("stat");                  perror("stat");
629                  out_uint8(out, 0);                  out_uint8(out, 0);
630                  return STATUS_ACCESS_DENIED;                  return RD_STATUS_ACCESS_DENIED;
631          }          }
632    
633          // Set file attributes          /* Set file attributes */
634          file_attributes = 0;          file_attributes = 0;
635          if (S_ISDIR(filestat.st_mode))          if (S_ISDIR(filestat.st_mode))
636                  file_attributes |= FILE_ATTRIBUTE_DIRECTORY;                  file_attributes |= FILE_ATTRIBUTE_DIRECTORY;
# Line 591  disk_query_information(NTHANDLE handle, Line 645  disk_query_information(NTHANDLE handle,
645          if (!(filestat.st_mode & S_IWUSR))          if (!(filestat.st_mode & S_IWUSR))
646                  file_attributes |= FILE_ATTRIBUTE_READONLY;                  file_attributes |= FILE_ATTRIBUTE_READONLY;
647    
648          // Return requested data          /* Return requested data */
649          switch (info_class)          switch (info_class)
650          {          {
651                  case FileBasicInformation:                  case FileBasicInformation:
652                          seconds_since_1970_to_filetime(get_create_time(&filestat), &ft_high,                          seconds_since_1970_to_filetime(get_create_time(&filestat), &ft_high,
653                                                         &ft_low);                                                         &ft_low);
654                          out_uint32_le(out, ft_low);     //create_access_time                          out_uint32_le(out, ft_low);     /* create_access_time */
655                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
656    
657                          seconds_since_1970_to_filetime(filestat.st_atime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(filestat.st_atime, &ft_high, &ft_low);
658                          out_uint32_le(out, ft_low);     //last_access_time                          out_uint32_le(out, ft_low);     /* last_access_time */
659                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
660    
661                          seconds_since_1970_to_filetime(filestat.st_mtime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(filestat.st_mtime, &ft_high, &ft_low);
662                          out_uint32_le(out, ft_low);     //last_write_time                          out_uint32_le(out, ft_low);     /* last_write_time */
663                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
664    
665                          seconds_since_1970_to_filetime(filestat.st_ctime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(filestat.st_ctime, &ft_high, &ft_low);
666                          out_uint32_le(out, ft_low);     //last_change_time                          out_uint32_le(out, ft_low);     /* last_change_time */
667                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
668    
669                          out_uint32_le(out, file_attributes);                          out_uint32_le(out, file_attributes);
# Line 617  disk_query_information(NTHANDLE handle, Line 671  disk_query_information(NTHANDLE handle,
671    
672                  case FileStandardInformation:                  case FileStandardInformation:
673    
674                          out_uint32_le(out, filestat.st_size);   //Allocation size                          out_uint32_le(out, filestat.st_size);   /* Allocation size */
675                          out_uint32_le(out, 0);                          out_uint32_le(out, 0);
676                          out_uint32_le(out, filestat.st_size);   //End of file                          out_uint32_le(out, filestat.st_size);   /* End of file */
677                          out_uint32_le(out, 0);                          out_uint32_le(out, 0);
678                          out_uint32_le(out, filestat.st_nlink);  //Number of links                          out_uint32_le(out, filestat.st_nlink);  /* Number of links */
679                          out_uint8(out, 0);      //Delete pending                          out_uint8(out, 0);      /* Delete pending */
680                          out_uint8(out, S_ISDIR(filestat.st_mode) ? 1 : 0);      //Directory                          out_uint8(out, S_ISDIR(filestat.st_mode) ? 1 : 0);      /* Directory */
681                          break;                          break;
682    
683                  case FileObjectIdInformation:                  case FileObjectIdInformation:
# Line 635  disk_query_information(NTHANDLE handle, Line 689  disk_query_information(NTHANDLE handle,
689                  default:                  default:
690    
691                          unimpl("IRP Query (File) Information class: 0x%x\n", info_class);                          unimpl("IRP Query (File) Information class: 0x%x\n", info_class);
692                          return STATUS_INVALID_PARAMETER;                          return RD_STATUS_INVALID_PARAMETER;
693          }          }
694          return STATUS_SUCCESS;          return RD_STATUS_SUCCESS;
695  }  }
696    
697  NTSTATUS  RD_NTSTATUS
698  disk_set_information(NTHANDLE handle, uint32 info_class, STREAM in, STREAM out)  disk_set_information(RD_NTHANDLE handle, uint32 info_class, STREAM in, STREAM out)
699  {  {
700          uint32 length, file_attributes, ft_high, ft_low, delete_on_close;          uint32 length, file_attributes, ft_high, ft_low, delete_on_close;
701          char newname[256], fullpath[256];          char newname[PATH_MAX], fullpath[PATH_MAX];
702          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
703          int mode;          int mode;
704          struct stat filestat;          struct stat filestat;
# Line 663  disk_set_information(NTHANDLE handle, ui Line 717  disk_set_information(NTHANDLE handle, ui
717                          in_uint8s(in, 4);       /* Handle of root dir? */                          in_uint8s(in, 4);       /* Handle of root dir? */
718                          in_uint8s(in, 24);      /* unknown */                          in_uint8s(in, 24);      /* unknown */
719    
720                          // CreationTime                          /* CreationTime */
721                          in_uint32_le(in, ft_low);                          in_uint32_le(in, ft_low);
722                          in_uint32_le(in, ft_high);                          in_uint32_le(in, ft_high);
723    
724                          // AccessTime                          /* AccessTime */
725                          in_uint32_le(in, ft_low);                          in_uint32_le(in, ft_low);
726                          in_uint32_le(in, ft_high);                          in_uint32_le(in, ft_high);
727                          if (ft_low || ft_high)                          if (ft_low || ft_high)
728                                  access_time = convert_1970_to_filetime(ft_high, ft_low);                                  access_time = convert_1970_to_filetime(ft_high, ft_low);
729    
730                          // WriteTime                          /* WriteTime */
731                          in_uint32_le(in, ft_low);                          in_uint32_le(in, ft_low);
732                          in_uint32_le(in, ft_high);                          in_uint32_le(in, ft_high);
733                          if (ft_low || ft_high)                          if (ft_low || ft_high)
734                                  write_time = convert_1970_to_filetime(ft_high, ft_low);                                  write_time = convert_1970_to_filetime(ft_high, ft_low);
735    
736                          // ChangeTime                          /* ChangeTime */
737                          in_uint32_le(in, ft_low);                          in_uint32_le(in, ft_low);
738                          in_uint32_le(in, ft_high);                          in_uint32_le(in, ft_high);
739                          if (ft_low || ft_high)                          if (ft_low || ft_high)
# Line 688  disk_set_information(NTHANDLE handle, ui Line 742  disk_set_information(NTHANDLE handle, ui
742                          in_uint32_le(in, file_attributes);                          in_uint32_le(in, file_attributes);
743    
744                          if (fstat(handle, &filestat))                          if (fstat(handle, &filestat))
745                                  return STATUS_ACCESS_DENIED;                                  return RD_STATUS_ACCESS_DENIED;
746    
747                          tvs.modtime = filestat.st_mtime;                          tvs.modtime = filestat.st_mtime;
748                          tvs.actime = filestat.st_atime;                          tvs.actime = filestat.st_atime;
# Line 714  disk_set_information(NTHANDLE handle, ui Line 768  disk_set_information(NTHANDLE handle, ui
768                                         ctime(&tvs.modtime));                                         ctime(&tvs.modtime));
769  #endif  #endif
770                                  if (utime(pfinfo->path, &tvs) && errno != EPERM)                                  if (utime(pfinfo->path, &tvs) && errno != EPERM)
771                                          return STATUS_ACCESS_DENIED;                                          return RD_STATUS_ACCESS_DENIED;
772                          }                          }
773    
774                          if (!file_attributes)                          if (!file_attributes)
775                                  break;  // not valid                                  break;  /* not valid */
776    
777                          mode = filestat.st_mode;                          mode = filestat.st_mode;
778    
# Line 733  disk_set_information(NTHANDLE handle, ui Line 787  disk_set_information(NTHANDLE handle, ui
787  #endif  #endif
788    
789                          if (fchmod(handle, mode))                          if (fchmod(handle, mode))
790                                  return STATUS_ACCESS_DENIED;                                  return RD_STATUS_ACCESS_DENIED;
791    
792                          break;                          break;
793    
# Line 750  disk_set_information(NTHANDLE handle, ui Line 804  disk_set_information(NTHANDLE handle, ui
804                          }                          }
805                          else                          else
806                          {                          {
807                                  return STATUS_INVALID_PARAMETER;                                  return RD_STATUS_INVALID_PARAMETER;
808                          }                          }
809    
810                          sprintf(fullpath, "%s%s", g_rdpdr_device[pfinfo->device_id].local_path,                          sprintf(fullpath, "%s%s", g_rdpdr_device[pfinfo->device_id].local_path,
# Line 759  disk_set_information(NTHANDLE handle, ui Line 813  disk_set_information(NTHANDLE handle, ui
813                          if (rename(pfinfo->path, fullpath) != 0)                          if (rename(pfinfo->path, fullpath) != 0)
814                          {                          {
815                                  perror("rename");                                  perror("rename");
816                                  return STATUS_ACCESS_DENIED;                                  return RD_STATUS_ACCESS_DENIED;
817                          }                          }
818                          break;                          break;
819    
# Line 798  disk_set_information(NTHANDLE handle, ui Line 852  disk_set_information(NTHANDLE handle, ui
852                          /* prevents start of writing if not enough space left on device */                          /* prevents start of writing if not enough space left on device */
853                          if (STATFS_FN(g_rdpdr_device[pfinfo->device_id].local_path, &stat_fs) == 0)                          if (STATFS_FN(g_rdpdr_device[pfinfo->device_id].local_path, &stat_fs) == 0)
854                                  if (stat_fs.f_bfree * stat_fs.f_bsize < length)                                  if (stat_fs.f_bfree * stat_fs.f_bsize < length)
855                                          return STATUS_DISK_FULL;                                          return RD_STATUS_DISK_FULL;
856    
857                          if (ftruncate_growable(handle, length) != 0)                          if (ftruncate_growable(handle, length) != 0)
858                          {                          {
859                                  return STATUS_DISK_FULL;                                  return RD_STATUS_DISK_FULL;
860                          }                          }
861    
862                          break;                          break;
863                  default:                  default:
864    
865                          unimpl("IRP Set File Information class: 0x%x\n", info_class);                          unimpl("IRP Set File Information class: 0x%x\n", info_class);
866                          return STATUS_INVALID_PARAMETER;                          return RD_STATUS_INVALID_PARAMETER;
867          }          }
868          return STATUS_SUCCESS;          return RD_STATUS_SUCCESS;
869  }  }
870    
871  NTSTATUS  RD_NTSTATUS
872  disk_check_notify(NTHANDLE handle)  disk_check_notify(RD_NTHANDLE handle)
873  {  {
874          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
875          NTSTATUS status = STATUS_PENDING;          RD_NTSTATUS status = RD_STATUS_PENDING;
876    
877          NOTIFY notify;          NOTIFY notify;
878    
879          pfinfo = &(g_fileinfo[handle]);          pfinfo = &(g_fileinfo[handle]);
880          if (!pfinfo->pdir)          if (!pfinfo->pdir)
881                  return STATUS_INVALID_DEVICE_REQUEST;                  return RD_STATUS_INVALID_DEVICE_REQUEST;
882    
883    
884    
885          status = NotifyInfo(handle, pfinfo->info_class, &notify);          status = NotifyInfo(handle, pfinfo->info_class, &notify);
886    
887          if (status != STATUS_PENDING)          if (status != RD_STATUS_PENDING)
888                  return status;                  return status;
889    
890          if (memcmp(&pfinfo->notify, &notify, sizeof(NOTIFY)))          if (memcmp(&pfinfo->notify, &notify, sizeof(NOTIFY)))
891          {          {
892                  //printf("disk_check_notify found changed event\n");                  /*printf("disk_check_notify found changed event\n"); */
893                  memcpy(&pfinfo->notify, &notify, sizeof(NOTIFY));                  memcpy(&pfinfo->notify, &notify, sizeof(NOTIFY));
894                  status = STATUS_NOTIFY_ENUM_DIR;                  status = RD_STATUS_NOTIFY_ENUM_DIR;
895          }          }
896    
897          return status;          return status;
# Line 845  disk_check_notify(NTHANDLE handle) Line 899  disk_check_notify(NTHANDLE handle)
899    
900  }  }
901    
902  NTSTATUS  RD_NTSTATUS
903  disk_create_notify(NTHANDLE handle, uint32 info_class)  disk_create_notify(RD_NTHANDLE handle, uint32 info_class)
904  {  {
905    
906          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
907          NTSTATUS ret = STATUS_PENDING;          RD_NTSTATUS ret = RD_STATUS_PENDING;
908    
909          /* printf("start disk_create_notify info_class %X\n", info_class); */          /* printf("start disk_create_notify info_class %X\n", info_class); */
910    
# Line 861  disk_create_notify(NTHANDLE handle, uint Line 915  disk_create_notify(NTHANDLE handle, uint
915    
916          if (info_class & 0x1000)          if (info_class & 0x1000)
917          {                       /* ???? */          {                       /* ???? */
918                  if (ret == STATUS_PENDING)                  if (ret == RD_STATUS_PENDING)
919                          return STATUS_SUCCESS;                          return RD_STATUS_SUCCESS;
920          }          }
921    
922          /* printf("disk_create_notify: num_entries %d\n", pfinfo->notify.num_entries); */          /* printf("disk_create_notify: num_entries %d\n", pfinfo->notify.num_entries); */
# Line 872  disk_create_notify(NTHANDLE handle, uint Line 926  disk_create_notify(NTHANDLE handle, uint
926    
927  }  }
928    
929  static NTSTATUS  static RD_NTSTATUS
930  NotifyInfo(NTHANDLE handle, uint32 info_class, NOTIFY * p)  NotifyInfo(RD_NTHANDLE handle, uint32 info_class, NOTIFY * p)
931  {  {
932          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
933          struct stat buf;          struct stat buf;
# Line 885  NotifyInfo(NTHANDLE handle, uint32 info_ Line 939  NotifyInfo(NTHANDLE handle, uint32 info_
939          if (fstat(handle, &buf) < 0)          if (fstat(handle, &buf) < 0)
940          {          {
941                  perror("NotifyInfo");                  perror("NotifyInfo");
942                  return STATUS_ACCESS_DENIED;                  return RD_STATUS_ACCESS_DENIED;
943          }          }
944          p->modify_time = buf.st_mtime;          p->modify_time = buf.st_mtime;
945          p->status_time = buf.st_ctime;          p->status_time = buf.st_ctime;
# Line 897  NotifyInfo(NTHANDLE handle, uint32 info_ Line 951  NotifyInfo(NTHANDLE handle, uint32 info_
951          if (!dpr)          if (!dpr)
952          {          {
953                  perror("NotifyInfo");                  perror("NotifyInfo");
954                  return STATUS_ACCESS_DENIED;                  return RD_STATUS_ACCESS_DENIED;
955          }          }
956    
957    
# Line 906  NotifyInfo(NTHANDLE handle, uint32 info_ Line 960  NotifyInfo(NTHANDLE handle, uint32 info_
960                  if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))                  if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
961                          continue;                          continue;
962                  p->num_entries++;                  p->num_entries++;
963                  fullname = xmalloc(strlen(pfinfo->path) + strlen(dp->d_name) + 2);                  fullname = (char *) xmalloc(strlen(pfinfo->path) + strlen(dp->d_name) + 2);
964                  sprintf(fullname, "%s/%s", pfinfo->path, dp->d_name);                  sprintf(fullname, "%s/%s", pfinfo->path, dp->d_name);
965    
966                  if (!stat(fullname, &buf))                  if (!stat(fullname, &buf))
# Line 918  NotifyInfo(NTHANDLE handle, uint32 info_ Line 972  NotifyInfo(NTHANDLE handle, uint32 info_
972          }          }
973          closedir(dpr);          closedir(dpr);
974    
975          return STATUS_PENDING;          return RD_STATUS_PENDING;
976  }  }
977    
978  static FsInfoType *  static FsInfoType *
979  FsVolumeInfo(char *fpath)  FsVolumeInfo(char *fpath)
980  {  {
981    
         FILE *fdfs;  
982          static FsInfoType info;          static FsInfoType info;
983  #ifdef HAVE_MNTENT_H  #ifdef USE_SETMNTENT
984            FILE *fdfs;
985          struct mntent *e;          struct mntent *e;
986  #endif  #endif
987    
# Line 936  FsVolumeInfo(char *fpath) Line 990  FsVolumeInfo(char *fpath)
990          strcpy(info.label, "RDESKTOP");          strcpy(info.label, "RDESKTOP");
991          strcpy(info.type, "RDPFS");          strcpy(info.type, "RDPFS");
992    
993  #ifdef HAVE_MNTENT_H  #ifdef USE_SETMNTENT
994          fdfs = setmntent(MNTENT_PATH, "r");          fdfs = setmntent(MNTENT_PATH, "r");
995          if (!fdfs)          if (!fdfs)
996                  return &info;                  return &info;
997    
998          while ((e = getmntent(fdfs)))          while ((e = getmntent(fdfs)))
999          {          {
1000                  if (strncmp(fpath, e->mnt_dir, strlen(fpath)) == 0)                  if (str_startswith(e->mnt_dir, fpath))
1001                  {                  {
1002                          strcpy(info.type, e->mnt_type);                          strcpy(info.type, e->mnt_type);
1003                          strcpy(info.name, e->mnt_fsname);                          strcpy(info.name, e->mnt_fsname);
# Line 962  FsVolumeInfo(char *fpath) Line 1016  FsVolumeInfo(char *fpath)
1016                                                  info.serial =                                                  info.serial =
1017                                                          (buf[42] << 24) + (buf[41] << 16) +                                                          (buf[42] << 24) + (buf[41] << 16) +
1018                                                          (buf[40] << 8) + buf[39];                                                          (buf[40] << 8) + buf[39];
1019                                                  strncpy(info.label, buf + 43, 10);                                                  strncpy(info.label, (char *) buf + 43, 10);
1020                                                  info.label[10] = '\0';                                                  info.label[10] = '\0';
1021                                          }                                          }
1022                                          else if (lseek(fd, 32767, SEEK_SET) >= 0)       /* ISO9660 */                                          else if (lseek(fd, 32767, SEEK_SET) >= 0)       /* ISO9660 */
1023                                          {                                          {
1024                                                  read(fd, buf, sizeof(buf));                                                  read(fd, buf, sizeof(buf));
1025                                                  strncpy(info.label, buf + 41, 32);                                                  strncpy(info.label, (char *) buf + 41, 32);
1026                                                  info.label[32] = '\0';                                                  info.label[32] = '\0';
1027                                                  //info.Serial = (buf[128]<<24)+(buf[127]<<16)+(buf[126]<<8)+buf[125];                                                  /* info.Serial = (buf[128]<<24)+(buf[127]<<16)+(buf[126]<<8)+buf[125]; */
1028                                          }                                          }
1029                                          close(fd);                                          close(fd);
1030                                  }                                  }
# Line 989  FsVolumeInfo(char *fpath) Line 1043  FsVolumeInfo(char *fpath)
1043  }  }
1044    
1045    
1046  NTSTATUS  RD_NTSTATUS
1047  disk_query_volume_information(NTHANDLE handle, uint32 info_class, STREAM out)  disk_query_volume_information(RD_NTHANDLE handle, uint32 info_class, STREAM out)
1048  {  {
1049          struct STATFS_T stat_fs;          struct STATFS_T stat_fs;
1050          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
# Line 1001  disk_query_volume_information(NTHANDLE h Line 1055  disk_query_volume_information(NTHANDLE h
1055          if (STATFS_FN(pfinfo->path, &stat_fs) != 0)          if (STATFS_FN(pfinfo->path, &stat_fs) != 0)
1056          {          {
1057                  perror("statfs");                  perror("statfs");
1058                  return STATUS_ACCESS_DENIED;                  return RD_STATUS_ACCESS_DENIED;
1059          }          }
1060    
1061          fsinfo = FsVolumeInfo(pfinfo->path);          fsinfo = FsVolumeInfo(pfinfo->path);
# Line 1049  disk_query_volume_information(NTHANDLE h Line 1103  disk_query_volume_information(NTHANDLE h
1103                  default:                  default:
1104    
1105                          unimpl("IRP Query Volume Information class: 0x%x\n", info_class);                          unimpl("IRP Query Volume Information class: 0x%x\n", info_class);
1106                          return STATUS_INVALID_PARAMETER;                          return RD_STATUS_INVALID_PARAMETER;
1107          }          }
1108          return STATUS_SUCCESS;          return RD_STATUS_SUCCESS;
1109  }  }
1110    
1111  NTSTATUS  RD_NTSTATUS
1112  disk_query_directory(NTHANDLE handle, uint32 info_class, char *pattern, STREAM out)  disk_query_directory(RD_NTHANDLE handle, uint32 info_class, char *pattern, STREAM out)
1113  {  {
1114          uint32 file_attributes, ft_low, ft_high;          uint32 file_attributes, ft_low, ft_high;
1115          char *dirname, fullpath[256];          char *dirname, fullpath[PATH_MAX];
1116          DIR *pdir;          DIR *pdir;
1117          struct dirent *pdirent;          struct dirent *pdirent;
1118          struct stat fstat;          struct stat fstat;
# Line 1073  disk_query_directory(NTHANDLE handle, ui Line 1127  disk_query_directory(NTHANDLE handle, ui
1127          {          {
1128                  case FileBothDirectoryInformation:                  case FileBothDirectoryInformation:
1129    
1130                          // If a search pattern is received, remember this pattern, and restart search                          /* If a search pattern is received, remember this pattern, and restart search */
1131                          if (pattern[0] != 0)                          if (pattern[0] != 0)
1132                          {                          {
1133                                  strncpy(pfinfo->pattern, 1 + strrchr(pattern, '/'), 64);                                  strncpy(pfinfo->pattern, 1 + strrchr(pattern, '/'), PATH_MAX - 1);
1134                                  rewinddir(pdir);                                  rewinddir(pdir);
1135                          }                          }
1136    
1137                          // find next dirent matching pattern                          /* find next dirent matching pattern */
1138                          pdirent = readdir(pdir);                          pdirent = readdir(pdir);
1139                          while (pdirent && fnmatch(pfinfo->pattern, pdirent->d_name, 0) != 0)                          while (pdirent && fnmatch(pfinfo->pattern, pdirent->d_name, 0) != 0)
1140                                  pdirent = readdir(pdir);                                  pdirent = readdir(pdir);
1141    
1142                          if (pdirent == NULL)                          if (pdirent == NULL)
1143                                  return STATUS_NO_MORE_FILES;                                  return RD_STATUS_NO_MORE_FILES;
1144    
1145                          // Get information for directory entry                          /* Get information for directory entry */
1146                          sprintf(fullpath, "%s/%s", dirname, pdirent->d_name);                          sprintf(fullpath, "%s/%s", dirname, pdirent->d_name);
1147    
1148                          if (stat(fullpath, &fstat))                          if (stat(fullpath, &fstat))
# Line 1106  disk_query_directory(NTHANDLE handle, ui Line 1160  disk_query_directory(NTHANDLE handle, ui
1160                                                     the directory list operation will be aborted */                                                     the directory list operation will be aborted */
1161                                                  perror(fullpath);                                                  perror(fullpath);
1162                                                  out_uint8(out, 0);                                                  out_uint8(out, 0);
1163                                                  return STATUS_NO_SUCH_FILE;                                                  return RD_STATUS_NO_SUCH_FILE;
1164                                  }                                  }
1165                          }                          }
1166    
# Line 1119  disk_query_directory(NTHANDLE handle, ui Line 1173  disk_query_directory(NTHANDLE handle, ui
1173                          if (!(fstat.st_mode & S_IWUSR))                          if (!(fstat.st_mode & S_IWUSR))
1174                                  file_attributes |= FILE_ATTRIBUTE_READONLY;                                  file_attributes |= FILE_ATTRIBUTE_READONLY;
1175    
1176                          // Return requested information                          /* Return requested information */
1177                          out_uint8s(out, 8);     //unknown zero                          out_uint8s(out, 8);     /* unknown zero */
1178    
1179                          seconds_since_1970_to_filetime(get_create_time(&fstat), &ft_high, &ft_low);                          seconds_since_1970_to_filetime(get_create_time(&fstat), &ft_high, &ft_low);
1180                          out_uint32_le(out, ft_low);     // create time                          out_uint32_le(out, ft_low);     /* create time */
1181                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
1182    
1183                          seconds_since_1970_to_filetime(fstat.st_atime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(fstat.st_atime, &ft_high, &ft_low);
1184                          out_uint32_le(out, ft_low);     //last_access_time                          out_uint32_le(out, ft_low);     /* last_access_time */
1185                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
1186    
1187                          seconds_since_1970_to_filetime(fstat.st_mtime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(fstat.st_mtime, &ft_high, &ft_low);
1188                          out_uint32_le(out, ft_low);     //last_write_time                          out_uint32_le(out, ft_low);     /* last_write_time */
1189                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
1190    
1191                          seconds_since_1970_to_filetime(fstat.st_ctime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(fstat.st_ctime, &ft_high, &ft_low);
1192                          out_uint32_le(out, ft_low);     //change_write_time                          out_uint32_le(out, ft_low);     /* change_write_time */
1193                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
1194    
1195                          out_uint32_le(out, fstat.st_size);      //filesize low                          out_uint32_le(out, fstat.st_size);      /* filesize low */
1196                          out_uint32_le(out, 0);  //filesize high                          out_uint32_le(out, 0);  /* filesize high */
1197                          out_uint32_le(out, fstat.st_size);      //filesize low                          out_uint32_le(out, fstat.st_size);      /* filesize low */
1198                          out_uint32_le(out, 0);  //filesize high                          out_uint32_le(out, 0);  /* filesize high */
1199                          out_uint32_le(out, file_attributes);                          out_uint32_le(out, file_attributes);
1200                          out_uint8(out, 2 * strlen(pdirent->d_name) + 2);        //unicode length                          out_uint8(out, 2 * strlen(pdirent->d_name) + 2);        /* unicode length */
1201                          out_uint8s(out, 7);     //pad?                          out_uint8s(out, 7);     /* pad? */
1202                          out_uint8(out, 0);      //8.3 file length                          out_uint8(out, 0);      /* 8.3 file length */
1203                          out_uint8s(out, 2 * 12);        //8.3 unicode length                          out_uint8s(out, 2 * 12);        /* 8.3 unicode length */
1204                          rdp_out_unistr(out, pdirent->d_name, 2 * strlen(pdirent->d_name));                          rdp_out_unistr(out, pdirent->d_name, 2 * strlen(pdirent->d_name));
1205                          break;                          break;
1206    
# Line 1156  disk_query_directory(NTHANDLE handle, ui Line 1210  disk_query_directory(NTHANDLE handle, ui
1210                             FileNamesInformation */                             FileNamesInformation */
1211    
1212                          unimpl("IRP Query Directory sub: 0x%x\n", info_class);                          unimpl("IRP Query Directory sub: 0x%x\n", info_class);
1213                          return STATUS_INVALID_PARAMETER;                          return RD_STATUS_INVALID_PARAMETER;
1214          }          }
1215    
1216          return STATUS_SUCCESS;          return RD_STATUS_SUCCESS;
1217  }  }
1218    
1219    
1220    
1221  static NTSTATUS  static RD_NTSTATUS
1222  disk_device_control(NTHANDLE handle, uint32 request, STREAM in, STREAM out)  disk_device_control(RD_NTHANDLE handle, uint32 request, STREAM in, STREAM out)
1223  {  {
1224          if (((request >> 16) != 20) || ((request >> 16) != 9))          if (((request >> 16) != 20) || ((request >> 16) != 9))
1225                  return STATUS_INVALID_PARAMETER;                  return RD_STATUS_INVALID_PARAMETER;
1226    
1227          /* extract operation */          /* extract operation */
1228          request >>= 2;          request >>= 2;
# Line 1178  disk_device_control(NTHANDLE handle, uin Line 1232  disk_device_control(NTHANDLE handle, uin
1232    
1233          switch (request)          switch (request)
1234          {          {
1235                  case 25:        // ?                  case 25:        /* ? */
1236                  case 42:        // ?                  case 42:        /* ? */
1237                  default:                  default:
1238                          unimpl("DISK IOCTL %d\n", request);                          unimpl("DISK IOCTL %d\n", request);
1239                          return STATUS_INVALID_PARAMETER;                          return RD_STATUS_INVALID_PARAMETER;
1240          }          }
1241    
1242          return STATUS_SUCCESS;          return RD_STATUS_SUCCESS;
1243  }  }
1244    
1245  DEVICE_FNS disk_fns = {  DEVICE_FNS disk_fns = {

Legend:
Removed from v.827  
changed lines
  Added in v.1364

  ViewVC Help
Powered by ViewVC 1.1.26