]> git.ozlabs.org Git - petitboot/blob - lib/pb-protocol/pb-protocol.h
Use a list for device->boot_options
[petitboot] / lib / pb-protocol / pb-protocol.h
1 #ifndef _PB_PROTOCOL_H
2 #define _PB_PROTOCOL_H
3
4 #include <stdint.h>
5
6 #include <list/list.h>
7
8 #define PB_SOCKET_PATH "/tmp/petitboot.ui"
9
10 #define PB_PROTOCOL_MAX_PAYLOAD_SIZE 4096
11
12 enum pb_protocol_action {
13         PB_PROTOCOL_ACTION_ADD          = 0x1,
14         PB_PROTOCOL_ACTION_REMOVE       = 0x2,
15 };
16
17 struct pb_protocol_message {
18         uint32_t action;
19         uint32_t payload_len;
20         char     payload[];
21 };
22
23 struct device {
24         char *id;
25         char *name;
26         char *description;
27         char *icon_file;
28
29         struct list boot_options;
30 };
31
32 struct boot_option {
33         char *id;
34         char *name;
35         char *description;
36         char *icon_file;
37         char *boot_image_file;
38         char *initrd_file;
39         char *boot_args;
40
41         struct list_item list;
42 };
43
44 int pb_protocol_device_len(struct device *dev);
45
46 int pb_protocol_serialise_string(char *pos, const char *str);
47 char *pb_protocol_deserialise_string(void *ctx,
48                 struct pb_protocol_message *message);
49
50 int pb_protocol_serialise_device(struct device *dev, char *buf, int buf_len);
51
52 int pb_protocol_write_message(int fd, struct pb_protocol_message *message);
53
54 struct pb_protocol_message *pb_protocol_create_message(void *ctx,
55                 int action, int payload_len);
56
57 struct pb_protocol_message *pb_protocol_read_message(void *ctx, int fd);
58
59 struct device *pb_protocol_deserialise_device(void *ctx,
60                 struct pb_protocol_message *message);
61
62 #endif /* _PB_PROTOCOL_H */