aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/event_channel.c
blob: ca2eb46f1220bd0ab462374d447ad2426d1f3100 (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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
/******************************************************************************
 * event_channel.c
 * 
 * Event notifications from VIRQs, PIRQs, and other domains.
 * 
 * Copyright (c) 2003-2004, K A Fraser.
 * 
 * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <xen/config.h>
#include <xen/init.h>
#include <xen/lib.h>
#include <xen/errno.h>
#include <xen/sched.h>
#include <xen/event.h>
#include <xen/irq.h>

#include <hypervisor-ifs/hypervisor-if.h>
#include <hypervisor-ifs/event_channel.h>

#define INIT_EVENT_CHANNELS   16
#define MAX_EVENT_CHANNELS  1024


static int get_free_port(struct domain *d)
{
    int max, port;
    event_channel_t *chn;

    max = d->max_event_channel;
    chn = d->event_channel;

    for ( port = 0; port < max; port++ )
        if ( chn[port].state == ECS_FREE )
            break;

    if ( port == max )
    {
        if ( max == MAX_EVENT_CHANNELS )
            return -ENOSPC;
        
        max *= 2;
        
        chn = xmalloc(max * sizeof(event_channel_t));
        if ( unlikely(chn == NULL) )
            return -ENOMEM;

        memset(chn, 0, max * sizeof(event_channel_t));

        if ( d->event_channel != NULL )
        {
            memcpy(chn, d->event_channel, (max/2) * sizeof(event_channel_t));
            xfree(d->event_channel);
        }

        d->event_channel     = chn;
        d->max_event_channel = max;
    }

    return port;
}


static long evtchn_alloc_unbound(evtchn_alloc_unbound_t *alloc)
{
    struct domain *d = current;
    int            port;

    spin_lock(&d->event_channel_lock);

    if ( (port = get_free_port(d)) >= 0 )
    {
        d->event_channel[port].state = ECS_UNBOUND;
        d->event_channel[port].u.unbound.remote_domid = alloc->dom;
    }

    spin_unlock(&d->event_channel_lock);

    if ( port < 0 )
        return port;

    alloc->port = port;
    return 0;
}


static long evtchn_bind_interdomain(evtchn_bind_interdomain_t *bind)
{
#define ERROR_EXIT(_errno) do { rc = (_errno); goto out; } while ( 0 )
    struct domain *d1, *d2;
    int            port1 = bind->port1, port2 = bind->port2;
    domid_t        dom1 = bind->dom1, dom2 = bind->dom2;
    long           rc = 0;

    if ( !IS_PRIV(current) && (dom1 != DOMID_SELF) )
        return -EPERM;

    if ( (port1 < 0) || (port2 < 0) )
        return -EINVAL;

    if ( dom1 == DOMID_SELF )
        dom1 = current->id;
    if ( dom2 == DOMID_SELF )
        dom2 = current->id;

    if ( ((d1 = find_domain_by_id(dom1)) == NULL) ||
         ((d2 = find_domain_by_id(dom2)) == NULL) )
    {
        if ( d1 != NULL )
            put_domain(d1);
        return -ESRCH;
    }

    /* Avoid deadlock by first acquiring lock of domain with smaller id. */
    if ( d1 < d2 )
    {
        spin_lock(&d1->event_channel_lock);
        spin_lock(&d2->event_channel_lock);
    }
    else
    {
        if ( d1 != d2 )
            spin_lock(&d2->event_channel_lock);
        spin_lock(&d1->event_channel_lock);
    }

    /* Obtain, or ensure that we already have, a valid <port1>. */
    if ( port1 == 0 )
    {
        if ( (port1 = get_free_port(d1)) < 0 )
            ERROR_EXIT(port1);
    }
    else if ( port1 >= d1->max_event_channel )
        ERROR_EXIT(-EINVAL);

    /* Obtain, or ensure that we already have, a valid <port2>. */
    if ( port2 == 0 )
    {
        /* Make port1 non-free while we allocate port2 (in case dom1==dom2). */
        u16 tmp = d1->event_channel[port1].state;
        d1->event_channel[port1].state = ECS_INTERDOMAIN;
        port2 = get_free_port(d2);
        d1->event_channel[port1].state = tmp;
        if ( port2 < 0 )
            ERROR_EXIT(port2);
    }
    else if ( port2 >= d2->max_event_channel )
        ERROR_EXIT(-EINVAL);

    /* Validate <dom1,port1>'s current state. */
    switch ( d1->event_channel[port1].state )
    {
    case ECS_FREE:
        break;

    case ECS_UNBOUND:
        if ( d1->event_channel[port1].u.unbound.remote_domid != dom2 )
            ERROR_EXIT(-EINVAL);
        break;

    case ECS_INTERDOMAIN:
        if ( d1->event_channel[port1].u.interdomain.remote_dom != d2 )
            ERROR_EXIT(-EINVAL);
        if ( (d1->event_channel[port1].u.interdomain.remote_port != port2) &&
             (bind->port2 != 0) )
            ERROR_EXIT(-EINVAL);
        port2 = d1->event_channel[port1].u.interdomain.remote_port;
        goto out;

    default:
        ERROR_EXIT(-EINVAL);
    }

    /* Validate <dom2,port2>'s current state. */
    switch ( d2->event_channel[port2].state )
    {
    case ECS_FREE:
        if ( !IS_PRIV(current) && (dom2 != DOMID_SELF) )
            ERROR_EXIT(-EPERM);
        break;

    case ECS_UNBOUND:
        if ( d2->event_channel[port2].u.unbound.remote_domid != dom1 )
            ERROR_EXIT(-EINVAL);
        break;

    case ECS_INTERDOMAIN:
        if ( d2->event_channel[port2].u.interdomain.remote_dom != d1 )
            ERROR_EXIT(-EINVAL);
        if ( (d2->event_channel[port2].u.interdomain.remote_port != port1) &&
             (bind->port1 != 0) )
            ERROR_EXIT(-EINVAL);
        port1 = d2->event_channel[port2].u.interdomain.remote_port;
        goto out;

    default:
        ERROR_EXIT(-EINVAL);
    }

    /*
     * Everything checked out okay -- bind <dom1,port1> to <dom2,port2>.
     */

    d1->event_channel[port1].u.interdomain.remote_dom  = d2;
    d1->event_channel[port1].u.interdomain.remote_port = (u16)port2;
    d1->event_channel[port1].state                     = ECS_INTERDOMAIN;
    
    d2->event_channel[port2].u.interdomain.remote_dom  = d1;
    d2->event_channel[port2].u.interdomain.remote_port = (u16)port1;
    d2->event_channel[port2].state                     = ECS_INTERDOMAIN;

 out:
    spin_unlock(&d1->event_channel_lock);
    if ( d1 != d2 )
        spin_unlock(&d2->event_channel_lock);
    
    put_domain(d1);
    put_domain(d2);

    bind->port1 = port1;
    bind->port2 = port2;

    return rc;
#undef ERROR_EXIT
}


