summaryrefslogtreecommitdiff
path: root/libmachdev/ds_routines.c
blob: 53e0c080650b81cdbfca249d75043863f7f682d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
/*
 * Mach Operating System
 * Copyright (c) 1993,1991,1990,1989 Carnegie Mellon University
 * All Rights Reserved.
 *
 * Permission to use, copy, modify and distribute this software and its
 * documentation is hereby granted, provided that both the copyright
 * notice and this permission notice appear in all copies of the
 * software, derivative works or modified versions, and any portions
 * thereof, and that both notices appear in supporting documentation.
 *
 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
 * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
 *
 * Carnegie Mellon requests users of this software to return to
 *
 *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
 *  School of Computer Science
 *  Carnegie Mellon University
 *  Pittsburgh PA 15213-3890
 *
 * any improvements or extensions that they make and grant Carnegie Mellon
 * the rights to redistribute these changes.
 */
/*
 *	Author: David B. Golub, Carnegie Mellon University
 *	Date: 	3/89
 */

/*
 * Mach device server routines (i386at version).
 *
 * Copyright (c) 1996 The University of Utah and
 * the Computer Systems Laboratory at the University of Utah (CSL).
 * All rights reserved.
 *
 * Permission to use, copy, modify and distribute this software is hereby
 * granted provided that (1) source code retains these copyright, permission,
 * and disclaimer notices, and (2) redistributions including binaries
 * reproduce the notices in supporting documentation, and (3) all advertising
 * materials mentioning features or use of this software display the following
 * acknowledgement: ``This product includes software developed by the
 * Computer Systems Laboratory at the University of Utah.''
 *
 * THE UNIVERSITY OF UTAH AND CSL ALLOW FREE USE OF THIS SOFTWARE IN ITS "AS
 * IS" CONDITION.  THE UNIVERSITY OF UTAH AND CSL DISCLAIM ANY LIABILITY OF
 * ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
 *
 * CSL requests users of this software to return to csl-dist@cs.utah.edu any
 * improvements that they make and grant CSL redistribution rights.
 *
 *      Author: Shantanu Goel, University of Utah CSL
 */

/*
 * This is is providing the same multiplexing layer as in the GNU Mach kernel,
 * which also handles the MIG details.
 */

#include <stdio.h>
#include <string.h>
#include <error.h>
#include <assert.h>

#include <hurd.h>
#include <mach.h>
#include <device/device.h> /* fallback to kernel device */

#include "device_S.h"
#include "notify_S.h"
#include "machdev-dev_hdr.h"
#include "machdev.h"
#include "mach_device.h"

struct port_bucket *machdev_device_bucket;
struct port_class *machdev_device_class;

#define MAX_NUM_EMULATION 32

/* List of emulations.  */
static struct machdev_device_emulation_ops *emulation_list[MAX_NUM_EMULATION];
static int num_emul = 0;

boolean_t machdev_is_master_device (mach_port_t port);

/*
 * What follows is the interface for the native Mach devices.
 */

/* Implementation of device interface */
io_return_t
ds_device_open (mach_port_t open_port, mach_port_t reply_port,
                mach_msg_type_name_t reply_port_type, dev_mode_t mode,
                char *name, device_t *devp, mach_msg_type_name_t *devicePoly)
{
  int i;
  mach_port_t dev_master;
  io_return_t err = D_NO_SUCH_DEVICE;

  /* Open must be called on the master device port.  */
  if (!machdev_is_master_device (open_port))
    return D_INVALID_OPERATION;

  /* There must be a reply port.  */
  if (! MACH_PORT_VALID (reply_port))
    return MIG_NO_REPLY;

  /* Call each emulation's open routine to find the device.  */
  for (i = 0; i < num_emul; i++)
    {
      err = (*emulation_list[i]->open) (reply_port, reply_port_type,
                                        mode, name, devp, devicePoly);
      if (err != D_NO_SUCH_DEVICE)
        break;
    }

  /* Fall back to opening kernel device master */
  if (err)
    {
      get_privileged_ports(NULL, &dev_master);
      err = device_open (dev_master, mode, name, devp);
      *devicePoly = MACH_MSG_TYPE_MOVE_SEND;
    }
  return err;
}

io_return_t
ds_device_close (struct mach_device *device)
{
  /* Refuse if device is dead or not completely open.  */
  if (device == MACH_DEVICE_NULL)
    return D_NO_SUCH_DEVICE;

  return (device->dev.emul_ops->close
	  ? (*device->dev.emul_ops->close) (device->dev.emul_data)
	  : D_SUCCESS);
}

io_return_t
ds_device_write (struct mach_device *device, mach_port_t reply_port,
		 mach_msg_type_name_t reply_port_type, dev_mode_t mode,
		 recnum_t recnum, io_buf_ptr_t data, unsigned int count,
		 int *bytes_written)
{
  /* Refuse if device is dead or not completely open.  */
  if (device == MACH_DEVICE_NULL)
    return D_NO_SUCH_DEVICE;

  if (data == 0)
    return D_INVALID_SIZE;

  if (! device->dev.emul_ops->write)
    return D_INVALID_OPERATION;

  return (*device->dev.emul_ops->write) (device->dev.emul_data, reply_port,
					 reply_port_type, mode, recnum,
					 data, count, bytes_written);
}

