forked from jbenc/plotnetcfg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sysfs.c
127 lines (101 loc) · 2.34 KB
/
sysfs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
* This file is a part of plotnetcfg, a tool to visualize network config.
* Copyright (C) 2015 Red Hat, Inc. -- Ondrej Hlavaty <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include "sysfs.h"
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <unistd.h>
#define PATH "/tmp/plotnetcfg-sys-XXXXXX"
#define LEN sizeof(PATH)
static char sysfs_mountpoint[LEN];
long page_size;
void sysfs_clean()
{
struct stat st;
if (stat(sysfs_mountpoint, &st))
return;
if (S_ISDIR(st.st_mode))
sysfs_umount();
rmdir(sysfs_mountpoint);
}
int sysfs_init()
{
strcpy(sysfs_mountpoint, PATH);
if (!mkdtemp(sysfs_mountpoint))
return errno;
page_size = sysconf(_SC_PAGESIZE);
atexit(sysfs_clean);
return 0;
}
int sysfs_mount(const char *name)
{
sysfs_umount();
if (mount(name, sysfs_mountpoint, "sysfs", 0, NULL) < 0)
return errno;
return 0;
}
void sysfs_umount()
{
umount2(sysfs_mountpoint, MNT_DETACH);
}
char *sysfs_realpath(const char *sys_path)
{
char *resolved;
char *path;
if (asprintf(&path, "%s/%s", sysfs_mountpoint, sys_path) < 0)
return NULL;
resolved = realpath(path, NULL);
free(path);
return resolved ? resolved + LEN : NULL;
}
ssize_t sysfs_readfile(char **dest, const char *sys_path)
{
ssize_t ret;
char *path;
int fd;
*dest = NULL;
if (asprintf(&path, "%s/%s", sysfs_mountpoint, sys_path) < 0)
return -errno;
fd = open(path, O_RDONLY);
ret = -errno;
free(path);
if (fd < 0)
return ret;
*dest = malloc(page_size);
if (!*dest) {
ret = -ENOMEM;
goto err;
}
ret = read(fd, *dest, page_size);
if (ret <= 0) {
ret = -errno;
free(*dest);
*dest = NULL;
goto err;
}
/* Strip the last newline, as we usually read one line only */
(*dest)[ret - 1] = '\0';
err:
close(fd);
return ret;
}
void sysfs_free(char *path)
{
free(path - LEN);
}