最近研究自动化测试,需要获取程序的运行状态及结果,下面是些参考资料。

原文地址:http://blog.csdn.net/ariesjzj/article/details/7226443

Linux下有功能强大ptrace,用于让父进程监视/修改/控制子进程的状态。Windows也提供了类似的接口,那就是Debuging API,用它可以编写用户级的调试器。

下面是一个例子,用以实现父进程创建并监视子进程运行状态。

  1. #include <stddef.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include <stdlib.h>
  5. #include <stdint.h>
  6. #include <assert.h>
  7. #include <windows.h>
  8. #define MAX_PARAM_LEN       4096
  9. int main( int argc, char ** argv )
  10. {
  11. int i, j = 0, len;
  12. char command_buf[MAX_PARAM_LEN];
  13. STARTUPINFO si;
  14. PROCESS_INFORMATION pi;
  15. DEBUG_EVENT de;
  16. BOOL stop = FALSE;
  17. ZeroMemory( &si, sizeof(si) );
  18. si.cb = sizeof(si);
  19. ZeroMemory( &pi, sizeof(pi) );
  20. if (argc<2) {
  21. printf("Usage: %s <app_name> [arguments ...]\n", argv[0]);
  22. return 0;
  23. }
  24. // Combine the module name and params into one string.
  25. for (i = 1; i < argc; ++i) {
  26. len = strlen(argv[i]);
  27. if (len >= MAX_PARAM_LEN - j - 1) {
  28. printf("buffer overflow\n");
  29. exit(-1);
  30. }
  31. j += _snprintf(command_buf + j, MAX_PARAM_LEN - j, "%s ", argv[i]);
  32. command_buf[j] = '\0';  // just for sure
  33. }
  34. if( !CreateProcess(NULL, command_buf, NULL, NULL, FALSE,
  35. DEBUG_ONLY_THIS_PROCESS, NULL, NULL, &si, &pi ) ) {
  36. printf( "CreateProcess failed (%d).\n", GetLastError() );
  37. exit(-1);
  38. }
  39. while (TRUE) {
  40. WaitForDebugEvent (&de, INFINITE);
  41. switch (de.dwDebugEventCode) {
  42. case EXCEPTION_DEBUG_EVENT:         /* exception */
  43. switch (de.u.Exception.ExceptionRecord.ExceptionCode) {
  44. case   EXCEPTION_INT_DIVIDE_BY_ZERO:    /* #DE */
  45. // Do what the parent process want to do when the child process gets #DE interrupt.
  46. TerminateProcess(pi.hProcess,1);
  47. break;
  48. case   EXCEPTION_BREAKPOINT:            /* #BP */
  49. // Do what the parent process want to do when the child process gets #BP interrupt.
  50. break;
  51. default:
  52. printf("Unknown Exception\n");
  53. break;
  54. }
  55. ContinueDebugEvent(de.dwProcessId,de.dwThreadId,DBG_EXCEPTION_HANDLED);
  56. continue;
  57. case CREATE_PROCESS_DEBUG_EVENT:        /* child process created */
  58. // Do what the parent process want to do when the child process was created.
  59. break;
  60. case EXIT_PROCESS_DEBUG_EVENT:          /* child process exits */
  61. stop = TRUE;
  62. // Do what the parent process want to do when the child process exits.
  63. break;
  64. default:
  65. printf("Unknown Event!\n");
  66. break;
  67. }
  68. if (TRUE == stop) {
  69. //printf("Process exit\n");
  70. break;
  71. }
  72. ContinueDebugEvent (de.dwProcessId, de.dwThreadId, DBG_CONTINUE);
  73. } // end of loop
  74. assert(stop);
  75. CloseHandle( pi.hProcess );
  76. CloseHandle( pi.hThread );
  77. return 0;
  78. }

程序参数为要监视的子进程及子进程的参数。注意一个正常的进程被创建出来后会先后收到CREATE_PROCESS_DEBUG_EVENT, EXCEPTION_DEBUG_EVENT中的EXCEPTION_BREAKPOINT和EXIT_PROCESS_DEBUG_EVENT。所以如果你不想子进程创建起来就出错,那就让处理断点的分支跳去执行ContinueDebugEvent(..., DBG_EXCEPTION_HANDLED)。

例子仅含框架,如要attach到已有进程请参见DebugActiveProcess,要修改子进程状态请参见RriteProcessMemory和WriteProcessMemory等函数。

一些参考资料:

Debugging API examples: http://www.debuginfo.com/examples/dbgexamples.html

Writing the Debugger's Main Loop: http://msdn.microsoft.com/en-us/library/windows/desktop/ms681675(v=vs.85).aspx

Using the Windows Debugging API: http://www.howzatt.demon.co.uk/articles/SimpleDebugger.html

Debugging Functions: http://msdn.microsoft.com/en-us/library/ms679303

Win32调试API:http://hi.baidu.com/combojiang/blog/item/efb56e8ff0ebbfebf11f3654.html

利用Win32 Debug API打造自己的Debugger: http://hi.baidu.com/olhack/blog/item/c1e896508250e86284352407.html

The Debugging Application Programming Interface: http://msdn.microsoft.com/en-us/library/ms809754.aspx

