ubusd: convert tx_queue to linked list
[project/ubus.git] / ubusd.h
1 /*
2 * Copyright (C) 2011-2014 Felix Fietkau <nbd@openwrt.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License version 2.1
6 * as published by the Free Software Foundation
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14 #ifndef __UBUSD_H
15 #define __UBUSD_H
16
17 #include <libubox/list.h>
18 #include <libubox/uloop.h>
19 #include <libubox/blobmsg.h>
20 #include "ubus_common.h"
21 #include "ubusd_id.h"
22 #include "ubusd_obj.h"
23 #include "ubusmsg.h"
24 #include "ubusd_acl.h"
25
26 #define UBUS_OBJ_HASH_BITS 4
27
28 extern struct blob_buf b;
29
30 struct ubus_msg_buf {
31 uint32_t refcount; /* ~0: uses external data buffer */
32 struct ubus_msghdr hdr;
33 struct blob_attr *data;
34 int fd;
35 int len;
36 };
37
38 struct ubus_msg_buf_list {
39 struct list_head list;
40 struct ubus_msg_buf *msg;
41 };
42
43 struct ubus_client {
44 struct ubus_id id;
45 struct uloop_fd sock;
46 struct blob_buf b;
47
48 uid_t uid;
49 gid_t gid;
50 char *user;
51 char *group;
52
53 struct list_head objects;
54
55 struct list_head tx_queue;
56 unsigned int txq_ofs;
57
58 struct ubus_msg_buf *pending_msg;
59 struct ubus_msg_buf *retmsg;
60 int pending_msg_offset;
61 int pending_msg_fd;
62 struct {
63 struct ubus_msghdr hdr;
64 struct blob_attr data;
65 } hdrbuf;
66 };
67
68 struct ubus_path {
69 struct list_head list;
70 const char name[];
71 };
72
73 extern const char *ubusd_acl_dir;
74
75 struct ubus_msg_buf *ubus_msg_new(void *data, int len, bool shared);
76 void ubus_msg_send(struct ubus_client *cl, struct ubus_msg_buf *ub);
77 ssize_t ubus_msg_writev(int fd, struct ubus_msg_buf *ub, size_t offset);
78 void ubus_msg_free(struct ubus_msg_buf *ub);
79 void ubus_msg_list_free(struct ubus_msg_buf_list *ubl);
80 struct blob_attr **ubus_parse_msg(struct blob_attr *msg, size_t len);
81
82 struct ubus_client *ubusd_proto_new_client(int fd, uloop_fd_handler cb);
83 void ubusd_proto_receive_message(struct ubus_client *cl, struct ubus_msg_buf *ub);
84 void ubusd_proto_free_client(struct ubus_client *cl);
85 void ubus_proto_send_msg_from_blob(struct ubus_client *cl, struct ubus_msg_buf *ub,
86 uint8_t type);
87
88 typedef struct ubus_msg_buf *(*event_fill_cb)(void *priv, const char *id);
89 void ubusd_event_init(void);
90 void ubusd_event_cleanup_object(struct ubus_object *obj);
91 void ubusd_send_obj_event(struct ubus_object *obj, bool add);
92 int ubusd_send_event(struct ubus_client *cl, const char *id,
93 event_fill_cb fill_cb, void *cb_priv);
94
95 void ubusd_acl_init(void);
96
97 void ubusd_monitor_init(void);
98 void ubusd_monitor_message(struct ubus_client *cl, struct ubus_msg_buf *ub, bool send);
99 void ubusd_monitor_disconnect(struct ubus_client *cl);
100
101 #endif