liyujie
2025-08-28 786ff4f4ca2374bdd9177f2e24b503d43e7a3b93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
 * src/nl-route-get.c     Get Route Attributes
 *
 *    This library is free software; you can redistribute it and/or
 *    modify it under the terms of the GNU Lesser General Public
 *    License as published by the Free Software Foundation version 2.1
 *    of the License.
 *
 * Copyright (c) 2003-2009 Thomas Graf <tgraf@suug.ch>
 */
 
#include <netlink/cli/utils.h>
#include <netlink/cli/route.h>
#include <netlink/cli/link.h>
 
static void print_usage(void)
{
   printf("Usage: nl-route-get <addr>\n");
   exit(1);
}
 
static void parse_cb(struct nl_object *obj, void *arg)
{
   //struct rtnl_route *route = (struct rtnl_route *) obj;
   struct nl_dump_params params = {
       .dp_fd = stdout,
       .dp_type = NL_DUMP_DETAILS,
   };
 
   nl_object_dump(obj, &params);
}
 
static int cb(struct nl_msg *msg, void *arg)
{
   int err;
 
   if ((err = nl_msg_parse(msg, &parse_cb, NULL)) < 0)
       nl_cli_fatal(err, "Unable to parse object: %s", nl_geterror(err));
 
   return 0;
}
 
int main(int argc, char *argv[])
{
   struct nl_sock *sock;
   struct nl_cache *link_cache, *route_cache;
   struct nl_addr *dst;
   int err = 1;
 
   if (argc < 2 || !strcmp(argv[1], "-h"))
       print_usage();
 
   sock = nl_cli_alloc_socket();
   nl_cli_connect(sock, NETLINK_ROUTE);
   link_cache = nl_cli_link_alloc_cache(sock);
   route_cache = nl_cli_route_alloc_cache(sock, 0);
 
   dst = nl_cli_addr_parse(argv[1], AF_INET);
 
   {
       struct nl_msg *m;
       struct rtmsg rmsg = {
           .rtm_family = nl_addr_get_family(dst),
           .rtm_dst_len = nl_addr_get_prefixlen(dst),
       };
 
       m = nlmsg_alloc_simple(RTM_GETROUTE, 0);
       if (!m)
           nl_cli_fatal(ENOMEM, "out of memory");
       if (nlmsg_append(m, &rmsg, sizeof(rmsg), NLMSG_ALIGNTO) < 0)
           nl_cli_fatal(ENOMEM, "out of memory");
       if (nla_put_addr(m, RTA_DST, dst) < 0)
           nl_cli_fatal(ENOMEM, "out of memory");
 
       err = nl_send_auto_complete(sock, m);
       nlmsg_free(m);
       if (err < 0)
           nl_cli_fatal(err, "%s", nl_geterror(err));
 
       nl_socket_modify_cb(sock, NL_CB_VALID, NL_CB_CUSTOM, cb, NULL);
 
       if (nl_recvmsgs_default(sock) < 0)
           nl_cli_fatal(err, "%s", nl_geterror(err));
   }
 
   //nl_cache_dump(route_cache, &params);
 
   return 0;
}