br_ioctl.c 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. /*
  2. * Ioctl handler
  3. * Linux ethernet bridge
  4. *
  5. * Authors:
  6. * Lennert Buytenhek <buytenh@gnu.org>
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version
  11. * 2 of the License, or (at your option) any later version.
  12. */
  13. #include <linux/capability.h>
  14. #include <linux/kernel.h>
  15. #include <linux/if_bridge.h>
  16. #include <linux/netdevice.h>
  17. #include <linux/slab.h>
  18. #include <linux/times.h>
  19. #include <net/net_namespace.h>
  20. #include <asm/uaccess.h>
  21. #include "br_private.h"
  22. static int get_bridge_ifindices(struct net *net, int *indices, int num)
  23. {
  24. struct net_device *dev;
  25. int i = 0;
  26. rcu_read_lock();
  27. for_each_netdev_rcu(net, dev) {
  28. if (i >= num)
  29. break;
  30. if (dev->priv_flags & IFF_EBRIDGE)
  31. indices[i++] = dev->ifindex;
  32. }
  33. rcu_read_unlock();
  34. return i;
  35. }
  36. /* called with RTNL */
  37. static void get_port_ifindices(struct net_bridge *br, int *ifindices, int num)
  38. {
  39. struct net_bridge_port *p;
  40. list_for_each_entry(p, &br->port_list, list) {
  41. if (p->port_no < num)
  42. ifindices[p->port_no] = p->dev->ifindex;
  43. }
  44. }
  45. /*
  46. * Format up to a page worth of forwarding table entries
  47. * userbuf -- where to copy result
  48. * maxnum -- maximum number of entries desired
  49. * (limited to a page for sanity)
  50. * offset -- number of records to skip
  51. */
  52. static int get_fdb_entries(struct net_bridge *br, void __user *userbuf,
  53. unsigned long maxnum, unsigned long offset)
  54. {
  55. int num;
  56. void *buf;
  57. size_t size;
  58. /* Clamp size to PAGE_SIZE, test maxnum to avoid overflow */
  59. if (maxnum > PAGE_SIZE/sizeof(struct __fdb_entry))
  60. maxnum = PAGE_SIZE/sizeof(struct __fdb_entry);
  61. size = maxnum * sizeof(struct __fdb_entry);
  62. buf = kmalloc(size, GFP_USER);
  63. if (!buf)
  64. return -ENOMEM;
  65. num = br_fdb_fillbuf(br, buf, maxnum, offset);
  66. if (num > 0) {
  67. if (copy_to_user(userbuf, buf, num*sizeof(struct __fdb_entry)))
  68. num = -EFAULT;
  69. }
  70. kfree(buf);
  71. return num;
  72. }
  73. /* called with RTNL */
  74. static int add_del_if(struct net_bridge *br, int ifindex, int isadd)
  75. {
  76. struct net *net = dev_net(br->dev);
  77. struct net_device *dev;
  78. int ret;
  79. if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
  80. return -EPERM;
  81. dev = __dev_get_by_index(net, ifindex);
  82. if (dev == NULL)
  83. return -EINVAL;
  84. if (isadd)
  85. ret = br_add_if(br, dev);
  86. else
  87. ret = br_del_if(br, dev);
  88. return ret;
  89. }
  90. /*
  91. * Legacy ioctl's through SIOCDEVPRIVATE
  92. * This interface is deprecated because it was too difficult to
  93. * to do the translation for 32/64bit ioctl compatibility.
  94. */
  95. static int old_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  96. {
  97. struct net_bridge *br = netdev_priv(dev);
  98. unsigned long args[4];
  99. if (copy_from_user(args, rq->ifr_data, sizeof(args)))
  100. return -EFAULT;
  101. switch (args[0]) {
  102. case BRCTL_ADD_IF:
  103. case BRCTL_DEL_IF:
  104. return add_del_if(br, args[1], args[0] == BRCTL_ADD_IF);
  105. case BRCTL_GET_BRIDGE_INFO:
  106. {
  107. struct __bridge_info b;
  108. memset(&b, 0, sizeof(struct __bridge_info));
  109. rcu_read_lock();
  110. memcpy(&b.designated_root, &br->designated_root, 8);
  111. memcpy(&b.bridge_id, &br->bridge_id, 8);
  112. b.root_path_cost = br->root_path_cost;
  113. b.max_age = jiffies_to_clock_t(br->max_age);
  114. b.hello_time = jiffies_to_clock_t(br->hello_time);
  115. b.forward_delay = br->forward_delay;
  116. b.bridge_max_age = br->bridge_max_age;
  117. b.bridge_hello_time = br->bridge_hello_time;
  118. b.bridge_forward_delay = jiffies_to_clock_t(br->bridge_forward_delay);
  119. b.topology_change = br->topology_change;
  120. b.topology_change_detected = br->topology_change_detected;
  121. b.root_port = br->root_port;
  122. b.stp_enabled = (br->stp_enabled != BR_NO_STP);
  123. b.ageing_time = jiffies_to_clock_t(br->ageing_time);
  124. b.hello_timer_value = br_timer_value(&br->hello_timer);
  125. b.tcn_timer_value = br_timer_value(&br->tcn_timer);
  126. b.topology_change_timer_value = br_timer_value(&br->topology_change_timer);
  127. b.gc_timer_value = br_timer_value(&br->gc_timer);
  128. rcu_read_unlock();
  129. if (copy_to_user((void __user *)args[1], &b, sizeof(b)))
  130. return -EFAULT;
  131. return 0;
  132. }
  133. case BRCTL_GET_PORT_LIST:
  134. {
  135. int num, *indices;
  136. num = args[2];
  137. if (num < 0)
  138. return -EINVAL;
  139. if (num == 0)
  140. num = 256;
  141. if (num > BR_MAX_PORTS)
  142. num = BR_MAX_PORTS;
  143. indices = kcalloc(num, sizeof(int), GFP_KERNEL);
  144. if (indices == NULL)
  145. return -ENOMEM;
  146. get_port_ifindices(br, indices, num);
  147. if (copy_to_user((void __user *)args[1], indices, num*sizeof(int)))
  148. num = -EFAULT;
  149. kfree(indices);
  150. return num;
  151. }
  152. case BRCTL_SET_BRIDGE_FORWARD_DELAY:
  153. if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
  154. return -EPERM;
  155. return br_set_forward_delay(br, args[1]);
  156. case BRCTL_SET_BRIDGE_HELLO_TIME:
  157. if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
  158. return -EPERM;
  159. return br_set_hello_time(br, args[1]);
  160. case BRCTL_SET_BRIDGE_MAX_AGE:
  161. if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
  162. return -EPERM;
  163. return br_set_max_age(br, args[1]);
  164. case BRCTL_SET_AGEING_TIME:
  165. if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
  166. return -EPERM;
  167. return br_set_ageing_time(br, args[1]);
  168. case BRCTL_GET_PORT_INFO:
  169. {
  170. struct __port_info p;
  171. struct net_bridge_port *pt;
  172. rcu_read_lock();
  173. if ((pt = br_get_port(br, args[2])) == NULL) {
  174. rcu_read_unlock();
  175. return -EINVAL;
  176. }
  177. memset(&p, 0, sizeof(struct __port_info));
  178. memcpy(&p.designated_root, &pt->designated_root, 8);
  179. memcpy(&p.designated_bridge, &pt->designated_bridge, 8);
  180. p.port_id = pt->port_id;
  181. p.designated_port = pt->designated_port;
  182. p.path_cost = pt->path_cost;
  183. p.designated_cost = pt->designated_cost;
  184. p.state = pt->state;
  185. p.top_change_ack = pt->topology_change_ack;
  186. p.config_pending = pt->config_pending;
  187. p.message_age_timer_value = br_timer_value(&pt->message_age_timer);
  188. p.forward_delay_timer_value = br_timer_value(&pt->forward_delay_timer);
  189. p.hold_timer_value = br_timer_value(&pt->hold_timer);
  190. rcu_read_unlock();
  191. if (copy_to_user((void __user *)args[1], &p, sizeof(p)))
  192. return -EFAULT;
  193. return 0;
  194. }
  195. case BRCTL_SET_BRIDGE_STP_STATE:
  196. if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
  197. return -EPERM;
  198. br_stp_set_enabled(br, args[1]);
  199. return 0;
  200. case BRCTL_SET_BRIDGE_PRIORITY:
  201. if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
  202. return -EPERM;
  203. br_stp_set_bridge_priority(br, args[1]);
  204. return 0;
  205. case BRCTL_SET_PORT_PRIORITY:
  206. {
  207. struct net_bridge_port *p;
  208. int ret;
  209. if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
  210. return -EPERM;
  211. spin_lock_bh(&br->lock);
  212. if ((p = br_get_port(br, args[1])) == NULL)
  213. ret = -EINVAL;
  214. else
  215. ret = br_stp_set_port_priority(p, args[2]);
  216. spin_unlock_bh(&br->lock);
  217. return ret;
  218. }
  219. case BRCTL_SET_PATH_COST:
  220. {
  221. struct net_bridge_port *p;
  222. int ret;
  223. if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
  224. return -EPERM;
  225. spin_lock_bh(&br->lock);
  226. if ((p = br_get_port(br, args[1])) == NULL)
  227. ret = -EINVAL;
  228. else
  229. ret = br_stp_set_path_cost(p, args[2]);
  230. spin_unlock_bh(&br->lock);
  231. return ret;
  232. }
  233. case BRCTL_GET_FDB_ENTRIES:
  234. return get_fdb_entries(br, (void __user *)args[1],
  235. args[2], args[3]);
  236. }
  237. return -EOPNOTSUPP;
  238. }
  239. static int old_deviceless(struct net *net, void __user *uarg)
  240. {
  241. unsigned long args[3];
  242. if (copy_from_user(args, uarg, sizeof(args)))
  243. return -EFAULT;
  244. switch (args[0]) {
  245. case BRCTL_GET_VERSION:
  246. return BRCTL_VERSION;
  247. case BRCTL_GET_BRIDGES:
  248. {
  249. int *indices;
  250. int ret = 0;
  251. if (args[2] >= 2048)
  252. return -ENOMEM;
  253. indices = kcalloc(args[2], sizeof(int), GFP_KERNEL);
  254. if (indices == NULL)
  255. return -ENOMEM;
  256. args[2] = get_bridge_ifindices(net, indices, args[2]);
  257. ret = copy_to_user((void __user *)args[1], indices, args[2]*sizeof(int))
  258. ? -EFAULT : args[2];
  259. kfree(indices);
  260. return ret;
  261. }
  262. case BRCTL_ADD_BRIDGE:
  263. case BRCTL_DEL_BRIDGE:
  264. {
  265. char buf[IFNAMSIZ];
  266. if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
  267. return -EPERM;
  268. if (copy_from_user(buf, (void __user *)args[1], IFNAMSIZ))
  269. return -EFAULT;
  270. buf[IFNAMSIZ-1] = 0;
  271. if (args[0] == BRCTL_ADD_BRIDGE)
  272. return br_add_bridge(net, buf);
  273. return br_del_bridge(net, buf);
  274. }
  275. }
  276. return -EOPNOTSUPP;
  277. }
  278. int br_ioctl_deviceless_stub(struct net *net, unsigned int cmd, void __user *uarg)
  279. {
  280. switch (cmd) {
  281. case SIOCGIFBR:
  282. case SIOCSIFBR:
  283. return old_deviceless(net, uarg);
  284. case SIOCBRADDBR:
  285. case SIOCBRDELBR:
  286. {
  287. char buf[IFNAMSIZ];
  288. if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
  289. return -EPERM;
  290. if (copy_from_user(buf, uarg, IFNAMSIZ))
  291. return -EFAULT;
  292. buf[IFNAMSIZ-1] = 0;
  293. if (cmd == SIOCBRADDBR)
  294. return br_add_bridge(net, buf);
  295. return br_del_bridge(net, buf);
  296. }
  297. }
  298. return -EOPNOTSUPP;
  299. }
  300. int br_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  301. {
  302. struct net_bridge *br = netdev_priv(dev);
  303. switch (cmd) {
  304. case SIOCDEVPRIVATE:
  305. return old_dev_ioctl(dev, rq, cmd);
  306. case SIOCBRADDIF:
  307. case SIOCBRDELIF:
  308. return add_del_if(br, rq->ifr_ifindex, cmd == SIOCBRADDIF);
  309. }
  310. br_debug(br, "Bridge does not support ioctl 0x%x\n", cmd);
  311. return -EOPNOTSUPP;
  312. }