class_api.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * lib/route/class_api.c Queueing Classes Module 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-2006 Thomas Graf <tgraf@suug.ch>
  10. */
  11. /**
  12. * @ingroup class
  13. * @defgroup class_api Class Modules
  14. * @{
  15. */
  16. #include <netlink-local.h>
  17. #include <netlink-tc.h>
  18. #include <netlink/netlink.h>
  19. #include <netlink/route/tc.h>
  20. #include <netlink/route/class.h>
  21. #include <netlink/route/class-modules.h>
  22. #include <netlink/utils.h>
  23. static struct rtnl_class_ops *class_ops_list;
  24. /**
  25. * @name Module API
  26. * @{
  27. */
  28. /**
  29. * Register a class module
  30. * @arg cops class module operations
  31. */
  32. int rtnl_class_register(struct rtnl_class_ops *cops)
  33. {
  34. struct rtnl_class_ops *o, **op;
  35. if (!cops->co_kind[0])
  36. BUG();
  37. for (op = &class_ops_list; (o = *op) != NULL; op = &o->co_next)
  38. if (!strcasecmp(cops->co_kind, o->co_kind))
  39. return nl_errno(EEXIST);
  40. cops->co_next = NULL;
  41. *op = cops;
  42. return 0;
  43. }
  44. /**
  45. * Unregister a class module
  46. * @arg cops class module operations
  47. */
  48. int rtnl_class_unregister(struct rtnl_class_ops *cops)
  49. {
  50. struct rtnl_class_ops *o, **op;
  51. for (op = &class_ops_list; (o = *op) != NULL; op = &o->co_next)
  52. if (!strcasecmp(cops->co_kind, o->co_kind))
  53. break;
  54. if (!o)
  55. return nl_errno(ENOENT);
  56. *op = cops->co_next;
  57. return 0;
  58. }
  59. struct rtnl_class_ops *__rtnl_class_lookup_ops(const char *kind)
  60. {
  61. struct rtnl_class_ops *cops;
  62. for (cops = class_ops_list; cops; cops = cops->co_next)
  63. if (!strcmp(kind, cops->co_kind))
  64. return cops;
  65. return NULL;
  66. }
  67. /**
  68. * Lookup class operations for a class object
  69. * @arg class Class object.
  70. *
  71. * @return Class operations or NULL if not found.
  72. */
  73. struct rtnl_class_ops *rtnl_class_lookup_ops(struct rtnl_class *class)
  74. {
  75. if (!class->c_ops)
  76. class->c_ops = __rtnl_class_lookup_ops(class->c_kind);
  77. return class->c_ops;
  78. }
  79. /** @} */
  80. /** @} */