aboutsummaryrefslogtreecommitdiff
path: root/ja_JP.eucJP/man/man9/VOP_CREATE.9
blob: a49f3d33abc2d642938523ffa800e45dcca34e03 (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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
.\" -*- nroff -*-
.\"
.\" Copyright (c) 1996 Doug Rabson
.\"
.\" All rights reserved.
.\"
.\" This program is free software.
.\"
.\" 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.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``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 DEVELOPERS 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/VOP_CREATE.9,v 1.9 1999/11/13 21:00:26 eivind Exp %
.\"
.Dd July 24, 1996
.Os
.Dt VOP_CREATE 9
.Sh 名称
.Nm VOP_CREATE ,
.Nm VOP_MKNOD ,
.Nm VOP_MKDIR ,
.Nm VOP_SYMLINK
.Nd ファイル、ソケット、FIFO、デバイス、ディレクトリまたはシンボリックリンクの作成
.Sh 書式
.Fd #include <sys/param.h>
.Fd #include <sys/vnode.h>
.Fd #include <sys/namei.h>
.Ft int
.Fn VOP_CREATE "struct vnode *dvp" "struct vnode **vpp" "struct componentname *cnp" "struct vattr *vap"
.Ft int
.Fn VOP_MKNOD "struct vnode *dvp" "struct vnode **vpp" "struct componentname *cnp" "struct vattr *vap"
.Ft int
.Fn VOP_MKDIR "struct vnode *dvp" "struct vnode **vpp" "struct componentname *cnp" "struct vattr *vap"
.Ft int
.Fn VOP_SYMLINK "struct vnode *dvp" "struct vnode **vpp" "struct componentname *cnp" "struct vattr *vap" "char *target"
.Sh 解説
これらのエントリポイントは、新しいファイル、ソケット、FIFO、デバイス、
ディレクトリまたはシンボリックリンクを、
指定されたディレクトリの中に作成します。
.Pp
引数は以下の通りです。
.Bl -tag -width target
.It Ar dvp
ディレクトリのロックされた vnode。
.It Ar vpp
作成結果のロックされた vnode が格納されるべき、変数のアドレス。
.It Ar cnp
生成された要素のパス名。
.It Ar vap
新しいオブジェクトの作成時に使用されるべき属性。
.It Ar target
シンボリックリンクの対象のパス名。
.El
.Pp
これらのエントリポイントは、オブジェクトの生成中に
.Xr VOP_LOOKUP 9
の後に呼び出されます。
通常、
.Xr VOP_LOOKUP 9
は
.Dv SAVENAME
フラグを
.Fa cnp->cn_flags
中に設定して、
.Fa cnp->cn_pnbuf
で指されるメモリを正当なままに保ちます。
ファイルの作成時にエラーが検出された場合には、このメモリは開放されます。
ファイルがうまく作成された場合には、
.Fa cnp
に
.Dv SAVESTART
フラグが指定されていなければ、開放されます。
.Sh ロック
ディレクトリ
.Fa dvp
は入る時にロックされ、戻る時にもロックされ続けてなければなりません。
呼び出しが成功の場合には、新しいオブジェクトがロックされて返されます。
.Sh 戻り値
成功時には、新しいオブジェクトの vnode が
.Fa *vpp
に置かれ、0 が返されます。
そうでない場合には、適切なエラーが返されます。
.Sh 疑似コード
.Bd -literal
int
vop_create(struct vnode *dvp,
	   struct vnode **vpp,
	   struct componentname *cnp
	   struct vattr *vap)
{
    int mode = MAKEIMODE(vap->va_type, vap->va_mode);
    struct vnode *vp;
    int error;

    *vpp = NULL;
    if ((mode & IFMT) == 0)
	mode |= IFREG;

    error = SOMEFS_VALLOC(dvp, mode, cnp->cn_cred, &vp);
    if (error) {
	free(cnp->cn_pnbuf, M_NAMEI);
	vput(dvp);
	return error;
    }

    /*
     * 新しい vnode のパーミッションを更新します。
     * これには、ディレクトリからのグループのコピーを含みます。
     */
    ...;

#ifdef QUOTA
    /*
     * できる限りクォータ情報をチェックします。
     */
    ...;
#endif

    /*
     * ディレクトリに新しい vnode を入れ、ディレクトリ内容が変更される
     * 前に vnode がディスクをアクセスしない様に注意します。
     */
    error = ...;

    if (error)
	goto bad;

    if ((cnp->cn_flags & SAVESTART) == 0)
	free(cnp->cn_pnbuf, M_NAMEI);
    vput(dvp);
    *vpp = vp;

    return 0;

bad:
    /*
     * inode またはディレクトリの更新の試みで書き込みエラーが
     * 発生したため inode の割り当てを開放しなければなりません。
     */
    free(cnp->cn_pnbuf, M_NAMEI);
    vput(vp);

    /*
     * vp のためのファイルシステム資源を開放。
     */
    ...;

    vput(dvp);

    return error;
}
.Ed
.Sh エラー
.Bl -tag -width Er
.It Bq Er ENOSPC
ファイルシステムが一杯です。
.It Bq Er EDQUOT
クォータを超過しました。
.El
.Sh 関連項目
.Xr VOP_LOOKUP 9,
.Xr vnode 9
.Sh 歴史
関数
.Nm
は
.Bx 4.3
で登場しました。
.Sh 作者
このマニュアルページは
.An Doug Rabson
が書きました。