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

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

revision 590 by n-ki, Thu Jan 29 12:27:21 2004 UTC revision 651 by astrand, Thu Apr 15 20:12:42 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>
4    #include <dirent.h>             /* opendir, closedir, readdir */
5  #include <time.h>  #include <time.h>
6  #include "rdesktop.h"  #include "rdesktop.h"
7    
 #define IRP_MJ_CREATE           0x00  
 #define IRP_MJ_CLOSE            0x02  
 #define IRP_MJ_READ             0x03  
 #define IRP_MJ_WRITE            0x04  
 #define IRP_MJ_DEVICE_CONTROL   0x0e  
   
8  #define IRP_MJ_CREATE                   0x00  #define IRP_MJ_CREATE                   0x00
9  #define IRP_MJ_CLOSE                    0x02  #define IRP_MJ_CLOSE                    0x02
10  #define IRP_MJ_READ                     0x03  #define IRP_MJ_READ                     0x03
# Line 18  Line 14 
14  #define IRP_MJ_QUERY_VOLUME_INFORMATION 0x0a  #define IRP_MJ_QUERY_VOLUME_INFORMATION 0x0a
15  #define IRP_MJ_DIRECTORY_CONTROL        0x0c  #define IRP_MJ_DIRECTORY_CONTROL        0x0c
16  #define IRP_MJ_DEVICE_CONTROL           0x0e  #define IRP_MJ_DEVICE_CONTROL           0x0e
17    #define IRP_MJ_LOCK_CONTROL             0x11
18    
19  #define IRP_MN_QUERY_DIRECTORY          0x01  #define IRP_MN_QUERY_DIRECTORY          0x01
20  #define IRP_MN_NOTIFY_CHANGE_DIRECTORY  0x02  #define IRP_MN_NOTIFY_CHANGE_DIRECTORY  0x02
21    
 //#define MAX_ASYNC_IO_REQUESTS   10  
   
22  extern char hostname[16];  extern char hostname[16];
23  extern DEVICE_FNS serial_fns;  extern DEVICE_FNS serial_fns;
24  extern DEVICE_FNS printer_fns;  extern DEVICE_FNS printer_fns;
25  extern DEVICE_FNS parallel_fns;  extern DEVICE_FNS parallel_fns;
26  extern DEVICE_FNS disk_fns;  extern DEVICE_FNS disk_fns;
27    extern FILEINFO g_fileinfo[];
28    
29  static VCHANNEL *rdpdr_channel;  static VCHANNEL *rdpdr_channel;
30    
# Line 39  uint32 g_num_devices; Line 34  uint32 g_num_devices;
34    
35  /* Table with information about rdpdr devices */  /* Table with information about rdpdr devices */
36  RDPDR_DEVICE g_rdpdr_device[RDPDR_MAX_DEVICES];  RDPDR_DEVICE g_rdpdr_device[RDPDR_MAX_DEVICES];
37    char *g_rdpdr_clientname = NULL;
38    
 #if 0  
