op-state-get.c 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * Linux WiMAX
  3. * Implement and export a method for getting a WiMAX device current state
  4. *
  5. * Copyright (C) 2009 Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
  6. *
  7. * Based on previous WiMAX core work by:
  8. * Copyright (C) 2008 Intel Corporation <linux-wimax@intel.com>
  9. * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License version
  13. * 2 as published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  23. * 02110-1301, USA.
  24. */
  25. #include <net/wimax.h>
  26. #include <net/genetlink.h>
  27. #include <linux/wimax.h>
  28. #include <linux/security.h>
  29. #include "wimax-internal.h"
  30. #define D_SUBMODULE op_state_get
  31. #include "debug-levels.h"
  32. static const
  33. struct nla_policy wimax_gnl_state_get_policy[WIMAX_GNL_ATTR_MAX + 1] = {
  34. [WIMAX_GNL_STGET_IFIDX] = {
  35. .type = NLA_U32,
  36. },
  37. };
  38. /*
  39. * Exporting to user space over generic netlink
  40. *
  41. * Parse the state get command from user space, return a combination
  42. * value that describe the current state.
  43. *
  44. * No attributes.
  45. */
  46. static
  47. int wimax_gnl_doit_state_get(struct sk_buff *skb, struct genl_info *info)
  48. {
  49. int result, ifindex;
  50. struct wimax_dev *wimax_dev;
  51. struct device *dev;
  52. d_fnstart(3, NULL, "(skb %p info %p)\n", skb, info);
  53. result = -ENODEV;
  54. if (info->attrs[WIMAX_GNL_STGET_IFIDX] == NULL) {
  55. printk(KERN_ERR "WIMAX_GNL_OP_STATE_GET: can't find IFIDX "
  56. "attribute\n");
  57. goto error_no_wimax_dev;
  58. }
  59. ifindex = nla_get_u32(info->attrs[WIMAX_GNL_STGET_IFIDX]);
  60. wimax_dev = wimax_dev_get_by_genl_info(info, ifindex);
  61. if (wimax_dev == NULL)
  62. goto error_no_wimax_dev;
  63. dev = wimax_dev_to_dev(wimax_dev);
  64. /* Execute the operation and send the result back to user space */
  65. result = wimax_state_get(wimax_dev);
  66. dev_put(wimax_dev->net_dev);
  67. error_no_wimax_dev:
  68. d_fnend(3, NULL, "(skb %p info %p) = %d\n", skb, info, result);
  69. return result;
  70. }
  71. struct genl_ops wimax_gnl_state_get = {
  72. .cmd = WIMAX_GNL_OP_STATE_GET,
  73. .flags = GENL_ADMIN_PERM,
  74. .policy = wimax_gnl_state_get_policy,
  75. .doit = wimax_gnl_doit_state_get,
  76. .dumpit = NULL,
  77. };