]> git.ipfire.org Git - thirdparty/kmod.git/blob - TODO
Add call to check if resources are valid
[thirdparty/kmod.git] / TODO
1 Features:
2 =========
3
4 * config: configs that do not need to be matched by fnmatch() could be using a
5 vector instead of a list. This way we could search in it by calling
6 bsearch().
7
8 * index: drop the "open(), seek(), read()" implementation and use another one
9 with mmap(). When lookup() is called and the file is not mmaped, mmap it.
10
11 * create test-mock library to be LD_PRELOAD'ed before running the binaries
12 so we're able to create unit tests
13
14 * Add functions to dump configuration. Create a list with the config items
15 (blacklist, aliases, etc) or just dump to a fd?
16
17 * Add functions to list all modules known by modules.dep
18
19 * provide 1:1 compatibility with module-init-tools's modprobe
20 - dump configuration
21
22 * review API, maybe unify all of these setters:
23 - kmod_module_version_get_symbol()
24 - kmod_module_version_get_crc()
25 - kmod_module_symbol_get_symbol()
26 - kmod_module_symbol_get_crc()
27 - kmod_module_dependency_symbol_get_symbol()
28 - kmod_module_dependency_symbol_get_crc()
29 - kmod_module_versions_free_list()
30 - kmod_module_symbols_free_list()
31 - kmod_module_dependency_symbols_free_list()
32
33 * provide modules.archive, a cache file with all modules compressed
34 and a fast access. It's like a tar.gz, but with each entry
35 compressed as opposed to the whole tar compressed, easy to pick
36 individual entries, that is, more like .gz.tar. As zlib compression
37 does not store the uncompressed file size, this could provide
38 it. The file format should be something like:
39 MAGIC-ID
40 DIRECTORY-ENTRY-SIZE
41 DIRECTORY (hash-like format, points to file offset and size)
42 ENTRIES (each is a compressed module)
43 Helper binary to:
44 kmod-archive list
45 kmod-archive add path.ko
46 kmod-archive rm path.ko
47 kmod-archive get path.ko
48 kmod-archive exists path.ko
49
50 Known Bugs:
51 ===========
52
53
54 Things to be added/removed in kernel (check what is really needed):
55 ===================================================================
56
57 * list of currently loaded modules
58
59 * module's size should be available under /sys
60
61 * kill /proc/modules ?
62
63 Things that are different from module-init-tools on purpose (!TODO)
64 ===================================================================
65
66 modprobe
67 --------
68
69 * 'modprobe -l' was marked as deprecated and does not exist anymore
70
71 * 'modprobe -t' is gone, together with 'modprobe -l'
72
73 * there's and additional '--remove-dependencies' flags to kmod-modprobe so we
74 can remove modules depending on that one
75
76 * kmod-modprobe doesn't parse configuration files whose name don't end on
77 '.alias' or '.conf'. modprobe used to warn about these files.
78
79 depmod
80 ------
81
82 * there's no 'depmod -m' option: legacy modules.*map files are gone