/[rdesktop]/sourceforge.net/trunk/rdesktop/rdpdr.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/rdpdr.c

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

revision 612 by n-ki, Mon Feb 23 09:58:16 2004 UTC revision 647 by astrand, Mon Apr 5 19:23:08 2004 UTC
# Line 1  Line 1 
1  #include <unistd.h>  #include <unistd.h>
2  #include <sys/types.h>  #include <sys/types.h>
3  #include <sys/time.h>  #include <sys/time.h>
4    #include <dirent.h>             /* opendir, closedir, readdir */
5  #include <time.h>  #include <time.h>
6  #include "rdesktop.h"  #include "rdesktop.h"
7    
# Line 28  extern DEVICE_FNS serial_fns; Line 29  extern DEVICE_FNS serial_fns;
29  extern DEVICE_FNS printer_fns;  extern DEVICE_FNS printer_fns;
30  extern DEVICE_FNS parallel_fns;  extern DEVICE_FNS parallel_fns;
31  extern DEVICE_FNS disk_fns;  extern DEVICE_FNS disk_fns;
32    extern FILEINFO g_fileinfo[];
33    
34  static VCHANNEL *rdpdr_channel;  static VCHANNEL *rdpdr_channel;
35    
# Line 37  uint32 g_num_devices; Line 39  uint32 g_num_devices;
39    
40  /* Table with information about rdpdr devices */  /* Table with information about rdpdr devices */
41  RDPDR_DEVICE g_rdpdr_device[RDPDR_MAX_DEVICES];  RDPDR_DEVICE g_rdpdr_device[RDPDR_MAX_DEVICES];
42    char * g_rdpdr_clientname = NULL;
43    
44  /* Used to store incoming io request, until they are ready to be completed */  /* Used to store incoming io request, until they are ready to be completed */
45  /* using a linked list ensures that they are processed in the right order, */  /* using a linked list ensures that they are processed in the right order, */
# Line 79  convert_to_unix_filename(char *filename) Line 82  convert_to_unix_filename(char *filename)
82          }          }
83  }  }
84    
85    BOOL
86    rdpdr_handle_ok(int device, int handle)
87    {
88            switch (g_rdpdr_device[device].device_type)
89            {
90                    case DEVICE_TYPE_PARALLEL:
91                    case DEVICE_TYPE_SERIAL:
92                    case DEVICE_TYPE_PRINTER:
93                    case DEVICE_TYPE_SCARD:
94                            if (g_rdpdr_device[device].handle != handle)
95                                    return False;
96                            break;
97                    case DEVICE_TYPE_DISK:
98                            if (g_fileinfo[handle].device_id != device)
99                                    return False;
100                            break;
101            }
102            return True;
103    }
104    
105  /* Add a new io request to the table containing pending io requests so it won't block rdesktop */  /* Add a new io request to the table containing pending io requests so it won't block rdesktop */
106  BOOL  BOOL
107  add_async_iorequest(uint32 device, uint32 file, uint32 id, uint32 major, uint32 length,  add_async_iorequest(uint32 device, uint32 file, uint32 id, uint32 major, uint32 length,
108                      DEVICE_FNS * fns, uint32 total_timeout, uint32 interval_timeout, uint8 * buffer)                      DEVICE_FNS * fns, uint32 total_timeout, uint32 interval_timeout, uint8 * buffer,
109                        uint32 offset)
110  {  {
111          struct async_iorequest *iorq;          struct async_iorequest *iorq;
112    
# Line 121  add_async_iorequest(uint32 device, uint3 Line 145  add_async_iorequest(uint32 device, uint3
145          iorq->timeout = total_timeout;          iorq->timeout = total_timeout;
146          iorq->itv_timeout = interval_timeout;          iorq->itv_timeout = interval_timeout;
147          iorq->buffer = buffer;          iorq->buffer = buffer;
148            iorq->offset = offset;
149          return True;          return True;
150  }  }
151    
# Line 144  void Line 169  void
169  rdpdr_send_name(void)  rdpdr_send_name(void)
170  {  {
171          uint8 magic[4] = "rDNC";          uint8 magic[4] = "rDNC";
         uint32 hostlen = (strlen(hostname) + 1) * 2;  
172          STREAM s;          STREAM s;
173            uint32 hostlen;
174    
175            if (NULL == g_rdpdr_clientname) {
176              g_rdpdr_clientname = hostname;
177            }
178            hostlen = (strlen(g_rdpdr_clientname) + 1) * 2;
179    
180          s = channel_init(rdpdr_channel, 16 + hostlen);          s = channel_init(rdpdr_channel, 16 + hostlen);
181          out_uint8a(s, magic, 4);          out_uint8a(s, magic, 4);
# Line 153  rdpdr_send_name(void) Line 183  rdpdr_send_name(void)
183          out_uint16_le(s, 0x72);          out_uint16_le(s, 0x72);
184          out_uint32(s, 0);          out_uint32(s, 0);
185          out_uint32_le(s, hostlen);          out_uint32_le(s, hostlen);
186          rdp_out_unistr(s, hostname, hostlen - 2);          rdp_out_unistr(s, g_rdpdr_clientname, hostlen - 2);
187          s_mark_end(s);          s_mark_end(s);
188          channel_send(s, rdpdr_channel);          channel_send(s, rdpdr_channel);
189  }  }
# Line 389  rdpdr_process_irp(STREAM s) Line 419  rdpdr_process_irp(STREAM s)
419  #if WITH_DEBUG_RDP5  #if WITH_DEBUG_RDP5
420                          DEBUG(("RDPDR IRP Read (length: %d, offset: %d)\n", length, offset));                          DEBUG(("RDPDR IRP Read (length: %d, offset: %d)\n", length, offset));
421  #endif  #endif
422                            if (!rdpdr_handle_ok(device, file))
423                            {
424                                    status = STATUS_INVALID_HANDLE;
425                                    break;
426                            }
427    
428                          if (rw_blocking)        // Complete read immediately                          if (rw_blocking)        // Complete read immediately
429                          {                          {
430                                  buffer = (uint8 *) xrealloc((void *) buffer, length);                                  buffer = (uint8 *) xrealloc((void *) buffer, length);
# Line 412  rdpdr_process_irp(STREAM s) Line 448  rdpdr_process_irp(STREAM s)
448                          serial_get_timeout(file, length, &total_timeout, &interval_timeout);                          serial_get_timeout(file, length, &total_timeout, &interval_timeout);
449                          if (add_async_iorequest                          if (add_async_iorequest
450                              (device, file, id, major, length, fns, total_timeout, interval_timeout,                              (device, file, id, major, length, fns, total_timeout, interval_timeout,
451                               pst_buf))                               pst_buf, offset))
452                          {                          {
453                                  status = STATUS_PENDING;                                  status = STATUS_PENDING;
454                                  break;                                  break;
# Line 436  rdpdr_process_irp(STREAM s) Line 472  rdpdr_process_irp(STREAM s)
472  #if WITH_DEBUG_RDP5  #if WITH_DEBUG_RDP5
473                          DEBUG(("RDPDR IRP Write (length: %d)\n", result));                          DEBUG(("RDPDR IRP Write (length: %d)\n", result));
474  #endif  #endif
475                            if (!rdpdr_handle_ok(device, file))
476                            {
477                                    status = STATUS_INVALID_HANDLE;
478                                    break;
479                            }
480    
481                          if (rw_blocking)        // Complete immediately                          if (rw_blocking)        // Complete immediately
482                          {                          {
483                                  status = fns->write(file, s->p, length, offset, &result);                                  status = fns->write(file, s->p, length, offset, &result);
# Line 453  rdpdr_process_irp(STREAM s) Line 495  rdpdr_process_irp(STREAM s)
495                          in_uint8a(s, pst_buf, length);                          in_uint8a(s, pst_buf, length);
496    
497                          if (add_async_iorequest                          if (add_async_iorequest
498                              (device, file, id, major, length, fns, 0, 0, pst_buf))                              (device, file, id, major, length, fns, 0, 0, pst_buf, offset))
499                          {                          {
500                                  status = STATUS_PENDING;                                  status = STATUS_PENDING;
501                                  break;                                  break;
# Line 755  rdpdr_add_fds(int *n, fd_set * rfds, fd_ Line 797  rdpdr_add_fds(int *n, fd_set * rfds, fd_
797          }          }
798  }  }
799    
800    struct async_iorequest *
801    rdpdr_remove_iorequest(struct async_iorequest *prev, struct async_iorequest *iorq)
802    {
803            if (!iorq)
804                    return NULL;
805    
806            if (iorq->buffer)
807                    xfree(iorq->buffer);
808            if (prev)
809            {
810                    prev->next = iorq->next;
811                    xfree(iorq);
812                    iorq = prev->next;
813            }
814            else
815            {
816                    // Even if NULL
817                    g_iorequest = iorq->next;
818                    xfree(iorq);
819                    iorq = NULL;
820            }
821            return iorq;
822    }
823    
824  /* Check if select() returned with one of the rdpdr file descriptors, and complete io if it did */  /* Check if select() returned with one of the rdpdr file descriptors, and complete io if it did */
825  void  void
# Line 794  rdpdr_check_fds(fd_set * rfds, fd_set * Line 859  rdpdr_check_fds(fd_set * rfds, fd_set *
859                                                  /* never read larger chunks than 8k - chances are that it will block */                                                  /* never read larger chunks than 8k - chances are that it will block */
860                                                  status = fns->read(iorq->fd,                                                  status = fns->read(iorq->fd,
861                                                                     iorq->buffer + iorq->partial_len,                                                                     iorq->buffer + iorq->partial_len,
862                                                                     req_size, 0, &result);                                                                     req_size, iorq->offset, &result);
                                                 iorq->partial_len += result;  
863    
864                                                    if (result > 0)
865                                                    {
866                                                            iorq->partial_len += result;
867                                                            iorq->offset += result;
868                                                    }
869  #if WITH_DEBUG_RDP5  #if WITH_DEBUG_RDP5
870                                                  DEBUG(("RDPDR: %d bytes of data read\n", result));                                                  DEBUG(("RDPDR: %d bytes of data read\n", result));
871  #endif  #endif
# Line 808  rdpdr_check_fds(fd_set * rfds, fd_set * Line 877  rdpdr_check_fds(fd_set * rfds, fd_set *
877  #if WITH_DEBUG_RDP5  #if WITH_DEBUG_RDP5
878                                                          DEBUG(("RDPDR: AIO total %u bytes read of %u\n", iorq->partial_len, iorq->length));                                                          DEBUG(("RDPDR: AIO total %u bytes read of %u\n", iorq->partial_len, iorq->length));
879  #endif  #endif
                                                         /* send the data */  
                                                         status = STATUS_SUCCESS;  
880                                                          rdpdr_send_completion(iorq->device,                                                          rdpdr_send_completion(iorq->device,
881                                                                                iorq->id, status,                                                                                iorq->id, status,
882                                                                                iorq->partial_len,                                                                                iorq->partial_len,
883                                                                                iorq->buffer,                                                                                iorq->buffer,
884                                                                                iorq->partial_len);                                                                                iorq->partial_len);
885                                                          xfree(iorq->buffer);                                                          iorq = rdpdr_remove_iorequest(prev, iorq);
                                                         iorq->fd = 0;  
                                                         if (prev != NULL)  
                                                         {  
                                                                 prev->next = iorq->next;  
                                                                 xfree(iorq);  
                                                         }  
                                                         else  
                                                         {  
                                                                 // Even if NULL  
                                                                 g_iorequest = iorq->next;  
                                                                 xfree(iorq);  
                                                         }  
886                                                  }                                                  }
887                                          }                                          }
888                                          break;                                          break;
# Line 845  rdpdr_check_fds(fd_set * rfds, fd_set * Line 900  rdpdr_check_fds(fd_set * rfds, fd_set *
900                                                  /* never write larger chunks than 8k - chances are that it will block */                                                  /* never write larger chunks than 8k - chances are that it will block */
901                                                  status = fns->write(iorq->fd,                                                  status = fns->write(iorq->fd,
902                                                                      iorq->buffer +                                                                      iorq->buffer +
903                                                                      iorq->partial_len, req_size, 0,                                                                      iorq->partial_len, req_size,
904                                                                      &result);                                                                      iorq->offset, &result);
905                                                  iorq->partial_len += result;  
906                                                    if (result > 0)
907                                                    {
908                                                            iorq->partial_len += result;
909                                                            iorq->offset += result;
910                                                    }
911    
912  #if WITH_DEBUG_RDP5  #if WITH_DEBUG_RDP5
913                                                  DEBUG(("RDPDR: %d bytes of data written\n",                                                  DEBUG(("RDPDR: %d bytes of data written\n",
914                                                         result));                                                         result));
# Line 860  rdpdr_check_fds(fd_set * rfds, fd_set * Line 921  rdpdr_check_fds(fd_set * rfds, fd_set *
921  #if WITH_DEBUG_RDP5  #if WITH_DEBUG_RDP5
922                                                          DEBUG(("RDPDR: AIO total %u bytes written of %u\n", iorq->partial_len, iorq->length));                                                          DEBUG(("RDPDR: AIO total %u bytes written of %u\n", iorq->partial_len, iorq->length));
923  #endif  #endif
                                                         /* send a status success */  
                                                         status = STATUS_SUCCESS;  