static long evtchn_bind_virq(evtchn_bind_virq_t *bind)
{
    struct domain *d = current;
    int            port, virq = bind->virq;

    if ( virq >= ARRAY_SIZE(d->virq_to_evtchn) )
        return -EINVAL;

    spin_lock(&d->event_channel_lock);

    /*
     * Port 0 is the fallback port for VIRQs that haven't been explicitly
     * bound yet. The exception is the 'misdirect VIRQ', which is permanently 
     * bound to port 0.
     */
    if ( ((port = d->virq_to_evtchn[virq]) != 0) ||
         (virq == VIRQ_MISDIRECT) ||
         ((port = get_free_port(d)) < 0) )
        goto out;

    d->event_channel[port].state  = ECS_VIRQ;
    d->event_channel[port].u.virq = virq;

    d->virq_to_evtchn[virq] = port;

 out:
    spin_unlock(&d->event_channel_lock);

    if ( port < 0 )
        return port;

    bind->port = port;
    return 0;
}


static long evtchn_bind_pirq(evtchn_bind_pirq_t *bind)
{
    struct domain *d = current;
    int            port, rc, pirq = bind->pirq;

    if ( pirq >= ARRAY_SIZE(d->pirq_to_evtchn) )
        return -EINVAL;

    spin_lock(&d->event_channel_lock);

    if ( ((rc = port = d->pirq_to_evtchn[pirq]) != 0) ||
         ((rc = port = get_free_port(d)) < 0) )
        goto out;

    d->pirq_to_evtchn[pirq] = port;
    rc = pirq_guest_bind(d, pirq, 
                         !!(bind->flags & BIND_PIRQ__WILL_SHARE));
    if ( rc != 0 )
    {
        d->pirq_to_evtchn[pirq] = 0;
        goto out;
    }

    d->event_channel[port].state  = ECS_PIRQ;
    d->event_channel[port].u.pirq = pirq;

 out:
    spin_unlock(&d->event_channel_lock);

    if ( rc < 0 )
        return rc;

    bind->port = port;
    return 0;
}


