xcopy: Add support for xcopy /A and /M (archive copies).
[wine/wine-kai.git] / server / serial.c
blobbcb7945beec78840e9d4e388abeee26a1cd1f7de
1 /*
2 * Server-side serial port communications management
4 * Copyright (C) 1998 Alexandre Julliard
5 * Copyright (C) 2000,2001 Mike McCormack
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "config.h"
24 #include "wine/port.h"
26 #include <assert.h>
27 #include <fcntl.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30 #include <string.h>
31 #include <stdlib.h>
32 #include <sys/time.h>
33 #include <sys/types.h>
34 #include <time.h>
35 #include <unistd.h>
36 #ifdef HAVE_UTIME_H
37 #include <utime.h>
38 #endif
39 #ifdef HAVE_TERMIOS_H
40 #include <termios.h>
41 #endif
42 #ifdef HAVE_SYS_IOCTL_H
43 #include <sys/ioctl.h>
44 #endif
45 #ifdef HAVE_POLL_H
46 #include <poll.h>
47 #endif
49 #include "ntstatus.h"
50 #define WIN32_NO_STATUS
51 #include "windef.h"
52 #include "winternl.h"
54 #include "file.h"
55 #include "handle.h"
56 #include "thread.h"
57 #include "request.h"
59 static void serial_dump( struct object *obj, int verbose );
60 static struct fd *serial_get_fd( struct object *obj );
61 static unsigned int serial_map_access( struct object *obj, unsigned int access );
62 static void serial_destroy(struct object *obj);
64 static int serial_get_poll_events( struct fd *fd );
65 static void serial_poll_event( struct fd *fd, int event );
66 static enum server_fd_type serial_get_info( struct fd *fd, int *flags );
67 static void serial_flush( struct fd *fd, struct event **event );
68 static void serial_queue_async( struct fd *fd, const async_data_t *data, int type, int count );
69 static void serial_cancel_async( struct fd *fd );
71 struct serial
73 struct object obj;
74 struct fd *fd;
75 unsigned int options;
77 /* timeout values */
78 unsigned int readinterval;
79 unsigned int readconst;
80 unsigned int readmult;
81 unsigned int writeconst;
82 unsigned int writemult;
84 unsigned int eventmask;
86 struct termios original;
88 struct list read_q;
89 struct list write_q;
90 struct list wait_q;
92 /* FIXME: add dcb, comm status, handler module, sharing */
95 static const struct object_ops serial_ops =
97 sizeof(struct serial), /* size */
98 serial_dump, /* dump */
99 default_fd_add_queue, /* add_queue */
100 default_fd_remove_queue, /* remove_queue */
101 default_fd_signaled, /* signaled */
102 no_satisfied, /* satisfied */
103 no_signal, /* signal */
104 serial_get_fd, /* get_fd */
105 serial_map_access, /* map_access */
106 no_lookup_name, /* lookup_name */
107 no_open_file, /* open_file */
108 fd_close_handle, /* close_handle */
109 serial_destroy /* destroy */
112 static const struct fd_ops serial_fd_ops =
114 serial_get_poll_events, /* get_poll_events */
115 serial_poll_event, /* poll_event */
116 serial_flush, /* flush */
117 serial_get_info, /* get_file_info */
118 serial_queue_async, /* queue_async */
119 serial_cancel_async /* cancel_async */
122 /* check if the given fd is a serial port */
123 int is_serial_fd( struct fd *fd )
125 struct termios tios;
127 return !tcgetattr( get_unix_fd(fd), &tios );
130 /* create a serial object for a given fd */
131 struct object *create_serial( struct fd *fd, unsigned int options )
133 struct serial *serial;
134 int unix_fd = get_unix_fd( fd );
136 /* set the fd back to blocking if necessary */
137 if (options & (FILE_SYNCHRONOUS_IO_ALERT | FILE_SYNCHRONOUS_IO_NONALERT))
138 fcntl( unix_fd, F_SETFL, 0 );
140 if (!(serial = alloc_object( &serial_ops ))) return NULL;
142 serial->options = options;
143 serial->readinterval = 0;
144 serial->readmult = 0;
145 serial->readconst = 0;
146 serial->writemult = 0;
147 serial->writeconst = 0;
148 serial->eventmask = 0;
149 list_init( &serial->read_q );
150 list_init( &serial->write_q );
151 list_init( &serial->wait_q );
152 serial->fd = (struct fd *)grab_object( fd );
153 set_fd_user( fd, &serial_fd_ops, &serial->obj );
154 return &serial->obj;
157 static struct fd *serial_get_fd( struct object *obj )
159 struct serial *serial = (struct serial *)obj;
160 return (struct fd *)grab_object( serial->fd );
163 static unsigned int serial_map_access( struct object *obj, unsigned int access )
165 if (access & GENERIC_READ) access |= FILE_GENERIC_READ;
166 if (access & GENERIC_WRITE) access |= FILE_GENERIC_WRITE;
167 if (access & GENERIC_EXECUTE) access |= FILE_GENERIC_EXECUTE;
168 if (access & GENERIC_ALL) access |= FILE_ALL_ACCESS;
169 return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
172 static void serial_destroy( struct object *obj)
174 struct serial *serial = (struct serial *)obj;
176 async_terminate_queue( &serial->read_q, STATUS_CANCELLED );
177 async_terminate_queue( &serial->write_q, STATUS_CANCELLED );
178 async_terminate_queue( &serial->wait_q, STATUS_CANCELLED );
179 if (serial->fd) release_object( serial->fd );
182 static void serial_dump( struct object *obj, int verbose )
184 struct serial *serial = (struct serial *)obj;
185 assert( obj->ops == &serial_ops );
186 fprintf( stderr, "Port fd=%p mask=%x\n", serial->fd, serial->eventmask );
189 static struct serial *get_serial_obj( struct process *process, obj_handle_t handle, unsigned int access )
191 return (struct serial *)get_handle_obj( process, handle, access, &serial_ops );
194 static int serial_get_poll_events( struct fd *fd )
196 struct serial *serial = get_fd_user( fd );
197 int events = 0;
198 assert( serial->obj.ops == &serial_ops );
200 if (!list_empty( &serial->read_q )) events |= POLLIN;
201 if (!list_empty( &serial->write_q )) events |= POLLOUT;
202 if (!list_empty( &serial->wait_q )) events |= POLLIN;
204 /* fprintf(stderr,"poll events are %04x\n",events); */
206 return events;
209 static enum server_fd_type serial_get_info( struct fd *fd, int *flags )
211 struct serial *serial = get_fd_user( fd );
212 assert( serial->obj.ops == &serial_ops );
214 *flags = 0;
215 if (!(serial->options & (FILE_SYNCHRONOUS_IO_ALERT | FILE_SYNCHRONOUS_IO_NONALERT)))
216 *flags |= FD_FLAG_OVERLAPPED;
217 else if (!(serial->readinterval == MAXDWORD &&
218 serial->readmult == 0 && serial->readconst == 0))
219 *flags |= FD_FLAG_TIMEOUT;
220 if (serial->readinterval == MAXDWORD &&
221 serial->readmult == 0 && serial->readconst == 0)
222 *flags |= FD_FLAG_AVAILABLE;
224 return FD_TYPE_SERIAL;
227 static void serial_poll_event(struct fd *fd, int event)
229 struct serial *serial = get_fd_user( fd );
231 /* fprintf(stderr,"Poll event %02x\n",event); */
233 if (!list_empty( &serial->read_q ) && (POLLIN & event) )
234 async_terminate_head( &serial->read_q, STATUS_ALERTED );
236 if (!list_empty( &serial->write_q ) && (POLLOUT & event) )
237 async_terminate_head( &serial->write_q, STATUS_ALERTED );
239 if (!list_empty( &serial->wait_q ) && (POLLIN & event) )
240 async_terminate_head( &serial->wait_q, STATUS_ALERTED );
242 set_fd_events( fd, serial_get_poll_events(fd) );
245 static void serial_queue_async( struct fd *fd, const async_data_t *data, int type, int count )
247 struct serial *serial = get_fd_user( fd );
248 struct list *queue;
249 struct timeval when = current_time;
250 int timeout;
251 int events;
253 assert(serial->obj.ops == &serial_ops);
255 switch (type)
257 case ASYNC_TYPE_READ:
258 queue = &serial->read_q;
259 timeout = serial->readconst + serial->readmult*count;
260 break;
261 case ASYNC_TYPE_WAIT:
262 queue = &serial->wait_q;
263 timeout = 0;
264 break;
265 case ASYNC_TYPE_WRITE:
266 queue = &serial->write_q;
267 timeout = serial->writeconst + serial->writemult*count;
268 break;
269 default:
270 set_error(STATUS_INVALID_PARAMETER);
271 return;
274 add_timeout( &when, timeout );
275 if (!create_async( current, timeout ? &when : NULL, queue, data )) return;
276 set_error( STATUS_PENDING );
278 /* Check if the new pending request can be served immediately */
279 events = check_fd_events( fd, serial_get_poll_events( fd ) );
280 if (events)
282 /* serial_poll_event() calls set_select_events() */
283 serial_poll_event( fd, events );
284 return;
287 set_fd_events( fd, serial_get_poll_events( fd ) );
290 static void serial_cancel_async( struct fd *fd )
292 struct serial *serial = get_fd_user( fd );
293 assert(serial->obj.ops == &serial_ops);
295 async_terminate_queue( &serial->read_q, STATUS_CANCELLED );
296 async_terminate_queue( &serial->write_q, STATUS_CANCELLED );
297 async_terminate_queue( &serial->wait_q, STATUS_CANCELLED );
300 static void serial_flush( struct fd *fd, struct event **event )
302 /* MSDN says: If hFile is a handle to a communications device,
303 * the function only flushes the transmit buffer.
305 if (tcflush( get_unix_fd(fd), TCOFLUSH ) == -1) file_set_error();
308 DECL_HANDLER(get_serial_info)
310 struct serial *serial;
312 if ((serial = get_serial_obj( current->process, req->handle, 0 )))
314 /* timeouts */
315 reply->readinterval = serial->readinterval;
316 reply->readconst = serial->readconst;
317 reply->readmult = serial->readmult;
318 reply->writeconst = serial->writeconst;
319 reply->writemult = serial->writemult;
321 /* event mask */
322 reply->eventmask = serial->eventmask;
324 release_object( serial );
328 DECL_HANDLER(set_serial_info)
330 struct serial *serial;
332 if ((serial = get_serial_obj( current->process, req->handle, 0 )))
334 /* timeouts */
335 if (req->flags & SERIALINFO_SET_TIMEOUTS)
337 serial->readinterval = req->readinterval;
338 serial->readconst = req->readconst;
339 serial->readmult = req->readmult;
340 serial->writeconst = req->writeconst;
341 serial->writemult = req->writemult;
344 /* event mask */
345 if (req->flags & SERIALINFO_SET_MASK)
347 serial->eventmask = req->eventmask;
348 if (!serial->eventmask)
350 async_terminate_queue( &serial->wait_q, STATUS_SUCCESS );
354 release_object( serial );