2012-05-27 14:32:27 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2014-01-11 23:07:45 +01:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2012, 2013, 2014.
|
2012-05-27 14:32:27 +02:00
|
|
|
|
2013-07-10 15:26:01 +02:00
|
|
|
This file is part of Sortix.
|
2012-05-27 14:32:27 +02:00
|
|
|
|
2013-07-10 15:26:01 +02:00
|
|
|
Sortix 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 3 of the License, or (at your option) any later
|
|
|
|
version.
|
2012-05-27 14:32:27 +02:00
|
|
|
|
2013-07-10 15:26:01 +02:00
|
|
|
Sortix 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.
|
2012-05-27 14:32:27 +02:00
|
|
|
|
2013-07-10 15:26:01 +02:00
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
Sortix. If not, see <http://www.gnu.org/licenses/>.
|
2012-05-27 14:32:27 +02:00
|
|
|
|
2012-08-08 00:19:44 +02:00
|
|
|
ioctx.cpp
|
|
|
|
The context for io operations: who made it, how should data be copied, etc.
|
2012-05-27 14:32:27 +02:00
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2012-08-08 00:19:44 +02:00
|
|
|
#include <sortix/kernel/copy.h>
|
2013-10-27 02:42:10 +02:00
|
|
|
#include <sortix/kernel/ioctx.h>
|
|
|
|
#include <sortix/kernel/kernel.h>
|
2013-05-13 00:41:30 +02:00
|
|
|
#include <sortix/kernel/process.h>
|
2012-05-27 14:32:27 +02:00
|
|
|
|
|
|
|
namespace Sortix {
|
|
|
|
|
2012-08-08 00:19:44 +02:00
|
|
|
void SetupUserIOCtx(ioctx_t* ctx)
|
2012-05-27 14:32:27 +02:00
|
|
|
{
|
2013-01-13 02:37:14 +01:00
|
|
|
Process* process = CurrentProcess();
|
|
|
|
ScopedLock lock(&process->idlock);
|
|
|
|
ctx->uid = ctx->auth_uid = process->uid;
|
|
|
|
ctx->gid = ctx->auth_gid = process->gid;
|
2012-08-08 00:19:44 +02:00
|
|
|
ctx->copy_to_dest = CopyToUser;
|
|
|
|
ctx->copy_from_src = CopyFromUser;
|
2014-01-11 23:07:45 +01:00
|
|
|
ctx->zero_dest = ZeroUser;
|
2013-03-31 17:18:42 +02:00
|
|
|
ctx->dflags = 0;
|
2012-08-08 00:19:44 +02:00
|
|
|
}
|
2012-05-27 14:32:27 +02:00
|
|
|
|
2012-08-08 00:19:44 +02:00
|
|
|
void SetupKernelIOCtx(ioctx_t* ctx)
|
|
|
|
{
|
2013-01-13 02:37:14 +01:00
|
|
|
Process* process = CurrentProcess();
|
|
|
|
ScopedLock lock(&process->idlock);
|
|
|
|
ctx->uid = ctx->auth_uid = process->uid;
|
|
|
|
ctx->gid = ctx->auth_gid = process->gid;
|
2012-08-08 00:19:44 +02:00
|
|
|
ctx->copy_to_dest = CopyToKernel;
|
|
|
|
ctx->copy_from_src = CopyFromKernel;
|
2014-01-11 23:07:45 +01:00
|
|
|
ctx->zero_dest = ZeroKernel;
|
2013-03-31 17:18:42 +02:00
|
|
|
ctx->dflags = 0;
|
2012-08-08 00:19:44 +02:00
|
|
|
}
|
2012-05-27 14:32:27 +02:00
|
|
|
|
|
|
|
} // namespace Sortix
|