39  /* 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 */
40    /* using a linked list ensures that they are processed in the right order, */
41    /* if multiple ios are being done on the same fd */
42  struct async_iorequest  struct async_iorequest
43  {  {
44          uint32 fd, major, minor, offset, device, id, length;          uint32 fd, major, minor, offset, device, id, length, partial_len;
45          long timeout,           /* Total timeout */          long timeout,           /* Total timeout */
46            itv_timeout;          /* Interval timeout (between serial characters) */            itv_timeout;          /* Interval timeout (between serial characters) */
47          uint8 *buffer;          uint8 *buffer;
48          DEVICE_FNS *fns;          DEVICE_FNS *fns;
49  } g_iorequest[MAX_ASYNC_IO_REQUESTS];  
50  #endif          struct async_iorequest *next;   /* next element in list */
51    };
52    
53    struct async_iorequest *g_iorequest;
54    
55  /* Return device_id for a given handle */  /* Return device_id for a given handle */
56  int  int
# Line 77  convert_to_unix_filename(char *filename) Line 77  convert_to_unix_filename(char *filename)
77          }          }
78  }  }
79    
80  #if 0  BOOL
81    rdpdr_handle_ok(int device, int handle)
82    {
83            switch (g_rdpdr_device[device].device_type)
84            {
85                    case DEVICE_TYPE_PARALLEL:
86                    case DEVICE_TYPE_SERIAL:
87                    case DEVICE_TYPE_PRINTER:
88                    case DEVICE_TYPE_SCARD:
89                            if (g_rdpdr_device[device].handle != handle)
90                                    return False;
91                            break;
92                    case DEVICE_TYPE_DISK:
93                            if (g_fileinfo[handle].device_id != device)
94                                    return False;
95                            break;
96            }
97            return True;
98    }
99    
100  /* 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 */
101  BOOL  BOOL
102  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,
103                      DEVICE_FNS * fns, long total_timeout, long interval_timeout, uint8 * buffer)                      DEVICE_FNS * fns, uint32 total_timeout, uint32 interval_timeout, uint8 * buffer,
104                        uint32 offset)
105  {  {
         int i;  
106          struct async_iorequest *iorq;          struct async_iorequest *iorq;
107    
108          for (i = 0; i < MAX_ASYNC_IO_REQUESTS; i++)          if (g_iorequest == NULL)
109          {          {
110                  iorq = &g_iorequest[i];                  g_iorequest = (struct async_iorequest *) xmalloc(sizeof(struct async_iorequest));
111                    if (!g_iorequest)
112                  if (iorq->fd == 0)                          return False;
113                  {                  g_iorequest->fd = 0;
114                          iorq->device = device;                  g_iorequest->next = NULL;
115                          iorq->fd = file;          }
116                          iorq->id = id;  
117                          iorq->major = major;          iorq = g_iorequest;
118                          iorq->length = length;  
119                          iorq->fns = fns;          while (iorq->fd != 0)
120                          iorq->timeout = total_timeout;          {
121                          iorq->itv_timeout = interval_timeout;                  // create new element if needed
122                          iorq->buffer = buffer;                  if (iorq->next == NULL)
123                          return True;                  {
124                  }                          iorq->next =
125          }                                  (struct async_iorequest *) xmalloc(sizeof(struct async_iorequest));
126          error("IO request table full. Increase MAX_ASYNC_IO_REQUESTS in rdpdr.c!\n");                          if (!iorq->next)
127          return False;                                  return False;
128                            iorq->next->fd = 0;
129                            iorq->next->next = NULL;
130                    }
131                    iorq = iorq->next;
132            }
133            iorq->device = device;
134            iorq->fd = file;
135            iorq->id = id;
136            iorq->major = major;
137            iorq->length = length;
138            iorq->partial_len = 0;
139            iorq->fns = fns;
140            iorq->timeout = total_timeout;
141            iorq->itv_timeout = interval_timeout;
142            iorq->buffer = buffer;
143            iorq->offset = offset;
144            return True;
145  }  }
 #endif  
146    
147  void  void
148  rdpdr_send_connect(void)  rdpdr_send_connect(void)
# Line 129  void Line 164  void
164  rdpdr_send_name(void)  rdpdr_send_name(void)
165  {  {
166          uint8 magic[4] = "rDNC";          uint8 magic[4] = "rDNC";
         uint32 hostlen = (strlen(hostname) + 1) * 2;  
167          STREAM s;          STREAM s;
168            uint32 hostlen;
169    
170            if (NULL == g_rdpdr_clientname)
171            {
172                    g_rdpdr_clientname = hostname;
173            }
174            hostlen = (strlen(g_rdpdr_clientname) + 1) * 2;
175    
176          s = channel_init(rdpdr_channel, 16 + hostlen);          s = channel_init(rdpdr_channel, 16 + hostlen);
177          out_uint8a(s, magic, 4);          out_uint8a(s, magic, 4);
# Line 138  rdpdr_send_name(void) Line 179  rdpdr_send_name(void)
179          out_uint16_le(s, 0x72);          out_uint16_le(s, 0x72);
180          out_uint32(s, 0);          out_uint32(s, 0);
181          out_uint32_le(s, hostlen);          out_uint32_le(s, hostlen);
182          rdp_out_unistr(s, hostname, hostlen - 2);          rdp_out_unistr(s, g_rdpdr_clientname, hostlen - 2);
183          s_mark_end(s);          s_mark_end(s);
184          channel_send(s, rdpdr_channel);          channel_send(s, rdpdr_channel);
185  }  }
# Line 210  rdpdr_send_available(void) Line 251  rdpdr_send_available(void)
251                                  rdp_out_unistr(s, printerinfo->printer, printerlen - 2);                                  rdp_out_unistr(s, printerinfo->printer, printerlen - 2);
252                                  out_uint8a(s, printerinfo->blob, bloblen);                                  out_uint8a(s, printerinfo->blob, bloblen);
253    
254                                  xfree(printerinfo->blob);       /* Blob is sent twice if reconnecting */                                  if (printerinfo->blob)
255                                            xfree(printerinfo->blob);       /* Blob is sent twice if reconnecting */
256                                  break;                                  break;
257                          default:                          default:
258                                  out_uint32(s, 0);                                  out_uint32(s, 0);
# Line 290  rdpdr_process_irp(STREAM s) Line 332  rdpdr_process_irp(STREAM s)
332                  case DEVICE_TYPE_SERIAL:                  case DEVICE_TYPE_SERIAL:
333    
334                          fns = &serial_fns;                          fns = &serial_fns;
335                          /* should be async when aio is finished */                          rw_blocking = False;
                         /*rw_blocking = False; */  
