1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*
* Copyright Red Hat
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#include "syscalls.h"
#include <sys/prctl.h>
#include <unistd.h>
#include "permassert.h"
/**********************************************************************/
int logging_read(int fd,
void *buf,
size_t count,
const char *context,
ssize_t *bytes_read_ptr)
{
int result;
do {
result = check_io_errors(read(fd, buf, count),
__func__,
context,
bytes_read_ptr);
} while (result == EINTR);
return result;
}
/**********************************************************************/
static int logging_pread_interruptible(int fd,
void *buf,
size_t count,
off_t offset,
const char *context,
ssize_t *bytes_read_ptr)
{
return check_io_errors(pread(fd, buf, count, offset),
__func__,
context,
bytes_read_ptr);
}
/**********************************************************************/
int logging_pread(int fd,
void *buf,
size_t count,
off_t offset,
const char *context,
ssize_t *bytes_read_ptr)
{
int result;
do {
result = logging_pread_interruptible(fd, buf, count, offset,
context, bytes_read_ptr);
} while (result == EINTR);
return result;
}
/**********************************************************************/
int logging_write(int fd,
const void *buf,
size_t count,
const char *context,
ssize_t *bytes_written_ptr)
{
int result;
do {
result = check_io_errors(write(fd, buf, count),
__func__,
context,
bytes_written_ptr);
} while (result == EINTR);
return result;
}
/**********************************************************************/
static int logging_pwrite_interruptible(int fd,
const void *buf,
size_t count,
off_t offset,
const char *context,
ssize_t *bytes_written_ptr)
{
return check_io_errors(pwrite(fd, buf, count, offset),
__func__,
context,
bytes_written_ptr);
}
/**********************************************************************/
int logging_pwrite(int fd,
const void *buf,
size_t count,
off_t offset,
const char *context,
ssize_t *bytes_written_ptr)
{
int result;
do {
result = logging_pwrite_interruptible(fd, buf, count, offset,
context,
bytes_written_ptr);
} while (result == EINTR);
return result;
}
/**********************************************************************/
int logging_close(int fd, const char *context)
{
return check_system_call(close(fd), __func__, context);
}
/**********************************************************************/
int process_control(int option,
unsigned long arg2,
unsigned long arg3,
unsigned long arg4,
unsigned long arg5)
{
int result = prctl(option, arg2, arg3, arg4, arg5);
VDO_ASSERT_LOG_ONLY(result >= 0,
"option: %d, arg2: %lu, arg3: %lu, arg4: %lu, arg5: %lu",
option,
arg2,
arg3,
arg4,
arg5);
return errno;
}
|