Add initial version
[src/drm-lease-manager.git] / common / socket-path.c
1 /* Copyright 2020-2021 IGEL Co., Ltd.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #include "socket-path.h"
17 #include "config.h"
18 #include "log.h"
19
20 #include <errno.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24
25 #define RUNTIME_PATH DLM_DEFAULT_RUNTIME_PATH
26
27 bool sockaddr_set_lease_server_path(struct sockaddr_un *sa,
28                                     const char *lease_name)
29 {
30         int maxlen = sizeof(sa->sun_path);
31         char *socket_dir = getenv("DLM_RUNTIME_PATH") ?: RUNTIME_PATH;
32
33         int len =
34             snprintf(sa->sun_path, maxlen, "%s/%s", socket_dir, lease_name);
35
36         if (len < 0) {
37                 DEBUG_LOG("Socket path creation failed: %s\n", strerror(errno));
38                 return false;
39         }
40         if (len >= maxlen) {
41                 errno = ENAMETOOLONG;
42                 DEBUG_LOG("Socket directoy path too long. "
43                           "Full path to socket must be less than %d bytes\n",
44                           maxlen);
45                 return false;
46         }
47         return true;
48 }