在主进程中捕获子进程的异常:http://blog.csdn.net/simbi/article/details/3705719

Windows Debugging API: http://my.safaribooksonline.com/book/networking/intrusion-detection/9780321446114/in-memory-fuzzing-automation/ch20lev1sec3

Windows下父进程监视子进程状态的更多相关文章

  1. Linux 进程--父进程查询子进程的退出状态

    僵尸进程 当一个子进程先于父进程结束运行时,它与其父进程之间的关联还会保持到父进程也正常地结束运行,或者父进程调用了wait才告终止. 子进程退出时,内核将子进程置为僵尸状态,这个进程称为僵尸进程,它 ...

  2. Linux下利用fork()创建子进程并使父进程等待子进程结束

    int status; pid_t t = fork(); if(t){     waitpid(t, &status, 0); }else{     system("vi temp ...

  3. Windows下的进程【一】

    什么是进程?进程就是一个正在运行的程序的实例,由两部分组成: 内核对象.操作系统用内核对象对进程进行管理,内核对象是操作系统保存进程统计信息的地方. 地址空间.其中包含所有可执行文件或DLL模块的代码 ...

  4. [转]Windows 下的进程间通讯及数据共享

    http://blog.codingnow.com/2005/10/interprocess_communications.html Windows 下有很多方法实现进程间通讯,比如用 socket, ...

  5. 父进程等待子进程结束 waitpid wait

    我们一直在强调一个概念就是进程是一个程序执行的实例,是内核在虚拟概念下创建的实体,它实例化的体现在用户态就是程序代码和代码使用的变量(存储空间),在内核态就是内核为我们每个进程所保存的数据结构(状态信 ...

  6. linux系统编程之进程(六):父进程查询子进程的退出,wait,waitpid

    本节目标: 僵进程 SIGCHLD wait waitpid 一,僵尸进程 当一个子进程先于父进程结束运行时,它与其父进程之间的关联还会保持到父进程也正常地结束运行,或者父进程调用了wait才告终止. ...

  7. PHP多进程学习(三)__代码案例来了解父进程与子进程的执行顺序

    pcntl_fork创建子进程成功的话,系统就有了2个进程,一个为父进程,一个为子进程,父进程和子进程都继续向下执行,子进程的id号为$pid(父进程会获取子进程的$pid也就是$pid不为0,而子进 ...

  8. Windows下tomcat进程监控批处理程序

    在Windows下tomcat进程监控批处理程序脚本如下: @echo off ::tomcat安装目录 set _tomcatDir=E:\myFiles\apache-tomcat-8.5.31 ...

  9. Windows下查看进程及结束进程命令[转]

    Windows下查看进程及结束进程命令 1)查看占用8080端口的进程号 >netstat –aon | findstr “8080” 结果:TCP    0.0.0.0:8080        ...

随机推荐

  1. c语言学习之基础知识点介绍(九):预处理指令和多文件开发

    一:预处理指令 /* 预处理指令: 作用:在程序编译之前做一些操作. 预处理命令写法的共同特点:都是以#号开头. 文件包含指令:#include 是一个文件包含命令. 作用:把某个文件内的内容读取出来 ...

  2. window远程连接linux

    一.字符界面连接Linux    1.直接使用window自带的telnet. 2.但现在Linux一般都不启用telnet,而是启用ssh.这样的话,window就要安装客户端来访问Linux了.这 ...

  3. Linq XML

    写得比较啰嗦,自己记载备用   1 public class XmlFunction   2     {   3         private static XDocument _doc = new ...

  4. 基于jq图片居中插件 [center]

    最近在做一个项目,大量的图片基于js进行缩放(图片放大镜),考虑用css要写许多hack,而已经基于jq了,干脆写个方法得了. 代码很简单,不用多讲但是很实用. $.fn.extend({ cente ...

  5. WPF DataGrid 行头小三角

    <DataTemplate x:Key="RowHeaderTemplate"> <StackPanel Orientation="Horizontal ...

  6. linux自定义开机启动服务

    转 http://www.cnblogs.com/jimeper/archive/2013/03/12/2955687.html 手工创建服务 1.在/etc/rc.d/init.d目录下创建shel ...

  7. python cookielib

    # HttpClient.py is written by [xqin]: https://github.com/xqin/SmartQQ-for-Raspberry-Piimport cookiel ...

  8. Uva_11427 Expect the Expected

    题目链接 题意: 你玩纸牌, 如果当天晚上你赢的局数比例 大于 p, 就去睡觉, 第二天继续. 如果小于等于p, 就去睡觉, 并且以后都不玩了. 每晚最多玩n局, 每局赢的概率为p , 求玩的天数的期 ...

  9. 掌握C++基础

    以下是笔者在ubuntu系统下编译运行通过的一些反应c++基础特性的例子,包括类,结构体,构造函数,析构函数,函数的重载,this指针,类的继承,虚函数,函数的覆盖和隐藏等.(由于格式问题代码中的乱码 ...

  10. JavaScript中url 传递参数(特殊字符)解决方法

    有些符号在URL中是不能直接传递的,如果要在URL中传递这些特殊符号,那么就要使用他们的编码了.下表中列出了一些URL特殊符号及编码 十六进制值1. + URL 中+号表示空格 %2B2. 空格 UR ...