snapshot.c 6.81 KB
Newer Older
1 2 3 4 5
/*
 * Server-side snapshots
 *
 * Copyright (C) 1999 Alexandre Julliard
 *
6 7 8 9 10 11 12 13 14 15 16 17
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19
 *
20
 * FIXME: heap snapshots not implemented
21 22
 */

23 24 25
#include "config.h"
#include "wine/port.h"

26 27 28
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
29
#include <stdarg.h>
30

31 32
#include "ntstatus.h"
#define WIN32_NO_STATUS
33
#include "windef.h"
34
#include "winternl.h"
35 36 37 38

#include "handle.h"
#include "process.h"
#include "thread.h"
39
#include "request.h"
40 41 42 43 44


struct snapshot
{
    struct object             obj;           /* object header */
45
    struct process_snapshot  *processes;     /* processes snapshot */
46 47
    int                       process_count; /* count of processes */
    int                       process_pos;   /* current position in proc snapshot */
48 49 50
    struct thread_snapshot   *threads;       /* threads snapshot */
    int                       thread_count;  /* count of threads */
    int                       thread_pos;    /* current position in thread snapshot */
51 52 53 54 55 56 57
};

static void snapshot_dump( struct object *obj, int verbose );
static void snapshot_destroy( struct object *obj );

static const struct object_ops snapshot_ops =
{
58 59
    sizeof(struct snapshot),      /* size */
    snapshot_dump,                /* dump */
60
    no_get_type,                  /* get_type */
61 62 63 64
    no_add_queue,                 /* add_queue */
    NULL,                         /* remove_queue */
    NULL,                         /* signaled */
    NULL,                         /* satisfied */
65
    no_signal,                    /* signal */
66
    no_get_fd,                    /* get_fd */
67
    no_map_access,                /* map_access */
68 69
    default_get_sd,               /* get_sd */
    default_set_sd,               /* set_sd */
70
    no_lookup_name,               /* lookup_name */
71
    no_open_file,                 /* open_file */
72
    no_close_handle,              /* close_handle */
73
    snapshot_destroy              /* destroy */
74 75 76 77
};


/* create a new snapshot */
78
static struct snapshot *create_snapshot( unsigned int flags )
79 80
{
    struct snapshot *snapshot;
81

82
    if (!(snapshot = alloc_object( &snapshot_ops ))) return NULL;
83 84 85

    snapshot->process_pos = 0;
    snapshot->process_count = 0;
86
    if (flags & SNAP_PROCESS)
87 88 89 90
        snapshot->processes = process_snap( &snapshot->process_count );

    snapshot->thread_pos = 0;
    snapshot->thread_count = 0;
91
    if (flags & SNAP_THREAD)
92 93
        snapshot->threads = thread_snap( &snapshot->thread_count );

94
    return snapshot;
95 96 97
}

/* get the next process in the snapshot */
98
static int snapshot_next_process( struct snapshot *snapshot, struct next_process_reply *reply )
99 100
{
    struct process_snapshot *ptr;
101
    struct process_dll *exe_module;
102

103 104
    if (!snapshot->process_count)
    {
105
        set_error( STATUS_INVALID_PARAMETER );  /* FIXME */
106 107
        return 0;
    }
108
    if (snapshot->process_pos >= snapshot->process_count)
109
    {
110
        set_error( STATUS_NO_MORE_FILES );
111 112
        return 0;
    }
113
    ptr = &snapshot->processes[snapshot->process_pos++];
114 115
    reply->count    = ptr->count;
    reply->pid      = get_process_id( ptr->process );
116
    reply->ppid     = ptr->process->parent ? get_process_id( ptr->process->parent ) : 0;
117 118
    reply->threads  = ptr->threads;
    reply->priority = ptr->priority;
119
    reply->handles  = ptr->handles;
120
    reply->unix_pid = ptr->process->unix_pid;
121
    if ((exe_module = get_process_exe_module( ptr->process )) && exe_module->filename)
122
    {
123
        data_size_t len = min( exe_module->namelen, get_reply_max_size() );
124
        set_reply_data( exe_module->filename, len );
125
    }
126 127 128
    return 1;
}

129
/* get the next thread in the snapshot */
130
static int snapshot_next_thread( struct snapshot *snapshot, struct next_thread_reply *reply )
131 132 133 134 135 136 137 138
{
    struct thread_snapshot *ptr;

    if (!snapshot->thread_count)
    {
        set_error( STATUS_INVALID_PARAMETER );  /* FIXME */
        return 0;
    }
139
    if (snapshot->thread_pos >= snapshot->thread_count)
140 141 142 143 144
    {
        set_error( STATUS_NO_MORE_FILES );
        return 0;
    }
    ptr = &snapshot->threads[snapshot->thread_pos++];
145 146 147 148 149
    reply->count     = ptr->count;
    reply->pid       = get_process_id( ptr->thread->process );
    reply->tid       = get_thread_id( ptr->thread );
    reply->base_pri  = ptr->priority;
    reply->delta_pri = 0;  /* FIXME */
150 151 152
    return 1;
}

153 154 155 156
static void snapshot_dump( struct object *obj, int verbose )
{
    struct snapshot *snapshot = (struct snapshot *)obj;
    assert( obj->ops == &snapshot_ops );
157 158
    fprintf( stderr, "Snapshot: %d procs %d threads\n",
             snapshot->process_count, snapshot->thread_count );
159 160 161 162 163 164 165 166 167 168
}

static void snapshot_destroy( struct object *obj )
{
    int i;
    struct snapshot *snapshot = (struct snapshot *)obj;
    assert( obj->ops == &snapshot_ops );
    if (snapshot->process_count)
    {
        for (i = 0; i < snapshot->process_count; i++)
169 170 171 172 173 174 175 176
            release_object( snapshot->processes[i].process );
        free( snapshot->processes );
    }
    if (snapshot->thread_count)
    {
        for (i = 0; i < snapshot->thread_count; i++)
            release_object( snapshot->threads[i].thread );
        free( snapshot->threads );
177 178
    }
}
179 180 181 182

/* create a snapshot */
DECL_HANDLER(create_snapshot)
{
183
    struct snapshot *snapshot;
184

185
    reply->handle = 0;
186
    if ((snapshot = create_snapshot( req->flags )))
187
    {
188
        reply->handle = alloc_handle( current->process, snapshot, 0, req->attributes );
189
        release_object( snapshot );
190 191 192 193 194 195
    }
}

/* get the next process from a snapshot */
DECL_HANDLER(next_process)
{
196 197 198 199 200
    struct snapshot *snapshot;

    if ((snapshot = (struct snapshot *)get_handle_obj( current->process, req->handle,
                                                       0, &snapshot_ops )))
    {
201 202
        if (req->reset) snapshot->process_pos = 0;
        snapshot_next_process( snapshot, reply );
203 204
        release_object( snapshot );
    }
205
}
206 207 208 209 210 211 212 213 214

/* get the next thread from a snapshot */
DECL_HANDLER(next_thread)
{
    struct snapshot *snapshot;

    if ((snapshot = (struct snapshot *)get_handle_obj( current->process, req->handle,
                                                       0, &snapshot_ops )))
    {
215 216
        if (req->reset) snapshot->thread_pos = 0;
        snapshot_next_thread( snapshot, reply );
217 218 219
        release_object( snapshot );
    }
}