| /* |
| * get_driver.c |
| * |
| * Utility to get details of the given driver |
| * |
| * Copyright (C) IBM Corp. 2003-2005 |
| * |
| * 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 version 2 of the License. |
| * |
| * 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. |
| * |
| * You should have received a copy of the GNU General Public License along |
| * with this program; if not, write to the Free Software Foundation, Inc., |
| * 675 Mass Ave, Cambridge, MA 02139, USA. |
| * |
| */ |
| |
| #include <stdio.h> |
| #include <stdlib.h> |
| #include <string.h> |
| |
| #include "libsysfs.h" |
| |
| static void print_usage(void) |
| { |
| fprintf(stdout, "Usage: get_driver [bus] [driver]\n"); |
| } |
| |
| int main(int argc, char *argv[]) |
| { |
| char *bus = NULL, path[SYSFS_PATH_MAX]; |
| struct sysfs_driver *driver = NULL; |
| struct sysfs_device *device = NULL; |
| struct dlist *devlist = NULL; |
| |
| if (argc != 3) { |
| print_usage(); |
| return 1; |
| } |
| |
| memset(path, 0, SYSFS_PATH_MAX); |
| if ((sysfs_get_mnt_path(path, SYSFS_PATH_MAX)) != 0) { |
| fprintf(stdout, "Sysfs not mounted?\n"); |
| return 1; |
| } |
| strcat(path, "/"); |
| strcat(path, SYSFS_BUS_NAME); |
| strcat(path, "/"); |
| strcat(path, argv[1]); |
| strcat(path, "/"); |
| strcat(path, SYSFS_DRIVERS_NAME); |
| strcat(path, "/"); |
| strcat(path, argv[2]); |
| driver = sysfs_open_driver_path(path); |
| if (driver == NULL) { |
| fprintf(stdout, "Driver %s not found\n", argv[1]); |
| free(bus); |
| return 1; |
| } |
| devlist = sysfs_get_driver_devices(driver); |
| if (devlist != NULL) { |
| fprintf(stdout, "%s is used by:\n", argv[2]); |
| dlist_for_each_data(devlist, device, struct sysfs_device) |
| fprintf(stdout, "\t\t%s\n", device->bus_id); |
| } else |
| fprintf(stdout, "%s is presently not used by any device\n", |
| argv[2]); |
| |
| fprintf(stdout, "driver %s is on bus %s\n", driver->name, driver->bus); |
| |
| struct sysfs_module *module = sysfs_get_driver_module(driver); |
| if (module) |
| fprintf(stdout, "%s is using the module %s\n", |
| driver->name, module->name); |
| |
| sysfs_close_driver(driver); |
| free(bus); |
| return 0; |
| } |
| |