OSDN Git Service

(split) LDP: Restore and add Copyrights for draft pages
[linuxjm/LDP_man-pages.git] / draft / man2 / mprotect.2
1 .\" Copyright (C) 2007 Michael Kerrisk <mtk.manpages@gmail.com>
2 .\" and Copyright (C) 1995 Michael Shields <shields@tembel.org>.
3 .\"
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and author of this work.
24 .\" %%%LICENSE_END
25 .\"
26 .\" Modified 1996-10-22 by Eric S. Raymond <esr@thyrsus.com>
27 .\" Modified 1997-05-31 by Andries Brouwer <aeb@cwi.nl>
28 .\" Modified 2003-08-24 by Andries Brouwer <aeb@cwi.nl>
29 .\" Modified 2004-08-16 by Andi Kleen <ak@muc.de>
30 .\" 2007-06-02, mtk: Fairly substantial rewrites and additions, and
31 .\" a much improved example program.
32 .\" FIXME The following protection flags need documenting:
33 .\"         PROT_SEM
34 .\"         PROT_GROWSDOWN
35 .\"         PROT_GROWSUP
36 .\"         PROT_SAO (PowerPC)
37 .\"
38 .\"*******************************************************************
39 .\"
40 .\" This file was generated with po4a. Translate the source file.
41 .\"
42 .\"*******************************************************************
43 .\"
44 .\" Japanese Version Copyright (c) 1997 HANATAKA Shinya
45 .\"         all rights reserved.
46 .\" Translated 1997-06-01, HANATAKA Shinya <hanataka@abyss.rim.or.jp>
47 .\" Updated and revised 2003-10-24, Suzuki Takashi.
48 .\" Updated & Modified 2005-02-08, Yuichi SATO <ysato444@yahoo.co.jp>
49 .\" Updated & Modified 2005-10-15, Yuichi SATO
50 .\" Updated 2007-06-11, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>, LDP v2.54
51 .\"
52 .TH MPROTECT 2 2012\-08\-14 Linux "Linux Programmer's Manual"
53 .SH 名前
54 mprotect \- メモリ領域の保護を設定する
55 .SH 書式
56 .nf
57 \fB#include <sys/mman.h>\fP
58 .sp
59 \fBint mprotect(void *\fP\fIaddr\fP\fB, size_t \fP\fIlen\fP\fB, int \fP\fIprot\fP\fB);\fP
60 .fi
61 .SH 説明
62 \fBmprotect\fP()  は、区間 [\fIaddr\fP,\ \fIaddr\fP+\fIlen\fP\-1] のアドレス範囲を含む
63 呼び出し元のプロセスのメモリページのアクセス保護を変更する。 \fIaddr\fP はページ境界に一致していなければならない。
64
65 呼び出し元のプロセスがアクセス保護に違反するようなメモリアクセスを 行おうとすると、カーネルはシグナル \fBSIGSEGV\fP
66 をそのプロセスに対して生成する。
67 .PP
68 \fIprot\fP には、 \fBPROT_NONE\fP か、以下のリストの \fBPROT_NONE\fP 以外の値をビット毎の論理和 (bitwize\-or)
69 で指定する:
70 .TP  1.1i
71 \fBPROT_NONE\fP
72 そのメモリには全くアクセスできない。
73 .TP 
74 \fBPROT_READ\fP
75 そのメモリを読み取ることができる。
76 .TP 
77 \fBPROT_WRITE\fP
78 そのメモリを変更できる。
79 .TP 
80 \fBPROT_EXEC\fP
81 .\" FIXME
82 .\" Document PROT_GROWSUP and PROT_GROWSDOWN
83 そのメモリは実行可能である。
84 .SH 返り値
85 成功した場合、 \fBmprotect\fP()  は 0 を返す。エラーの場合は \-1 が返り、 \fIerrno\fP が適切に設定される。
86 .SH エラー
87 .TP 
88 \fBEACCES\fP
89 指定されたアクセスをメモリに設定することができない。 これは、例えば ファイルを読み取り専用で \fBmmap\fP(2)  しており、その領域に対して
90 \fBmprotect\fP()  を呼び出して \fBPROT_WRITE\fP に設定しようとした場合に発生する。
91 .TP 
92 \fBEINVAL\fP
93 .\" Or: both PROT_GROWSUP and PROT_GROWSDOWN were specified in 'prot'.
94 \fIaddr\fP が有効なポインタでないか、 システムのページサイズの倍数でない。
95 .TP 
96 \fBENOMEM\fP
97 カーネル内部の構造体を割り当てることができなかった。
98 .TP 
99 \fBENOMEM\fP
100 [\fIaddr\fP, \fIaddr\fP+\fIlen\fP\-1] という範囲のアドレスがプロセスのアドレス空間として不正であるか、
101 その範囲のアドレスがマップされていない 1 つ以上のページを指している (カーネル 2.4.19 より前では、この状況でエラー \fBEFAULT\fP
102 が間違って生成されていた)。
103 .SH 準拠
104 .\" SVr4 defines an additional error
105 .\" code EAGAIN. The SVr4 error conditions don't map neatly onto Linux's.
106 SVr4, POSIX.1\-2001.  POSIX では、 \fBmmap\fP(2)  経由で獲得していないメモリ領域に対して \fBmprotect\fP()
107 を行った場合の \fBmprotect\fP()  の動作は未定義であるとされている。
108 .SH 注意
109 Linux では、(カーネル vsyscall 領域以外の)  任意のプロセスアドレス空間に対して \fBmprotect\fP()
110 を呼び出すことが、常に許されている。 これは特に既存のコードマッピングを書き込み可能にするために使われる。
111
112 \fBPROT_EXEC\fP が \fBPROT_READ\fP と異なる影響を持つか否かは、アーキテクチャとカーネルのバージョンに依存する。 (i386
113 などの) いくつかのアーキテクチャでは、 \fBPROT_WRITE\fP をセットすると、暗黙のうちに \fBPROT_READ\fP がセットされる。
114
115 POSIX.1\-2001 では、 \fIprot\fP で指定されていないアクセスを許可する実装を認めている。 ただし、最低限、 \fBPROT_WRITE\fP
116 がセットされている場合にのみ書き込みアクセスが許可され、 \fBPROT_NONE\fP がセットされている場合にはアクセスは許可されない点だけは
117 満たす必要がある。
118 .SH 例
119 .\" sigaction.2 refers to this example
120 .PP
121 以下のプログラムは、メモリページを 4つ確保し、そのうち 3番目のページを 読み込み専用に設定する。その後で、確保した領域のアドレスの小さい方から
122 大きな方に向かって順番にバイト値を変更するループを実行する。
123
124 プログラムを実行した場合の一例を以下に示す。
125
126 .in +4n
127 .nf
128 $\fB ./a.out\fP
129 Start of region:        0x804c000
130 Got SIGSEGV at address: 0x804e000
131 .fi
132 .in
133 .SS プログラムのソース
134 \&
135 .nf
136 #include <unistd.h>
137 #include <signal.h>
138 #include <stdio.h>
139 #include <malloc.h>
140 #include <stdlib.h>
141 #include <errno.h>
142 #include <sys/mman.h>
143
144 #define handle_error(msg) \e
145     do { perror(msg); exit(EXIT_FAILURE); } while (0)
146
147 char *buffer;
148
149 static void
150 handler(int sig, siginfo_t *si, void *unused)
151 {
152     printf("Got SIGSEGV at address: 0x%lx\en",
153             (long) si\->si_addr);
154     exit(EXIT_FAILURE);
155 }
156
157 int
158 main(void)
159 {
160     char *p;
161     int pagesize;
162     struct sigaction sa;
163
164     sa.sa_flags = SA_SIGINFO;
165     sigemptyset(&sa.sa_mask);
166     sa.sa_sigaction = handler;
167     if (sigaction(SIGSEGV, &sa, NULL) == \-1)
168         handle_error("sigaction");
169
170     pagesize = sysconf(_SC_PAGE_SIZE);
171     if (pagesize == \-1)
172         handle_error("sysconf");
173
174     /* Allocate a buffer aligned on a page boundary;
175        initial protection is PROT_READ | PROT_WRITE */
176
177     buffer = memalign(pagesize, 4 * pagesize);
178     if (buffer == NULL)
179         handle_error("memalign");
180
181     printf("Start of region:        0x%lx\en", (long) buffer);
182
183     if (mprotect(buffer + pagesize * 2, pagesize,
184                 PROT_READ) == \-1)
185         handle_error("mprotect");
186
187     for (p = buffer ; ; )
188         *(p++) = \(aqa\(aq;
189
190     printf("Loop completed\en");     /* Should never happen */
191     exit(EXIT_SUCCESS);
192 }
193 .fi
194 .SH 関連項目
195 \fBmmap\fP(2), \fBsysconf\fP(3)
196 .SH この文書について
197 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.53 の一部
198 である。プロジェクトの説明とバグ報告に関する情報は
199 http://www.kernel.org/doc/man\-pages/ に書かれている。