Files
lightning/ccan/ccan/strmap/strmap.h
Rusty Russell ae71a87c40 ccan: update to latest htable fixes, and update gossmap to meet new assertions.
Updating ccan to stricter htable revealed we were trying to put
(void *)1 in the htable, which is forbidden:

```
topology: ccan/ccan/htable/htable.c:382: htable_add_: Assertion `entry_is_valid((uintptr_t)p)' failed.
topology: FATAL SIGNAL 6 (version 1358d7f)
0x55f30c689c34 send_backtrace
	common/daemon.c:33
0x55f30c689ce0 crashdump
	common/daemon.c:46
0x7f5d150fe51f ???
	./signal/../sysdeps/unix/sysv/linux/x86_64/libc_sigaction.c:0
0x7f5d15152828 __pthread_kill_implementation
	./nptl/pthread_kill.c:44
0x7f5d15152828 __pthread_kill_internal
	./nptl/pthread_kill.c:80
0x7f5d15152828 __GI___pthread_kill
	./nptl/pthread_kill.c:91
0x7f5d150fe475 __GI_raise
	../sysdeps/posix/raise.c:26
0x7f5d150e47b6 __GI_abort
	./stdlib/abort.c:79
0x7f5d150e46da __assert_fail_base
	./assert/assert.c:92
0x7f5d150f5e25 __GI___assert_fail
	./assert/assert.c:101
0x55f30c6adbe4 htable_add_
	ccan/ccan/htable/htable.c:382
0x55f30c65f303 chanidx_htable_add
	common/gossmap.c:35
0x55f30c6605ed new_channel
	common/gossmap.c:337
0x55f30c6609cf add_channel
	common/gossmap.c:425
0x55f30c661101 map_catchup
	common/gossmap.c:607
0x55f30c66221e gossmap_refresh
	common/gossmap.c:927
0x55f30c66e3e9 get_gossmap
	plugins/topology.c:27
0x55f30c66f939 listpeers_done
	plugins/topology.c:369
0x55f30c671f46 handle_rpc_reply
	plugins/libplugin.c:558
0x55f30c672a19 rpc_read_response_one
	plugins/libplugin.c:726
0x55f30c672b4f rpc_conn_read_response
	plugins/libplugin.c:746
0x55f30c6ae35e next_plan
	ccan/ccan/io/io.c:59
0x55f30c6aef93 do_plan
	ccan/ccan/io/io.c:407
0x55f30c6aefd5 io_ready
	ccan/ccan/io/io.c:417
0x55f30c6b1371 io_loop
	ccan/ccan/io/poll.c:453
0x55f30c67587c plugin_main
	plugins/libplugin.c:1559
0x55f30c6708eb main
	plugins/topology.c:701
0x7f5d150e5fcf __libc_start_call_main
	../sysdeps/nptl/libc_start_call_main.h:58
0x7f5d150e607c __libc_start_main_impl
	../csu/libc-start.c:409
0x55f30c65d894 ???
	???:0
0xffffffffffffffff ???
	???:0
