Add the function afb_req_get_uid
[src/app-framework-binder.git] / src / afb-hook.h
1 /*
2  * Copyright (C) 2016, 2017 "IoT.bzh"
3  * Author José Bollo <jose.bollo@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #pragma once
19
20 #include <stdarg.h>
21 #include <time.h>
22
23 struct req;
24 struct afb_context;
25 struct json_object;
26 struct afb_arg;
27 struct afb_eventid;
28 struct afb_session;
29 struct afb_xreq;
30 struct afb_export;
31 struct afb_stored_req;
32 struct sd_bus;
33 struct sd_event;
34 struct afb_hook_xreq;
35 struct afb_hook_ditf;
36 struct afb_hook_svc;
37 struct afb_hook_evt;
38 struct afb_hook_global;
39
40 /*********************************************************
41 * section hookid
42 *********************************************************/
43 struct afb_hookid
44 {
45         unsigned id;            /* id of the hook event */
46         struct timespec time;   /* time of the hook event */
47 };
48
49 /*********************************************************
50 * section hooking xreq
51 *********************************************************/
52
53 /* individual flags */
54 #define afb_hook_flag_req_begin                 0x00000001
55 #define afb_hook_flag_req_end                   0x00000002
56 #define afb_hook_flag_req_json                  0x00000004
57 #define afb_hook_flag_req_get                   0x00000008
58 #define afb_hook_flag_req_success               0x00000010
59 #define afb_hook_flag_req_fail                  0x00000020
60 #define afb_hook_flag_req_context_get           0x00000040
61 #define afb_hook_flag_req_context_set           0x00000080
62 #define afb_hook_flag_req_addref                0x00000100
63 #define afb_hook_flag_req_unref                 0x00000200
64 #define afb_hook_flag_req_session_close         0x00000400
65 #define afb_hook_flag_req_session_set_LOA       0x00000800
66 #define afb_hook_flag_req_subscribe             0x00001000
67 #define afb_hook_flag_req_unsubscribe           0x00002000
68 #define afb_hook_flag_req_subcall               0x00004000
69 #define afb_hook_flag_req_subcall_result        0x00008000
70 #define afb_hook_flag_req_subcallsync           0x00010000
71 #define afb_hook_flag_req_subcallsync_result    0x00020000
72 #define afb_hook_flag_req_vverbose              0x00040000
73 #define afb_hook_flag_req_store                 0x00080000
74 #define afb_hook_flag_req_unstore               0x00100000
75 #define afb_hook_flag_req_subcall_req           0x00200000
76 #define afb_hook_flag_req_subcall_req_result    0x00400000
77 #define afb_hook_flag_req_has_permission        0x00800000
78 #define afb_hook_flag_req_get_application_id    0x01000000
79 #define afb_hook_flag_req_context_make          0x02000000
80 #define afb_hook_flag_req_get_uid               0x04000000
81
82 /* common flags */
83 #define afb_hook_flags_req_life         (afb_hook_flag_req_begin|afb_hook_flag_req_end)
84 #define afb_hook_flags_req_args         (afb_hook_flag_req_json|afb_hook_flag_req_get)
85 #define afb_hook_flags_req_result       (afb_hook_flag_req_success|afb_hook_flag_req_fail)
86 #define afb_hook_flags_req_session      (afb_hook_flag_req_session_close|afb_hook_flag_req_session_set_LOA)
87 #define afb_hook_flags_req_event        (afb_hook_flag_req_subscribe|afb_hook_flag_req_unsubscribe)
88 #define afb_hook_flags_req_subcalls     (afb_hook_flag_req_subcall|afb_hook_flag_req_subcall_result\
89                                         |afb_hook_flag_req_subcall_req|afb_hook_flag_req_subcall_req_result\
90                                         |afb_hook_flag_req_subcallsync|afb_hook_flag_req_subcallsync_result)
91 #define afb_hook_flags_req_security     (afb_hook_flag_req_has_permission|afb_hook_flag_req_get_application_id\
92                                         |afb_hook_flag_req_get_uid)
93
94 /* extra flags */
95 #define afb_hook_flags_req_ref          (afb_hook_flag_req_addref|afb_hook_flag_req_unref)
96 #define afb_hook_flags_req_context      (afb_hook_flag_req_context_get|afb_hook_flag_req_context_set\
97                                         |afb_hook_flag_req_context_make)
98 #define afb_hook_flags_req_stores       (afb_hook_flag_req_store|afb_hook_flag_req_unstore)
99
100 /* predefined groups */
101 #define afb_hook_flags_req_common       (afb_hook_flags_req_life|afb_hook_flags_req_args|afb_hook_flags_req_result\
102                                         |afb_hook_flags_req_session|afb_hook_flags_req_event|afb_hook_flags_req_subcalls\
103                                         |afb_hook_flag_req_vverbose|afb_hook_flags_req_security)
104 #define afb_hook_flags_req_extra        (afb_hook_flags_req_common|afb_hook_flags_req_ref|afb_hook_flags_req_context\
105                                         |afb_hook_flags_req_stores)
106 #define afb_hook_flags_req_all          (afb_hook_flags_req_extra)
107
108 struct afb_hook_xreq_itf {
109         void (*hook_xreq_begin)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq);
110         void (*hook_xreq_end)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq);
111         void (*hook_xreq_json)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, struct json_object *obj);
112         void (*hook_xreq_get)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, const char *name, struct afb_arg arg);
113         void (*hook_xreq_success)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, struct json_object *obj, const char *info);
114         void (*hook_xreq_fail)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, const char *status, const char *info);
115         void (*hook_xreq_context_get)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, void *value);
116         void (*hook_xreq_context_set)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, void *value, void (*free_value)(void*));
117         void (*hook_xreq_addref)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq);
118         void (*hook_xreq_unref)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq);
119         void (*hook_xreq_session_close)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq);
120         void (*hook_xreq_session_set_LOA)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, unsigned level, int result);
121         void (*hook_xreq_subscribe)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, struct afb_eventid *eventid, int result);
122         void (*hook_xreq_unsubscribe)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, struct afb_eventid *eventid, int result);
123         void (*hook_xreq_subcall)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, const char *api, const char *verb, struct json_object *args);
124         void (*hook_xreq_subcall_result)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, int status, struct json_object *result);
125         void (*hook_xreq_subcallsync)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, const char *api, const char *verb, struct json_object *args);
126         void (*hook_xreq_subcallsync_result)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, int status, struct json_object *result);
127         void (*hook_xreq_vverbose)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, int level, const char *file, int line, const char *func, const char *fmt, va_list args);
128         void (*hook_xreq_store)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, struct afb_stored_req *sreq);
129         void (*hook_xreq_unstore)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq);
130         void (*hook_xreq_subcall_req)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, const char *api, const char *verb, struct json_object *args);
131         void (*hook_xreq_subcall_req_result)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, int status, struct json_object *result);
132         void (*hook_xreq_has_permission)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, const char *permission, int result);
133         void (*hook_xreq_get_application_id)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, char *result);
134         void (*hook_xreq_context_make)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, int replace, void *(*create_value)(void*), void (*free_value)(void*), void *create_closure, void *result);
135         void (*hook_xreq_get_uid)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, int result);
136 };
137
138 extern void afb_hook_init_xreq(struct afb_xreq *xreq);
139
140 extern struct afb_hook_xreq *afb_hook_create_xreq(const char *api, const char *verb, struct afb_session *session, int flags, struct afb_hook_xreq_itf *itf, void *closure);
141 extern struct afb_hook_xreq *afb_hook_addref_xreq(struct afb_hook_xreq *spec);
142 extern void afb_hook_unref_xreq(struct afb_hook_xreq *spec);
143
144 /* hooks for xreq */
145 extern void afb_hook_xreq_begin(const struct afb_xreq *xreq);
146 extern void afb_hook_xreq_end(const struct afb_xreq *xreq);
147 extern struct json_object *afb_hook_xreq_json(const struct afb_xreq *xreq, struct json_object *obj);
148 extern struct afb_arg afb_hook_xreq_get(const struct afb_xreq *xreq, const char *name, struct afb_arg arg);
149 extern void afb_hook_xreq_success(const struct afb_xreq *xreq, struct json_object *obj, const char *info);
150 extern void afb_hook_xreq_fail(const struct afb_xreq *xreq, const char *status, const char *info);
151 extern void *afb_hook_xreq_context_get(const struct afb_xreq *xreq, void *value);
152 extern void afb_hook_xreq_context_set(const struct afb_xreq *xreq, void *value, void (*free_value)(void*));
153 extern void afb_hook_xreq_addref(const struct afb_xreq *xreq);
154 extern void afb_hook_xreq_unref(const struct afb_xreq *xreq);
155 extern void afb_hook_xreq_session_close(const struct afb_xreq *xreq);
156 extern int afb_hook_xreq_session_set_LOA(const struct afb_xreq *xreq, unsigned level, int result);
157 extern int afb_hook_xreq_subscribe(const struct afb_xreq *xreq, struct afb_eventid *eventid, int result);
158 extern int afb_hook_xreq_unsubscribe(const struct afb_xreq *xreq, struct afb_eventid *eventid, int result);
159 extern void afb_hook_xreq_subcall(const struct afb_xreq *xreq, const char *api, const char *verb, struct json_object *args);
160 extern void afb_hook_xreq_subcall_result(const struct afb_xreq *xreq, int status, struct json_object *result);
161 extern void afb_hook_xreq_subcallsync(const struct afb_xreq *xreq, const char *api, const char *verb, struct json_object *args);
162 extern int afb_hook_xreq_subcallsync_result(const struct afb_xreq *xreq, int status, struct json_object *result);
163 extern void afb_hook_xreq_vverbose(const struct afb_xreq *xreq, int level, const char *file, int line, const char *func, const char *fmt, va_list args);
164 extern void afb_hook_xreq_store(const struct afb_xreq *xreq, struct afb_stored_req *sreq);
165 extern void afb_hook_xreq_unstore(const struct afb_xreq *xreq);
166 extern void afb_hook_xreq_subcall_req(const struct afb_xreq *xreq, const char *api, const char *verb, struct json_object *args);
167 extern void afb_hook_xreq_subcall_req_result(const struct afb_xreq *xreq, int status, struct json_object *result);
168 extern int afb_hook_xreq_has_permission(const struct afb_xreq *xreq, const char *permission, int result);
169 extern char *afb_hook_xreq_get_application_id(const struct afb_xreq *xreq, char *result);
170 extern void *afb_hook_xreq_context_make(const struct afb_xreq *xreq, int replace, void *(*create_value)(void*), void (*free_value)(void*), void *create_closure, void *result);
171 extern int afb_hook_xreq_get_uid(const struct afb_xreq *xreq, int result);
172
173 /*********************************************************
174 * section hooking export (daemon interface)
175 *********************************************************/
176
177 #define afb_hook_flag_ditf_vverbose                     0x000001
178 #define afb_hook_flag_ditf_event_make                   0x000002
179 #define afb_hook_flag_ditf_event_broadcast_before       0x000004
180 #define afb_hook_flag_ditf_event_broadcast_after        0x000008
181 #define afb_hook_flag_ditf_get_event_loop               0x000010
182 #define afb_hook_flag_ditf_get_user_bus                 0x000020
183 #define afb_hook_flag_ditf_get_system_bus               0x000040
184 #define afb_hook_flag_ditf_rootdir_get_fd               0x000080
185 #define afb_hook_flag_ditf_rootdir_open_locale          0x000100
186 #define afb_hook_flag_ditf_queue_job                    0x000200
187 #define afb_hook_flag_ditf_unstore_req                  0x000400
188 #define afb_hook_flag_ditf_require_api                  0x000800
189 #define afb_hook_flag_ditf_require_api_result           0x001000
190 #define afb_hook_flag_ditf_rename_api                   0x002000
191
192 #define afb_hook_flags_ditf_common      (afb_hook_flag_ditf_vverbose\
193                                         |afb_hook_flag_ditf_event_make\
194                                         |afb_hook_flag_ditf_event_broadcast_before\
195                                         |afb_hook_flag_ditf_event_broadcast_after\
196                                         |afb_hook_flag_ditf_rename_api)
197 #define afb_hook_flags_ditf_extra       (afb_hook_flag_ditf_get_event_loop\
198                                         |afb_hook_flag_ditf_get_user_bus\
199                                         |afb_hook_flag_ditf_get_system_bus\
200                                         |afb_hook_flag_ditf_rootdir_get_fd\
201                                         |afb_hook_flag_ditf_rootdir_open_locale\
202                                         |afb_hook_flag_ditf_queue_job\
203                                         |afb_hook_flag_ditf_unstore_req\
204                                         |afb_hook_flag_ditf_require_api\
205                                         |afb_hook_flag_ditf_require_api_result)
206
207 #define afb_hook_flags_ditf_all         (afb_hook_flags_ditf_common|afb_hook_flags_ditf_extra)
208
209 struct afb_hook_ditf_itf {
210         void (*hook_ditf_event_broadcast_before)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, const char *name, struct json_object *object);
211         void (*hook_ditf_event_broadcast_after)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, const char *name, struct json_object *object, int result);
212         void (*hook_ditf_get_event_loop)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, struct sd_event *result);
213         void (*hook_ditf_get_user_bus)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, struct sd_bus *result);
214         void (*hook_ditf_get_system_bus)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, struct sd_bus *result);
215         void (*hook_ditf_vverbose)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, int level, const char *file, int line, const char *function, const char *fmt, va_list args);
216         void (*hook_ditf_event_make)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, const char *name, struct afb_eventid *result);
217         void (*hook_ditf_rootdir_get_fd)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, int result);
218         void (*hook_ditf_rootdir_open_locale)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, const char *filename, int flags, const char *locale, int result);
219         void (*hook_ditf_queue_job)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, void (*callback)(int signum, void *arg), void *argument, void *group, int timeout, int result);
220         void (*hook_ditf_unstore_req)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, struct afb_stored_req *sreq);
221         void (*hook_ditf_require_api)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, const char *name, int initialized);
222         void (*hook_ditf_require_api_result)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, const char *name, int initialized, int result);
223         void (*hook_ditf_rename_api)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, const char *oldname, const char *newname, int result);
224 };
225
226 extern void afb_hook_ditf_event_broadcast_before(const struct afb_export *export, const char *name, struct json_object *object);
227 extern int afb_hook_ditf_event_broadcast_after(const struct afb_export *export, const char *name, struct json_object *object, int result);
228 extern struct sd_event *afb_hook_ditf_get_event_loop(const struct afb_export *export, struct sd_event *result);
229 extern struct sd_bus *afb_hook_ditf_get_user_bus(const struct afb_export *export, struct sd_bus *result);
230 extern struct sd_bus *afb_hook_ditf_get_system_bus(const struct afb_export *export, struct sd_bus *result);
231 extern void afb_hook_ditf_vverbose(const struct afb_export *export, int level, const char *file, int line, const char *function, const char *fmt, va_list args);
232 extern struct afb_eventid *afb_hook_ditf_event_make(const struct afb_export *export, const char *name, struct afb_eventid *result);
233 extern int afb_hook_ditf_rootdir_get_fd(const struct afb_export *export, int result);
234 extern int afb_hook_ditf_rootdir_open_locale(const struct afb_export *export, const char *filename, int flags, const char *locale, int result);
235 extern int afb_hook_ditf_queue_job(const struct afb_export *export, void (*callback)(int signum, void *arg), void *argument, void *group, int timeout, int result);
236 extern void afb_hook_ditf_unstore_req(const struct afb_export *export, struct afb_stored_req *sreq);
237 extern void afb_hook_ditf_require_api(const struct afb_export *export, const char *name, int initialized);
238 extern int afb_hook_ditf_require_api_result(const struct afb_export *export, const char *name, int initialized, int result);
239 extern int afb_hook_ditf_rename_api(const struct afb_export *export, const char *oldname, const char *newname, int result);
240
241 extern int afb_hook_flags_ditf(const char *api);
242 extern struct afb_hook_ditf *afb_hook_create_ditf(const char *api, int flags, struct afb_hook_ditf_itf *itf, void *closure);
243 extern struct afb_hook_ditf *afb_hook_addref_ditf(struct afb_hook_ditf *hook);
244 extern void afb_hook_unref_ditf(struct afb_hook_ditf *hook);
245
246 /*********************************************************
247 * section hooking export (service interface)
248 *********************************************************/
249
250 #define afb_hook_flag_svc_start_before                  0x000001
251 #define afb_hook_flag_svc_start_after                   0x000002
252 #define afb_hook_flag_svc_on_event_before               0x000004
253 #define afb_hook_flag_svc_on_event_after                0x000008
254 #define afb_hook_flag_svc_call                          0x000010
255 #define afb_hook_flag_svc_call_result                   0x000020
256 #define afb_hook_flag_svc_callsync                      0x000040
257 #define afb_hook_flag_svc_callsync_result               0x000080
258
259 #define afb_hook_flags_svc_all          (afb_hook_flag_svc_start_before|afb_hook_flag_svc_start_after\
260                                         |afb_hook_flag_svc_on_event_before|afb_hook_flag_svc_on_event_after\
261                                         |afb_hook_flag_svc_call|afb_hook_flag_svc_call_result\
262                                         |afb_hook_flag_svc_callsync|afb_hook_flag_svc_callsync_result)
263
264 struct afb_hook_svc_itf {
265         void (*hook_svc_start_before)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export);
266         void (*hook_svc_start_after)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, int status);
267         void (*hook_svc_on_event_before)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, const char *event, int eventid, struct json_object *object);
268         void (*hook_svc_on_event_after)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, const char *event, int eventid, struct json_object *object);
269         void (*hook_svc_call)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, const char *api, const char *verb, struct json_object *args);
270         void (*hook_svc_call_result)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, int status, struct json_object *result);
271         void (*hook_svc_callsync)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, const char *api, const char *verb, struct json_object *args);
272         void (*hook_svc_callsync_result)(void *closure, const struct afb_hookid *hookid, const struct afb_export *export, int status, struct json_object *result);
273 };
274
275 extern void afb_hook_svc_start_before(const struct afb_export *export);
276 extern int afb_hook_svc_start_after(const struct afb_export *export, int status);
277 extern void afb_hook_svc_on_event_before(const struct afb_export *export, const char *event, int eventid, struct json_object *object);
278 extern void afb_hook_svc_on_event_after(const struct afb_export *export, const char *event, int eventid, struct json_object *object);
279 extern void afb_hook_svc_call(const struct afb_export *export, const char *api, const char *verb, struct json_object *args);
280 extern void afb_hook_svc_call_result(const struct afb_export *export, int status, struct json_object *result);
281 extern void afb_hook_svc_callsync(const struct afb_export *export, const char *api, const char *verb, struct json_object *args);
282 extern int afb_hook_svc_callsync_result(const struct afb_export *export, int status, struct json_object *result);
283
284 extern int afb_hook_flags_svc(const char *api);
285 extern struct afb_hook_svc *afb_hook_create_svc(const char *api, int flags, struct afb_hook_svc_itf *itf, void *closure);
286 extern struct afb_hook_svc *afb_hook_addref_svc(struct afb_hook_svc *hook);
287 extern void afb_hook_unref_svc(struct afb_hook_svc *hook);
288
289 /*********************************************************
290 * section hooking evt (event interface)
291 *********************************************************/
292
293 #define afb_hook_flag_evt_create                        0x000001
294 #define afb_hook_flag_evt_push_before                   0x000002
295 #define afb_hook_flag_evt_push_after                    0x000004
296 #define afb_hook_flag_evt_broadcast_before              0x000008
297 #define afb_hook_flag_evt_broadcast_after               0x000010
298 #define afb_hook_flag_evt_name                          0x000020
299 #define afb_hook_flag_evt_addref                        0x000040
300 #define afb_hook_flag_evt_unref                         0x000080
301
302 #define afb_hook_flags_evt_common       (afb_hook_flag_evt_push_before|afb_hook_flag_evt_broadcast_before)
303 #define afb_hook_flags_evt_extra        (afb_hook_flags_evt_common\
304                                         |afb_hook_flag_evt_push_after|afb_hook_flag_evt_broadcast_after\
305                                         |afb_hook_flag_evt_create\
306                                         |afb_hook_flag_evt_addref|afb_hook_flag_evt_unref)
307 #define afb_hook_flags_evt_all          (afb_hook_flags_evt_extra|afb_hook_flag_evt_name)
308
309 struct afb_hook_evt_itf {
310         void (*hook_evt_create)(void *closure, const struct afb_hookid *hookid, const char *evt, int id);
311         void (*hook_evt_push_before)(void *closure, const struct afb_hookid *hookid, const char *evt, int id, struct json_object *obj);
312         void (*hook_evt_push_after)(void *closure, const struct afb_hookid *hookid, const char *evt, int id, struct json_object *obj, int result);
313         void (*hook_evt_broadcast_before)(void *closure, const struct afb_hookid *hookid, const char *evt, int id, struct json_object *obj);
314         void (*hook_evt_broadcast_after)(void *closure, const struct afb_hookid *hookid, const char *evt, int id, struct json_object *obj, int result);
315         void (*hook_evt_name)(void *closure, const struct afb_hookid *hookid, const char *evt, int id, const char *result);
316         void (*hook_evt_addref)(void *closure, const struct afb_hookid *hookid, const char *evt, int id);
317         void (*hook_evt_unref)(void *closure, const struct afb_hookid *hookid, const char *evt, int id);
318 };
319
320 extern void afb_hook_evt_create(const char *evt, int id);
321 extern void afb_hook_evt_push_before(const char *evt, int id, struct json_object *obj);
322 extern int afb_hook_evt_push_after(const char *evt, int id, struct json_object *obj, int result);
323 extern void afb_hook_evt_broadcast_before(const char *evt, int id, struct json_object *obj);
324 extern int afb_hook_evt_broadcast_after(const char *evt, int id, struct json_object *obj, int result);
325 extern void afb_hook_evt_name(const char *evt, int id, const char *result);
326 extern void afb_hook_evt_addref(const char *evt, int id);
327 extern void afb_hook_evt_unref(const char *evt, int id);
328
329 extern int afb_hook_flags_evt(const char *name);
330 extern struct afb_hook_evt *afb_hook_create_evt(const char *pattern, int flags, struct afb_hook_evt_itf *itf, void *closure);
331 extern struct afb_hook_evt *afb_hook_addref_evt(struct afb_hook_evt *hook);
332 extern void afb_hook_unref_evt(struct afb_hook_evt *hook);
333
334 /*********************************************************
335 * section hooking global (global interface)
336 *********************************************************/
337
338 #define afb_hook_flag_global_vverbose                   0x000001
339
340 #define afb_hook_flags_global_all       (afb_hook_flag_global_vverbose)
341
342 struct afb_hook_global_itf {
343         void (*hook_global_vverbose)(void *closure, const struct afb_hookid *hookid, int level, const char *file, int line, const char *function, const char *fmt, va_list args);
344 };
345
346 extern struct afb_hook_global *afb_hook_create_global(int flags, struct afb_hook_global_itf *itf, void *closure);
347 extern struct afb_hook_global *afb_hook_addref_global(struct afb_hook_global *hook);
348 extern void afb_hook_unref_global(struct afb_hook_global *hook);
349