libnl  3.7.0
object.h
1 /* SPDX-License-Identifier: LGPL-2.1-only */
2 /*
3  * Copyright (c) 2003-2012 Thomas Graf <tgraf@suug.ch>
4  */
5 
6 #ifndef NETLINK_OBJECT_H_
7 #define NETLINK_OBJECT_H_
8 
9 #include <netlink/netlink.h>
10 #include <netlink/utils.h>
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 struct nl_cache;
17 struct nl_object;
18 struct nl_object_ops;
19 
20 #define OBJ_CAST(ptr) ((struct nl_object *) (ptr))
21 
22 /* General */
23 extern struct nl_object * nl_object_alloc(struct nl_object_ops *);
24 extern int nl_object_alloc_name(const char *,
25  struct nl_object **);
26 extern void nl_object_free(struct nl_object *);
27 extern struct nl_object * nl_object_clone(struct nl_object *obj);
28 extern int nl_object_update(struct nl_object *dst,
29  struct nl_object *src);
30 extern void nl_object_get(struct nl_object *);
31 extern void nl_object_put(struct nl_object *);
32 extern int nl_object_shared(struct nl_object *);
33 extern void nl_object_dump(struct nl_object *,
34  struct nl_dump_params *);
35 extern void nl_object_dump_buf(struct nl_object *, char *, size_t);
36 extern int nl_object_identical(struct nl_object *,
37  struct nl_object *);
38 extern uint32_t nl_object_diff(struct nl_object *,
39  struct nl_object *);
40 extern uint64_t nl_object_diff64(struct nl_object *,
41  struct nl_object *);
42 extern int nl_object_match_filter(struct nl_object *,
43  struct nl_object *);
44 extern char * nl_object_attrs2str(struct nl_object *,
45  uint32_t attrs, char *buf,
46  size_t);
47 extern char * nl_object_attr_list(struct nl_object *,
48  char *, size_t);
49 extern void nl_object_keygen(struct nl_object *,
50  uint32_t *, uint32_t);
51 
52 /* Marks */
53 extern void nl_object_mark(struct nl_object *);
54 extern void nl_object_unmark(struct nl_object *);
55 extern int nl_object_is_marked(struct nl_object *);
56 
57 /* Access Functions */
58 extern int nl_object_get_refcnt(struct nl_object *);
59 extern struct nl_cache * nl_object_get_cache(struct nl_object *);
60 extern const char * nl_object_get_type(const struct nl_object *);
61 extern int nl_object_get_msgtype(const struct nl_object *);
62 struct nl_object_ops * nl_object_get_ops(const struct nl_object *);
63 uint32_t nl_object_get_id_attrs(struct nl_object *obj);
64 
65 
66 static inline void * nl_object_priv(struct nl_object *obj)
67 {
68  return obj;
69 }
70 
71 
72 #ifdef __cplusplus
73 }
74 #endif
75 
76 #endif
int nl_object_alloc_name(const char *, struct nl_object **)
Allocate new object of kind specified by the name.
Definition: object.c:78
uint32_t nl_object_diff(struct nl_object *, struct nl_object *)
Compute 32-bit bitmask representing difference in attribute values.
Definition: object.c:388
struct nl_object_ops * nl_object_get_ops(const struct nl_object *)
Return object operations structure.
Definition: object.c:543
void nl_object_dump(struct nl_object *, struct nl_dump_params *)
Dump this object according to the specified parameters.
Definition: object.c:287
int nl_object_update(struct nl_object *dst, struct nl_object *src)
Merge a cacheable object.
Definition: object.c:153
int nl_object_get_msgtype(const struct nl_object *)
Return the netlink message type the object was derived from.
Definition: object.c:532
char * nl_object_attr_list(struct nl_object *, char *, size_t)
Return list of attributes present in an object.
Definition: object.c:452
char * nl_object_attrs2str(struct nl_object *, uint32_t attrs, char *buf, size_t)
Convert bitmask of attributes to a character string.
Definition: object.c:431
uint64_t nl_object_diff64(struct nl_object *, struct nl_object *)
Compute bitmask representing difference in attribute values.
Definition: object.c:364
uint32_t nl_object_get_id_attrs(struct nl_object *obj)
Return object id attribute mask.
Definition: object.c:554
int nl_object_get_refcnt(struct nl_object *)
Return number of references held.
Definition: object.c:491
int nl_object_shared(struct nl_object *)
Check whether this object is used by multiple users.
Definition: object.c:235
void nl_object_unmark(struct nl_object *)
Remove mark from object.
Definition: object.c:260
struct nl_object * nl_object_clone(struct nl_object *obj)
Allocate a new object and copy all data from an existing object.
Definition: object.c:104
void nl_object_put(struct nl_object *)
Release a reference from an object.
Definition: object.c:214
struct nl_object * nl_object_alloc(struct nl_object_ops *)
Allocate a new object of kind specified by the operations handle.
Definition: object.c:48
int nl_object_identical(struct nl_object *, struct nl_object *)
Check if the identifiers of two objects are identical.
Definition: object.c:312
void nl_object_get(struct nl_object *)
Acquire a reference on a object.
Definition: object.c:203
void nl_object_free(struct nl_object *)
Free a cacheable object.
Definition: object.c:169
struct nl_cache * nl_object_get_cache(struct nl_object *)
Return cache the object is associated with.
Definition: object.c:505
int nl_object_match_filter(struct nl_object *, struct nl_object *)
Match a filter against an object.
Definition: object.c:408
int nl_object_is_marked(struct nl_object *)
Return true if object is marked.
Definition: object.c:270
const char * nl_object_get_type(const struct nl_object *)
Return the object's type.
Definition: object.c:518
void nl_object_mark(struct nl_object *)
Add mark to object.
Definition: object.c:251
void nl_object_keygen(struct nl_object *, uint32_t *, uint32_t)
Generate object hash key.
Definition: object.c:465
Dumping parameters.
Definition: types.h:28