cregit-Linux how code gets into the kernel

Release 4.14 drivers/base/map.c

Directory: drivers/base
/*
 *  linux/drivers/base/map.c
 *
 * (C) Copyright Al Viro 2002,2003
 *      Released under GPL v2.
 *
 * NOTE: data structure needs to be changed.  It works, but for large dev_t
 * it will be too slow.  It is isolated, though, so these changes will be
 * local to that file.
 */

#include <linux/module.h>
#include <linux/slab.h>
#include <linux/mutex.h>
#include <linux/kdev_t.h>
#include <linux/kobject.h>
#include <linux/kobj_map.h>


struct kobj_map {
	
struct probe {
		
struct probe *next;
		
dev_t dev;
		
unsigned long range;
		
struct module *owner;
		
kobj_probe_t *get;
		
int (*lock)(dev_t, void *);
		
void *data;
	
} *probes[255];
	
struct mutex *lock;
};


int kobj_map(struct kobj_map *domain, dev_t dev, unsigned long range, struct module *module, kobj_probe_t *probe, int (*lock)(dev_t, void *), void *data) { unsigned n = MAJOR(dev + range - 1) - MAJOR(dev) + 1; unsigned index = MAJOR(dev); unsigned i; struct probe *p; if (n > 255) n = 255; p = kmalloc_array(n, sizeof(struct probe), GFP_KERNEL); if (p == NULL) return -ENOMEM; for (i = 0; i < n; i++, p++) { p->owner = module; p->get = probe; p->lock = lock; p->dev = dev; p->range = range; p->data = data; } mutex_lock(domain->lock); for (i = 0, p -= n; i < n; i++, p++, index++) { struct probe **s = &domain->probes[index % 255]; while (*s && (*s)->range < range) s = &(*s)->next; p->next = *s; *s = p; } mutex_unlock(domain->lock); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Al Viro25397.31%133.33%
Jes Sorensen41.54%133.33%
Andrei Poenaru31.15%133.33%
Total260100.00%3100.00%


void kobj_unmap(struct kobj_map *domain, dev_t dev, unsigned long range) { unsigned n = MAJOR(dev + range - 1) - MAJOR(dev) + 1; unsigned index = MAJOR(dev); unsigned i; struct probe *found = NULL; if (n > 255) n = 255; mutex_lock(domain->lock); for (i = 0; i < n; i++, index++) { struct probe **s; for (s = &domain->probes[index % 255]; *s; s = &(*s)->next) { struct probe *p = *s; if (p->dev == dev && p->range == range) { *s = p->next; if (!found) found = p; break; } } } mutex_unlock(domain->lock); kfree(found); }

Contributors

PersonTokensPropCommitsCommitProp
Al Viro17397.74%150.00%
Jes Sorensen42.26%150.00%
Total177100.00%2100.00%


struct kobject *kobj_lookup(struct kobj_map *domain, dev_t dev, int *index) { struct kobject *kobj; struct probe *p; unsigned long best = ~0UL; retry: mutex_lock(domain->lock); for (p = domain->probes[MAJOR(dev) % 255]; p; p = p->next) { struct kobject *(*probe)(dev_t, int *, void *); struct module *owner; void *data; if (p->dev > dev || p->dev + p->range - 1 < dev) continue; if (p->range - 1 >= best) break; if (!try_module_get(p->owner)) continue; owner = p->owner; data = p->data; probe = p->get; best = p->range - 1; *index = dev - p->dev; if (p->lock && p->lock(dev, data) < 0) { module_put(owner); continue; } mutex_unlock(domain->lock); kobj = probe(dev, index, data); /* Currently ->owner protects _only_ ->probe() itself. */ module_put(owner); if (kobj) return kobj; goto retry; } mutex_unlock(domain->lock); return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Al Viro23696.72%133.33%
Jes Sorensen62.46%133.33%
Andi Kleen20.82%133.33%
Total244100.00%3100.00%


struct kobj_map *kobj_map_init(kobj_probe_t *base_probe, struct mutex *lock) { struct kobj_map *p = kmalloc(sizeof(struct kobj_map), GFP_KERNEL); struct probe *base = kzalloc(sizeof(*base), GFP_KERNEL); int i; if ((p == NULL) || (base == NULL)) { kfree(p); kfree(base); return NULL; } base->dev = 1; base->range = ~0; base->get = base_probe; for (i = 0; i < 255; i++) p->probes[i] = base; p->lock = lock; return p; }

Contributors

PersonTokensPropCommitsCommitProp
Al Viro9472.31%125.00%
Greg Kroah-Hartman2922.31%125.00%
Jes Sorensen43.08%125.00%
Jiri Slaby32.31%125.00%
Total130100.00%4100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Al Viro82793.24%116.67%
Greg Kroah-Hartman293.27%116.67%
Jes Sorensen232.59%116.67%
Andrei Poenaru30.34%116.67%
Jiri Slaby30.34%116.67%
Andi Kleen20.23%116.67%
Total887100.00%6100.00%
Directory: drivers/base
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.