aboutsummaryrefslogtreecommitdiff
path: root/ja_JP.eucJP/man/man9/copy.9
blob: 1aa11dd416a4235bfd3671a796f79bc7b57e9401 (plain) (blame)
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
.\"	%NetBSD: copy.9,v 1.2 1996/01/09 03:23:04 thorpej Exp %
.\"
.\" Copyright (c) 1996 Jason R. Thorpe.
.\" All rights reserved.
.\"
.\" This code is derived from software contributed by Kenneth Stailey.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\"    must display the following acknowledgement:
.\"	This product includes software developed for the NetBSD Project
.\"	by Jason R. Thorpe.
.\" 4. The name of the author may not be used to endorse or promote products
.\"    derived from this software without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
.\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
.\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
.\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
.\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" %FreeBSD: src/share/man/man9/copy.9,v 1.6.2.4 2001/08/17 13:08:54 ru Exp %
.\"
.\" $FreeBSD: doc/ja_JP.eucJP/man/man9/copy.9,v 1.4 2001/05/14 01:10:22 horikawa Exp $
.Dd January 7, 1996
.Dt COPY 9
.Os
.Sh 名称
.Nm copy ,
.Nm copyin ,
.Nm copyout ,
.Nm copystr ,
.Nm copyinstr
.\" .Nm copyinstr ,
.\" .Nm copyoutstr
.Nd カーネルコピー関数
.Sh 書式
.Fd #include <sys/types.h>
.Fd #include <sys/systm.h>
.Ft int
.Fn copyin "const void *uaddr" "void *kaddr" "size_t len"
.Ft int
.Fn copyout "const void *kaddr" "void *uaddr" "size_t len"
.Ft int
.Fn copystr "const void *kfaddr" "void *kdaddr" "size_t len" "size_t *done"
.Ft int
.Fn copyinstr "const void *uaddr" "void *kaddr" "size_t len" "size_t *done"
.\" .Ft int
.\" .Fn copyoutstr "const void *kaddr" "void *uaddr" "size_t len" "size_t *done"
.Sh 解説
.Nm
関数群は連続したデータをあるアドレスから
別のアドレスへコピーするようデザインされています。
.Fn copystr
以外の関数は、ユーザー空間からカーネル空間へ、
あるいは反対向きにデータをコピーします。
.Pp
.Nm
関数群は以下の機能を提供します。
.Bl -tag -width "copyoutstr()"
.It Fn copyin
ユーザー空間のアドレス
.Pa uaddr
からカーネル空間のアドレス
.Pa kaddr
へ
.Pa len
バイトのデータをコピーします。
.It Fn copyout
カーネル空間のアドレス
.Pa kaddr
からユーザー空間のアドレス
.Pa uaddr
へ
.Pa len
バイトのデータをコピーします。
.It Fn copystr
カーネル空間のアドレス
.Pa kfaddr
からカーネル空間のアドレス
.Pa kdaddr
へヌル文字で終端された最大
.Pa len
文字の文字列をコピーします。
末尾のヌル文字を含む実際にコピーされた文字数が
.Pa *done
に返されます。
.It Fn copyinstr
ユーザー空間のアドレス
.Pa uaddr
からカーネル空間のアドレス
.Pa kaddr
へヌル文字で終端された最大
.Pa len
文字の文字列をコピーします。
末尾のヌル文字を含む実際にコピーされた文字数が
.Pa *done
に返されます。
.\" .It Fn copyoutstr
.\" カーネル空間のアドレス
.\" .Pa kaddr
.\" からユーザー空間のアドレス
.\" .Pa uaddr
.\" へヌル文字で終端された最大
.\" .Pa len
.\" 文字の文字列をコピーします。
.\" 末尾のヌル文字を含む実際にコピーされた文字数が
.\" .Pa *done
.\" に返されます。
.El
.Sh 戻り値
それぞれの
.Nm
関数は成功した時に 0 を、不正なアドレスに遭遇した時に
.Er EFAULT
を返します。
さらに、
.Fn copystr
および
.Fn copyinstr
.\" 、
.\" .Fn copyoutstr
関数は文字列が
.Pa len
バイトよりも長い時に
.Er ENAMETOOLONG
を返します。
.Sh 関連項目
.Xr fetch 9 ,
.Xr store 9