api.c 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * lib/route/link/api.c Link Info API
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation version 2.1
  7. * of the License.
  8. *
  9. * Copyright (c) 2003-2008 Thomas Graf <tgraf@suug.ch>
  10. */
  11. /**
  12. * @ingroup link
  13. * @defgroup link_info Link Info API
  14. * @brief
  15. *
  16. * @par 1) Registering/Unregistering a new link info type
  17. * @code
  18. * static struct rtnl_link_info_ops vlan_info_ops = {
  19. * .io_name = "vlan",
  20. * .io_alloc = vlan_alloc,
  21. * .io_parse = vlan_parse,
  22. * .io_dump[NL_DUMP_BRIEF] = vlan_dump_brief,
  23. * .io_dump[NL_DUMP_FULL] = vlan_dump_full,
  24. * .io_free = vlan_free,
  25. * };
  26. *
  27. * static void __init vlan_init(void)
  28. * {
  29. * rtnl_link_register_info(&vlan_info_ops);
  30. * }
  31. *
  32. * static void __exit vlan_exit(void)
  33. * {
  34. * rtnl_link_unregister_info(&vlan_info_ops);
  35. * }
  36. * @endcode
  37. *
  38. * @{
  39. */
  40. #include <netlink-local.h>
  41. #include <netlink/netlink.h>
  42. #include <netlink/utils.h>
  43. #include <netlink/route/link.h>
  44. #include <netlink/route/link/info-api.h>
  45. static struct rtnl_link_info_ops *info_ops;
  46. struct rtnl_link_info_ops *rtnl_link_info_ops_lookup(const char *name)
  47. {
  48. struct rtnl_link_info_ops *ops;
  49. for (ops = info_ops; ops; ops = ops->io_next)
  50. if (!strcmp(ops->io_name, name))
  51. return ops;
  52. return NULL;
  53. }
  54. int rtnl_link_register_info(struct rtnl_link_info_ops *ops)
  55. {
  56. if (ops->io_name == NULL)
  57. return nl_error(EINVAL, "No name specified");
  58. if (rtnl_link_info_ops_lookup(ops->io_name))
  59. return nl_error(EEXIST, "Link info operations already exist");
  60. NL_DBG(1, "Registered link info operations %s\n", ops->io_name);
  61. ops->io_next = info_ops;
  62. info_ops = ops;
  63. return 0;
  64. }
  65. int rtnl_link_unregister_info(struct rtnl_link_info_ops *ops)
  66. {
  67. struct rtnl_link_info_ops *t, **tp;
  68. for (tp = &info_ops; (t=*tp) != NULL; tp = &t->io_next)
  69. if (t == ops)
  70. break;
  71. if (!t)
  72. return nl_error(ENOENT, "No such link info operations");
  73. if (t->io_refcnt > 0)
  74. return nl_error(EBUSY, "Info operations in use");
  75. NL_DBG(1, "Unregistered link info perations %s\n", ops->io_name);
  76. *tp = t->io_next;
  77. return 0;
  78. }
  79. /** @} */