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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
|
// SPDX-License-Identifier: LGPL-2.1
// Copyright (C) 2014-2020, Intel Corporation. All rights reserved.
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <stdarg.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <ctype.h>
#include <fcntl.h>
#include <dirent.h>
#include <libkmod.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <util/log.h>
#include <util/sysfs.h>
int __sysfs_read_attr(struct log_ctx *ctx, const char *path, char *buf)
{
int fd = open(path, O_RDONLY|O_CLOEXEC);
int n;
if (fd < 0) {
log_dbg(ctx, "failed to open %s: %s\n", path, strerror(errno));
return -errno;
}
n = read(fd, buf, SYSFS_ATTR_SIZE);
close(fd);
if (n < 0 || n >= SYSFS_ATTR_SIZE) {
buf[0] = 0;
log_dbg(ctx, "failed to read %s: %s\n", path, strerror(errno));
return -errno;
}
buf[n] = 0;
if (n && buf[n-1] == '\n')
buf[n-1] = 0;
return 0;
}
static int write_attr(struct log_ctx *ctx, const char *path,
const char *buf, int quiet)
{
int fd = open(path, O_WRONLY|O_CLOEXEC);
int n, len = strlen(buf) + 1, rc;
if (fd < 0) {
rc = -errno;
log_dbg(ctx, "failed to open %s: %s\n", path, strerror(errno));
return rc;
}
n = write(fd, buf, len);
rc = -errno;
close(fd);
if (n < len) {
if (!quiet)
log_dbg(ctx, "failed to write %s to %s: %s\n", buf, path,
strerror(errno));
return rc;
}
return 0;
}
int __sysfs_write_attr(struct log_ctx *ctx, const char *path,
const char *buf)
{
return write_attr(ctx, path, buf, 0);
}
int __sysfs_write_attr_quiet(struct log_ctx *ctx, const char *path,
const char *buf)
{
return write_attr(ctx, path, buf, 1);
}
int __sysfs_device_parse(struct log_ctx *ctx, const char *base_path,
const char *dev_name, void *parent, add_dev_fn add_dev)
{
int add_errors = 0;
struct dirent *de;
DIR *dir;
log_dbg(ctx, "base: '%s' dev: '%s'\n", base_path, dev_name);
dir = opendir(base_path);
if (!dir) {
log_dbg(ctx, "no \"%s\" devices found\n", dev_name);
return -ENODEV;
}
while ((de = readdir(dir)) != NULL) {
char *dev_path;
char fmt[20];
void *dev;
int id;
sprintf(fmt, "%s%%d", dev_name);
if (de->d_ino == 0)
continue;
if (sscanf(de->d_name, fmt, &id) != 1)
continue;
if (asprintf(&dev_path, "%s/%s", base_path, de->d_name) < 0) {
log_err(ctx, "%s%d: path allocation failure\n",
dev_name, id);
continue;
}
dev = add_dev(parent, id, dev_path);
free(dev_path);
if (!dev) {
add_errors++;
log_err(ctx, "%s%d: add_dev() failed\n",
dev_name, id);
} else
log_dbg(ctx, "%s%d: processed\n", dev_name, id);
}
closedir(dir);
return add_errors;
}
struct kmod_module *__util_modalias_to_module(struct kmod_ctx *kmod_ctx,
const char *alias,
struct log_ctx *log)
{
struct kmod_list *list = NULL;
struct kmod_module *mod;
int rc;
if (!kmod_ctx)
return NULL;
rc = kmod_module_new_from_lookup(kmod_ctx, alias, &list);
if (rc < 0 || !list) {
log_dbg(log,
"failed to find module for alias: %s %d list: %s\n",
alias, rc, list ? "populated" : "empty");
return NULL;
}
mod = kmod_module_get_module(list);
log_dbg(log, "alias: %s module: %s\n", alias,
kmod_module_get_name(mod));
kmod_module_unref_list(list);
return mod;
}
int __util_bind(const char *devname, struct kmod_module *module,
const char *bus, struct log_ctx *ctx)
{
DIR *dir;
int rc = 0;
char path[200];
struct dirent *de;
const int len = sizeof(path);
if (!devname) {
log_err(ctx, "missing devname\n");
return -EINVAL;
}
if (module) {
rc = kmod_module_probe_insert_module(module,
KMOD_PROBE_APPLY_BLACKLIST,
NULL, NULL, NULL, NULL);
if (rc < 0) {
log_err(ctx, "%s: insert failure: %d\n", __func__, rc);
return rc;
}
}
if (snprintf(path, len, "/sys/bus/%s/drivers", bus) >= len) {
log_err(ctx, "%s: buffer too small!\n", devname);
return -ENXIO;
}
dir = opendir(path);
if (!dir) {
log_err(ctx, "%s: opendir(\"%s\") failed\n", devname, path);
return -ENXIO;
}
while ((de = readdir(dir)) != NULL) {
char *drv_path;
if (de->d_ino == 0)
continue;
if (de->d_name[0] == '.')
continue;
if (asprintf(&drv_path, "%s/%s/bind", path, de->d_name) < 0) {
log_err(ctx, "%s: path allocation failure\n", devname);
continue;
}
rc = __sysfs_write_attr_quiet(ctx, drv_path, devname);
free(drv_path);
if (rc == 0)
break;
}
closedir(dir);
if (rc) {
log_dbg(ctx, "%s: bind failed\n", devname);
return -ENXIO;
}
return 0;
}
int __util_unbind(const char *devpath, struct log_ctx *ctx)
{
const char *devname = devpath_to_devname(devpath);
char path[200];
const int len = sizeof(path);
if (snprintf(path, len, "%s/driver/unbind", devpath) >= len) {
log_err(ctx, "%s: buffer too small!\n", devname);
return -ENXIO;
}
return __sysfs_write_attr(ctx, path, devname);
}
|