rename-conn-to-afs-conn-20090121
[openafs.git] / src / afs / VNOPS / afs_vnop_link.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11  * Implements:
12  * afs_link
13  *
14  */
15
16 #include <afsconfig.h>
17 #include "afs/param.h"
18
19 RCSID
20     ("$Header$");
21
22 #include "afs/sysincludes.h"    /* Standard vendor system headers */
23 #include "afsincludes.h"        /* Afs-based standard headers */
24 #include "afs/afs_stats.h"      /* statistics */
25 #include "afs/afs_cbqueue.h"
26 #include "afs/nfsclient.h"
27 #include "afs/afs_osidnlc.h"
28
29 extern afs_rwlock_t afs_xcbhash;
30
31 /* Note that we don't set CDirty here, this is OK because the link
32  * RPC is called synchronously. */
33
34 int
35 #if     defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV)
36 afs_link(OSI_VC_DECL(adp), struct vcache *avc, char *aname, 
37          struct AFS_UCRED *acred)
38 #else
39 afs_link(struct vcache *avc, OSI_VC_DECL(adp), char *aname, 
40          struct AFS_UCRED *acred)
41 #endif
42 {
43     struct vrequest treq;
44     register struct dcache *tdc;
45     register afs_int32 code;
46     register struct afs_conn *tc;
47     afs_size_t offset, len;
48     struct AFSFetchStatus OutFidStatus, OutDirStatus;
49     struct AFSVolSync tsync;
50     struct afs_fakestat_state vfakestate, dfakestate;
51     XSTATS_DECLS;
52     OSI_VC_CONVERT(adp);
53
54     AFS_STATCNT(afs_link);
55     afs_Trace3(afs_iclSetp, CM_TRACE_LINK, ICL_TYPE_POINTER, adp,
56                ICL_TYPE_POINTER, avc, ICL_TYPE_STRING, aname);
57     /* create a hard link; new entry is aname in dir adp */
58     if ((code = afs_InitReq(&treq, acred)))
59         goto done2;
60
61     afs_InitFakeStat(&vfakestate);
62     afs_InitFakeStat(&dfakestate);
63     
64     AFS_DISCON_LOCK();
65
66     code = afs_EvalFakeStat(&avc, &vfakestate, &treq);
67     if (code)
68         goto done;
69     code = afs_EvalFakeStat(&adp, &dfakestate, &treq);
70     if (code)
71         goto done;
72
73     if (avc->fid.Cell != adp->fid.Cell
74         || avc->fid.Fid.Volume != adp->fid.Fid.Volume) {
75         code = EXDEV;
76         goto done;
77     }
78     if (strlen(aname) > AFSNAMEMAX) {
79         code = ENAMETOOLONG;
80         goto done;
81     }
82     code = afs_VerifyVCache(adp, &treq);
83     if (code)
84         goto done;
85
86     /** If the volume is read-only, return error without making an RPC to the
87       * fileserver
88       */
89     if (adp->states & CRO) {
90         code = EROFS;
91         goto done;
92     }
93     
94     if (AFS_IS_DISCONNECTED && !AFS_IS_LOGGING) {
95         code = ENETDOWN;
96         goto done;
97     }
98
99     tdc = afs_GetDCache(adp, (afs_size_t) 0, &treq, &offset, &len, 1);  /* test for error below */
100     ObtainWriteLock(&adp->lock, 145);
101     do {
102         tc = afs_Conn(&adp->fid, &treq, SHARED_LOCK);
103         if (tc) {
104             XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_LINK);
105             RX_AFS_GUNLOCK();
106             code =
107                 RXAFS_Link(tc->id, (struct AFSFid *)&adp->fid.Fid, aname,
108                            (struct AFSFid *)&avc->fid.Fid, &OutFidStatus,
109                            &OutDirStatus, &tsync);
110             RX_AFS_GLOCK();
111             XSTATS_END_TIME;
112
113         } else
114             code = -1;
115     } while (afs_Analyze
116              (tc, code, &adp->fid, &treq, AFS_STATS_FS_RPCIDX_LINK,
117               SHARED_LOCK, NULL));
118
119     if (code) {
120         if (tdc)
121             afs_PutDCache(tdc);
122         if (code < 0) {
123             ObtainWriteLock(&afs_xcbhash, 492);
124             afs_DequeueCallback(adp);
125             adp->states &= ~CStatd;
126             ReleaseWriteLock(&afs_xcbhash);
127             osi_dnlc_purgedp(adp);
128         }
129         ReleaseWriteLock(&adp->lock);
130         goto done;
131     }
132     if (tdc)
133         ObtainWriteLock(&tdc->lock, 635);
134     if (afs_LocalHero(adp, tdc, &OutDirStatus, 1)) {
135         /* we can do it locally */
136         ObtainWriteLock(&afs_xdcache, 290);
137         code = afs_dir_Create(tdc, aname, &avc->fid.Fid);
138         ReleaseWriteLock(&afs_xdcache);
139         if (code) {
140             ZapDCE(tdc);        /* surprise error -- invalid value */
141             DZap(tdc);
142         }
143     }
144     if (tdc) {
145         ReleaseWriteLock(&tdc->lock);
146         afs_PutDCache(tdc);     /* drop ref count */
147     }
148     ReleaseWriteLock(&adp->lock);
149     ObtainWriteLock(&avc->lock, 146);   /* correct link count */
150
151     /* we could lock both dir and file; since we get the new fid
152      * status back, you'd think we could put it in the cache status
153      * entry at that point.  Note that if we don't lock the file over
154      * the rpc call, we have no guarantee that the status info
155      * returned in ustat is the most recent to store in the file's
156      * cache entry */
157
158     ObtainWriteLock(&afs_xcbhash, 493);
159     afs_DequeueCallback(avc);
160     avc->states &= ~CStatd;     /* don't really know new link count */
161     ReleaseWriteLock(&afs_xcbhash);
162     if (avc->fid.Fid.Vnode & 1 || (vType(avc) == VDIR))
163         osi_dnlc_purgedp(avc);
164     ReleaseWriteLock(&avc->lock);
165     code = 0;
166   done:
167     code = afs_CheckCode(code, &treq, 24);
168     afs_PutFakeStat(&vfakestate);
169     afs_PutFakeStat(&dfakestate);
170     AFS_DISCON_UNLOCK();
171   done2:
172     return code;
173 }