summaryrefslogtreecommitdiff
path: root/lib/sysfs_bus.c
blob: c7b6036d26843f2642e2f5f8061eb6a0efe324dd (plain)
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/*
 * sysfs_bus.c
 *
 * Generic bus utility functions for libsysfs
 *
 * Copyright (C) 2003 International Business Machines, Inc.
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library 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
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
 */
#include "libsysfs.h"
#include "sysfs.h"

/**
 * sysfs_close_bus: close single bus
 * @bus: bus structure
 */
void sysfs_close_bus(struct sysfs_bus *bus)
{
	struct sysfs_device *curdev = NULL, *nextdev = NULL;
	struct sysfs_driver *curdrv = NULL, *nextdrv = NULL;

	if (bus != NULL) {
		if (bus->directory != NULL)
			sysfs_close_directory(bus->directory);
		for (curdev = bus->devices; curdev != NULL;
		     curdev = nextdev) {
			nextdev = curdev->next;
			sysfs_close_device(curdev);
		}
		for (curdrv = bus->drivers; curdrv != NULL;
		     curdrv = nextdrv) {
			nextdrv = curdrv->next;
			sysfs_close_driver(curdrv);
		}
		free(bus);
	}
}

/**
 * alloc_bus: mallocs new bus structure
 * returns sysfs_bus_bus struct or NULL
 */
static struct sysfs_bus *alloc_bus(void)
{
	return (struct sysfs_bus *)calloc(1, sizeof(struct sysfs_bus));
}

/**
 * open_bus_dir: opens up sysfs bus directory
 * returns sysfs_directory struct with success and NULL with error
 */
static struct sysfs_directory *open_bus_dir(const char *name)
{
	struct sysfs_directory *busdir = NULL, *cur = NULL, *next = NULL;
	char buspath[SYSFS_PATH_MAX];

	if (name == NULL) {
		errno = EINVAL;
		return NULL;
	}

	memset(buspath, 0, SYSFS_PATH_MAX);
	if ((sysfs_get_mnt_path(buspath, SYSFS_PATH_MAX)) != 0) {
		dprintf(stderr, "Sysfs not supported on this system\n");
		return NULL;
	}

	strcat(buspath, SYSFS_BUS_DIR);
	strcat(buspath, "/");
	strcat(buspath, name);
	busdir = sysfs_open_directory(buspath);
	if (busdir == NULL) {
		errno = EINVAL;
		dprintf(stderr,"Bus %s not supported on this system\n",
			name);
		return NULL;
	}
	if ((sysfs_read_directory(busdir)) != 0) {
		dprintf(stderr, "Error reading %s bus dir %s\n", name, 
			buspath);
		sysfs_close_directory(busdir);
		return NULL;
	}
	/* read in devices and drivers subdirs */
	for (cur = busdir->subdirs; cur != NULL; cur = next) {
		next = cur->next;
		if ((sysfs_read_directory(cur)) != 0)
			continue;
	}

	return busdir;
}

/**
 * add_dev_to_bus: adds a bus device to bus device list
 * @bus: bus to add the device
 * @dev: device to add
 */
static void add_dev_to_bus(struct sysfs_bus *bus, struct sysfs_device *dev)
{
	if (bus != NULL && dev != NULL) {
		dev->next = bus->devices;
		bus->devices = dev;
	}
}

/**
 * add_driver_to_bus: adds a bus driver to bus driver list
 * @bus: bus to add driver to
 * @driver: driver to add
 */
static void add_driver_to_bus(struct sysfs_bus *bus, 
				struct sysfs_driver *driver)
{
	if (bus != NULL && driver != NULL) {
		driver->next = bus->drivers;
		bus->drivers = driver;
	}
}

/**
 * get_all_bus_devices: gets all devices for bus
 * @bus: bus to get devices for
 * returns 0 with success and -1 with failure
 */
static int get_all_bus_devices(struct sysfs_bus *bus)
{
	struct sysfs_device *bdev = NULL;
	struct sysfs_directory *cur = NULL;
	struct sysfs_link *curl = NULL, *nextl = NULL;
	char dirname[SYSFS_NAME_LEN];

	if (bus == NULL || bus->directory == NULL) {
		errno = EINVAL;
		return -1;
	}
	for (cur = bus->directory->subdirs; cur != NULL; cur = cur->next) {
		memset(dirname, 0, SYSFS_NAME_LEN);
		if ((sysfs_get_name_from_path(cur->path, dirname,
		    SYSFS_NAME_LEN)) != 0)
			continue;
		if (strcmp(dirname, SYSFS_DEVICES_NAME) != 0)
			continue;
		for (curl = cur->links; curl != NULL; curl = nextl) {
			nextl = curl->next;
			bdev = sysfs_open_device(curl->target);
			if (bdev == NULL) {
				dprintf(stderr, "Error opening device at %s\n",
					curl->target);
				continue;
			}
			add_dev_to_bus(bus, bdev);
		}
	}
			
	return 0;
}

