]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/fs/nwfs/nwfs_node.c
Remove unnessary includes.
[FreeBSD/FreeBSD.git] / sys / fs / nwfs / nwfs_node.c
1 /*
2  * Copyright (c) 1999, Boris Popov
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *    This product includes software developed by Boris Popov.
16  * 4. Neither the name of the author nor the names of any co-contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  * $FreeBSD$
33  */
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/kernel.h>
37 #include <sys/time.h>
38 #include <sys/proc.h>
39 #include <sys/mount.h>
40 #include <sys/vnode.h>
41 #include <sys/malloc.h>
42 #include <sys/sysctl.h>
43 #include <vm/vm.h>
44 #include <vm/vm_extern.h>
45 #include <vm/vm_prot.h>
46 #include <vm/vm_page.h>
47 #include <vm/vm_object.h>
48 #include <sys/queue.h>
49
50 #include <netncp/ncp.h>
51 #include <netncp/ncp_conn.h>
52 #include <netncp/ncp_subr.h>
53
54 #include <nwfs/nwfs.h>
55 #include <nwfs/nwfs_mount.h>
56 #include <nwfs/nwfs_node.h>
57 #include <nwfs/nwfs_subr.h>
58
59 #define NWNOHASH(fhsum) (&nwhashtbl[(fhsum.f_id) & nwnodehash])
60
61 extern vop_t **nwfs_vnodeop_p;
62
63 static LIST_HEAD(nwnode_hash_head,nwnode) *nwhashtbl;
64 static u_long nwnodehash;
65 static int nwhashlock = 0;
66
67 MALLOC_DEFINE(M_NWNODE, "NWFS node", "NWFS vnode private part");
68 MALLOC_DEFINE(M_NWFSHASH, "NWFS hash", "NWFS has table");
69
70 static int nwfs_sysctl_vnprint SYSCTL_HANDLER_ARGS;
71
72 extern struct linker_set sysctl_vfs_nwfs;
73
74 SYSCTL_DECL(_vfs_nwfs);
75
76 SYSCTL_PROC(_vfs_nwfs, OID_AUTO, vnprint, CTLFLAG_WR|CTLTYPE_OPAQUE,
77             NULL, 0, nwfs_sysctl_vnprint, "S,vnlist", "vnode hash");
78
79 void
80 nwfs_hash_init(void) {
81         nwhashtbl = hashinit(desiredvnodes, M_NWFSHASH, &nwnodehash);
82 }
83
84 void
85 nwfs_hash_free(void) {
86         free(nwhashtbl, M_NWFSHASH);
87 }
88
89 int
90 nwfs_sysctl_vnprint SYSCTL_HANDLER_ARGS {
91         struct nwnode *np;
92         struct nwnode_hash_head *nhpp;
93         struct vnode *vp;
94         int i;
95
96         if (nwfs_debuglevel == 0)
97                 return 0;
98         printf("Name:uc:hc:fid:pfid\n");
99         for(i = 0; i <= nwnodehash; i++) {
100                 nhpp = &nwhashtbl[i];
101                 for (np = nhpp->lh_first; np != 0; np = np->n_hash.le_next) {
102                         vp = NWTOV(np);
103                         printf("%s:%d:%d:%d:%d\n",np->n_name,vp->v_usecount,vp->v_holdcnt,
104                             np->n_fid.f_id, np->n_fid.f_parent);
105                 }
106         }
107         return 0;
108 }
109
110 /*
111  * Allocate new nwfsnode/vnode from given nwnode. 
112  * Vnode referenced and not locked.
113  */
114 int
115 nwfs_allocvp(struct mount *mp, ncpfid fid, struct vnode **vpp) {
116         struct proc *p = curproc;       /* XXX */
117         struct nwnode *np, *np2;
118         struct nwnode_hash_head *nhpp;
119         struct vnode *vp;
120         int error;
121
122 retry:
123         nhpp = NWNOHASH(fid);
124 loop:
125         for (np = nhpp->lh_first; np != 0; np = np->n_hash.le_next) {
126                 vp = NWTOV(np);
127                 if (mp != vp->v_mount || !NWCMPF(&fid, &np->n_fid))
128                         continue;
129                 if (vget(vp, LK_EXCLUSIVE, p))
130                         goto loop;
131                 *vpp = vp;
132                 return(0);
133         }
134
135         /* lock list, or waiting in malloc can cause problems */
136         if (nwhashlock) {
137                 while(nwhashlock) {
138                         nwhashlock = -1;
139                         tsleep((caddr_t) &nwhashlock, PVM, "nwfsvp", 0);
140                 }
141                 goto loop;
142         }
143         nwhashlock = 1;
144         /*
145          * Do the MALLOC before the getnewvnode since doing so afterward
146          * might cause a bogus v_data pointer to get dereferenced
147          * elsewhere if MALLOC should block.
148          */
149         MALLOC(np, struct nwnode *, sizeof *np, M_NWNODE, M_WAITOK);
150         error = getnewvnode(VT_NWFS, mp, nwfs_vnodeop_p, &vp);
151         if (error) {
152                 if (nwhashlock < 0)
153                         wakeup(&nwhashlock);
154                 nwhashlock = 0;
155                 *vpp = 0;
156                 FREE(np, M_NWNODE);
157                 return (error);
158         }
159         *vpp = vp;
160         bzero(np,sizeof(*np));
161         vp->v_data = np;
162         np->n_vnode = vp;
163         np->n_mount = VFSTONWFS(mp);
164         np->n_fid = fid;
165         for (np2 = nhpp->lh_first; np2 != 0; np2 = np->n_hash.le_next) {
166                 if (mp != NWTOV(np2)->v_mount || !NWCMPF(&fid, &np2->n_fid))
167                         continue;
168                 vrele(vp);
169                 FREE(np, M_NWNODE);
170                 if (nwhashlock < 0)
171                         wakeup(&nwhashlock);
172                 nwhashlock = 0;
173                 goto retry;
174         }
175         LIST_INSERT_HEAD(nhpp, np, n_hash);
176         if (nwhashlock < 0)
177                 wakeup(&nwhashlock);
178         nwhashlock = 0;
179         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, p);
180         np->n_flag |= NNEW;
181         return (error);
182 }
183
184 int
185 nwfs_lookupnp(struct nwmount *nmp, ncpfid fid, struct nwnode **npp) {
186         struct nwnode *np;
187         struct nwnode_hash_head *nhpp;
188
189         nhpp = NWNOHASH(fid);
190         for (np = nhpp->lh_first; np != 0; np = np->n_hash.le_next) {
191                 if (nmp != np->n_mount || !NWCMPF(&fid, &np->n_fid))
192                         continue;
193                 *npp = np;
194                 return(0);
195         }
196         return ENOENT;
197 }
198
199 /*
200  * Free nwnode, and give vnode back to system
201  */
202 int
203 nwfs_reclaim(ap)                     
204         struct vop_reclaim_args /* {
205         struct vnode *a_vp;
206         } */ *ap;
207 {
208         struct vnode *dvp = NULL, *vp = ap->a_vp;
209         struct nwnode *dnp, *np = VTONW(vp);
210         struct nwmount *nmp=VTONWFS(vp);
211         
212         NCPVNDEBUG("%s,%d\n", np->n_name, vp->v_usecount);
213         if (np->n_refparent) {
214                 np->n_refparent = 0;
215                 if (nwfs_lookupnp(nmp, np->n_parent, &dnp) == 0) {
216                         dvp = dnp->n_vnode;
217                 } else {
218                         NCPVNDEBUG("%s: has no parent ?\n",np->n_name);
219                 }
220         }
221         LIST_REMOVE(np, n_hash);
222         cache_purge(vp);
223         if (nmp->n_root == np) {
224                 nmp->n_root = NULL;
225         }
226         vp->v_data = NULL;
227         FREE(np, M_NWNODE);
228         if (dvp) {
229                 vrele(dvp);
230         }
231         return (0);
232 }
233
234 int
235 nwfs_inactive(ap)
236         struct vop_inactive_args /* {
237                 struct vnode *a_vp;
238                 struct proc *a_p;
239         } */ *ap;
240 {
241         struct proc *p = ap->a_p;
242         struct ucred *cred = p->p_ucred;
243         struct vnode *vp = ap->a_vp;
244         struct nwnode *np = VTONW(vp);
245         int error;
246
247         NCPVNDEBUG("%s: %d\n", VTONW(vp)->n_name, vp->v_usecount);
248         if (np->opened) {
249                 error = nwfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
250                 error = ncp_close_file(NWFSTOCONN(VTONWFS(vp)), &np->n_fh, p, cred);
251                 np->opened = 0;
252         }
253         VOP_UNLOCK(vp, 0, p);
254         return (0);
255 }
256 /*
257  * routines to maintain vnode attributes cache
258  * nwfs_attr_cacheenter: unpack np.i to va structure
259  */
260 void
261 nwfs_attr_cacheenter(struct vnode *vp, struct nw_entry_info *fi) {
262         struct nwnode *np = VTONW(vp);
263         struct nwmount *nmp = VTONWFS(vp);
264         register struct vattr *va = &np->n_vattr;
265
266         va->va_type = vp->v_type;               /* vnode type (for create) */
267         if (vp->v_type == VREG) {
268                 if (va->va_size != fi->dataStreamSize) {
269                         va->va_size = fi->dataStreamSize;
270                         vnode_pager_setsize(vp, va->va_size);
271                 }
272                 va->va_mode = nmp->m.file_mode; /* files access mode and type */
273         } else if (vp->v_type == VDIR) {
274                 va->va_size = 16384;            /* should be a better way ... */
275                 va->va_mode = nmp->m.dir_mode;  /* files access mode and type */
276         } else
277                 return;
278         np->n_size = va->va_size;
279         va->va_nlink = 1;               /* number of references to file */
280         va->va_uid = nmp->m.uid;        /* owner user id */
281         va->va_gid = nmp->m.gid;        /* owner group id */
282         va->va_fsid = vp->v_mount->mnt_stat.f_fsid.val[0];
283         va->va_fileid = np->n_fid.f_id; /* file id */
284         if (va->va_fileid == 0)
285                 va->va_fileid = NWFS_ROOT_INO;
286         va->va_blocksize=nmp->connh->nh_conn->buffer_size;/* blocksize preferred for i/o */
287         /* time of last modification */
288         ncp_dos2unixtime(fi->modifyDate, fi->modifyTime, 0, &va->va_mtime);
289         /* time of last access */
290         ncp_dos2unixtime(fi->lastAccessDate, 0, 0, &va->va_atime);
291         va->va_ctime = va->va_mtime;    /* time file changed */
292         va->va_gen = VNOVAL;            /* generation number of file */
293         va->va_flags = 0;               /* flags defined for file */
294         va->va_rdev = VNOVAL;           /* device the special file represents */
295         va->va_bytes = va->va_size;     /* bytes of disk space held by file */
296         va->va_filerev = 0;             /* file modification number */
297         va->va_vaflags = 0;             /* operations flags */
298         np->n_vattr = *va;
299         if (np->n_mtime == 0) {
300                 np->n_mtime = va->va_mtime.tv_sec;
301         }
302         np->n_atime = time_second;
303         return;
304 }
305
306 int
307 nwfs_attr_cachelookup(struct vnode *vp, struct vattr *va) {
308         struct nwnode *np = VTONW(vp);
309         int diff;
310
311         diff = time_second - np->n_atime;
312         if (diff > 2) { /* XXX should be configurable */
313                 return ENOENT;
314         }
315         *va = np->n_vattr;
316         return 0;
317 }