/[rdesktop]/sourceforge.net/trunk/rdesktop/disk.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/disk.c

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

revision 696 by astrand, Tue May 11 12:46:39 2004 UTC revision 783 by stargo, Fri Oct 15 18:02:45 2004 UTC
# Line 20  Line 20 
20    
21  #include "disk.h"  #include "disk.h"
22    
 #if (defined(sun) && (defined(__svr4__) || defined(__SVR4)))  
 #define SOLARIS  
 #endif  
   
 #if (defined(SOLARIS) || defined(__hpux))  
 #define DIRFD(a) ((a)->dd_fd)  
 #else  
 #define DIRFD(a) (dirfd(a))  
 #endif  
   
23  #include <sys/types.h>  #include <sys/types.h>
24  #include <sys/stat.h>  #include <sys/stat.h>
25  #include <unistd.h>  #include <unistd.h>
# Line 41  Line 31 
31  #include <utime.h>  #include <utime.h>
32  #include <time.h>               /* ctime */  #include <time.h>               /* ctime */
33    
34    #if (defined(HAVE_DIRFD) || (HAVE_DECL_DIRFD == 1))
35    #define DIRFD(a) (dirfd(a))
36    #else
37    #define DIRFD(a) ((a)->DIR_FD_MEMBER_NAME)
38    #endif
39    
40    /* TODO: let autoconf figure out everything below... */
41    #if (defined(sun) && (defined(__svr4__) || defined(__SVR4)))
42    #define SOLARIS
43    #endif
44    
45  #if (defined(SOLARIS) || defined (__hpux) || defined(__BEOS__))  #if (defined(SOLARIS) || defined (__hpux) || defined(__BEOS__))
46  #include <sys/statvfs.h>        /* solaris statvfs */  #include <sys/statvfs.h>        /* solaris statvfs */
# Line 52  Line 52 
52  #define STATFS_T statvfs  #define STATFS_T statvfs
53  #define F_NAMELEN(buf) ((buf).f_namemax)  #define F_NAMELEN(buf) ((buf).f_namemax)
54    
55  #elif (defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__))  #elif (defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__APPLE__))
56  #include <sys/param.h>  #include <sys/param.h>
57  #include <sys/mount.h>  #include <sys/mount.h>
58  #define STATFS_FN(path, buf) (statfs(path,buf))  #define STATFS_FN(path, buf) (statfs(path,buf))
59  #define STATFS_T statfs  #define STATFS_T statfs
60  #define F_NAMELEN(buf) (NAME_MAX)  #define F_NAMELEN(buf) (NAME_MAX)
61    
62    #elif (defined(__SGI_IRIX__))
63    #include <sys/types.h>
64    #include <sys/statvfs.h>
65    #define STATFS_FN(path, buf) (statvfs(path,buf))
66    #define STATFS_T statvfs
67    #define F_NAMELEN(buf) ((buf).f_namemax)
68    
69  #else  #else
70  #include <sys/vfs.h>            /* linux statfs */  #include <sys/vfs.h>            /* linux statfs */
71  #include <mntent.h>  #include <mntent.h>
# Line 142  disk_enum_devices(uint32 * id, char *opt Line 149  disk_enum_devices(uint32 * id, char *opt
149          while ((pos = next_arg(optarg, ',')) && *id < RDPDR_MAX_DEVICES)          while ((pos = next_arg(optarg, ',')) && *id < RDPDR_MAX_DEVICES)
150          {          {
151                  pos2 = next_arg(optarg, '=');                  pos2 = next_arg(optarg, '=');
                 strcpy(g_rdpdr_device[*id].name, optarg);  
   
                 toupper_str(g_rdpdr_device[*id].name);  
152    
153                  /* add trailing colon to name. */                  strncpy(g_rdpdr_device[*id].name, optarg, sizeof(g_rdpdr_device[*id].name));
154                  strcat(g_rdpdr_device[*id].name, ":");                  if (strlen(optarg) > 8)
155                            fprintf(stderr, "share name %s truncated to %s\n", optarg,
156                                    g_rdpdr_device[*id].name);
157    
158                  g_rdpdr_device[*id].local_path = xmalloc(strlen(pos2) + 1);                  g_rdpdr_device[*id].local_path = xmalloc(strlen(pos2) + 1);
159                  strcpy(g_rdpdr_device[*id].local_path, pos2);                  strcpy(g_rdpdr_device[*id].local_path, pos2);
                 printf("DISK %s to %s\n", g_rdpdr_device[*id].name, g_rdpdr_device[*id].local_path);  
160                  g_rdpdr_device[*id].device_type = DEVICE_TYPE_DISK;                  g_rdpdr_device[*id].device_type = DEVICE_TYPE_DISK;
161                  count++;                  count++;
162                  (*id)++;                  (*id)++;
# Line 164  disk_enum_devices(uint32 * id, char *opt Line 169  disk_enum_devices(uint32 * id, char *opt
169  /* Opens or creates a file or directory */  /* Opens or creates a file or directory */
170  static NTSTATUS  static NTSTATUS
171  disk_create(uint32 device_id, uint32 accessmask, uint32 sharemode, uint32 create_disposition,  disk_create(uint32 device_id, uint32 accessmask, uint32 sharemode, uint32 create_disposition,
172              uint32 flags_and_attributes, char *filename, HANDLE * phandle)              uint32 flags_and_attributes, char *filename, NTHANDLE * phandle)
173  {  {
174          HANDLE handle;          NTHANDLE handle;
175          DIR *dirp;          DIR *dirp;
176          int flags, mode;          int flags, mode;
177          char path[256];          char path[256];
# Line 320  disk_create(uint32 device_id, uint32 acc Line 325  disk_create(uint32 device_id, uint32 acc
325  }  }
326    
327  static NTSTATUS  static NTSTATUS
328  disk_close(HANDLE handle)  disk_close(NTHANDLE handle)
329  {  {
330          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
331    
# Line 340  disk_close(HANDLE handle) Line 345  disk_close(HANDLE handle)
345  }  }
346    
347  static NTSTATUS  static NTSTATUS
348  disk_read(HANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)  disk_read(NTHANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)
349  {  {
350          int n;          int n;
351    
# Line 377  disk_read(HANDLE handle, uint8 * data, u Line 382  disk_read(HANDLE handle, uint8 * data, u
382  }  }
383    
384  static NTSTATUS  static NTSTATUS
385  disk_write(HANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)  disk_write(NTHANDLE handle, uint8 * data, uint32 length, uint32 offset, uint32 * result)
386  {  {
387          int n;          int n;
388    
# Line 404  disk_write(HANDLE handle, uint8 * data, Line 409  disk_write(HANDLE handle, uint8 * data,
409  }  }
410    
411  NTSTATUS  NTSTATUS
412  disk_query_information(HANDLE handle, uint32 info_class, STREAM out)  disk_query_information(NTHANDLE handle, uint32 info_class, STREAM out)
413  {  {
414          uint32 file_attributes, ft_high, ft_low;          uint32 file_attributes, ft_high, ft_low;
415          struct stat filestat;          struct stat filestat;
# Line 485  disk_query_information(HANDLE handle, ui Line 490  disk_query_information(HANDLE handle, ui
490  }  }
491    
492  NTSTATUS  NTSTATUS
493  disk_set_information(HANDLE handle, uint32 info_class, STREAM in, STREAM out)  disk_set_information(NTHANDLE handle, uint32 info_class, STREAM in, STREAM out)
494  {  {
495          uint32 device_id, length, file_attributes, ft_high, ft_low;          uint32 device_id, length, file_attributes, ft_high, ft_low;
496          char newname[256], fullpath[256];          char newname[256], fullpath[256];
# Line 739  FsVolumeInfo(char *fpath) Line 744  FsVolumeInfo(char *fpath)
744    
745    
746  NTSTATUS  NTSTATUS
747  disk_query_volume_information(HANDLE handle, uint32 info_class, STREAM out)  disk_query_volume_information(NTHANDLE handle, uint32 info_class, STREAM out)
748  {  {
749          struct STATFS_T stat_fs;          struct STATFS_T stat_fs;
750          struct fileinfo *pfinfo;          struct fileinfo *pfinfo;
# Line 804  disk_query_volume_information(HANDLE han Line 809  disk_query_volume_information(HANDLE han
809  }  }
810    
811  NTSTATUS  NTSTATUS
812  disk_query_directory(HANDLE handle, uint32 info_class, char *pattern, STREAM out)  disk_query_directory(NTHANDLE handle, uint32 info_class, char *pattern, STREAM out)
813  {  {
814          uint32 file_attributes, ft_low, ft_high;          uint32 file_attributes, ft_low, ft_high;
815          char *dirname, fullpath[256];          char *dirname, fullpath[256];
# Line 840  disk_query_directory(HANDLE handle, uint Line 845  disk_query_directory(HANDLE handle, uint
845                          // Get information for directory entry                          // Get information for directory entry
846                          sprintf(fullpath, "%s/%s", dirname, pdirent->d_name);                          sprintf(fullpath, "%s/%s", dirname, pdirent->d_name);
847    
                         /* JIF  
                            printf("Stat: %s\n", fullpath); */  
848                          if (stat(fullpath, &fstat))                          if (stat(fullpath, &fstat))
849                          {                          {
850                                  perror("stat");                                  switch (errno)
851                                  out_uint8(out, 0);                                  {
852                                  return STATUS_ACCESS_DENIED;                                          case ENOENT:
853                                            case ELOOP:
854                                            case EACCES:
855                                                    /* These are non-fatal errors. */
856                                                    memset(&fstat, 0, sizeof(fstat));
857                                                    break;
858                                            default:
859                                                    /* Fatal error. By returning STATUS_NO_SUCH_FILE,
860                                                       the directory list operation will be aborted */
861                                                    perror(fullpath);
862                                                    out_uint8(out, 0);
863                                                    return STATUS_NO_SUCH_FILE;
864                                    }
865                          }                          }
866    
867                          if (S_ISDIR(fstat.st_mode))                          if (S_ISDIR(fstat.st_mode))
# Line 904  disk_query_directory(HANDLE handle, uint Line 919  disk_query_directory(HANDLE handle, uint
919    
920    
921  static NTSTATUS  static NTSTATUS
922  disk_device_control(HANDLE handle, uint32 request, STREAM in, STREAM out)  disk_device_control(NTHANDLE handle, uint32 request, STREAM in, STREAM out)
923  {  {
924          uint32 result;          uint32 result;
925    

Legend:
Removed from v.696  
changed lines
  Added in v.783

  ViewVC Help
Powered by ViewVC 1.1.26