pjd
d08c53259e
If moving descriptor or binary data to an nvlist fails, we need to close the
...
descriptor or free the memory before returning.
Submitted by: Mariusz Zaborski <oshogbo@FreeBSD.org>
While here, protect errno, so it won't be overwritted by close(2) or free(3).
2015-01-30 09:44:29 +00:00
pjd
22607ea6a6
Fix problem on big endian systems introduced in r271579 - when we were
...
returning from handling a nested nvlist we were resetting big-endian flag.
Reported by: Kuleshov Aleksey @ yandex.ru
Tested by: Kuleshov Aleksey @ yandex.ru
2014-10-09 20:55:05 +00:00
pjd
094cca2b36
Don't use nvl in case of a failure.
...
Reported by: Coverity
CID: 1238922
2014-09-18 22:34:52 +00:00
pjd
4093472823
Use non-recursive algorithm for traversing nvlists. This also removes
...
the limit on number of nested nvlists.
Submitted by: Mariusz Zaborski
2014-09-14 09:30:09 +00:00
pjd
1c22c1352a
Fix double free().
...
Reported by: Coverity
Coverity CID: 1130048
2013-11-25 20:45:30 +00:00
pjd
c4ff8d28a9
Bring in libnv library for managing name/value pairs. The following types
...
are currently supported:
- NV_TYPE_NULL - only name, no data;
- NV_TYPE_BOOL - boolean (true or false);
- NV_TYPE_NUMBER - 64bit unsigned integer;
- NV_TYPE_STRING - C string;
- NV_TYPE_NVLIST - nested nvlist;
- NV_TYPE_DESCRIPTOR - file descriptor;
- NV_TYPE_BINARY - binary data.
For detailed documentation and examples see nv(3) manual page.
Sponsored by: The FreeBSD Foundation
2013-11-12 19:39:14 +00:00