static long __evtchn_close(struct domain *d1, int port1)
{
    struct domain   *d2 = NULL;
    event_channel_t *chn1, *chn2;
    int              port2;
    long             rc = 0;

 again:
    spin_lock(&d1->event_channel_lock);

    chn1 = d1->event_channel;

    /* NB. Port 0 is special (VIRQ_MISDIRECT). Never let it be closed. */
    if ( (port1 <= 0) || (port1 >= d1->max_event_channel) )
    {
        rc = -EINVAL;
        goto out;
    }

    switch ( chn1[port1].state )
    {
    case ECS_FREE:
        rc = -EINVAL;
        goto out;

    case ECS_UNBOUND:
        break;

    case ECS_PIRQ:
        if ( (rc = pirq_guest_unbind(d1, chn1[port1].u.pirq)) == 0 )
            d1->pirq_to_evtchn[chn1[port1].u.pirq] = 0;
        break;

    case ECS_VIRQ:
        d1->virq_to_evtchn[chn1[port1].u.virq] = 0;
        break;

    case ECS_INTERDOMAIN:
        if ( d2 == NULL )
        {
            d2 = chn1[port1].u.interdomain.remote_dom;

            /* If we unlock d1 then we could lose d2. Must get a reference. */
            if ( unlikely(!get_domain(d2)) )
            {
                /*
                 * Failed to obtain a reference. No matter: d2 must be dying
                 * and so will close this event channel for us.
                 */
                d2 = NULL;
                goto out;
            }

            if ( d1 < d2 )
            {
                spin_lock(&d2->event_channel_lock);
            }
            else if ( d1 != d2 )
            {
                spin_unlock(&d1->event_channel_lock);
                spin_lock(&d2->event_channel_lock);
                goto again;
            }
        }
        else if ( d2 != chn1[port1].u.interdomain.remote_dom )
        {
            rc = -EINVAL;
            goto out;
        }
    
        chn2  = d2->event_channel;
        port2 = chn1[port1].u.interdomain.remote_port;

        if ( port2 >= d2->max_event_channel )
            BUG();
        if ( chn2[port2].state != ECS_INTERDOMAIN )
            BUG();
        if ( chn2[port2].u.interdomain.remote_dom != d1 )
            BUG();

        chn2[port2].state = ECS_UNBOUND;
        chn2[port2].u.unbound.remote_domid = d1->id;
        break;

    default:
        BUG();
    }

    chn1[port1].state = ECS_FREE;

 out:
    if ( d2 != NULL )
    {
        if ( d1 != d2 )
            spin_unlock(&d2->event_channel_lock);
        put_domain(d2);
    }
    
    spin_unlock(&d1->event_channel_lock);

    return rc;
}


static long evtchn_close(evtchn_close_t *close)
{
    struct domain *d;
    long           rc;
    domid_t        dom = close->dom;

    if ( dom == DOMID_SELF )
        dom = current->id;
    else if ( !IS_PRIV(current) )
        return -EPERM;

    if ( (d = find_domain_by_id(dom)) == NULL )
        return -ESRCH;

    rc = __evtchn_close(d, close->port);

    put_domain(d);
    return rc;
}


static long evtchn_send(int lport)
{
    struct domain *ld = current, *rd;
    int            rport;

    spin_lock(&ld->event_channel_lock);

    if ( unlikely(lport < 0) ||
         unlikely(lport >= ld->max_event_channel) || 
         unlikely(ld->event_channel[lport].state != ECS_INTERDOMAIN) )
    {
        spin_unlock(&ld->event_channel_lock);
        return -EINVAL;
    }

    rd    = ld->event_channel[lport].u.interdomain.remote_dom;
    rport = ld->event_channel[lport].u.interdomain.remote_port;

    evtchn_set_pending(rd, rport);

    spin_unlock(&ld->event_channel_lock);

    return 0;
}


