blob: a95feda7b4db2ed8f82ee47acdb5b2ce33736b3c [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/*
2 * netlink/object.c Generic Cacheable Object
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation version 2.1
7 * of the License.
8 *
9 * Copyright (c) 2003-2012 Thomas Graf <tgraf@suug.ch>
10 */
11
12#ifndef NETLINK_OBJECT_H_
13#define NETLINK_OBJECT_H_
14
15#include <netlink/netlink.h>
16#include <netlink/utils.h>
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22struct nl_cache;
23struct nl_object;
24struct nl_object_ops;
25
26#define OBJ_CAST(ptr) ((struct nl_object *) (ptr))
27
28/* General */
29extern struct nl_object * nl_object_alloc(struct nl_object_ops *);
30extern int nl_object_alloc_name(const char *,
31 struct nl_object **);
32extern void nl_object_free(struct nl_object *);
33extern struct nl_object * nl_object_clone(struct nl_object *obj);
34extern int nl_object_update(struct nl_object *dst,
35 struct nl_object *src);
36extern void nl_object_get(struct nl_object *);
37extern void nl_object_put(struct nl_object *);
38extern int nl_object_shared(struct nl_object *);
39extern void nl_object_dump(struct nl_object *,
40 struct nl_dump_params *);
41extern void nl_object_dump_buf(struct nl_object *, char *, size_t);
42extern int nl_object_identical(struct nl_object *,
43 struct nl_object *);
44extern uint32_t nl_object_diff(struct nl_object *,
45 struct nl_object *);
46extern int nl_object_match_filter(struct nl_object *,
47 struct nl_object *);
48extern char * nl_object_attrs2str(struct nl_object *,
49 uint32_t attrs, char *buf,
50 size_t);
51extern char * nl_object_attr_list(struct nl_object *,
52 char *, size_t);
53extern void nl_object_keygen(struct nl_object *,
54 uint32_t *, uint32_t);
55
56/* Marks */
57extern void nl_object_mark(struct nl_object *);
58extern void nl_object_unmark(struct nl_object *);
59extern int nl_object_is_marked(struct nl_object *);
60
61/* Access Functions */
62extern int nl_object_get_refcnt(struct nl_object *);
63extern struct nl_cache * nl_object_get_cache(struct nl_object *);
64extern const char * nl_object_get_type(const struct nl_object *);
65extern int nl_object_get_msgtype(const struct nl_object *);
66struct nl_object_ops * nl_object_get_ops(const struct nl_object *);
67uint32_t nl_object_get_id_attrs(struct nl_object *obj);
68
69
70static inline void * nl_object_priv(struct nl_object *obj)
71{
72 return obj;
73}
74
75
76#ifdef __cplusplus
77}
78#endif
79
80#endif