/[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 690 by astrand, Thu May 6 08:17:14 2004 UTC revision 747 by astrand, Mon Aug 9 13:50:41 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)
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 59  Line 59 
59  #define STATFS_T statfs  #define STATFS_T statfs
60  #define F_NAMELEN(buf) (NAME_MAX)  #define F_NAMELEN(buf) (NAME_MAX)
61    
62    #elif (defined(__SGI_IRIX__))
63    #include <sys/types.h>
64    #include <sys/statvfs.h>
65    #define STATFS_FN(path, buf) (statvfs(path,buf))
66    #define STATFS_T statvfs
67    #define F_NAMELEN(buf) ((buf).f_namemax)
68    
69  #else  #else
70  #include <sys/vfs.h>            /* linux statfs */  #include <sys/vfs.h>            /* linux statfs */
71  #include <mntent.h>  #include <mntent.h>
# Line 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 820  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 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 890  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;

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

  ViewVC Help
Powered by ViewVC 1.1.26