io_return_t
ds_device_write_inband (struct mach_device *device, mach_port_t reply_port,
			mach_msg_type_name_t reply_port_type,
			dev_mode_t mode, recnum_t recnum,
			io_buf_ptr_inband_t data, unsigned count,
			int *bytes_written)
{
  /* Refuse if device is dead or not completely open.  */
  if (device == MACH_DEVICE_NULL)
    return D_NO_SUCH_DEVICE;

  if (data == 0)
    return D_INVALID_SIZE;

  if (! device->dev.emul_ops->write_inband)
    return D_INVALID_OPERATION;

  return (*device->dev.emul_ops->write_inband) (device->dev.emul_data,
					        reply_port, reply_port_type,
					        mode, recnum,
					        data, count, bytes_written);
}

io_return_t
ds_device_read (struct mach_device *device, mach_port_t reply_port,
		mach_msg_type_name_t reply_port_type, dev_mode_t mode,
		recnum_t recnum, int count, io_buf_ptr_t *data,
		unsigned *bytes_read)
{
  /* Refuse if device is dead or not completely open.  */

  if (device == MACH_DEVICE_NULL)
    return D_NO_SUCH_DEVICE;

  if (! device->dev.emul_ops->read)
    return D_INVALID_OPERATION;

  return (*device->dev.emul_ops->read) (device->dev.emul_data, reply_port,
				        reply_port_type, mode, recnum,
				        count, data, bytes_read);
}

io_return_t
ds_device_read_inband (struct mach_device *device, mach_port_t reply_port,
		       mach_msg_type_name_t reply_port_type, dev_mode_t mode,
		       recnum_t recnum, int count, char *data,
		       unsigned *bytes_read)
{
  /* Refuse if device is dead or not completely open.  */

  if (device == MACH_DEVICE_NULL)
    return D_NO_SUCH_DEVICE;

  if (! device->dev.emul_ops->read_inband)
    return D_INVALID_OPERATION;

  return (*device->dev.emul_ops->read_inband) (device->dev.emul_data,
					       reply_port,
					       reply_port_type, mode, recnum,
					       count, data, bytes_read);
}

io_return_t
ds_device_set_status (struct mach_device *device, dev_flavor_t flavor,
		      dev_status_t status, mach_msg_type_number_t status_count)
{
  /* Refuse if device is dead or not completely open.  */
  if (device == MACH_DEVICE_NULL)
    return D_NO_SUCH_DEVICE;

  if (! device->dev.emul_ops->set_status)
    return D_INVALID_OPERATION;

  return (*device->dev.emul_ops->set_status) (device->dev.emul_data, flavor,
					      status, status_count);
}

io_return_t
ds_device_get_status (struct mach_device *device, dev_flavor_t flavor,
                      dev_status_t status,
		      mach_msg_type_number_t *status_count)
{
  /* Refuse if device is dead or not completely open.  */
  if (device == MACH_DEVICE_NULL)
    return D_NO_SUCH_DEVICE;

  if (! device->dev.emul_ops->get_status)
    return D_INVALID_OPERATION;

  return (*device->dev.emul_ops->get_status) (device->dev.emul_data, flavor,
					      status, status_count);
}

io_return_t
ds_device_set_filter (struct mach_device *device, mach_port_t receive_port,
                      int priority, filter_t *filter, unsigned filter_count)
{
  /* Refuse if device is dead or not completely open.  */
  if (device == MACH_DEVICE_NULL)
    return D_NO_SUCH_DEVICE;

  if (! device->dev.emul_ops->set_filter)
    return D_INVALID_OPERATION;

  return (*device->dev.emul_ops->set_filter) (device->dev.emul_data,
					      receive_port,
					      priority, filter, filter_count);
}

io_return_t
ds_device_map (struct mach_device *device, vm_prot_t prot, vm_offset_t offset,
	       vm_size_t size, mach_port_t *pager, boolean_t unmap)
{
  /* Refuse if device is dead or not completely open.  */
  if (device == MACH_DEVICE_NULL)
    return D_NO_SUCH_DEVICE;

  if (! device->dev.emul_ops->map)
    return D_INVALID_OPERATION;

  return (*device->dev.emul_ops->map) (device->dev.emul_data, prot,
				       offset, size, pager, unmap);

}

kern_return_t
ds_device_intr_register (mach_device_t dev, int id, int flags,
			 mach_port_t receive_port)
{
  return D_INVALID_OPERATION;
}

kern_return_t
ds_device_intr_ack (mach_device_t dev, mach_port_t receive_port)
{
  return D_INVALID_OPERATION;
}

error_t
machdev_create_device_port (size_t size, void *result)
{
  return ports_create_port (machdev_device_class, machdev_device_bucket,
			    size, result);
}

void machdev_device_init()
{
  int i;

  machdev_device_bucket = ports_create_bucket ();
  machdev_device_class = ports_create_class (0, 0);

  for (i = 0; i < num_emul; i++)
    {
      if (emulation_list[i]->init)
	emulation_list[i]->init();
    }
}

static int
demuxer (mach_msg_header_t *inp, mach_msg_header_t *outp)
{
  mig_routine_t routine;
  if ((routine = device_server_routine (inp)) ||
      (routine = notify_server_routine (inp)))
    {
      (*routine) (inp, outp);
      return TRUE;
    }
  else
    return FALSE;
}

void machdev_register (struct machdev_device_emulation_ops *ops)
{
  assert(num_emul < MAX_NUM_EMULATION-1);
  emulation_list[num_emul++] = ops;
}

void * machdev_server(void *arg)
{
  /* Launch.  */
  do
    {
      ports_manage_port_operations_one_thread (machdev_device_bucket, demuxer, 0);
    } while (1);

  return NULL;
}