OSDN Git Service

8d0ee4deda8fe07d6f33e380c2523002bb98ad64
[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 .TH MPROTECT 2 2012\-08\-14 Linux "Linux Programmer's Manual"
44 .SH 名前
45 mprotect \- メモリ領域の保護を設定する
46 .SH 書式
47 .nf
48 \fB#include <sys/mman.h>\fP
49 .sp
50 \fBint mprotect(void *\fP\fIaddr\fP\fB, size_t \fP\fIlen\fP\fB, int \fP\fIprot\fP\fB);\fP
51 .fi
52 .SH 説明
53 \fBmprotect\fP()  は、区間 [\fIaddr\fP,\ \fIaddr\fP+\fIlen\fP\-1] のアドレス範囲を含む
54 呼び出し元のプロセスのメモリページのアクセス保護を変更する。 \fIaddr\fP はページ境界に一致していなければならない。
55
56 呼び出し元のプロセスがアクセス保護に違反するようなメモリアクセスを 行おうとすると、カーネルはシグナル \fBSIGSEGV\fP
57 をそのプロセスに対して生成する。
58 .PP
59 \fIprot\fP には、 \fBPROT_NONE\fP か、以下のリストの \fBPROT_NONE\fP 以外の値をビット毎の論理和 (bitwize\-or)
60 で指定する:
61 .TP  1.1i
62 \fBPROT_NONE\fP
63 そのメモリには全くアクセスできない。
64 .TP 
65 \fBPROT_READ\fP
66 そのメモリを読み取ることができる。
67 .TP 
68 \fBPROT_WRITE\fP
69 そのメモリを変更できる。
70 .TP 
71 \fBPROT_EXEC\fP
72 .\" FIXME
73 .\" Document PROT_GROWSUP and PROT_GROWSDOWN
74 そのメモリは実行可能である。
75 .SH 返り値
76 成功した場合、 \fBmprotect\fP()  は 0 を返す。エラーの場合は \-1 が返り、 \fIerrno\fP が適切に設定される。
77 .SH エラー
78 .TP 
79 \fBEACCES\fP
80 指定されたアクセスをメモリに設定することができない。 これは、例えば ファイルを読み取り専用で \fBmmap\fP(2)  しており、その領域に対して
81 \fBmprotect\fP()  を呼び出して \fBPROT_WRITE\fP に設定しようとした場合に発生する。
82 .TP 
83 \fBEINVAL\fP
84 .\" Or: both PROT_GROWSUP and PROT_GROWSDOWN were specified in 'prot'.
85 \fIaddr\fP が有効なポインタでないか、 システムのページサイズの倍数でない。
86 .TP 
87 \fBENOMEM\fP
88 カーネル内部の構造体を割り当てることができなかった。
89 .TP 
90 \fBENOMEM\fP
91 [\fIaddr\fP, \fIaddr\fP+\fIlen\fP\-1] という範囲のアドレスがプロセスのアドレス空間として不正であるか、
92 その範囲のアドレスがマップされていない 1 つ以上のページを指している (カーネル 2.4.19 より前では、この状況でエラー \fBEFAULT\fP
93 が間違って生成されていた)。
94 .SH 準拠
95 .\" SVr4 defines an additional error
96 .\" code EAGAIN. The SVr4 error conditions don't map neatly onto Linux's.
97 SVr4, POSIX.1\-2001.  POSIX では、 \fBmmap\fP(2)  経由で獲得していないメモリ領域に対して \fBmprotect\fP()
98 を行った場合の \fBmprotect\fP()  の動作は未定義であるとされている。
99 .SH 注意
100 Linux では、(カーネル vsyscall 領域以外の)  任意のプロセスアドレス空間に対して \fBmprotect\fP()
101 を呼び出すことが、常に許されている。 これは特に既存のコードマッピングを書き込み可能にするために使われる。
102
103 \fBPROT_EXEC\fP が \fBPROT_READ\fP と異なる影響を持つか否かは、アーキテクチャとカーネルのバージョンに依存する。 (i386
104 などの) いくつかのアーキテクチャでは、 \fBPROT_WRITE\fP をセットすると、暗黙のうちに \fBPROT_READ\fP がセットされる。
105
106 POSIX.1\-2001 では、 \fIprot\fP で指定されていないアクセスを許可する実装を認めている。 ただし、最低限、 \fBPROT_WRITE\fP
107 がセットされている場合にのみ書き込みアクセスが許可され、 \fBPROT_NONE\fP がセットされている場合にはアクセスは許可されない点だけは
108 満たす必要がある。
109 .SH 例
110 .\" sigaction.2 refers to this example
111 .PP
112 以下のプログラムは、メモリページを 4つ確保し、そのうち 3番目のページを 読み込み専用に設定する。その後で、確保した領域のアドレスの小さい方から
113 大きな方に向かって順番にバイト値を変更するループを実行する。
114
115 プログラムを実行した場合の一例を以下に示す。
116
117 .in +4n
118 .nf
119 $\fB ./a.out\fP
120 Start of region:        0x804c000
121 Got SIGSEGV at address: 0x804e000
122 .fi
123 .in
124 .SS プログラムのソース
125 \&
126 .nf
127 #include <unistd.h>
128 #include <signal.h>
129 #include <stdio.h>
130 #include <malloc.h>
131 #include <stdlib.h>
132 #include <errno.h>
133 #include <sys/mman.h>
134
135 #define handle_error(msg) \e
136     do { perror(msg); exit(EXIT_FAILURE); } while (0)
137
138 char *buffer;
139
140 static void
141 handler(int sig, siginfo_t *si, void *unused)
142 {
143     printf("Got SIGSEGV at address: 0x%lx\en",
144             (long) si\->si_addr);
145     exit(EXIT_FAILURE);
146 }
147
148 int
149 main(void)
150 {
151     char *p;
152     int pagesize;
153     struct sigaction sa;
154
155     sa.sa_flags = SA_SIGINFO;
156     sigemptyset(&sa.sa_mask);
157     sa.sa_sigaction = handler;
158     if (sigaction(SIGSEGV, &sa, NULL) == \-1)
159         handle_error("sigaction");
160
161     pagesize = sysconf(_SC_PAGE_SIZE);
162     if (pagesize == \-1)
163         handle_error("sysconf");
164
165     /* Allocate a buffer aligned on a page boundary;
166        initial protection is PROT_READ | PROT_WRITE */
167
168     buffer = memalign(pagesize, 4 * pagesize);
169     if (buffer == NULL)
170         handle_error("memalign");
171
172     printf("Start of region:        0x%lx\en", (long) buffer);
173
174     if (mprotect(buffer + pagesize * 2, pagesize,
175                 PROT_READ) == \-1)
176         handle_error("mprotect");
177
178     for (p = buffer ; ; )
179         *(p++) = \(aqa\(aq;
180
181     printf("Loop completed\en");     /* Should never happen */
182     exit(EXIT_SUCCESS);
183 }
184 .fi
185 .SH 関連項目
186 \fBmmap\fP(2), \fBsysconf\fP(3)
187 .SH この文書について
188 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.52 の一部
189 である。プロジェクトの説明とバグ報告に関する情報は
190 http://www.kernel.org/doc/man\-pages/ に書かれている。