]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/bhyve/inout.c
IFC @ r226824
[FreeBSD/FreeBSD.git] / usr.sbin / bhyve / inout.c
1 /*-
2  * Copyright (c) 2011 NetApp, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY NETAPP, INC ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL NETAPP, INC OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31
32 #include <sys/param.h>
33 #include <sys/linker_set.h>
34
35 #include <stdio.h>
36 #include <assert.h>
37
38 #include "inout.h"
39
40 SET_DECLARE(inout_port_set, struct inout_port);
41
42 #define MAX_IOPORTS     (1 << 16)
43
44 static struct {
45         const char      *name;
46         int             flags;
47         inout_func_t    handler;
48         void            *arg;
49 } inout_handlers[MAX_IOPORTS];
50
51 static int
52 default_inout(struct vmctx *ctx, int vcpu, int in, int port, int bytes,
53               uint32_t *eax, void *arg)
54 {
55         if (in) {
56                 switch (bytes) {
57                 case 4:
58                         *eax = 0xffffffff;
59                         break;
60                 case 2:
61                         *eax = 0xffff;
62                         break;
63                 case 1:
64                         *eax = 0xff;
65                         break;
66                 }
67         }
68         
69         return (0);
70 }
71
72 int
73 emulate_inout(struct vmctx *ctx, int vcpu, int in, int port, int bytes,
74               uint32_t *eax, int strict)
75 {
76         int flags;
77         inout_func_t handler;
78         void *arg;
79
80         assert(port < MAX_IOPORTS);
81
82         handler = inout_handlers[port].handler;
83
84         if (strict && handler == default_inout)
85                 return (-1);
86
87         flags = inout_handlers[port].flags;
88         arg = inout_handlers[port].arg;
89
90         if ((in && (flags & IOPORT_F_IN)) || (!in && (flags & IOPORT_F_OUT)))
91                 return ((*handler)(ctx, vcpu, in, port, bytes, eax, arg));
92         else
93                 return (-1);
94 }
95
96 void
97 init_inout(void)
98 {
99         struct inout_port **iopp, *iop;
100         int i;
101
102         /*
103          * Set up the default handler for all ports
104          */
105         for (i = 0; i < MAX_IOPORTS; i++) {
106                 inout_handlers[i].name = "default";
107                 inout_handlers[i].flags = IOPORT_F_IN | IOPORT_F_OUT;
108                 inout_handlers[i].handler = default_inout;
109                 inout_handlers[i].arg = NULL;
110         }
111
112         /*
113          * Overwrite with specified handlers
114          */
115         SET_FOREACH(iopp, inout_port_set) {
116                 iop = *iopp;
117                 assert(iop->port < MAX_IOPORTS);
118                 inout_handlers[iop->port].name = iop->name;
119                 inout_handlers[iop->port].flags = iop->flags;
120                 inout_handlers[iop->port].handler = iop->handler;
121                 inout_handlers[iop->port].arg = NULL;
122         }
123 }
124
125 int
126 register_inout(struct inout_port *iop)
127 {
128         assert(iop->port < MAX_IOPORTS);
129         inout_handlers[iop->port].name = iop->name;
130         inout_handlers[iop->port].flags = iop->flags;
131         inout_handlers[iop->port].handler = iop->handler;
132         inout_handlers[iop->port].arg = iop->arg;
133
134         return (0);
135 }