Lucas De Marchi
3f1e970b5a
Revert "tools/kmod-depmod: fix aliasing warning"
...
This reverts commit f63fc9e606
. Wrong
author name. I'll apply it again later.
2012-01-06 10:44:45 -02:00
root
f63fc9e606
tools/kmod-depmod: fix aliasing warning
2012-01-06 10:39:39 -02:00
Dave Reisner
7f37491375
tools/modprobe: exit non-zero on module not found with --all
2012-01-06 02:33:58 -02:00
Dave Reisner
5f85a133f8
tools/modinfo: exit non-zero on module not found
2012-01-06 02:32:28 -02:00
Lucas De Marchi
b30a71b8e8
kmod 3
2012-01-05 08:16:28 -02:00
Lucas De Marchi
aa156c9860
tools: use basename in help message
2012-01-05 08:16:28 -02:00
Dave Reisner
4f17bb0bd2
libkmod/hash: check for NULL before freeing hash
2012-01-04 22:34:36 -02:00
Lucas De Marchi
b5b4d8e8a5
Add missing doc for function argument
2012-01-04 21:07:59 -02:00
Lucas De Marchi
56406fdb0a
kmod-depmod: demote messages to WRN when non-critical files are missing
2012-01-04 21:02:20 -02:00
Dave Reisner
b787b5693d
libkmod: Fix casing in error output
2012-01-04 10:59:49 -05:00
Dave Reisner
6369837707
tools: unify error verbiage and casing
...
Fix a typo and ensure that we always use "could not" instead of "Could
not" or the conjunction "couldn't".
2012-01-04 10:59:03 -05:00
Lucas De Marchi
8d75053eb7
build-sys: do not install kmod-* tools
2012-01-04 08:58:19 -02:00
Lucas De Marchi
3f63505812
file: use log facilities
...
Don't clutter stderr with messages that might be useful in the log.
2012-01-04 08:49:23 -02:00
Lucas De Marchi
c68e92f731
file: take a weakref to ctx
2012-01-04 08:49:15 -02:00
Lucas De Marchi
29b69c0b98
config: take a weakref to ctx
...
Commit "b6a4dfb config: save list of config paths with their timestamps"
removed the weakref to ctx. Add it back.
2012-01-04 08:49:10 -02:00
Lucas De Marchi
7749bedbf7
Add missing static const
2012-01-04 08:00:45 -02:00
Gustavo Sverzut Barbieri
3db5bf9d38
kmod-depmod: fix replacement of existing modules.
...
We cannot create a kmod_module for existing module name, it will fail
due existing in the hash table "modules_by_name".
To avoid it, we first delete the existing module, if lower priority,
then add the new one.
kmod_module_new_from_path() is called only when the former module was
deleted or does not exist.
2012-01-03 16:14:57 -02:00
Gustavo Sverzut Barbieri
026c7b448d
kmod-depmod: fix comparison of module priority.
...
This code was never tested, my bad!
* the prefix should be ignored, as it is not stored in cfg_search/override.
* baselen should not include '/'.
* search length should not include '\0'.
* override path should not include cfg->dirname prefix.
2012-01-03 16:10:17 -02:00
Gustavo Sverzut Barbieri
79b656faeb
utils/array: add array_remove_at()
...
remove array element at given position, will be used by depmod.
2012-01-03 15:58:24 -02:00
Gustavo Sverzut Barbieri
8ea02fe056
kmod-depmod: fix incorrect math finding out end of dirname.
2012-01-03 15:11:58 -02:00
Gustavo Sverzut Barbieri
5988652597
kmod-depmod: document --config/-C in help output.
2012-01-03 15:06:08 -02:00
Gustavo Sverzut Barbieri
b0bcadd0ae
kmod-depmod: add missing trailing \n to log messages.
2012-01-03 15:04:34 -02:00
Gustavo Sverzut Barbieri
599a032467
elf: zero *array when count is zero.
2012-01-03 14:53:15 -02:00
Gustavo Sverzut Barbieri
db5d14cf24
libkmod-file: refactor code to avoid ifdef mess.
...
Refactor code to use pointer to functions, avoiding the previous
Now comp_types defines a magic header to be checked (size and bytes),
with the associated load() and unload() operations. If a header
matches, their operations are used. Otherwise the regular file
operations (mmap/munmap) are used.
File descriptor close is managed by the common code if it's valid
(>=0). If some code steals the file descriptor (eg: gzopen), then they
must change file->fd to -1.
This way the code should be easier to extend and avoid bugs.
2012-01-03 14:25:49 -02:00
Gustavo Sverzut Barbieri
6717994157
utils/read_str_safe(): fix wrong behavior and bugs.
...
ouch, I did a mess in the original function, fix them:
* on errors (read() < 0), continue reading after the done bytes, not
at position 0.
* read buflen - 1 bytes, so there is always room to store the
trailing \0, as expected by user due behavior of snprintf(),
fgets() and others.
2012-01-03 14:22:05 -02:00
Lucas De Marchi
657722dd9d
TODO: add task for providing man page
2012-01-01 06:18:16 -02:00
Lucas De Marchi
51e873d1b9
Add test to check kmod_validate_resources
2012-01-01 06:18:16 -02:00
Lucas De Marchi
c4dc3ca8a2
Add call to check if resources are valid
2012-01-01 06:18:16 -02:00
Lucas De Marchi
9fd58f30bf
index: save timestamp of each loaded index
2012-01-01 06:18:16 -02:00
Lucas De Marchi
b6a4dfb1b4
config: save list of config paths with their timestamps
...
Save a list of config paths with their timestamps so they can be checked
later.
2012-01-01 06:18:01 -02:00
Lucas De Marchi
0b29ef6f59
util: add helper function to compare timestamps
2012-01-01 06:17:54 -02:00
Lucas De Marchi
d8a6c0ccb8
kmod-modprobe: mimic modprobe when removing deps with usecount=0
2012-01-01 06:13:09 -02:00
Lucas De Marchi
c9a144481d
Fix leak of kmod_module and fix code style
2012-01-01 06:12:59 -02:00
Lucas De Marchi
5a96c5f1d5
TODO: add list of things that are different on kmod
2012-01-01 06:12:00 -02:00
Dave Reisner
0e9bd2d1ca
kmodprobe: post-remove module deps with 0 refcnt
2011-12-31 18:21:00 -05:00
Dave Reisner
d98880ad5c
modprobe: use lighter access call instead of stat
2011-12-31 18:02:30 -05:00
Dave Reisner
b09668cf64
modprobe: remove --list option
...
This was marked as deprecated in m-i-t's modprobe in favor of find and
basename.
2011-12-31 16:51:40 -05:00
Dave Reisner
9070b117ec
libkmod-config: remove warning for skipped config files
...
conf_files_filter_out() already skips these files, but writes to the log
to warn that they'll be ignored in the future.
2011-12-31 19:30:26 -02:00
Lucas De Marchi
2f76fda259
Use last enum value instead of ARRAY_SIZE
2011-12-31 19:30:09 -02:00
Lucas De Marchi
4926cb501d
Do not call exported function for mod->name
...
Name is always available and we don't neet to call a exported function
to get it.
2011-12-31 11:21:52 -02:00
Lucas De Marchi
0d46743ca5
Move function to the right place
2011-12-31 11:15:52 -02:00
Lucas De Marchi
e47c604525
Ignore "already loaded" error in module_probe_insert_module()
...
It also fixes a leak in the error path.
2011-12-30 14:16:15 -02:00
Lucas De Marchi
bbf59327e3
Use errno instead of return value of init_module()
...
Return -errno instead of the value returned by init_module(). We need to
differentiate between the several errors that might occur, e.g. "module
already loaded", access denied, etc.
2011-12-30 14:13:33 -02:00
Leandro Pereira
1698456259
libkmod-util: getline_wrapped: return NULL when buffer allocation fails
2011-12-28 15:55:45 -02:00
Leandro Pereira
40ee8dadca
Do not forget parenthesis around if (streq(A, B)).
2011-12-28 15:54:38 -02:00
Lucas De Marchi
0c010fae10
Move libkmod-util.c to convenience util lib
...
Share more code between tools and libkmod. underscores() in kmod-depmod
can not use the same function as in the lib, so rename it.
2011-12-28 13:33:26 -02:00
Lucas De Marchi
6670c63344
Move array implementation from depmode to libkmod-util
2011-12-28 12:58:47 -02:00
Lucas De Marchi
f6cf14ce13
tools: kmod: bundle depmod together with the others
2011-12-27 19:56:33 -02:00
Lucas De Marchi
bcb812275e
Fix header guard
2011-12-27 19:53:38 -02:00
Leandro Pereira
4783d69e48
kmod tool: don't keep iterating when command has been executed
2011-12-27 19:46:44 -02:00