Update copyright dates
[src/app-framework-binder.git] / src / afs-supervision.h
1 /*
2  * Copyright (C) 2015-2020 "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 /*
21  * CAUTION!
22  * the default setting uses an abstract socket path
23  * be aware that this setting doesn't allow to enforce
24  * DAC for accessing the socket and then would allow
25  * anyone to create a such socket and usurpate the
26  * supervisor.
27  */
28 #if !defined(AFS_SUPERVISION_SOCKET)
29 #  define AFS_SUPERVISION_SOCKET "@urn:AGL:afs:supervision:socket" /* abstract */
30 #endif
31
32 /*
33  * generated using
34  * uuid -v 5 ns:URL urn:AGL:afs:supervision:interface:1
35  */
36 #define AFS_SUPERVISION_INTERFACE_1 "86040e8d-eee5-5900-a129-3edb8da3ed46"
37
38
39 /**
40  * packet initially sent by monitor at start
41  */
42 struct afs_supervision_initiator
43 {
44         char interface[37];     /**< zero terminated interface uuid */
45         char extra[27];         /**< zero terminated extra computed here to be 64-37 */
46 };
47
48 #define AFS_SUPERVISION_APINAME      "."
49 #define AFS_SUPERVISOR_APINAME       "supervisor"