]> git.proxmox.com Git - mirror_iproute2.git/blob - ip/ipmroute.c
drop unneeded include of syslog.h
[mirror_iproute2.git] / ip / ipmroute.c
1 /*
2 * ipmroute.c "ip mroute".
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: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 *
11 */
12
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <unistd.h>
16 #include <fcntl.h>
17 #include <inttypes.h>
18 #include <sys/ioctl.h>
19 #include <sys/socket.h>
20 #include <netinet/in.h>
21 #include <arpa/inet.h>
22 #include <string.h>
23
24 #include <linux/netdevice.h>
25 #include <linux/if.h>
26 #include <linux/if_arp.h>
27 #include <linux/sockios.h>
28
29 #include <rt_names.h>
30 #include "utils.h"
31 #include "ip_common.h"
32
33 static void usage(void) __attribute__((noreturn));
34
35 static void usage(void)
36 {
37 fprintf(stderr, "Usage: ip mroute show [ [ to ] PREFIX ] [ from PREFIX ] [ iif DEVICE ]\n");
38 fprintf(stderr, " [ table TABLE_ID ]\n");
39 fprintf(stderr, "TABLE_ID := [ local | main | default | all | NUMBER ]\n");
40 #if 0
41 fprintf(stderr, "Usage: ip mroute [ add | del ] DESTINATION from SOURCE [ iif DEVICE ] [ oif DEVICE ]\n");
42 #endif
43 exit(-1);
44 }
45
46 struct rtfilter {
47 int tb;
48 int af;
49 int iif;
50 inet_prefix mdst;
51 inet_prefix msrc;
52 } filter;
53
54 int print_mroute(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
55 {
56 FILE *fp = (FILE *)arg;
57 struct rtmsg *r = NLMSG_DATA(n);
58 int len = n->nlmsg_len;
59 struct rtattr *tb[RTA_MAX+1];
60 char obuf[256];
61
62 SPRINT_BUF(b1);
63 __u32 table;
64 int iif = 0;
65 int family;
66
67 if ((n->nlmsg_type != RTM_NEWROUTE &&
68 n->nlmsg_type != RTM_DELROUTE)) {
69 fprintf(stderr, "Not a multicast route: %08x %08x %08x\n",
70 n->nlmsg_len, n->nlmsg_type, n->nlmsg_flags);
71 return 0;
72 }
73 len -= NLMSG_LENGTH(sizeof(*r));
74 if (len < 0) {
75 fprintf(stderr, "BUG: wrong nlmsg len %d\n", len);
76 return -1;
77 }
78 if (r->rtm_type != RTN_MULTICAST) {
79 fprintf(stderr, "Not a multicast route (type: %s)\n",
80 rtnl_rtntype_n2a(r->rtm_type, b1, sizeof(b1)));
81 return 0;
82 }
83
84 parse_rtattr(tb, RTA_MAX, RTM_RTA(r), len);
85 table = rtm_get_table(r, tb);
86
87 if (filter.tb > 0 && filter.tb != table)
88 return 0;
89
90 if (tb[RTA_IIF])
91 iif = rta_getattr_u32(tb[RTA_IIF]);
92 if (filter.iif && filter.iif != iif)
93 return 0;
94
95 if (filter.af && filter.af != r->rtm_family)
96 return 0;
97
98 if (tb[RTA_DST] && filter.mdst.bitlen > 0) {
99 inet_prefix dst = { .family = r->rtm_family };
100
101 memcpy(&dst.data, RTA_DATA(tb[RTA_DST]), RTA_PAYLOAD(tb[RTA_DST]));
102 if (inet_addr_match(&dst, &filter.mdst, filter.mdst.bitlen))
103 return 0;
104 }
105
106 if (tb[RTA_SRC] && filter.msrc.bitlen > 0) {
107 inet_prefix src = { .family = r->rtm_family };
108
109 memcpy(&src.data, RTA_DATA(tb[RTA_SRC]), RTA_PAYLOAD(tb[RTA_SRC]));
110 if (inet_addr_match(&src, &filter.msrc, filter.msrc.bitlen))
111 return 0;
112 }
113
114 family = get_real_family(r->rtm_type, r->rtm_family);
115
116 if (n->nlmsg_type == RTM_DELROUTE)
117 fprintf(fp, "Deleted ");
118
119 if (tb[RTA_SRC])
120 len = snprintf(obuf, sizeof(obuf),
121 "(%s, ", rt_addr_n2a_rta(family, tb[RTA_SRC]));
122 else
123 len = sprintf(obuf, "(unknown, ");
124 if (tb[RTA_DST])
125 snprintf(obuf + len, sizeof(obuf) - len,
126 "%s)", rt_addr_n2a_rta(family, tb[RTA_DST]));
127 else
128 snprintf(obuf + len, sizeof(obuf) - len, "unknown) ");
129
130 fprintf(fp, "%-32s Iif: ", obuf);
131 if (iif)
132 fprintf(fp, "%-10s ", ll_index_to_name(iif));
133 else
134 fprintf(fp, "unresolved ");
135
136 if (tb[RTA_MULTIPATH]) {
137 struct rtnexthop *nh = RTA_DATA(tb[RTA_MULTIPATH]);
138 int first = 1;
139
140 len = RTA_PAYLOAD(tb[RTA_MULTIPATH]);
141
142 for (;;) {
143 if (len < sizeof(*nh))
144 break;
145 if (nh->rtnh_len > len)
146 break;
147
148 if (first) {
149 fprintf(fp, "Oifs: ");
150 first = 0;
151 }
152 fprintf(fp, "%s", ll_index_to_name(nh->rtnh_ifindex));
153 if (nh->rtnh_hops > 1)
154 fprintf(fp, "(ttl %d) ", nh->rtnh_hops);
155 else
156 fprintf(fp, " ");
157 len -= NLMSG_ALIGN(nh->rtnh_len);
158 nh = RTNH_NEXT(nh);
159 }
160 }
161 fprintf(fp, " State: %s",
162 r->rtm_flags & RTNH_F_UNRESOLVED ? "unresolved" : "resolved");
163 if (r->rtm_flags & RTNH_F_OFFLOAD)
164 fprintf(fp, " offload");
165 if (show_stats && tb[RTA_MFC_STATS]) {
166 struct rta_mfc_stats *mfcs = RTA_DATA(tb[RTA_MFC_STATS]);
167
168 fprintf(fp, "%s %"PRIu64" packets, %"PRIu64" bytes", _SL_,
169 (uint64_t)mfcs->mfcs_packets,
170 (uint64_t)mfcs->mfcs_bytes);
171 if (mfcs->mfcs_wrong_if)
172 fprintf(fp, ", %"PRIu64" arrived on wrong iif.",
173 (uint64_t)mfcs->mfcs_wrong_if);
174 }
175 if (show_stats && tb[RTA_EXPIRES]) {
176 struct timeval tv;
177
178 __jiffies_to_tv(&tv, rta_getattr_u64(tb[RTA_EXPIRES]));
179 fprintf(fp, ", Age %4i.%.2i", (int)tv.tv_sec,
180 (int)tv.tv_usec/10000);
181 }
182
183 if (table && (table != RT_TABLE_MAIN || show_details > 0) && !filter.tb)
184 fprintf(fp, " Table: %s",
185 rtnl_rttable_n2a(table, b1, sizeof(b1)));
186
187 fprintf(fp, "\n");
188 fflush(fp);
189 return 0;
190 }
191
192 void ipmroute_reset_filter(int ifindex)
193 {
194 memset(&filter, 0, sizeof(filter));
195 filter.mdst.bitlen = -1;
196 filter.msrc.bitlen = -1;
197 filter.iif = ifindex;
198 }
199
200 static int mroute_list(int argc, char **argv)
201 {
202 char *id = NULL;
203 int family;
204
205 ipmroute_reset_filter(0);
206 if (preferred_family == AF_UNSPEC)
207 family = AF_INET;
208 else
209 family = AF_INET6;
210 if (family == AF_INET) {
211 filter.af = RTNL_FAMILY_IPMR;
212 filter.tb = RT_TABLE_DEFAULT; /* for backward compatibility */
213 } else
214 filter.af = RTNL_FAMILY_IP6MR;
215
216 while (argc > 0) {
217 if (matches(*argv, "table") == 0) {
218 __u32 tid;
219
220 NEXT_ARG();
221 if (rtnl_rttable_a2n(&tid, *argv)) {
222 if (strcmp(*argv, "all") == 0) {
223 filter.tb = 0;
224 } else if (strcmp(*argv, "help") == 0) {
225 usage();
226 } else {
227 invarg("table id value is invalid\n", *argv);
228 }
229 } else
230 filter.tb = tid;
231 } else if (strcmp(*argv, "iif") == 0) {
232 NEXT_ARG();
233 id = *argv;
234 } else if (matches(*argv, "from") == 0) {
235 NEXT_ARG();
236 get_prefix(&filter.msrc, *argv, family);
237 } else {
238 if (strcmp(*argv, "to") == 0) {
239 NEXT_ARG();
240 }
241 if (matches(*argv, "help") == 0)
242 usage();
243 get_prefix(&filter.mdst, *argv, family);
244 }
245 argc--; argv++;
246 }
247
248 ll_init_map(&rth);
249
250 if (id) {
251 int idx;
252
253 if ((idx = ll_name_to_index(id)) == 0) {
254 fprintf(stderr, "Cannot find device \"%s\"\n", id);
255 return -1;
256 }
257 filter.iif = idx;
258 }
259
260 if (rtnl_wilddump_request(&rth, filter.af, RTM_GETROUTE) < 0) {
261 perror("Cannot send dump request");
262 return 1;
263 }
264
265 if (rtnl_dump_filter(&rth, print_mroute, stdout) < 0) {
266 fprintf(stderr, "Dump terminated\n");
267 exit(1);
268 }
269
270 exit(0);
271 }
272
273 int do_multiroute(int argc, char **argv)
274 {
275 if (argc < 1)
276 return mroute_list(0, NULL);
277 #if 0
278 if (matches(*argv, "add") == 0)
279 return mroute_modify(RTM_NEWADDR, argc-1, argv+1);
280 if (matches(*argv, "delete") == 0)
281 return mroute_modify(RTM_DELADDR, argc-1, argv+1);
282 if (matches(*argv, "get") == 0)
283 return mroute_get(argc-1, argv+1);
284 #endif
285 if (matches(*argv, "list") == 0 || matches(*argv, "show") == 0
286 || matches(*argv, "lst") == 0)
287 return mroute_list(argc-1, argv+1);
288 if (matches(*argv, "help") == 0)
289 usage();
290 fprintf(stderr, "Command \"%s\" is unknown, try \"ip mroute help\".\n", *argv);
291 exit(-1);
292 }