924                                                          rdpdr_send_completion(iorq->device,                                                          rdpdr_send_completion(iorq->device,
925                                                                                iorq->id, status,                                                                                iorq->id, status,
926                                                                                iorq->partial_len,                                                                                iorq->partial_len,
927                                                                                (uint8 *) "", 1);                                                                                (uint8 *) "", 1);
928    
929                                                          xfree(iorq->buffer);                                                          iorq = rdpdr_remove_iorequest(prev, iorq);
                                                         iorq->fd = 0;  
                                                         if (prev != NULL)  
                                                         {  
                                                                 prev->next = iorq->next;  
                                                                 xfree(iorq);  
                                                         }  
                                                         else  
                                                         {  
                                                                 // Even if NULL  
                                                                 g_iorequest = iorq->next;  
                                                                 xfree(iorq);  
                                                         }  
930                                                  }                                                  }
931                                          }                                          }
932                                          break;                                          break;
# Line 887  rdpdr_check_fds(fd_set * rfds, fd_set * Line 934  rdpdr_check_fds(fd_set * rfds, fd_set *
934    
935                  }                  }
936                  prev = iorq;                  prev = iorq;
937                  iorq = iorq->next;                  if (iorq)
938                            iorq = iorq->next;
939          }          }
940    
941  }  }
# Line 911  rdpdr_abort_io(uint32 fd, uint32 major, Line 959  rdpdr_abort_io(uint32 fd, uint32 major,
959                          result = 0;                          result = 0;
960                          rdpdr_send_completion(iorq->device, iorq->id, status, result, (uint8 *) "",                          rdpdr_send_completion(iorq->device, iorq->id, status, result, (uint8 *) "",
961                                                1);                                                1);
962                          xfree(iorq->buffer);  
963                          iorq->fd = 0;                          iorq = rdpdr_remove_iorequest(prev, iorq);
                         if (prev != NULL)  
                         {  
                                 prev->next = iorq->next;  
                                 xfree(iorq);  
                         }  
                         else  
                         {  
                                 // Even if NULL  
                                 g_iorequest = iorq->next;  
                                 xfree(iorq);  
                         }  
964                          return True;                          return True;
965                  }                  }
966    

Legend:
Removed from v.612  
changed lines
  Added in v.647

  ViewVC Help
Powered by ViewVC 1.1.26