php_snmp.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Rasmus Lerdorf <rasmus@php.net> |
  16. | Mike Jackson <mhjack@tscnet.com> |
  17. | Steven Lawrance <slawrance@technologist.com> |
  18. | Harrie Hazewinkel <harrie@lisanza.net> |
  19. | Johann Hanne <jonny@nurfuerspam.de> |
  20. | Boris Lytockin <lytboris@gmail.com> |
  21. +----------------------------------------------------------------------+
  22. */
  23. #ifndef PHP_SNMP_H
  24. #define PHP_SNMP_H
  25. #define PHP_SNMP_VERSION PHP_VERSION
  26. #if HAVE_SNMP
  27. #ifndef DLEXPORT
  28. #define DLEXPORT
  29. #endif
  30. extern zend_module_entry snmp_module_entry;
  31. #define snmp_module_ptr &snmp_module_entry
  32. #ifdef ZTS
  33. #include "TSRM.h"
  34. #endif
  35. #include <net-snmp/net-snmp-config.h>
  36. #include <net-snmp/net-snmp-includes.h>
  37. PHP_MINIT_FUNCTION(snmp);
  38. PHP_MSHUTDOWN_FUNCTION(snmp);
  39. PHP_MINFO_FUNCTION(snmp);
  40. PHP_FUNCTION(snmpget);
  41. PHP_FUNCTION(snmpgetnext);
  42. PHP_FUNCTION(snmpwalk);
  43. PHP_FUNCTION(snmprealwalk);
  44. PHP_FUNCTION(snmpset);
  45. PHP_FUNCTION(snmp_get_quick_print);
  46. PHP_FUNCTION(snmp_set_quick_print);
  47. PHP_FUNCTION(snmp_set_enum_print);
  48. PHP_FUNCTION(snmp_set_oid_output_format);
  49. PHP_FUNCTION(snmp2_get);
  50. PHP_FUNCTION(snmp2_getnext);
  51. PHP_FUNCTION(snmp2_walk);
  52. PHP_FUNCTION(snmp2_real_walk);
  53. PHP_FUNCTION(snmp2_set);
  54. PHP_FUNCTION(snmp3_get);
  55. PHP_FUNCTION(snmp3_getnext);
  56. PHP_FUNCTION(snmp3_walk);
  57. PHP_FUNCTION(snmp3_real_walk);
  58. PHP_FUNCTION(snmp3_set);
  59. PHP_FUNCTION(snmp_set_valueretrieval);
  60. PHP_FUNCTION(snmp_get_valueretrieval);
  61. PHP_FUNCTION(snmp_read_mib);
  62. PHP_METHOD(SNMP, setSecurity);
  63. PHP_METHOD(SNMP, close);
  64. PHP_METHOD(SNMP, get);
  65. PHP_METHOD(SNMP, getnext);
  66. PHP_METHOD(SNMP, walk);
  67. PHP_METHOD(SNMP, set);
  68. PHP_METHOD(SNMP, getErrno);
  69. PHP_METHOD(SNMP, getError);
  70. typedef struct _php_snmp_object {
  71. struct snmp_session *session;
  72. int max_oids;
  73. int valueretrieval;
  74. int quick_print;
  75. int enum_print;
  76. int oid_output_format;
  77. int snmp_errno;
  78. int oid_increasing_check;
  79. int exceptions_enabled;
  80. char snmp_errstr[256];
  81. zend_object zo;
  82. } php_snmp_object;
  83. static inline php_snmp_object *php_snmp_fetch_object(zend_object *obj) {
  84. return (php_snmp_object *)((char*)(obj) - XtOffsetOf(php_snmp_object, zo));
  85. }
  86. #define Z_SNMP_P(zv) php_snmp_fetch_object(Z_OBJ_P((zv)))
  87. typedef int (*php_snmp_read_t)(php_snmp_object *snmp_object, zval *retval);
  88. typedef int (*php_snmp_write_t)(php_snmp_object *snmp_object, zval *newval);
  89. typedef struct _ptp_snmp_prop_handler {
  90. const char *name;
  91. size_t name_length;
  92. php_snmp_read_t read_func;
  93. php_snmp_write_t write_func;
  94. } php_snmp_prop_handler;
  95. typedef struct _snmpobjarg {
  96. char *oid;
  97. char type;
  98. char *value;
  99. oid name[MAX_OID_LEN];
  100. size_t name_length;
  101. } snmpobjarg;
  102. ZEND_BEGIN_MODULE_GLOBALS(snmp)
  103. int valueretrieval;
  104. ZEND_END_MODULE_GLOBALS(snmp)
  105. #ifdef ZTS
  106. #define SNMP_G(v) TSRMG(snmp_globals_id, zend_snmp_globals *, v)
  107. #else
  108. #define SNMP_G(v) (snmp_globals.v)
  109. #endif
  110. #define REGISTER_SNMP_CLASS_CONST_LONG(const_name, value) \
  111. zend_declare_class_constant_long(php_snmp_ce, const_name, sizeof(const_name)-1, (zend_long)value);
  112. #else
  113. #define snmp_module_ptr NULL
  114. #endif /* HAVE_SNMP */
  115. #define phpext_snmp_ptr snmp_module_ptr
  116. #endif /* PHP_SNMP_H */