Update copyright dates
[src/app-framework-binder.git] / src / afs-discover.c
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 #define _GNU_SOURCE
19
20 #include <stdlib.h>
21 #include <stdio.h>
22 #include <stdint.h>
23 #include <string.h>
24 #include <ctype.h>
25 #include <dirent.h>
26 #include <unistd.h>
27 #include <sys/types.h>
28
29 void afs_discover(const char *pattern, void (*callback)(void *closure, pid_t pid), void *closure)
30 {
31         intmax_t n;
32         DIR *dir;
33         struct dirent *ent;
34         char *name;
35         char exe[PATH_MAX], lnk[PATH_MAX];
36
37         dir = opendir("/proc");
38         while ((ent = readdir(dir))) {
39                 name = ent->d_name;
40                 while (isdigit(*name))
41                         name++;
42                 if (*name)
43                         continue;
44                 n = snprintf(exe, sizeof exe, "/proc/%s/exe", ent->d_name);
45                 if (n < 0 || (size_t)n >= sizeof exe)
46                         continue;
47                 n = readlink(exe, lnk, sizeof lnk);
48                 if (n < 0 || (size_t)n >= sizeof lnk)
49                         continue;
50                 lnk[n] = 0;
51                 name = lnk;
52                 while(*name) {
53                         while(*name == '/')
54                                 name++;
55                         if (*name) {
56                                 if (!strcmp(name, pattern)) {
57                                         callback(closure, (pid_t)atoi(ent->d_name));
58                                         break;
59                                 }
60                                 while(*++name && *name != '/');
61                         }
62                 }
63         }
64         closedir(dir);
65 }
66