app_system.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * Asterisk -- A telephony toolkit for Linux.
  3. *
  4. * Execute arbitrary system commands
  5. *
  6. * Copyright (C) 1999, Mark Spencer
  7. *
  8. * Mark Spencer <markster@linux-support.net>
  9. *
  10. * This program is free software, distributed under the terms of
  11. * the GNU General Public License
  12. */
  13. #include <asterisk/lock.h>
  14. #include <asterisk/file.h>
  15. #include <asterisk/logger.h>
  16. #include <asterisk/channel.h>
  17. #include <asterisk/pbx.h>
  18. #include <asterisk/module.h>
  19. #include <stdlib.h>
  20. #include <unistd.h>
  21. #include <string.h>
  22. #include <stdlib.h>
  23. #include <errno.h>
  24. #include <pthread.h>
  25. static char *tdesc = "Generic System() application";
  26. static char *app = "System";
  27. static char *synopsis = "Execute a system command";
  28. static char *descrip =
  29. " System(command): Executes a command by using system(). Returns -1 on\n"
  30. "failure to execute the specified command. If the command itself executes\n"
  31. "but is in error, and if there exists a priority n + 101, where 'n' is the\n"
  32. "priority of the current instance, then the channel will be setup to\n"
  33. "continue at that priority level. Otherwise, System returns 0.\n";
  34. STANDARD_LOCAL_USER;
  35. LOCAL_USER_DECL;
  36. static int system_exec(struct ast_channel *chan, void *data)
  37. {
  38. int res=0;
  39. struct localuser *u;
  40. if (!data) {
  41. ast_log(LOG_WARNING, "System requires an argument(command)\n");
  42. return -1;
  43. }
  44. LOCAL_USER_ADD(u);
  45. /* Do our thing here */
  46. res = system((char *)data);
  47. if ((res < 0) && (errno != ECHILD)) {
  48. ast_log(LOG_WARNING, "Unable to execute '%s'\n", (char *)data);
  49. res = -1;
  50. } else if (res == 127) {
  51. ast_log(LOG_WARNING, "Unable to execute '%s'\n", (char *)data);
  52. res = -1;
  53. } else {
  54. if (res < 0)
  55. res = 0;
  56. if (res && ast_exists_extension(chan, chan->context, chan->exten, chan->priority + 101, chan->callerid))
  57. chan->priority+=100;
  58. res = 0;
  59. }
  60. LOCAL_USER_REMOVE(u);
  61. return res;
  62. }
  63. int unload_module(void)
  64. {
  65. STANDARD_HANGUP_LOCALUSERS;
  66. return ast_unregister_application(app);
  67. }
  68. int load_module(void)
  69. {
  70. return ast_register_application(app, system_exec, synopsis, descrip);
  71. }
  72. char *description(void)
  73. {
  74. return tdesc;
  75. }
  76. int usecount(void)
  77. {
  78. int res;
  79. STANDARD_USECOUNT(res);
  80. return res;
  81. }
  82. char *key()
  83. {
  84. return ASTERISK_GPL_KEY;
  85. }