X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-hook.h;h=3ab98468d014111efe14e99d7bb0e84cfed18a9c;hb=52f9783ce6b488f178f26ec07e9e11ae4442e178;hp=b7fd88d8720da21479587577106ccc9746be38c1;hpb=5928e8fc14c2edabc0bc104fff7542819e06d45a;p=src%2Fapp-framework-binder.git diff --git a/src/afb-hook.h b/src/afb-hook.h index b7fd88d8..3ab98468 100644 --- a/src/afb-hook.h +++ b/src/afb-hook.h @@ -35,6 +35,7 @@ struct afb_hook_xreq; struct afb_hook_ditf; struct afb_hook_svc; struct afb_hook_evt; +struct afb_hook_session; struct afb_hook_global; /********************************************************* @@ -77,6 +78,7 @@ struct afb_hookid #define afb_hook_flag_req_has_permission 0x00800000 #define afb_hook_flag_req_get_application_id 0x01000000 #define afb_hook_flag_req_context_make 0x02000000 +#define afb_hook_flag_req_get_uid 0x04000000 /* common flags */ #define afb_hook_flags_req_life (afb_hook_flag_req_begin|afb_hook_flag_req_end) @@ -87,7 +89,8 @@ struct afb_hookid #define afb_hook_flags_req_subcalls (afb_hook_flag_req_subcall|afb_hook_flag_req_subcall_result\ |afb_hook_flag_req_subcall_req|afb_hook_flag_req_subcall_req_result\ |afb_hook_flag_req_subcallsync|afb_hook_flag_req_subcallsync_result) -#define afb_hook_flags_req_security (afb_hook_flag_req_has_permission|afb_hook_flag_req_get_application_id) +#define afb_hook_flags_req_security (afb_hook_flag_req_has_permission|afb_hook_flag_req_get_application_id\ + |afb_hook_flag_req_get_uid) /* extra flags */ #define afb_hook_flags_req_ref (afb_hook_flag_req_addref|afb_hook_flag_req_unref) @@ -130,6 +133,7 @@ struct afb_hook_xreq_itf { void (*hook_xreq_has_permission)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, const char *permission, int result); void (*hook_xreq_get_application_id)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, char *result); 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); + void (*hook_xreq_get_uid)(void *closure, const struct afb_hookid *hookid, const struct afb_xreq *xreq, int result); }; extern void afb_hook_init_xreq(struct afb_xreq *xreq); @@ -165,6 +169,7 @@ extern void afb_hook_xreq_subcall_req_result(const struct afb_xreq *xreq, int st extern int afb_hook_xreq_has_permission(const struct afb_xreq *xreq, const char *permission, int result); extern char *afb_hook_xreq_get_application_id(const struct afb_xreq *xreq, char *result); 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); +extern int afb_hook_xreq_get_uid(const struct afb_xreq *xreq, int result); /********************************************************* * section hooking export (daemon interface) @@ -327,6 +332,42 @@ extern struct afb_hook_evt *afb_hook_create_evt(const char *pattern, int flags, extern struct afb_hook_evt *afb_hook_addref_evt(struct afb_hook_evt *hook); extern void afb_hook_unref_evt(struct afb_hook_evt *hook); +/********************************************************* +* section hooking session (session interface) +*********************************************************/ + +#define afb_hook_flag_session_create 0x000001 +#define afb_hook_flag_session_close 0x000002 +#define afb_hook_flag_session_destroy 0x000004 +#define afb_hook_flag_session_renew 0x000008 +#define afb_hook_flag_session_addref 0x000010 +#define afb_hook_flag_session_unref 0x000020 + +#define afb_hook_flags_session_common (afb_hook_flag_session_create|afb_hook_flag_session_close\ + |afb_hook_flag_session_renew) +#define afb_hook_flags_session_all (afb_hook_flags_session_common|afb_hook_flag_session_destroy\ + |afb_hook_flag_session_addref|afb_hook_flag_session_unref) + +struct afb_hook_session_itf { + void (*hook_session_create)(void *closure, const struct afb_hookid *hookid, struct afb_session *session); + void (*hook_session_close)(void *closure, const struct afb_hookid *hookid, struct afb_session *session); + void (*hook_session_destroy)(void *closure, const struct afb_hookid *hookid, struct afb_session *session); + void (*hook_session_renew)(void *closure, const struct afb_hookid *hookid, struct afb_session *session); + void (*hook_session_addref)(void *closure, const struct afb_hookid *hookid, struct afb_session *session); + void (*hook_session_unref)(void *closure, const struct afb_hookid *hookid, struct afb_session *session); +}; + +extern void afb_hook_session_create(struct afb_session *session); +extern void afb_hook_session_close(struct afb_session *session); +extern void afb_hook_session_destroy(struct afb_session *session); +extern void afb_hook_session_renew(struct afb_session *session); +extern void afb_hook_session_addref(struct afb_session *session); +extern void afb_hook_session_unref(struct afb_session *session); + +extern struct afb_hook_session *afb_hook_create_session(const char *pattern, int flags, struct afb_hook_session_itf *itf, void *closure); +extern struct afb_hook_session *afb_hook_addref_session(struct afb_hook_session *hook); +extern void afb_hook_unref_session(struct afb_hook_session *hook); + /********************************************************* * section hooking global (global interface) *********************************************************/