mirror of
https://github.com/chromium/crashpad.git
synced 2025-01-15 01:57:58 +08:00
02adab2e80
Implements InitializeException() in ProcessSnapshot, and pulls it all together writing the dump in crash handler. Sample output at crash 00163eff624e653e on the staging server. Also adds a child-retrieve helper to koid_utilities. Bug: crashpad:196 Change-Id: I4bee7655e81e3243ac0ae896ff0caea7ce4acdad Reviewed-on: https://chromium-review.googlesource.com/1044771 Commit-Queue: Scott Graham <scottmg@chromium.org> Reviewed-by: Joshua Peraza <jperaza@chromium.org>
96 lines
3.9 KiB
C++
96 lines
3.9 KiB
C++
// Copyright 2018 The Crashpad Authors. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef CRASHPAD_UTIL_FUCHSIA_KOID_UTILITIES_H_
|
|
#define CRASHPAD_UTIL_FUCHSIA_KOID_UTILITIES_H_
|
|
|
|
#include <zircon/syscalls/object.h>
|
|
#include <zircon/types.h>
|
|
|
|
#include <vector>
|
|
|
|
#include "base/fuchsia/scoped_zx_handle.h"
|
|
|
|
namespace crashpad {
|
|
|
|
//! \brief Get a list of child koids for a parent handle.
|
|
//!
|
|
//! For example, the list of processes in jobs, or the list of threads in a
|
|
//! process.
|
|
//!
|
|
//! \param[in] parent The handle to the parent object.
|
|
//! \param[in] child_kind The type of children to retrieve from \a parent. Valid
|
|
//! values depend on the type of \a parent, but include
|
|
//! `ZX_INFO_JOB_CHILDREN` (child jobs of a job), `ZX_INFO_JOB_PROCESSES`
|
|
//! (child processes of a job), and `ZX_INFO_PROCESS_THREADS` (child threads
|
|
//! of a process).
|
|
//! \return A vector of the koids representing the child objects.
|
|
//!
|
|
//! \sa GetChildHandles
|
|
std::vector<zx_koid_t> GetChildKoids(zx_handle_t parent,
|
|
zx_object_info_topic_t child_kind);
|
|
|
|
//! \brief Get handles representing a list of child objects of a given parent.
|
|
//!
|
|
//! \param[in] parent The handle to the parent object.
|
|
//! \param[in] child_kind The type of children to retrieve from \a parent. Valid
|
|
//! values depend on the type of \a parent, but include
|
|
//! `ZX_INFO_JOB_CHILDREN` (child jobs of a job), `ZX_INFO_JOB_PROCESSES`
|
|
//! (child processes of a job), and `ZX_INFO_PROCESS_THREADS` (child threads
|
|
//! of a process).
|
|
//! \return The resulting list of handles corresponding to the child objects.
|
|
//!
|
|
//! \sa GetChildKoids
|
|
std::vector<base::ScopedZxHandle> GetChildHandles(
|
|
zx_handle_t parent,
|
|
zx_object_info_topic_t child_kind);
|
|
|
|
//! \brief Convert a list of koids that are all children of a particular object
|
|
//! into handles.
|
|
//!
|
|
//! \param[in] parent The parent object to which the koids belong.
|
|
//! \param[in] koids The list of koids.
|
|
//! \return The resulting list of handles corresponding to the koids. If an
|
|
//! element of \a koids is invalid or can't be retrieved, there will be a
|
|
//! corresponding `ZX_HANDLE_INVALID` entry in the return.
|
|
std::vector<base::ScopedZxHandle> GetHandlesForChildKoids(
|
|
zx_handle_t parent,
|
|
const std::vector<zx_koid_t>& koids);
|
|
|
|
//! \brief Retrieve the child of a parent handle, based on koid.
|
|
//!
|
|
//! \param[in] parent The parent object to which the child belongs.
|
|
//! \param[in] child_koid The koid of the child to retrieve.
|
|
//! \return A handle representing \a child_koid, or `ZX_HANDLE_INVALID` if the
|
|
//! handle could not be retrieved, in which case an error will be logged.
|
|
base::ScopedZxHandle GetChildHandleByKoid(zx_handle_t parent,
|
|
zx_koid_t child_koid);
|
|
|
|
//! \brief Gets a process handle given the process' koid.
|
|
//!
|
|
//! \param[in] koid The process id.
|
|
//! \return A zx_handle_t (owned by a base::ScopedZxHandle) for the process. If
|
|
//! the handle is invalid, an error will have been logged.
|
|
base::ScopedZxHandle GetProcessFromKoid(zx_koid_t koid);
|
|
|
|
//! \brief Retrieves the koid for a given object handle.
|
|
//!
|
|
//! \param[in] object The handle for which the koid is to be retrieved.
|
|
//! \return The koid of \a handle, or `ZX_HANDLE_INVALID` with an error logged.
|
|
zx_koid_t GetKoidForHandle(zx_handle_t object);
|
|
|
|
} // namespace crashpad
|
|
|
|
#endif // CRASHPAD_UTIL_FUCHSIA_KOID_UTILITIES_H_
|