aboutsummaryrefslogtreecommitdiff
path: root/darwin-bootstrap/substituted-messages.h
blob: 62b92b325a6a3ce1c94679b8a91e55426d5e2e7f (plain) (blame)
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
#pragma once
#include <mach/mach.h>
#include <sys/param.h>

enum {
    SUBSTITUTED_PROTO_VERSION = 1
};

enum substituted_msg_id {
    SUBSTITUTED_MSG_HELLO = 10000,
    SUBSTITUTED_MSG_HELLO_RESP = 10001,
};

struct substituted_msg_body_hello {
    int proto_version;
    char argv0[/*0..*/MAXPATHLEN];
};

struct substituted_msg_body_hello_resp {
    mach_msg_body_t body;
    mach_msg_ool_descriptor_t bundle_list_ool;
    int error;
};

/* bundle_list: a bunch of substituted_bundle_list_ops */

enum substituted_bundle_list_opc {
    SUBSTITUTED_TEST_BUNDLE,
    SUBSTITUTED_TEST_CLASS,
    SUBSTITUTED_USE_DYLIB,
};

struct substituted_bundle_list_op {
    uint16_t namelen;
    uint8_t opc;
    /* char name[namelen + 1]; */
};