336                          break;                          break;
337    
338                  case DEVICE_TYPE_PARALLEL:                  case DEVICE_TYPE_PARALLEL:
339    
340                          fns = &parallel_fns;                          fns = &parallel_fns;
341                          /* should be async when aio is finished */                          rw_blocking = False;
                         /*rw_blocking = False;*/  
342                          break;                          break;
343    
344                  case DEVICE_TYPE_PRINTER:                  case DEVICE_TYPE_PRINTER:
# Line 309  rdpdr_process_irp(STREAM s) Line 349  rdpdr_process_irp(STREAM s)
349                  case DEVICE_TYPE_DISK:                  case DEVICE_TYPE_DISK:
350    
351                          fns = &disk_fns;                          fns = &disk_fns;
352                            rw_blocking = False;
353                          break;                          break;
354    
355                  case DEVICE_TYPE_SCARD:                  case DEVICE_TYPE_SCARD:
# Line 374  rdpdr_process_irp(STREAM s) Line 415  rdpdr_process_irp(STREAM s)
415  #if WITH_DEBUG_RDP5  #if WITH_DEBUG_RDP5
416                          DEBUG(("RDPDR IRP Read (length: %d, offset: %d)\n", length, offset));                          DEBUG(("RDPDR IRP Read (length: %d, offset: %d)\n", length, offset));
417  #endif  #endif
418  //                      if (rw_blocking)        // Complete read immediately                          if (!rdpdr_handle_ok(device, file))
419  //                      {                          {
420                                    status = STATUS_INVALID_HANDLE;
421                                    break;
422                            }
423    
424                            if (rw_blocking)        // Complete read immediately
425                            {
426                                  buffer = (uint8 *) xrealloc((void *) buffer, length);                                  buffer = (uint8 *) xrealloc((void *) buffer, length);
427                                    if (!buffer)
428                                    {
429                                            status = STATUS_CANCELLED;
430                                            break;
431                                    }
432                                  status = fns->read(file, buffer, length, offset, &result);                                  status = fns->read(file, buffer, length, offset, &result);
433                                  buffer_len = result;                                  buffer_len = result;
434                                  break;                                  break;
435  //                      }                          }
436    
 #if 0  
437                          // Add request to table                          // Add request to table
438                          pst_buf = (uint8 *) xmalloc(length);                          pst_buf = (uint8 *) xmalloc(length);
439                            if (!pst_buf)
440                            {
441                                    status = STATUS_CANCELLED;
442                                    break;
443                            }
444                          serial_get_timeout(file, length, &total_timeout, &interval_timeout);                          serial_get_timeout(file, length, &total_timeout, &interval_timeout);
445                          if (add_async_iorequest                          if (add_async_iorequest
446                              (device, file, id, major, length, fns, total_timeout, interval_timeout,                              (device, file, id, major, length, fns, total_timeout, interval_timeout,
447                               pst_buf))                               pst_buf, offset))
448                          {                          {
449                                  status = STATUS_PENDING;                                  status = STATUS_PENDING;
450                                  break;                                  break;
# Line 396  rdpdr_process_irp(STREAM s) Line 452  rdpdr_process_irp(STREAM s)
452    
453                          status = STATUS_CANCELLED;                          status = STATUS_CANCELLED;
454                          break;                          break;
 #endif  
455                  case IRP_MJ_WRITE:                  case IRP_MJ_WRITE:
456    
457                          buffer_len = 1;                          buffer_len = 1;
# Line 413  rdpdr_process_irp(STREAM s) Line 468  rdpdr_process_irp(STREAM s)
468  #if WITH_DEBUG_RDP5  #if WITH_DEBUG_RDP5
469                          DEBUG(("RDPDR IRP Write (length: %d)\n", result));                          DEBUG(("RDPDR IRP Write (length: %d)\n", result));
470  #endif  #endif
471  //                      if (rw_blocking)        // Complete immediately                          if (!rdpdr_handle_ok(device, file))
472  //                      {                          {
473                                    status = STATUS_INVALID_HANDLE;
474                                    break;
475                            }
476    
477                            if (rw_blocking)        // Complete immediately
478                            {
479                                  status = fns->write(file, s->p, length, offset, &result);                                  status = fns->write(file, s->p, length, offset, &result);
480                                  break;                                  break;
481  //                      }                          }
482  #if 0  
483                          // Add to table                          // Add to table
484                          pst_buf = (uint8 *) xmalloc(length);                          pst_buf = (uint8 *) xmalloc(length);
485                            if (!pst_buf)
486                            {
487                                    status = STATUS_CANCELLED;
488                                    break;
489                            }
490    
491                          in_uint8a(s, pst_buf, length);                          in_uint8a(s, pst_buf, length);
492    
493                          if (add_async_iorequest                          if (add_async_iorequest
494                              (device, file, id, major, length, fns, 0, 0, pst_buf))                              (device, file, id, major, length, fns, 0, 0, pst_buf, offset))
495                          {                          {
496                                  status = STATUS_PENDING;                                  status = STATUS_PENDING;
497                                  break;                                  break;
# Line 432  rdpdr_process_irp(STREAM s) Line 499  rdpdr_process_irp(STREAM s)
499    
500                          status = STATUS_CANCELLED;                          status = STATUS_CANCELLED;
501                          break;                          break;
 #endif  
502    
503                  case IRP_MJ_QUERY_INFORMATION:                  case IRP_MJ_QUERY_INFORMATION:
504    
# Line 545  rdpdr_process_irp(STREAM s) Line 611  rdpdr_process_irp(STREAM s)
611                          in_uint8s(s, 0x14);                          in_uint8s(s, 0x14);
612    
613                          buffer = (uint8 *) xrealloc((void *) buffer, bytes_out + 0x14);                          buffer = (uint8 *) xrealloc((void *) buffer, bytes_out + 0x14);
614                            if (!buffer)
615                            {
616                                    status = STATUS_CANCELLED;
617                                    break;
618                            }
619    
620                          out.data = out.p = buffer;                          out.data = out.p = buffer;
621                          out.size = sizeof(buffer);                          out.size = sizeof(buffer);
622                          status = fns->device_control(file, request, s, &out);                          status = fns->device_control(file, request, s, &out);
# Line 560  rdpdr_process_irp(STREAM s) Line 632  rdpdr_process_irp(STREAM s)
632          {          {
633                  rdpdr_send_completion(device, id, status, result, buffer, buffer_len);                  rdpdr_send_completion(device, id, status, result, buffer, buffer_len);
634          }          }
635          xfree(buffer);          if (buffer)
636                    xfree(buffer);
637            buffer = NULL;
638  }  }
639    
640  void  void
# Line 676  rdpdr_init() Line 749  rdpdr_init()
749          return (rdpdr_channel != NULL);          return (rdpdr_channel != NULL);
750  }  }
751    
 #if 0  
752  /* Add file descriptors of pending io request to select() */  /* Add file descriptors of pending io request to select() */
753  void  void
754  rdpdr_add_fds(int *n, fd_set * rfds, fd_set * wfds, struct timeval *tv, BOOL * timeout)  rdpdr_add_fds(int *n, fd_set * rfds, fd_set * wfds, struct timeval *tv, BOOL * timeout)
755  {  {
756          int i;          uint32 select_timeout = 0;      // Timeout value to be used for select() (in millisecons).
         long select_timeout = 0;        // Timeout value to be used for select() (in millisecons).  
757          struct async_iorequest *iorq;          struct async_iorequest *iorq;
758    
759          for (i = 0; i < MAX_ASYNC_IO_REQUESTS; i++)          iorq = g_iorequest;
760            while (iorq != NULL)
761          {          {
762                  iorq = &g_iorequest[i];                  if (iorq->fd != 0)
   
                 if (iorq->fd != 0)      // Found a pending io request  
763                  {                  {
764                          switch (iorq->major)                          switch (iorq->major)
765                          {                          {
# Line 712  rdpdr_add_fds(int *n, fd_set * rfds, fd_ Line 782  rdpdr_add_fds(int *n, fd_set * rfds, fd_
782                                          break;                                          break;
783    
784                                  case IRP_MJ_WRITE:                                  case IRP_MJ_WRITE:
   
785                                          FD_SET(iorq->fd, wfds);                                          FD_SET(iorq->fd, wfds);
786                                          break;                                          break;
787    
788                          }                          }
789                          *n = MAX(*n, iorq->fd);                          *n = MAX(*n, iorq->fd);
790                  }                  }
791    
792                    iorq = iorq->next;
793          }          }
794  }  }
795    
796    struct async_iorequest *
797    rdpdr_remove_iorequest(struct async_iorequest *prev, struct async_iorequest *iorq)
798    {
799            if (!iorq)
800                    return NULL;
801    
802            if (iorq->buffer)
803                    xfree(iorq->buffer);
804            if (prev)
805            {
806                    prev->next = iorq->next;
807                    xfree(iorq);
808                    iorq = prev->next;
809            }
810            else
811            {
812                    // Even if NULL
813                    g_iorequest = iorq->next;
814                    xfree(iorq);
815                    iorq = NULL;
816            }
817            return iorq;
818    }
819    
820  /* 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 */
821  void  void
822  rdpdr_check_fds(fd_set * rfds, fd_set * wfds, BOOL timed_out)  rdpdr_check_fds(fd_set * rfds, fd_set * wfds, BOOL timed_out)
823  {  {
         int i;  
824          NTSTATUS status;          NTSTATUS status;
825          uint32 result = 0, buffer_len = 0;          uint32 result = 0;
826          DEVICE_FNS *fns;          DEVICE_FNS *fns;
827          struct async_iorequest *iorq;          struct async_iorequest *iorq;
828            struct async_iorequest *prev;
829            uint32 req_size = 0;
830    
831          if (timed_out)          if (timed_out)
832          {          {
# Line 739  rdpdr_check_fds(fd_set * rfds, fd_set * Line 834  rdpdr_check_fds(fd_set * rfds, fd_set *
834                  return;                  return;
835          }          }
836    
837          // Walk through array of pending io_rq's          iorq = g_iorequest;
838          for (i = 0; i < MAX_ASYNC_IO_REQUESTS; i++)          prev = NULL;
839            while (iorq != NULL)
840          {          {
                 iorq = &g_iorequest[i];  
   
841                  if (iorq->fd != 0)                  if (iorq->fd != 0)
842                  {                  {
843                          switch (iorq->major)                          switch (iorq->major)
844                          {                          {
   
845                                  case IRP_MJ_READ:                                  case IRP_MJ_READ:
   
846                                          if (FD_ISSET(iorq->fd, rfds))                                          if (FD_ISSET(iorq->fd, rfds))
847                                          {                                          {
848                                                  // Read, and send data.                                                  /* Read the data */
849                                                  fns = iorq->fns;                                                  fns = iorq->fns;
850                                                  status = fns->read(iorq->fd, iorq->buffer,  
851                                                                     iorq->length, 0, &result);                                                  req_size =
852                                                  buffer_len = result;                                                          (iorq->length - iorq->partial_len) >
853                                                            8192 ? 8192 : (iorq->length -
854                                                  rdpdr_send_completion(iorq->device, iorq->id,                                                                         iorq->partial_len);
855                                                                        status, result, iorq->buffer,                                                  /* never read larger chunks than 8k - chances are that it will block */
856                                                                        buffer_len);                                                  status = fns->read(iorq->fd,
857                                                                       iorq->buffer + iorq->partial_len,
858                                                                       req_size, iorq->offset, &result);
859    
860                                                    if (result > 0)
861                                                    {
862                                                            iorq->partial_len += result;
863                                                            iorq->offset += result;
864                                                    }
865  #if WITH_DEBUG_RDP5  #if WITH_DEBUG_RDP5
866                                                  DEBUG(("RDPDR: %d bytes of data read\n", result));                                                  DEBUG(("RDPDR: %d bytes of data read\n", result));
867  #endif  #endif
868                                                  xfree(iorq->buffer);                                                  /* only delete link if all data has been transfered */
869                                                  iorq->fd = 0;                                                  /* or if result was 0 and status success - EOF      */
870                                                    if ((iorq->partial_len == iorq->length) ||
871                                                        (result == 0))
872                                                    {
873    #if WITH_DEBUG_RDP5
874                                                            DEBUG(("RDPDR: AIO total %u bytes read of %u\n", iorq->partial_len, iorq->length));
875    #endif
876                                                            rdpdr_send_completion(iorq->device,
877                                                                                  iorq->id, status,
878                                                                                  iorq->partial_len,
879                                                                                  iorq->buffer,
880                                                                                  iorq->partial_len);
881                                                            iorq = rdpdr_remove_iorequest(prev, iorq);
882                                                    }
883                                          }                                          }
884                                          break;                                          break;
   
885                                  case IRP_MJ_WRITE:                                  case IRP_MJ_WRITE:
   
886                                          if (FD_ISSET(iorq->fd, wfds))                                          if (FD_ISSET(iorq->fd, wfds))
887                                          {                                          {
888                                                  // Write data and send completion.                                                  /* Write data. */
889                                                  fns = iorq->fns;                                                  fns = iorq->fns;
                                                 status = fns->write(iorq->fd, iorq->buffer,  
                                                                     iorq->length, 0, &result);  
                                                 rdpdr_send_completion(iorq->device, iorq->id,  
                                                                       status, result, "", 1);  
890    
891                                                  xfree(iorq->buffer);                                                  req_size =
892                                                  iorq->fd = 0;                                                          (iorq->length - iorq->partial_len) >
893                                                            8192 ? 8192 : (iorq->length -
894                                                                           iorq->partial_len);
895    
896                                                    /* never write larger chunks than 8k - chances are that it will block */
897                                                    status = fns->write(iorq->fd,
898                                                                        iorq->buffer +
899                                                                        iorq->partial_len, req_size,
900                                                                        iorq->offset, &result);
901    
902                                                    if (result > 0)
903                                                    {
904                                                            iorq->partial_len += result;
905                                                            iorq->offset += result;
906                                                    }
907    
908    #if WITH_DEBUG_RDP5
909                                                    DEBUG(("RDPDR: %d bytes of data written\n",
910                                                           result));
911    #endif
912                                                    /* only delete link if all data has been transfered */
913                                                    /* or we couldn't write */
914                                                    if ((iorq->partial_len == iorq->length)
915                                                        || (result == 0))
916                                                    {
917    #if WITH_DEBUG_RDP5
918                                                            DEBUG(("RDPDR: AIO total %u bytes written of %u\n", iorq->partial_len, iorq->length));
919    #endif
920                                                            rdpdr_send_completion(iorq->device,
921                                                                                  iorq->id, status,
922                                                                                  iorq->partial_len,
923                                                                                  (uint8 *) "", 1);
924    
925                                                            iorq = rdpdr_remove_iorequest(prev, iorq);
926                                                    }
927                                          }                                          }
928                                          break;                                          break;
929                          }                          }
930    
931                  }                  }
932                    prev = iorq;
933                    if (iorq)
934                            iorq = iorq->next;
935          }          }
936    
937  }  }
938    
939  /* Abort a pending io request for a given handle and major */  /* Abort a pending io request for a given handle and major */
# Line 795  BOOL Line 941  BOOL
941  rdpdr_abort_io(uint32 fd, uint32 major, NTSTATUS status)  rdpdr_abort_io(uint32 fd, uint32 major, NTSTATUS status)
942  {  {
943          uint32 result;          uint32 result;
         int i;  
944          struct async_iorequest *iorq;          struct async_iorequest *iorq;
945            struct async_iorequest *prev;
946    
947          for (i = 0; i < MAX_ASYNC_IO_REQUESTS; i++)          iorq = g_iorequest;
948            prev = NULL;
949            while (iorq != NULL)
950          {          {
                 iorq = &g_iorequest[i];  
   
951                  // Only remove from table when major is not set, or when correct major is supplied.                  // Only remove from table when major is not set, or when correct major is supplied.
952                  // Abort read should not abort a write io request.                  // Abort read should not abort a write io request.
953                  if ((iorq->fd == fd) && (major == 0 || iorq->major == major))                  if ((iorq->fd == fd) && (major == 0 || iorq->major == major))
954                  {                  {
955                          result = 0;                          result = 0;
956                          rdpdr_send_completion(iorq->device, iorq->id, status, result, "", 1);                          rdpdr_send_completion(iorq->device, iorq->id, status, result, (uint8 *) "",
957                          xfree(iorq->buffer);                                                1);
958                          iorq->fd = 0;  
959                            iorq = rdpdr_remove_iorequest(prev, iorq);
960                          return True;                          return True;
961                  }                  }
962    
963                    prev = iorq;
964                    iorq = iorq->next;
965          }          }
966    
967          return False;          return False;
968  }  }
 #endif  

Legend:
Removed from v.590  
changed lines
  Added in v.651

  ViewVC Help
Powered by ViewVC 1.1.26