Whamcloud - gitweb
LU-2979 lprocfs: use stats counter index for *pos
[fs/lustre-release.git] / lustre / obdclass / linkea.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 021110-1307, USA
20  *
21  * GPL HEADER END
22  */
23 /*
24  * Copyright (c) 2013, Intel Corporation.
25  * Use is subject to license terms.
26  *
27  * Author: Di Wang <di.wang@intel.com>
28  */
29
30 #include <lustre/lustre_idl.h>
31 #include <obd.h>
32 #include <lustre_linkea.h>
33
34 int linkea_data_new(struct linkea_data *ldata, struct lu_buf *buf)
35 {
36         ldata->ld_buf = lu_buf_check_and_alloc(buf, CFS_PAGE_SIZE);
37         if (ldata->ld_buf->lb_buf == NULL)
38                 return -ENOMEM;
39         ldata->ld_leh = ldata->ld_buf->lb_buf;
40         ldata->ld_leh->leh_magic = LINK_EA_MAGIC;
41         ldata->ld_leh->leh_len = sizeof(struct link_ea_header);
42         ldata->ld_leh->leh_reccount = 0;
43         return 0;
44 }
45 EXPORT_SYMBOL(linkea_data_new);
46
47 int linkea_init(struct linkea_data *ldata)
48 {
49         struct link_ea_header *leh;
50
51         LASSERT(ldata->ld_buf != NULL);
52         leh = ldata->ld_buf->lb_buf;
53         if (leh->leh_magic == __swab32(LINK_EA_MAGIC)) {
54                 leh->leh_magic = LINK_EA_MAGIC;
55                 leh->leh_reccount = __swab32(leh->leh_reccount);
56                 leh->leh_len = __swab64(leh->leh_len);
57                 /* entries are swabbed by linkea_entry_unpack */
58         }
59         if (leh->leh_magic != LINK_EA_MAGIC)
60                 return -EINVAL;
61         if (leh->leh_reccount == 0)
62                 return -ENODATA;
63
64         ldata->ld_leh = leh;
65         return 0;
66 }
67 EXPORT_SYMBOL(linkea_init);
68
69 /**
70  * Pack a link_ea_entry.
71  * All elements are stored as chars to avoid alignment issues.
72  * Numbers are always big-endian
73  * \retval record length
74  */
75 static int linkea_entry_pack(struct link_ea_entry *lee,
76                              const struct lu_name *lname,
77                              const struct lu_fid *pfid)
78 {
79         struct lu_fid   tmpfid;
80         int             reclen;
81
82         fid_cpu_to_be(&tmpfid, pfid);
83         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LINKEA_CRASH))
84                 tmpfid.f_ver = ~0;
85         memcpy(&lee->lee_parent_fid, &tmpfid, sizeof(tmpfid));
86         memcpy(lee->lee_name, lname->ln_name, lname->ln_namelen);
87         reclen = sizeof(struct link_ea_entry) + lname->ln_namelen;
88
89         lee->lee_reclen[0] = (reclen >> 8) & 0xff;
90         lee->lee_reclen[1] = reclen & 0xff;
91         return reclen;
92 }
93
94 void linkea_entry_unpack(const struct link_ea_entry *lee, int *reclen,
95                          struct lu_name *lname, struct lu_fid *pfid)
96 {
97         *reclen = (lee->lee_reclen[0] << 8) | lee->lee_reclen[1];
98         memcpy(pfid, &lee->lee_parent_fid, sizeof(*pfid));
99         fid_be_to_cpu(pfid, pfid);
100         lname->ln_name = lee->lee_name;
101         lname->ln_namelen = *reclen - sizeof(struct link_ea_entry);
102 }
103 EXPORT_SYMBOL(linkea_entry_unpack);
104
105 /**
106  * Add a record to the end of link ea buf
107  **/
108 int linkea_add_buf(struct linkea_data *ldata, const struct lu_name *lname,
109                    const struct lu_fid *pfid)
110 {
111         LASSERT(ldata->ld_leh != NULL);
112
113         if (lname == NULL || pfid == NULL)
114                 return -EINVAL;
115
116         ldata->ld_reclen = lname->ln_namelen + sizeof(struct link_ea_entry);
117         if (ldata->ld_leh->leh_len + ldata->ld_reclen >
118             ldata->ld_buf->lb_len) {
119                 if (lu_buf_check_and_grow(ldata->ld_buf,
120                                           ldata->ld_leh->leh_len +
121                                           ldata->ld_reclen) < 0)
122                         return -ENOMEM;
123         }
124
125         ldata->ld_leh = ldata->ld_buf->lb_buf;
126         ldata->ld_lee = ldata->ld_buf->lb_buf + ldata->ld_leh->leh_len;
127         ldata->ld_reclen = linkea_entry_pack(ldata->ld_lee, lname, pfid);
128         ldata->ld_leh->leh_len += ldata->ld_reclen;
129         ldata->ld_leh->leh_reccount++;
130         CDEBUG(D_INODE, "New link_ea name '%.*s' is added\n",
131                lname->ln_namelen, lname->ln_name);
132         return 0;
133 }
134 EXPORT_SYMBOL(linkea_add_buf);
135
136 /** Del the current record from the link ea buf */
137 void linkea_del_buf(struct linkea_data *ldata, const struct lu_name *lname)
138 {
139         LASSERT(ldata->ld_leh != NULL && ldata->ld_lee != NULL);
140
141         ldata->ld_leh->leh_reccount--;
142         ldata->ld_leh->leh_len -= ldata->ld_reclen;
143         memmove(ldata->ld_lee, (char *)ldata->ld_lee + ldata->ld_reclen,
144                 (char *)ldata->ld_leh + ldata->ld_leh->leh_len -
145                 (char *)ldata->ld_lee);
146         CDEBUG(D_INODE, "Old link_ea name '%.*s' is removed\n",
147                lname->ln_namelen, lname->ln_name);
148 }
149 EXPORT_SYMBOL(linkea_del_buf);
150
151 /**
152  * Check if such a link exists in linkEA.
153  *
154  * \param ldata link data the search to be done on
155  * \param lname name in the parent's directory entry pointing to this object
156  * \param pfid parent fid the link to be found for
157  *
158  * \retval   0 success
159  * \retval -ENOENT link does not exist
160  * \retval -ve on error
161  */
162 int linkea_links_find(struct linkea_data *ldata, const struct lu_name *lname,
163                       const struct lu_fid  *pfid)
164 {
165         struct lu_name tmpname;
166         struct lu_fid  tmpfid;
167         int count;
168
169         LASSERT(ldata->ld_leh != NULL);
170
171         /* link #0 */
172         ldata->ld_lee = (struct link_ea_entry *)(ldata->ld_leh + 1);
173
174         for (count = 0; count < ldata->ld_leh->leh_reccount; count++) {
175                 linkea_entry_unpack(ldata->ld_lee, &ldata->ld_reclen,
176                                     &tmpname, &tmpfid);
177                 if (tmpname.ln_namelen == lname->ln_namelen &&
178                     lu_fid_eq(&tmpfid, pfid) &&
179                     (strncmp(tmpname.ln_name, lname->ln_name,
180                              tmpname.ln_namelen) == 0))
181                         break;
182                 ldata->ld_lee = (struct link_ea_entry *)((char *)ldata->ld_lee +
183                                                          ldata->ld_reclen);
184         }
185
186         if (count == ldata->ld_leh->leh_reccount) {
187                 CDEBUG(D_INODE, "Old link_ea name '%.*s' not found\n",
188                        lname->ln_namelen, lname->ln_name);
189                 ldata->ld_lee = NULL;
190                 return -ENOENT;
191         }
192         return 0;
193 }
194 EXPORT_SYMBOL(linkea_links_find);