1/* swc: launch/protocol.h
2 *
3 * Copyright (c) 2013, 2014 Michael Forney
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23
24#ifndef SWC_LAUNCH_PROTOCOL_H
25#define SWC_LAUNCH_PROTOCOL_H
26
27#include <stdbool.h>
28#include <stdint.h>
29#include <sys/types.h>
30
31#define SWC_LAUNCH_SOCKET_ENV "SWC_LAUNCH_SOCKET"
32
33struct iovec;
34
35struct swc_launch_request {
36 enum {
37 SWC_LAUNCH_REQUEST_OPEN_DEVICE,
38 SWC_LAUNCH_REQUEST_ACTIVATE_VT,
39 } type;
40
41 uint32_t serial;
42
43 union {
44 struct /* OPEN_DEVICE */ {
45 int flags;
46 };
47 struct /* ACTIVATE_VT */ {
48 unsigned vt;
49 };
50 };
51};
52
53struct swc_launch_event {
54 enum {
55 SWC_LAUNCH_EVENT_RESPONSE,
56 SWC_LAUNCH_EVENT_ACTIVATE,
57 SWC_LAUNCH_EVENT_DEACTIVATE,
58 } type;
59
60 union {
61 struct /* RESPONSE */ {
62 uint32_t serial;
63 bool success;
64 };
65 };
66};
67
68ssize_t
69send_fd(int socket, int fd, struct iovec *iov, int iovlen);
70ssize_t
71receive_fd(int socket, int *fd, struct iovec *iov, int iovlen);
72
73#endif