Whamcloud - gitweb
smash the HEAD with the contents of b_cmd. HEAD_PRE_CMD_SMASH and
[fs/lustre-release.git] / lustre / llite / symlink.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2002 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 #include <linux/fs.h>
23 #include <linux/mm.h>
24 #include <linux/stat.h>
25 #include <linux/smp_lock.h>
26 #include <linux/version.h>
27 #define DEBUG_SUBSYSTEM S_LLITE
28
29 #include <linux/lustre_lite.h>
30 #include "llite_internal.h"
31
32 static int ll_readlink_internal(struct inode *inode,
33                                 struct ptlrpc_request **request, char **symname)
34 {
35         struct ll_inode_info *lli = ll_i2info(inode);
36         struct ll_sb_info *sbi = ll_i2sbi(inode);
37         struct ll_fid fid;
38         struct mds_body *body;
39         int rc, symlen = inode->i_size + 1;
40         ENTRY;
41
42         *request = NULL;
43
44         if (lli->lli_symlink_name) {
45                 *symname = lli->lli_symlink_name;
46                 CDEBUG(D_INODE, "using cached symlink %s\n", *symname);
47                 RETURN(0);
48         }
49
50         ll_inode2fid(&fid, inode);
51         rc = md_getattr(sbi->ll_mdc_exp, &fid,
52                              OBD_MD_LINKNAME, symlen, request);
53         if (rc) {
54                 CERROR("inode %lu: rc = %d\n", inode->i_ino, rc);
55                 RETURN(rc);
56         }
57
58         body = lustre_msg_buf ((*request)->rq_repmsg, 0, sizeof (*body));
59         LASSERT (body != NULL);
60         LASSERT_REPSWABBED (*request, 0);
61
62         if ((body->valid & OBD_MD_LINKNAME) == 0) {
63                 CERROR ("OBD_MD_LINKNAME not set on reply\n");
64                 GOTO (failed, rc = -EPROTO);
65         }
66         
67         LASSERT (symlen != 0);
68         if (body->eadatasize != symlen) {
69                 CERROR ("inode %lu: symlink length %d not expected %d\n",
70                         inode->i_ino, body->eadatasize - 1, symlen - 1);
71                 GOTO (failed, rc = -EPROTO);
72         }
73
74         *symname = lustre_msg_buf ((*request)->rq_repmsg, 1, symlen);
75         if (*symname == NULL ||
76             strnlen (*symname, symlen) != symlen - 1) {
77                 /* not full/NULL terminated */
78                 CERROR ("inode %lu: symlink not NULL terminated string"
79                         "of length %d\n", inode->i_ino, symlen - 1);
80                 GOTO (failed, rc = -EPROTO);
81         }
82
83         OBD_ALLOC(lli->lli_symlink_name, symlen);
84         /* do not return an error if we cannot cache the symlink locally */
85         if (lli->lli_symlink_name)
86                 memcpy(lli->lli_symlink_name, *symname, symlen);
87
88         RETURN(0);
89
90  failed:
91         ptlrpc_req_finished (*request);
92         RETURN (-EPROTO);
93 }
94
95 static int ll_readlink(struct dentry *dentry, char *buffer, int buflen)
96 {
97         struct inode *inode = dentry->d_inode;
98         struct ll_inode_info *lli = ll_i2info(inode);
99         struct ptlrpc_request *request;
100         char *symname;
101         int rc;
102         ENTRY;
103
104         CDEBUG(D_VFSTRACE, "VFS Op\n");
105         /* on symlinks lli_open_sem protects lli_symlink_name allocation/data */
106         down(&lli->lli_open_sem);
107         rc = ll_readlink_internal(inode, &request, &symname);
108         if (rc)
109                 GOTO(out, rc);
110
111         rc = vfs_readlink(dentry, buffer, buflen, symname);
112         ptlrpc_req_finished(request);
113  out:
114         up(&lli->lli_open_sem);
115         RETURN(rc);
116 }
117
118 static int ll_follow_link(struct dentry *dentry, struct nameidata *nd)
119 {
120         struct inode *inode = dentry->d_inode;
121         struct ll_inode_info *lli = ll_i2info(inode);
122         struct lookup_intent *it = ll_nd2it(nd);
123         struct ptlrpc_request *request;
124         int rc;
125         char *symname;
126         ENTRY;
127
128         if (it != NULL) {
129                 int op = it->it_op;
130                 int mode = it->it_create_mode;
131
132                 ll_intent_release(it);
133                 it->it_op = op;
134                 it->it_create_mode = mode;
135         }
136
137         CDEBUG(D_VFSTRACE, "VFS Op\n");
138         down(&lli->lli_open_sem);
139         rc = ll_readlink_internal(inode, &request, &symname);
140         up(&lli->lli_open_sem);
141         if (rc)
142                 GOTO(out, rc);
143
144         rc = vfs_follow_link(nd, symname);
145         ptlrpc_req_finished(request);
146  out:
147         RETURN(rc);
148 }
149
150 struct inode_operations ll_fast_symlink_inode_operations = {
151         readlink:       ll_readlink,
152         setattr:        ll_setattr,
153         setattr_raw:    ll_setattr_raw,
154         follow_link:    ll_follow_link,
155 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
156         revalidate_it:  ll_inode_revalidate_it
157 #else 
158         getattr_it:     ll_getattr
159 #endif
160 };