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
|
/* Per-open information for devio.
Copyright (C) 1995 Free Software Foundation, Inc.
Written by Miles Bader <miles@gnu.ai.mit.edu>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2, or (at
your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <hurd.h>
#include "open.h"
#include "window.h"
#include "dev.h"
/* ---------------------------------------------------------------- */
/* Returns a new per-open structure for the device DEV in OPEN. If an error
occurs, the error-code is returned, otherwise 0. */
error_t
open_create(struct dev *dev, struct open **open)
{
error_t err;
*open = malloc(sizeof(struct open));
if (*open == NULL)
return ENOMEM;
(*open)->dev = dev;
err = io_state_init(&(*open)->io_state, dev);
if (!err && dev_is(dev, DEV_BUFFERED) && !dev_is(dev, DEV_SERIAL))
/* A random-access buffered device -- use a pager to do i/o to it. */
{
mach_port_t memobj;
err = dev_get_memory_object(dev, &memobj);
if (!err)
err =
window_create(memobj, dev->size, 0, 0, dev_is(dev, DEV_READONLY),
&(*open)->window); /* XXX sizes */
if (err)
{
mach_port_destroy(mach_task_self(), memobj);
io_state_finalize(&(*open)->io_state);
}
}
else
(*open)->window = NULL;
if (err)
free(*open);
return err;
}
/* ---------------------------------------------------------------- */
/* Free OPEN and any resources it holds. */
void
open_free(struct open *open)
{
io_state_finalize(&open->io_state);
window_free(open->window);
free(open);
}
/* ---------------------------------------------------------------- */
/* Returns the appropiate io_state object for OPEN (which may be either
per-open or a per-device depending on the device). */
struct io_state *
open_get_io_state(struct open *open)
{
return
dev_is(open->dev, DEV_SERIAL) ? &open->dev->io_state : &open->io_state;
}
|