```

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2022-07-10 20:48:53 -05:00

239 lines
6.5 KiB
C

#ifndef CCAN_STRMAP_H
#define CCAN_STRMAP_H
#include "config.h"
#include <ccan/tcon/tcon.h>
#include <ccan/typesafe_cb/typesafe_cb.h>
#include <stdlib.h>
#include <stdbool.h>
/**
* struct strmap - representation of a string map
*
* It's exposed here to allow you to embed it and so we can inline the
* trivial functions.
*/
struct strmap {
union {
struct node *n;
const char *s;
} u;
void *v;
};
/**
* STRMAP - declare a type-specific strmap
* @type: type for this map's values, or void * for any pointer.
*
* You use this to create your own typed strmap for a particular type.
* You can use an integer type, *but* remember you can't use "0" as a
* value!
*
* Example:
* STRMAP(int *) int_strmap;
* strmap_init(&int_strmap);
*/
#define STRMAP(type) \
TCON_WRAP(struct strmap, type canary)
/**
* strmap_init - initialize a string map (empty)
* @map: the typed strmap to initialize.
*
* For completeness; if you've arranged for it to be NULL already you don't
* need this.
*
* Example:
* STRMAP(int *) map;
*
* strmap_init(&map);
*/
#define strmap_init(map) strmap_init_(tcon_unwrap(map))
static inline void strmap_init_(struct strmap *map)
{
map->u.n = NULL;
}
/**
* strmap_empty - is this string map empty?
* @map: the typed strmap to check.
*
* Example:
* if (!strmap_empty(&map))
* abort();
*/
#define strmap_empty(map) strmap_empty_(tcon_unwrap(map))
static inline bool strmap_empty_(const struct strmap *map)
{
return map->u.n == NULL;
}
/**
* strmap_get - get a value from a string map
* @map: the typed strmap to search.
* @member: the string to search for (nul terminated)
*
* Returns the value, or NULL if it isn't in the map (and sets errno = ENOENT).
*
* Example:
* int *val = strmap_get(&map, "hello");
* if (val)
* printf("hello => %i\n", *val);
*/
#define strmap_get(map, member) \
tcon_cast((map), canary, strmap_get_(tcon_unwrap(map), (member)))
void *strmap_get_(const struct strmap *map, const char *member);
/**
* strmap_getn - get a value from a string map
* @map: the typed strmap to search.
* @member: the string to search for.
* @memberlen: the length of @member.
*
* Returns the value, or NULL if it isn't in the map (and sets errno = ENOENT).
*
* Example:
* val = strmap_getn(&map, "hello", 5);
* if (val)
* printf("hello => %i\n", *val);
*/
#define strmap_getn(map, member, n) \
tcon_cast((map), canary, strmap_getn_(tcon_unwrap(map), (member), (n)))
void *strmap_getn_(const struct strmap *map, const char *member, size_t n);
/**
* strmap_add - place a member in the string map.
* @map: the typed strmap to add to.
* @member: the string to place in the map.
* @v: the (non-NULL) value.
*
* This returns false if we run out of memory (errno = ENOMEM), or
* (more normally) if that string already appears in the map (EEXIST).
*
* Note that the pointer is placed in the map, the string is not copied. If
* you want a copy in the map, use strdup(). Similarly for the value.
*
* Example:
* val = malloc(sizeof *val);
* *val = 17;
* if (!strmap_add(&map, "goodbye", val))
* printf("goodbye was already in the map\n");
*/
#define strmap_add(map, member, value) \
strmap_add_(tcon_unwrap(tcon_check((map), canary, (value))), \
(member), (void *)(value))
bool strmap_add_(struct strmap *map, const char *member, const void *value);
/**
* strmap_del - remove a member from the string map.
* @map: the typed strmap to delete from.
* @member: the string to remove from the map.
* @valuep: the value (if non-NULL)
*
* This returns the string which was passed to strmap_map(), or NULL if
* it was not in the map (and sets errno = ENOENT).
*
* This means that if you allocated a string (eg. using strdup()), you
* can free it here. Similarly, the value is returned in @valuep if
* @valuep is not NULL.
*
* Example:
* if (!strmap_del(&map, "goodbye", NULL))
* printf("goodbye was not in the map?\n");
*/
#define strmap_del(map, member, valuep) \
strmap_del_(tcon_unwrap(tcon_check_ptr((map), canary, valuep)), \
(member), (void **)valuep)
char *strmap_del_(struct strmap *map, const char *member, void **valuep);
/**
* strmap_clear - remove every member from the map.
* @map: the typed strmap to clear.
*
* The map will be empty after this.
*
* Example:
* strmap_clear(&map);
*/
#define strmap_clear(map) strmap_clear_(tcon_unwrap(map))
void strmap_clear_(struct strmap *map);
/**
* strmap_iterate - ordered iteration over a map
* @map: the typed strmap to iterate through.
* @handle: the function to call.
* @arg: the argument for the function (types should match).
*
* @handle's prototype should be:
* bool @handle(const char *member, type value, typeof(arg) arg)
*
* If @handle returns false, the iteration will stop.
* You should not alter the map within the @handle function!
*
* Example:
* typedef STRMAP(int *) strmap_intp;
* static bool dump_some(const char *member, int *value, int *num)
* {
* // Only dump out num nodes.
* if (*(num--) == 0)
* return false;
* printf("%s=>%i\n", member, *value);
* return true;
* }
*
* static void dump_map(const strmap_intp *map)
* {
* int max = 100;
* strmap_iterate(map, dump_some, &max);
* if (max < 0)
* printf("... (truncated to 100 entries)\n");
* }
*/
#define strmap_iterate(map, handle, arg) \
strmap_iterate_(tcon_unwrap(map), \
typesafe_cb_cast(bool (*)(const char *, \
void *, void *), \
bool (*)(const char *, \
tcon_type((map), canary), \
__typeof__(arg)), (handle)), \
(arg))
void strmap_iterate_(const struct strmap *map,
bool (*handle)(const char *, void *, void *),
const void *data);
/**
* strmap_prefix - return a submap matching a prefix
* @map: the map.
* @prefix: the prefix.
*
* This returns a pointer into @map, so don't alter @map while using
* the return value. You can use strmap_iterate(), strmap_get() or
* strmap_empty() on the returned pointer.
*
* Example:
* static void dump_prefix(const strmap_intp *map,
* const char *prefix)
* {
* int max = 100;
* printf("Nodes with prefix %s:\n", prefix);
* strmap_iterate(strmap_prefix(map, prefix), dump_some, &max);
* if (max < 0)
* printf("... (truncated to 100 entries)\n");
* }
*/
#if HAVE_TYPEOF
#define strmap_prefix(map, prefix) \
((const __typeof__(map))strmap_prefix_(tcon_unwrap(map), (prefix)))
#else
#define strmap_prefix(map, prefix) \
((const void *)strmap_prefix_(tcon_unwrap(map), (prefix)))
#endif
const struct strmap *strmap_prefix_(const struct strmap *map,
const char *prefix);
#endif /* CCAN_STRMAP_H */