/**
 * get_all_bus_drivers: get all pci drivers
 * @bus: pci bus to add drivers to
 * returns 0 with success and -1 with error
 */
static int get_all_bus_drivers(struct sysfs_bus *bus)
{
	struct sysfs_driver *driver = NULL;
	struct sysfs_directory *cur = NULL, *next = NULL;
	struct sysfs_directory *cursub = NULL, *nextsub = NULL;
	char dirname[SYSFS_NAME_LEN];

	if (bus == NULL || bus->directory == NULL) {
		errno = EINVAL;
		return -1;
	}
	for (cur = bus->directory->subdirs; cur != NULL; cur = next) {
		next = cur->next;
		memset(dirname, 0, SYSFS_NAME_LEN);
		if ((sysfs_get_name_from_path(cur->path, dirname,
		    SYSFS_NAME_LEN)) != 0)
			continue;
		if (strcmp(dirname, SYSFS_DRIVERS_NAME) != 0)
			continue;
		for (cursub = cur->subdirs; cursub != NULL; cursub = nextsub) {
			nextsub = cursub->next;
			driver = sysfs_open_driver(cursub->path);
			if (driver == NULL) {
				dprintf(stderr, "Error opening driver at %s\n",
					cursub->path);
				continue;
			}
			add_driver_to_bus(bus, driver);
		}
	}
	
	return 0;
}

/**
 * match_bus_device_to_driver: returns 1 if device is bound to driver
 * @driver: driver to match
 * @busid: busid of device to match
 * returns 1 if found and 0 if not found
 */
static int match_bus_device_to_driver(struct sysfs_driver *driver, char *busid)
{
	struct sysfs_link *cur = NULL, *next = NULL;
	int found = 0;

	if (driver == NULL || driver->directory == NULL || busid == NULL) {
		errno = EINVAL;
		return found;
	}
	for (cur = driver->directory->links; cur != NULL && found == 0;
	     cur = next) {
		next = cur->next;
		if ((strcmp(cur->name, busid)) == 0)
			found++;
	}
	return found;
}

/**
 * link_bus_devices_to_drivers: goes through and links devices to drivers
 * @bus: bus to link
 */
static void link_bus_devices_to_drivers(struct sysfs_bus *bus)
{
	struct sysfs_device *dev = NULL, *nextdev = NULL;
	struct sysfs_driver *drv = NULL, *nextdrv = NULL;
	
	if (bus != NULL && bus->devices != NULL && bus->drivers != NULL) {
		for (dev = bus->devices; dev != NULL; dev = nextdev) {
			nextdev = dev->next;

			for (drv = bus->drivers; drv != NULL; drv = nextdrv) {
				nextdrv = drv->next;
				if ((match_bus_device_to_driver(drv, 
				    dev->bus_id)) != 0) {
					dev->driver = drv;
					drv->device = dev;
				}
			}
		}
	}
}

/**
 * sysfs_open_bus: opens specific bus and all its devices on system
 * returns sysfs_bus structure with success or NULL with error.
 */
struct sysfs_bus *sysfs_open_bus(const char *name)
{
	struct sysfs_bus *bus = NULL;
	struct sysfs_directory *busdir = NULL;

	if (name == NULL) {
		errno = EINVAL;
		return NULL;
	}

	bus = alloc_bus();
	if (bus == NULL) {
		perror("malloc");
		return NULL;
	}
	strcpy(bus->name, name);	
	busdir = open_bus_dir(name);
	if (busdir == NULL) {
		dprintf(stderr,"Invalid bus, %s not supported on this system\n",
			name);
		sysfs_close_bus(bus);
		return NULL;
	}
	bus->directory = busdir;
	if ((get_all_bus_devices(bus)) != 0) {
		dprintf(stderr, "Error reading %s bus devices\n", name);
		sysfs_close_bus(bus);
		return NULL;
	}
	if ((get_all_bus_drivers(bus)) != 0) {
		dprintf(stderr, "Error reading %s bus drivers\n", name);
		sysfs_close_bus(bus);
		return NULL;
	}
	link_bus_devices_to_drivers(bus);

	return bus;
}