summaryrefslogtreecommitdiff
path: root/src/server.c
blob: cc853bf6e04cba25df8c5302730ec08cc87149aa (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
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
/*
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#include "xhiv.h"
#include "proto.h"

#define XSERV_t
#define TRANS_SERVER
#include <X11/Xtrans/Xtrans.h>
#include <X11/Xtrans/Xtransint.h>
#include <X11/X.h>
#include <X11/Xproto.h>
#include <X11/extensions/bigreqsproto.h>

#include <sys/types.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <signal.h>
#include <poll.h>
#include <assert.h>
#include <errno.h>
#include <limits.h>
#include <sys/wait.h>

#ifndef O_CLOEXEC
# define O_CLOEXEC 0
#endif

/* Data waiting to be written to clients */
typedef struct client_response_buffer {
    struct client_response_buffer *next;
    const void *response_data;  /* Data to return */
    uint32_t response_datalen;  /* Length of response_data, in bytes */
    uint32_t length;      /* Total length of reply packet, in 4-byte words */
    uint64_t response_written;  /* Number of bytes written so far */
    uint32_t response_sequence; /* Sequence number to set or XHIV_SEQ_IGNORE */
    uint32_t send_count;        /* Number of times to send this data */
} client_response_buffer;

typedef struct client_state {
    XtransConnInfo conn;
    struct client_response_buffer *crb;
    uint32_t sequence;          /* sequence reported to client */
    uint32_t match_sequence;    /* sequence used for matching responses */
    uint32_t req_len_remaining; /* remaining length to discard from last req */
} client_state;

/*************************************************************************
 * Data for server/client handshake
 */

#define ARRAY_SIZE(a)           (sizeof((a)) / sizeof((a)[0]))
#define bytes_to_int32(b)       (((b) + 3) >> 2)

static const char default_vendor_string[] = PACKAGE_STRING;

static const xConnSetup default_conn_setup = {
    .release = (PACKAGE_VERSION_MAJOR << 24) |
               (PACKAGE_VERSION_MINOR << 16) |
               (PACKAGE_VERSION_PATCHLEVEL << 8),
    .ridBase = 0x00200000,
    .ridMask = 0x001fffff,
    .motionBufferSize = 256,
    .nbytesVendor = sizeof(default_vendor_string),
    .maxRequestSize = SHRT_MAX,
    .numRoots = 1,
    .numFormats = 7, /* must be same as default_pixmap_formats below */
    .imageByteOrder = LSBFirst,
    .bitmapBitOrder = LSBFirst,
    .bitmapScanlineUnit = 32,
    .bitmapScanlinePad = 32,
    .minKeyCode = 8,
    .maxKeyCode = 255,
};

static const xPixmapFormat default_pixmap_formats[7] = {
    /* depth, bits-per-pixel, scanline-pad */
    {  1,  1, 32 },
    {  4,  4, 32 },
    {  8,  8, 32 },
    { 15, 15, 32 },
    { 16, 16, 32 },
    { 24, 24, 32 },
    { 32, 32, 32 }
};

static const xWindowRoot default_root_window = {
    .windowId = 0x47,
    .defaultColormap = 0x20,
    .whitePixel = 0x00ffffffU,
    .blackPixel = 0,
    .currentInputMask = 0,
    .pixWidth = 1024,
    .pixHeight = 768,
#define pixels_to_mm(p) (((p) * 25.4) / 96)
    .mmWidth = pixels_to_mm(1024),
    .mmHeight = pixels_to_mm(768),
    .minInstalledMaps = 1,
    .maxInstalledMaps = 1,
    .rootVisualID = 0x21,
    .backingStore = NotUseful,
    .saveUnders = xFalse,
    .rootDepth = 24,
    .nDepths = 7 /* must be same as default_depths below */
};

static const xDepth default_depths[7] = {
    { .depth =  1, .nVisuals = 0 },
    { .depth =  4, .nVisuals = 0 },
    { .depth =  8, .nVisuals = 0 },
    { .depth = 15, .nVisuals = 0 },
    { .depth = 16, .nVisuals = 0 },
    { .depth = 32, .nVisuals = 0 },
    { .depth = 24, .nVisuals = 1 }, /* must be same as default_visuals below */
};

static const xVisualType default_visuals[1] = {
    {
        .visualID = 0x21,
        .class = TrueColor,
        .bitsPerRGB = 8,
        .colormapEntries = 256,
        .redMask   = 0x000000ff,
        .greenMask = 0x0000ff00,
        .blueMask  = 0x00ff0000
    }
};

static const xConnSetupPrefix default_conn_setup_prefix = {
    .success = xTrue,
    .lengthReason = 0,
    .majorVersion = X_PROTOCOL,
    .minorVersion = X_PROTOCOL_REVISION,
    .length = bytes_to_int32(sizeof(xConnSetup) +
                             sizeof(default_pixmap_formats) +
                             sizeof(default_root_window) +
                             sizeof(default_depths) +
                             sizeof(default_visuals) ) +
              bytes_to_int32(sizeof(default_vendor_string))
};

static const xhiv_response default_conn_response[] = {
    {
        .length = bytes_to_int32(sz_xConnSetupPrefix),
        .response_data = &default_conn_setup_prefix,
        .response_datalen = sizeof(default_conn_setup_prefix),
        .flags = XHIV_NO_SET_SEQUENCE
    },

    {
        .length = bytes_to_int32(sz_xConnSetup),
        .response_data = &default_conn_setup,
        .response_datalen = sizeof(default_conn_setup),
        .flags = XHIV_NO_SET_SEQUENCE
    },

    {
        .length = bytes_to_int32(sizeof(default_vendor_string)),
        .response_data = default_vendor_string,
        .response_datalen = sizeof(default_vendor_string),
        .flags = XHIV_NO_SET_SEQUENCE
    },

    {
        .length = bytes_to_int32(sizeof(default_pixmap_formats)),
        .response_data = default_pixmap_formats,
        .response_datalen = sizeof(default_pixmap_formats),
        .flags = XHIV_NO_SET_SEQUENCE
    },

    {
        .length = bytes_to_int32(sizeof(default_root_window)),
        .response_data = &default_root_window,
        .response_datalen = sizeof(default_root_window),
        .flags = XHIV_NO_SET_SEQUENCE
    },

    {
        .length = bytes_to_int32(sizeof(default_depths)),
        .response_data = default_depths,
        .response_datalen = sizeof(default_depths),
        .flags = XHIV_NO_SET_SEQUENCE
    },

    {
        .length = bytes_to_int32(sizeof(default_visuals)),
        .response_data = default_visuals,
        .response_datalen = sizeof(default_visuals),
        .flags = XHIV_NO_SET_SEQUENCE
    },
};

/* In order to simulate BigRequests, we simply implement it with a hardcoded
   extension request value */
#define BIGREQ_REQTYPE          255

/*************************************************************************
 * Data management functions
 */

static client_response_buffer *
AddResponseToBuffer(client_response_buffer *crb, const xhiv_response *response,
                    uint32_t sequence)
{
    client_response_buffer *new_crb_head = NULL, *new_crb_tail = NULL;
    const xhiv_response *r;

    for (r = response; r != NULL; r = r->chain) {
        client_response_buffer *new_crb;

        uint64_t total_bytes= ((uint64_t) r->length) << 2;
        assert(total_bytes >= r->response_datalen);

        new_crb = calloc(1, sizeof(client_response_buffer));
        assert(new_crb != NULL);

        new_crb->response_data = r->response_data;
        new_crb->response_datalen = r->response_datalen;
        new_crb->length = r->length;
        new_crb->response_sequence = (r->flags & XHIV_NO_SET_SEQUENCE)
            ? XHIV_SEQ_IGNORE : sequence;
        new_crb->send_count = r->repeat + 1; /* Always send at least once */
        assert((new_crb->send_count * new_crb->response_datalen) <=
               (new_crb->length << 2));

        if (new_crb_tail !=  NULL) {
            new_crb_tail->next = new_crb;
            new_crb_tail = new_crb;
        } else {
            new_crb_head = new_crb_tail = new_crb;
        }
    }

    if (crb == NULL)
        crb = new_crb_head;
    else {
        client_response_buffer *n;

        for (n = crb ; n->next != NULL; n = n->next) {
            /* find end of list */
        }
        n->next = new_crb_head;
    }
    return crb;
}

/* Find the first response matching the criteria */
static xhiv_response *
FindXhivResponse(xhiv_response *xrlist, uint16_t reqType, uint16_t reqMinor,
                 uint32_t sequence)
{
    xhiv_response *r;

    for (r = xrlist; r != NULL ; r = r->next) {
        if (((r->reqType == reqType) || (r->reqType == XHIV_REQ_IGNORE)) &&
            ((r->reqMinor == reqMinor) || (r->reqMinor == XHIV_REQ_IGNORE)) &&
            ((r->sequence == sequence) || (r->sequence == XHIV_SEQ_IGNORE)))
            return r;
    }
    return NULL;
}


/*************************************************************************
 * Client communication functions
 */

static void
CloseListenTrans(XtransConnInfo *ListenTransConns, int ListenTransCount)
{
    int i;

    for (i = 0; i < ListenTransCount; i++)
        _XSERVTransClose(ListenTransConns[i]);
}

static XtransConnInfo
WaitForClient(XtransConnInfo *ListenTransConns, int ListenTransCount)
{
    struct pollfd *pollfds;
    int i;
    XtransConnInfo ClientTransConn = NULL;

    pollfds = calloc(ListenTransCount, sizeof(struct pollfd));
    assert (pollfds != NULL);

    for (i = 0; i < ListenTransCount; i++) {
        pollfds[i].fd = _XSERVTransGetConnectionNumber(ListenTransConns[i]);
        pollfds[i].events = POLLIN;
    }

    while (ClientTransConn == NULL) {
        int readyfds = poll(pollfds, ListenTransCount, -1);

        if (readyfds > 0) {
            for (i = 0; i < ListenTransCount; i++) {
                if (pollfds[i].revents & (POLLERR | POLLHUP | POLLNVAL)) {
                    perror("bad state polling for client connection");
                    exit(11);
                }
                else if (pollfds[i].revents) {
                    int status;
                    ClientTransConn =
                        _XSERVTransAccept(ListenTransConns[i], &status);
                    if (ClientTransConn)
                        break;
                }
            }
        }
        else if (readyfds < 0) { /* error */
            if (errno != EAGAIN && errno != EINTR) {
                perror("polling for client connection");
                exit(11);
            }
        }
    }

    free(pollfds);
    CloseListenTrans(ListenTransConns, ListenTransCount);
    return ClientTransConn;
}

static int urandom_fd = -1;

static void
HandleClientResponses(client_state *client)
{
    while (client->crb != NULL) {
        client_response_buffer *crb = client->crb;
        uint64_t nbytes, wbytes, total_bytes;

        if ((crb->response_written == 0) &&
            (crb->response_sequence != XHIV_SEQ_IGNORE)) {
            /* Set sequence in initial bytes if needed */
            xGenericReply rep;

#ifdef DEBUG
            printf("Sending reply: seq = %d, length = %d\n",
                   crb->response_sequence, crb->length);
#endif

            nbytes = sizeof(rep);
            if (nbytes > crb->response_datalen)
                nbytes = crb->response_datalen;

            memcpy(&rep, crb->response_data, nbytes);
            rep.sequenceNumber = (CARD16) crb->response_sequence;
            wbytes = _XSERVTransWrite(client->conn, (char *) &rep, nbytes);
            if (wbytes > 0)
                crb->response_written += wbytes;
        }

        total_bytes = (uint64_t) crb->response_datalen * crb->send_count;
        while (crb->response_written < total_bytes) {
            uint32_t offset = crb->response_written % crb->response_datalen;
            nbytes = crb->response_datalen - offset;
            wbytes = _XSERVTransWrite(client->conn,
                (const char *) crb->response_data + offset, nbytes);
            if (wbytes > 0)
                crb->response_written += wbytes;
            if (wbytes != nbytes) /* pipe is full, try again later */
                return;
        }

        total_bytes = ((uint64_t) crb->length) << 2;
        assert(total_bytes >= crb->response_written);
        nbytes = total_bytes - crb->response_written;
        if (nbytes > 0) {
            char ranbuf[32768];

            if (urandom_fd < 0) {
                urandom_fd = open("/dev/urandom",
                                  O_RDONLY | O_NONBLOCK | O_CLOEXEC);
                if (urandom_fd < 0) {
                    perror("Could not open /dev/urandom");
                    exit(11);
                }
            }

            /*
             * Read some random bytes to write to fill buffer.
             * If it fails, ignore the error and continue with whatever
             * (not truly random) uninitialized data is on our stack.
             */
            if (nbytes > sizeof(ranbuf))
                nbytes = sizeof(ranbuf);
            read(urandom_fd, ranbuf, nbytes);

            do {
                wbytes = _XSERVTransWrite(client->conn, ranbuf, nbytes);
                if (wbytes > 0)
                    crb->response_written += wbytes;
                if (wbytes != nbytes) /* pipe is full, try again later */
                    return;
                nbytes = total_bytes - crb->response_written;
                if (nbytes > sizeof(ranbuf))
                    nbytes = sizeof(ranbuf);
            } while (nbytes > 0);
        }

        /* Are we done with this response buffer?  If so, nuke it & move on. */
        if (total_bytes == crb->response_written) {
            client->crb = crb->next;
            free(crb);
        }
        else {
            assert(total_bytes > crb->response_written);
            return;  /* if we couldn't finish this one, wait for poll to say
                        the client is ready for more */
        }
    }
}

static unsigned char readbuf[65536];

static void
DiscardRequestData(client_state *client)
{
    /* Read & ignore all the data in the request we don't care about */
    while (client->req_len_remaining) {
        int nbytes = (client->req_len_remaining > sizeof(readbuf)) ?
            sizeof(readbuf) : client->req_len_remaining;
        int rbytes = _XSERVTransRead(client->conn, (char *)readbuf, nbytes);
        if (rbytes <= 0)
            break;
        client->req_len_remaining -= rbytes;
#ifdef DEBUG
        printf("Discarded %d bytes of request data\n", rbytes);
#endif
    }
}

static void
HandleClientRequest(client_state *client, xhiv_response *responses)
{
    if (client->sequence == 0) { /* handshaking */
        xhiv_response *r;
        int i = 0;

        client->req_len_remaining = sizeof(xConnClientPrefix);
        DiscardRequestData(client);

        while ((r = FindXhivResponse(responses, XHIV_REQ_CONN_SETUP,
                                     XHIV_REQ_IGNORE, i))) {
            client->crb = AddResponseToBuffer(client->crb, r, 0);
            i++;
        }

        if (i == 0) { /* use default connection sequence if none provided */
            for (i = 0; i < ARRAY_SIZE(default_conn_response); i++)
                client->crb = AddResponseToBuffer(client->crb,
                                                  &default_conn_response[i],
                                                  0);
        }
    } else { /* normal protocol request/reply cycle */
        xhiv_response *r;
        xReq req;
        int rbytes;
        uint32_t length;

        if (client->req_len_remaining) /* still reading last request */
            DiscardRequestData(client);
        if (client->req_len_remaining) /* not all there yet */
            return; /* back to poll again for more data */

        errno = 0;
        rbytes = _XSERVTransRead(client->conn, (char *)&req, sizeof(req));
        if ((rbytes == 0) && (errno == 0)) {
            /* client disconnected */
            _XSERVTransClose(client->conn);
            return;
        }
        if (rbytes <= 0) {
            if ((errno == EINTR) || (errno == EAGAIN))
                return;
            perror("Reading from client");
            exit(11);
        }
        assert(rbytes == sizeof(req));
        if (req.length == 0) { /* BIG Request */
            rbytes = _XSERVTransRead(client->conn, (char *)&length, 4);
            assert(rbytes == 4);
        }
        else
            length = req.length;

#ifdef DEBUG
        printf("Request %d (match seq %d): %d/%d\n", client->sequence,
               client->match_sequence, req.reqType, req.data);
#endif

        /* X11 packets count the initial header as part of their length */
        client->req_len_remaining = (length << 2) - sizeof(req);

        r = FindXhivResponse(responses, req.reqType, req.data,
                             client->match_sequence);
        if (r != NULL)
            client->crb = AddResponseToBuffer(client->crb, r,
                                              client->sequence);
        else {  /* If match not found, check against builtin responses */
            switch (req.reqType) {
            case X_QueryExtension:
                /* XOpenDisplay checks for BIG-REQUESTS & XKB extensions.
                   We only simulate BIG-REQUESTS here for now */
                {
                    int nbytes = client->req_len_remaining;
                    char extension[32] = "";
                    static const xQueryExtensionReply default_qext_reply = {
                        .type = X_Reply,
                        .length = 0,
                        .present = xFalse,
                        .major_opcode = 0,
                        .first_event = 0,
                        .first_error = 0
                    };
                    static const xQueryExtensionReply bigreq_qext_reply = {
                        .type = X_Reply,
                        .length = 0,
                        .present = xTrue,
                        .major_opcode = BIGREQ_REQTYPE,
                        .first_event = 0,
                        .first_error = 0
                    };
                    xhiv_response default_qext_response = {
                        .length = bytes_to_int32(sz_xQueryExtensionReply),
                        .response_data = &default_qext_reply,
                        .response_datalen = sizeof(default_qext_reply)
                    };
                    xhiv_response *qext_response = &default_qext_response;

                    if (nbytes > sizeof(extension))
                        nbytes = sizeof(extension);
                    rbytes = _XSERVTransRead(client->conn, (char *)&extension,
                                           nbytes);
                    if (rbytes > 0) {
                        assert(client->req_len_remaining >= rbytes);
                        client->req_len_remaining -= rbytes;
                        /* Check to see if caller provided a match */
                        for (r = responses; r != NULL ; r = r->next) {
                            if ((r->reqType == X_QueryExtension) &&
                                (r->sequence == XHIV_SEQ_MATCHDATA) &&
                                (strncmp(extension + 4, r->match_data,
                                         sizeof(extension) - 4) == 0)) {
                                qext_response = r;
                                break;
                            }
                        }
                        /* If caller didn't, then handle ourselves */
                        if (qext_response == &default_qext_response) {
                            if (strncmp(extension + 4, XBigReqExtensionName,
                                        sizeof(XBigReqExtensionName)) == 0) {
                                qext_response->response_data =
                                    &bigreq_qext_reply;
                            }
                        }
                    }
                    else {
                        assert(rbytes == 0);
                    }
                    client->crb =
                        AddResponseToBuffer(client->crb, qext_response,
                                            client->sequence);
                }
                break;

            case X_GetProperty:
                /* XOpenDisplay requests the root window resource property.
                   We just claim all properties don't exist. */
                {
                    const xGetPropertyReply getp_reply = {
                        .type = X_Reply,
                        .format = 0,
                        .length = 0,
                        .propertyType = None,
                        .bytesAfter = 0,
                        .nItems = 0
                    };
                    xhiv_response getp_response = {
                        .length = bytes_to_int32(sz_xGetPropertyReply),
                        .response_data = &getp_reply,
                        .response_datalen = sizeof(getp_reply)
                    };
                    client->crb =
                        AddResponseToBuffer(client->crb, &getp_response,
                                            client->sequence);
                }
                break;

            case X_GetInputFocus:
                /* XSync() sends this request to force a quick reply */
                {
                    const xGetInputFocusReply getif_reply = {
                        .type = X_Reply,
                        .revertTo = None,
                        .length = 0,
                        .focus = None
                    };
                    xhiv_response getif_response = {
                        .length = bytes_to_int32(sz_xGetInputFocusReply),
                        .response_data = &getif_reply,
                        .response_datalen = sizeof(getif_reply)
                    };
                    client->crb =
                        AddResponseToBuffer(client->crb, &getif_response,
                                            client->sequence);
                }
                break;

            case X_XHIV_PROTO_REQTYPE: /* our fake extension */
                if (req.data == XhivSeqStart) {
                    uint32_t newseq;
                    rbytes = _XSERVTransRead(client->conn, (char *)&newseq,
                                             sizeof(uint32_t));
                    assert(rbytes == sizeof(uint32_t));
                    client->req_len_remaining -= rbytes;

                    client->match_sequence = newseq;
#ifdef DEBUG
                    printf("Set match sequence to %d\n", newseq);
#endif
                }
                break;

            case BIGREQ_REQTYPE: /* our fake BIG-REQUESTS extension */
                if (req.data == X_BigReqEnable) {
                    const xBigReqEnableReply bigreq_reply = {
                        .type = X_Reply,
                        .length = 0,
                        .max_request_size = UINT32_MAX
                    };
                    xhiv_response bigreq_response = {
                        .length = bytes_to_int32(sz_xBigReqEnableReply),
                        .response_data = &bigreq_reply,
                        .response_datalen = sizeof(bigreq_reply)
                    };
                    client->crb =
                        AddResponseToBuffer(client->crb, &bigreq_response,
                                            client->sequence);
                }
                break;

            default:
#ifdef DEBUG
                printf("Discarded unhandled request type %d.%d (%d/%d)\n",
                       req.reqType, req.data,
                       client->match_sequence, client->sequence);
#endif
                break;
            }
        }
        /* don't need any more data from the request now */
        DiscardRequestData(client);
    }
    client->sequence++;
    client->match_sequence++;

    if (client->crb != NULL)
        HandleClientResponses(client);
}

/* main I/O loop of the server */
static void _X_NORETURN
XhivRunServer(XtransConnInfo *ListenTransConns, int ListenTransCount,
              xhiv_response *responses)
{
    struct pollfd clientfd = { .events = POLLIN };
    client_state client = { 0 };

    /* Just in case connection transport signals hangups w/ SIGPIPE */
    signal(SIGPIPE, SIG_IGN);

    /* Wait for a client to connect - when it does, the connections
       passed in are closed, and only the client socket remains open */
    client.conn = WaitForClient(ListenTransConns, ListenTransCount);
    clientfd.fd = _XSERVTransGetConnectionNumber(client.conn);
    _XSERVTransSetOption(client.conn, TRANS_NONBLOCKING, 1);

    for (;;) { /* repeat until client hangs up on us */
        int readyfds = poll(&clientfd, 1, -1);

        if (readyfds > 0) {
            if (clientfd.revents & (POLLERR | POLLHUP | POLLNVAL)) {
                /* assume client hungup, so we do too */
                break;
            }
            else {
                if (clientfd.revents & (POLLIN | POLLRDNORM))
                    HandleClientRequest(&client, responses);
                if (clientfd.revents & (POLLOUT | POLLWRNORM))
                    HandleClientResponses(&client);
            }
        }
        else if (readyfds < 0) { /* error */
            if (errno != EAGAIN && errno != EINTR) {
                perror("polling for client requests");
                exit(11);
            }
        }

        if (client.crb == NULL)
            clientfd.events = POLLIN;
        else
            clientfd.events = POLLIN | POLLOUT;
    }
    _XSERVTransClose(client.conn);
    exit(0);
}

int
XhivWaitServer(pid_t server_pid) {
    int pidstat;
    pid_t waitret;

    assert(server_pid > 0);

    while ((waitret = waitpid(server_pid, &pidstat, 0)) == -1) {
        if (errno != EAGAIN && errno != EINTR) {
            perror("waiting for server to exit");
            exit(11);
        }
    }
    if (WIFEXITED(pidstat)) {
        int exitstat = WEXITSTATUS(pidstat);

        if (exitstat != 0)
            fprintf(stderr, "Server %ld exited with %d.\n",
                    (long) server_pid, exitstat);

        return exitstat;
    } else if (WIFSIGNALED(pidstat)) {
        int sig = WTERMSIG(pidstat);
        const char *signame;

        signame = strsignal(sig);
        if (signame == NULL)
            signame = "unknown";

        fprintf(stderr, "Server %ld killed by signal %d (%s)%s.\n",
                (long) server_pid, sig, signame,
                WCOREDUMP(pidstat) ? " -- core dumped" : "");
        return sig;
    } else {
        assert(pidstat);
    }
    return 0;
}

/*************************************************************************
 * External interface to this framework
 */

char *
XhivOpenServer(xhiv_response *responses, pid_t *return_pid)
{
    char *display;
    pid_t kidpid;
    int i, found;
    XtransConnInfo *ListenTransConns = NULL;
    int ListenTransCount = 0;

    /* TODO: configure nolisten options */

    /* find an unused socket to run on */
    for (i = 20, found = 0; i < 65535 - X_TCP_PORT; i++) {
        char port[8];
        int partial = 0;

        snprintf(port, sizeof(port), "%d", i);

        if (_XSERVTransMakeAllCOTSServerListeners(
                port, &partial, &ListenTransCount, &ListenTransConns) >= 0)
        {
            snprintf(port, sizeof(port), ":%d", i);
            display = strdup(port);
            found = 1;
            break;
        }
    }
    if (found == 0) {
        perror("Could not open server socket on any port");
        exit(11);
    }

    fflush(stdout);
    fflush(stderr);

    /* All tests should finish in less than 5 minutes - set timer to kill
       any processes that fail to notice their other half crashed */
    alarm(300);

    kidpid = fork();
    if (kidpid == 0) { /* child */
        free(display);
        XhivRunServer(ListenTransConns, ListenTransCount, responses);
    } else if (kidpid == -1) { /* error */
        perror("Fork of server process failed");
        exit(11);
    }
    /* else parent */
    CloseListenTrans(ListenTransConns, ListenTransCount);
    printf("Client %ld forked server child %ld on display %s\n",
           (long) getpid(), (long) kidpid, display);

    /* hack to allow sleeping long enough to attach debugger when needed */
    if (getenv("XHIV_SLEEP"))
        sleep(atoi(getenv("XHIV_SLEEP")));

    if (return_pid != NULL)
        *return_pid = kidpid;
    return display;
}