static long evtchn_status(evtchn_status_t *status)
{
    struct domain   *d;
    domid_t          dom = status->dom;
    int              port = status->port;
    event_channel_t *chn;
    long             rc = 0;

    if ( dom == DOMID_SELF )
        dom = current->id;
    else if ( !IS_PRIV(current) )
        return -EPERM;

    if ( (d = find_domain_by_id(dom)) == NULL )
        return -ESRCH;

    spin_lock(&d->event_channel_lock);

    chn = d->event_channel;

    if ( (port < 0) || (port >= d->max_event_channel) )
    {
        rc = -EINVAL;
        goto out;
    }

    switch ( chn[port].state )
    {
    case ECS_FREE:
        status->status = EVTCHNSTAT_closed;
        break;
    case ECS_UNBOUND:
        status->status = EVTCHNSTAT_unbound;
        status->u.unbound.dom = chn[port].u.unbound.remote_domid;
        break;
    case ECS_INTERDOMAIN:
        status->status = EVTCHNSTAT_interdomain;
        status->u.interdomain.dom  = chn[port].u.interdomain.remote_dom->id;
        status->u.interdomain.port = chn[port].u.interdomain.remote_port;
        break;
    case ECS_PIRQ:
        status->status = EVTCHNSTAT_pirq;
        status->u.pirq = chn[port].u.pirq;
        break;
    case ECS_VIRQ:
        status->status = EVTCHNSTAT_virq;
        status->u.virq = chn[port].u.virq;
        break;
    default:
        BUG();
    }

 out:
    spin_unlock(&d->event_channel_lock);
    put_domain(d);
    return rc;
}


long do_event_channel_op(evtchn_op_t *uop)
{
    long rc;
    evtchn_op_t op;

    if ( copy_from_user(&op, uop, sizeof(op)) != 0 )
        return -EFAULT;

    switch ( op.cmd )
    {
    case EVTCHNOP_alloc_unbound:
        rc = evtchn_alloc_unbound(&op.u.alloc_unbound);
        if ( (rc == 0) && (copy_to_user(uop, &op, sizeof(op)) != 0) )
            rc = -EFAULT; /* Cleaning up here would be a mess! */
        break;

    case EVTCHNOP_bind_interdomain:
        rc = evtchn_bind_interdomain(&op.u.bind_interdomain);
        if ( (rc == 0) && (copy_to_user(uop, &op, sizeof(op)) != 0) )
            rc = -EFAULT; /* Cleaning up here would be a mess! */
        break;

    case EVTCHNOP_bind_virq:
        rc = evtchn_bind_virq(&op.u.bind_virq);
        if ( (rc == 0) && (copy_to_user(uop, &op, sizeof(op)) != 0) )
            rc = -EFAULT; /* Cleaning up here would be a mess! */
        break;

    case EVTCHNOP_bind_pirq:
        rc = evtchn_bind_pirq(&op.u.bind_pirq);
        if ( (rc == 0) && (copy_to_user(uop, &op, sizeof(op)) != 0) )
            rc = -EFAULT; /* Cleaning up here would be a mess! */
        break;

    case EVTCHNOP_close:
        rc = evtchn_close(&op.u.close);
        break;

    case EVTCHNOP_send:
        rc = evtchn_send(op.u.send.local_port);
        break;

    case EVTCHNOP_status:
        rc = evtchn_status(&op.u.status);
        if ( (rc == 0) && (copy_to_user(uop, &op, sizeof(op)) != 0) )
            rc = -EFAULT;
        break;

    default:
        rc = -ENOSYS;
        break;
    }

    return rc;
}


int init_event_channels(struct domain *d)
{
    spin_lock_init(&d->event_channel_lock);
    d->event_channel = xmalloc(INIT_EVENT_CHANNELS * sizeof(event_channel_t));
    if ( unlikely(d->event_channel == NULL) )
        return -ENOMEM;
    d->max_event_channel = INIT_EVENT_CHANNELS;
    memset(d->event_channel, 0, INIT_EVENT_CHANNELS * sizeof(event_channel_t));
    d->event_channel[0].state  = ECS_VIRQ;
    d->event_channel[0].u.virq = VIRQ_MISDIRECT;
    return 0;
}


void destroy_event_channels(struct domain *d)
{
    int i;
    if ( d->event_channel != NULL )
    {
        for ( i = 0; i < d->max_event_channel; i++ )
            (void)__evtchn_close(d, i);
        xfree(d->event_channel);
    }
}