]> git.proxmox.com Git - mirror_iproute2.git/blame - rdma/rdma.h
rdma: Allow external usage of compare string routine
[mirror_iproute2.git] / rdma / rdma.h
CommitLineData
74bd75c2
LR
1/*
2 * rdma.c RDMA tool
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Leon Romanovsky <leonro@mellanox.com>
10 */
11#ifndef _RDMA_TOOL_H_
12#define _RDMA_TOOL_H_
13
14#include <stdlib.h>
15#include <string.h>
16#include <errno.h>
17#include <getopt.h>
18#include <libmnl/libmnl.h>
19#include <rdma/rdma_netlink.h>
20#include <time.h>
21
22#include "list.h"
40df8263 23#include "utils.h"
ab6e2b7b 24#include "json_writer.h"
74bd75c2
LR
25
26#define pr_err(args...) fprintf(stderr, ##args)
27#define pr_out(args...) fprintf(stdout, ##args)
28
40df8263
LR
29#define RDMA_BITMAP_ENUM(name, bit_no) RDMA_BITMAP_##name = BIT(bit_no),
30#define RDMA_BITMAP_NAMES(name, bit_no) [bit_no] = #name,
31
1174be72
LR
32#define MAX_NUMBER_OF_FILTERS 64
33struct filters {
34 char name[32];
35 bool is_number;
36};
37
38struct filter_entry {
39 struct list_head list;
40 char *key;
41 char *value;
42};
43
74bd75c2
LR
44struct dev_map {
45 struct list_head list;
46 char *dev_name;
47 uint32_t num_ports;
48 uint32_t idx;
49};
50
51struct rd {
52 int argc;
53 char **argv;
54 char *filename;
55 bool show_details;
56 struct list_head dev_map_list;
40df8263
LR
57 uint32_t dev_idx;
58 uint32_t port_idx;
74bd75c2
LR
59 struct mnl_socket *nl;
60 struct nlmsghdr *nlh;
61 char *buff;
ab6e2b7b
LR
62 json_writer_t *jw;
63 bool json_output;
64 bool pretty_output;
1174be72 65 struct list_head filter_list;
74bd75c2
LR
66};
67
68struct rd_cmd {
69 const char *cmd;
70 int (*func)(struct rd *rd);
71};
72
73/*
74 * Parser interface
75 */
76bool rd_no_arg(struct rd *rd);
77void rd_arg_inc(struct rd *rd);
78
40df8263 79char *rd_argv(struct rd *rd);
40df8263 80
40df8263
LR
81/*
82 * Commands interface
83 */
84int cmd_dev(struct rd *rd);
85int cmd_link(struct rd *rd);
74bd75c2 86int rd_exec_cmd(struct rd *rd, const struct rd_cmd *c, const char *str);
8b92a2c9 87int rd_exec_dev(struct rd *rd, int (*cb)(struct rd *rd));
6416d1a0 88int rd_exec_link(struct rd *rd, int (*cb)(struct rd *rd), bool strict_port);
5fc17280 89void rd_free(struct rd *rd);
6e0de6e8 90int rd_set_arg_to_devname(struct rd *rd);
5f4892e2 91int rd_argc(struct rd *rd);
74bd75c2 92
684d8209
LR
93int strcmpx(const char *str1, const char *str2);
94
74bd75c2
LR
95/*
96 * Device manipulation
97 */
40df8263 98struct dev_map *dev_map_lookup(struct rd *rd, bool allow_port_index);
74bd75c2 99
1174be72
LR
100/*
101 * Filter manipulation
102 */
103int rd_build_filter(struct rd *rd, const struct filters valid_filters[]);
104bool rd_check_is_filtered(struct rd *rd, const char *key, uint32_t val);
105bool rd_check_is_string_filtered(struct rd *rd, const char *key, const char *val);
106bool rd_check_is_key_exist(struct rd *rd, const char *key);
74bd75c2
LR
107/*
108 * Netlink
109 */
110int rd_send_msg(struct rd *rd);
111int rd_recv_msg(struct rd *rd, mnl_cb_t callback, void *data, uint32_t seq);
112void rd_prepare_msg(struct rd *rd, uint32_t cmd, uint32_t *seq, uint16_t flags);
113int rd_dev_init_cb(const struct nlmsghdr *nlh, void *data);
114int rd_attr_cb(const struct nlattr *attr, void *data);
115#endif /* _RDMA_TOOL_H_ */