Whamcloud - gitweb
07168c52ca02c0a60c4efff5fedbf45e9759d9e5
[fs/lustre-release.git] / lustre / llite / llite_lib.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, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/llite/llite_lib.c
37  *
38  * Lustre Light Super operations
39  */
40
41 #define DEBUG_SUBSYSTEM S_LLITE
42
43 #include <linux/module.h>
44 #include <linux/statfs.h>
45 #include <linux/types.h>
46 #include <linux/version.h>
47 #include <linux/mm.h>
48 #include <linux/user_namespace.h>
49 #ifdef HAVE_UIDGID_HEADER
50 # include <linux/uidgid.h>
51 #endif
52
53 #include <lustre_ioctl.h>
54 #include <lustre_ha.h>
55 #include <lustre_dlm.h>
56 #include <lprocfs_status.h>
57 #include <lustre_disk.h>
58 #include <lustre_param.h>
59 #include <lustre_log.h>
60 #include <cl_object.h>
61 #include <obd_cksum.h>
62 #include "llite_internal.h"
63
64 struct kmem_cache *ll_file_data_slab;
65
66 static struct list_head ll_super_blocks = LIST_HEAD_INIT(ll_super_blocks);
67 static DEFINE_SPINLOCK(ll_sb_lock);
68
69 #ifndef log2
70 #define log2(n) ffz(~(n))
71 #endif
72
73 static struct ll_sb_info *ll_init_sbi(void)
74 {
75         struct ll_sb_info *sbi = NULL;
76         unsigned long pages;
77         unsigned long lru_page_max;
78         struct sysinfo si;
79         class_uuid_t uuid;
80         int i;
81         ENTRY;
82
83         OBD_ALLOC_PTR(sbi);
84         if (sbi == NULL)
85                 RETURN(NULL);
86
87         spin_lock_init(&sbi->ll_lock);
88         mutex_init(&sbi->ll_lco.lco_lock);
89         spin_lock_init(&sbi->ll_pp_extent_lock);
90         spin_lock_init(&sbi->ll_process_lock);
91         sbi->ll_rw_stats_on = 0;
92
93         si_meminfo(&si);
94         pages = si.totalram - si.totalhigh;
95         lru_page_max = pages / 2;
96
97         /* initialize ll_cache data */
98         sbi->ll_cache = cl_cache_init(lru_page_max);
99         if (sbi->ll_cache == NULL) {
100                 OBD_FREE(sbi, sizeof(*sbi));
101                 RETURN(NULL);
102         }
103
104         sbi->ll_ra_info.ra_max_pages_per_file = min(pages / 32,
105                                            SBI_DEFAULT_READAHEAD_MAX);
106         sbi->ll_ra_info.ra_max_pages = sbi->ll_ra_info.ra_max_pages_per_file;
107         sbi->ll_ra_info.ra_max_read_ahead_whole_pages =
108                                            SBI_DEFAULT_READAHEAD_WHOLE_MAX;
109         INIT_LIST_HEAD(&sbi->ll_conn_chain);
110         INIT_LIST_HEAD(&sbi->ll_orphan_dentry_list);
111
112         ll_generate_random_uuid(uuid);
113         class_uuid_unparse(uuid, &sbi->ll_sb_uuid);
114         CDEBUG(D_CONFIG, "generated uuid: %s\n", sbi->ll_sb_uuid.uuid);
115
116         spin_lock(&ll_sb_lock);
117         list_add_tail(&sbi->ll_list, &ll_super_blocks);
118         spin_unlock(&ll_sb_lock);
119
120         sbi->ll_flags |= LL_SBI_VERBOSE;
121 #ifdef ENABLE_CHECKSUM
122         sbi->ll_flags |= LL_SBI_CHECKSUM;
123 #endif
124
125 #ifdef HAVE_LRU_RESIZE_SUPPORT
126         sbi->ll_flags |= LL_SBI_LRU_RESIZE;
127 #endif
128
129         for (i = 0; i <= LL_PROCESS_HIST_MAX; i++) {
130                 spin_lock_init(&sbi->ll_rw_extents_info.pp_extents[i].
131                                pp_r_hist.oh_lock);
132                 spin_lock_init(&sbi->ll_rw_extents_info.pp_extents[i].
133                                pp_w_hist.oh_lock);
134         }
135
136         /* metadata statahead is enabled by default */
137         sbi->ll_sa_max = LL_SA_RPC_DEF;
138         atomic_set(&sbi->ll_sa_total, 0);
139         atomic_set(&sbi->ll_sa_wrong, 0);
140         atomic_set(&sbi->ll_sa_running, 0);
141         atomic_set(&sbi->ll_agl_total, 0);
142         sbi->ll_flags |= LL_SBI_AGL_ENABLED;
143
144         /* root squash */
145         sbi->ll_squash.rsi_uid = 0;
146         sbi->ll_squash.rsi_gid = 0;
147         INIT_LIST_HEAD(&sbi->ll_squash.rsi_nosquash_nids);
148         init_rwsem(&sbi->ll_squash.rsi_sem);
149
150         RETURN(sbi);
151 }
152
153 static void ll_free_sbi(struct super_block *sb)
154 {
155         struct ll_sb_info *sbi = ll_s2sbi(sb);
156         ENTRY;
157
158         if (sbi != NULL) {
159                 spin_lock(&ll_sb_lock);
160                 list_del(&sbi->ll_list);
161                 spin_unlock(&ll_sb_lock);
162                 if (!list_empty(&sbi->ll_squash.rsi_nosquash_nids))
163                         cfs_free_nidlist(&sbi->ll_squash.rsi_nosquash_nids);
164                 if (sbi->ll_cache != NULL) {
165                         cl_cache_decref(sbi->ll_cache);
166                         sbi->ll_cache = NULL;
167                 }
168                 OBD_FREE(sbi, sizeof(*sbi));
169         }
170         EXIT;
171 }
172
173 static int client_common_fill_super(struct super_block *sb, char *md, char *dt,
174                                     struct vfsmount *mnt)
175 {
176         struct inode *root = NULL;
177         struct ll_sb_info *sbi = ll_s2sbi(sb);
178         struct obd_device *obd;
179         struct obd_capa *oc = NULL;
180         struct obd_statfs *osfs = NULL;
181         struct ptlrpc_request *request = NULL;
182         struct obd_connect_data *data = NULL;
183         struct obd_uuid *uuid;
184         struct md_op_data *op_data;
185         struct lustre_md lmd;
186         u64 valid;
187         int size, err, checksum;
188         ENTRY;
189
190         obd = class_name2obd(md);
191         if (!obd) {
192                 CERROR("MD %s: not setup or attached\n", md);
193                 RETURN(-EINVAL);
194         }
195
196         OBD_ALLOC_PTR(data);
197         if (data == NULL)
198                 RETURN(-ENOMEM);
199
200         OBD_ALLOC_PTR(osfs);
201         if (osfs == NULL) {
202                 OBD_FREE_PTR(data);
203                 RETURN(-ENOMEM);
204         }
205
206         /* indicate the features supported by this client */
207         data->ocd_connect_flags = OBD_CONNECT_IBITS    | OBD_CONNECT_NODEVOH  |
208                                   OBD_CONNECT_ATTRFID  |
209                                   OBD_CONNECT_VERSION  | OBD_CONNECT_BRW_SIZE |
210                                   OBD_CONNECT_MDS_CAPA | OBD_CONNECT_OSS_CAPA |
211                                   OBD_CONNECT_CANCELSET | OBD_CONNECT_FID     |
212                                   OBD_CONNECT_AT       | OBD_CONNECT_LOV_V3   |
213                                   OBD_CONNECT_RMT_CLIENT | OBD_CONNECT_VBR    |
214                                   OBD_CONNECT_FULL20   | OBD_CONNECT_64BITHASH|
215                                   OBD_CONNECT_EINPROGRESS |
216                                   OBD_CONNECT_JOBSTATS | OBD_CONNECT_LVB_TYPE |
217                                   OBD_CONNECT_LAYOUTLOCK | OBD_CONNECT_PINGLESS |
218                                   OBD_CONNECT_MAX_EASIZE |
219                                   OBD_CONNECT_FLOCK_DEAD |
220                                   OBD_CONNECT_DISP_STRIPE | OBD_CONNECT_LFSCK |
221                                   OBD_CONNECT_OPEN_BY_FID |
222                                   OBD_CONNECT_DIR_STRIPE;
223
224 #ifdef HAVE_LRU_RESIZE_SUPPORT
225         if (sbi->ll_flags & LL_SBI_LRU_RESIZE)
226                 data->ocd_connect_flags |= OBD_CONNECT_LRU_RESIZE;
227 #endif
228 #ifdef CONFIG_FS_POSIX_ACL
229         data->ocd_connect_flags |= OBD_CONNECT_ACL | OBD_CONNECT_UMASK;
230 #endif
231
232         if (OBD_FAIL_CHECK(OBD_FAIL_MDC_LIGHTWEIGHT))
233                 /* flag mdc connection as lightweight, only used for test
234                  * purpose, use with care */
235                 data->ocd_connect_flags |= OBD_CONNECT_LIGHTWEIGHT;
236
237         data->ocd_ibits_known = MDS_INODELOCK_FULL;
238         data->ocd_version = LUSTRE_VERSION_CODE;
239
240         if (sb->s_flags & MS_RDONLY)
241                 data->ocd_connect_flags |= OBD_CONNECT_RDONLY;
242         if (sbi->ll_flags & LL_SBI_USER_XATTR)
243                 data->ocd_connect_flags |= OBD_CONNECT_XATTR;
244
245 #ifdef HAVE_MS_FLOCK_LOCK
246         /* force vfs to use lustre handler for flock() calls - bug 10743 */
247         sb->s_flags |= MS_FLOCK_LOCK;
248 #endif
249 #ifdef MS_HAS_NEW_AOPS
250         sb->s_flags |= MS_HAS_NEW_AOPS;
251 #endif
252
253         if (sbi->ll_flags & LL_SBI_FLOCK)
254                 sbi->ll_fop = &ll_file_operations_flock;
255         else if (sbi->ll_flags & LL_SBI_LOCALFLOCK)
256                 sbi->ll_fop = &ll_file_operations;
257         else
258                 sbi->ll_fop = &ll_file_operations_noflock;
259
260         /* real client */
261         data->ocd_connect_flags |= OBD_CONNECT_REAL;
262         if (sbi->ll_flags & LL_SBI_RMT_CLIENT)
263                 data->ocd_connect_flags |= OBD_CONNECT_RMT_CLIENT_FORCE;
264
265         data->ocd_brw_size = MD_MAX_BRW_SIZE;
266
267         err = obd_connect(NULL, &sbi->ll_md_exp, obd, &sbi->ll_sb_uuid, data, NULL);
268         if (err == -EBUSY) {
269                 LCONSOLE_ERROR_MSG(0x14f, "An MDT (md %s) is performing "
270                                    "recovery, of which this client is not a "
271                                    "part. Please wait for recovery to complete,"
272                                    " abort, or time out.\n", md);
273                 GOTO(out, err);
274         } else if (err) {
275                 CERROR("cannot connect to %s: rc = %d\n", md, err);
276                 GOTO(out, err);
277         }
278
279         sbi->ll_md_exp->exp_connect_data = *data;
280
281         err = obd_fid_init(sbi->ll_md_exp->exp_obd, sbi->ll_md_exp,
282                            LUSTRE_SEQ_METADATA);
283         if (err) {
284                 CERROR("%s: Can't init metadata layer FID infrastructure, "
285                        "rc = %d\n", sbi->ll_md_exp->exp_obd->obd_name, err);
286                 GOTO(out_md, err);
287         }
288
289         /* For mount, we only need fs info from MDT0, and also in DNE, it
290          * can make sure the client can be mounted as long as MDT0 is
291          * avaible */
292         err = obd_statfs(NULL, sbi->ll_md_exp, osfs,
293                         cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
294                         OBD_STATFS_FOR_MDT0);
295         if (err)
296                 GOTO(out_md_fid, err);
297
298         /* This needs to be after statfs to ensure connect has finished.
299          * Note that "data" does NOT contain the valid connect reply.
300          * If connecting to a 1.8 server there will be no LMV device, so
301          * we can access the MDC export directly and exp_connect_flags will
302          * be non-zero, but if accessing an upgraded 2.1 server it will
303          * have the correct flags filled in.
304          * XXX: fill in the LMV exp_connect_flags from MDC(s). */
305         valid = exp_connect_flags(sbi->ll_md_exp) & CLIENT_CONNECT_MDT_REQD;
306         if (exp_connect_flags(sbi->ll_md_exp) != 0 &&
307             valid != CLIENT_CONNECT_MDT_REQD) {
308                 char *buf;
309
310                 OBD_ALLOC_WAIT(buf, PAGE_CACHE_SIZE);
311                 obd_connect_flags2str(buf, PAGE_CACHE_SIZE,
312                                       valid ^ CLIENT_CONNECT_MDT_REQD, ",");
313                 LCONSOLE_ERROR_MSG(0x170, "Server %s does not support "
314                                    "feature(s) needed for correct operation "
315                                    "of this client (%s). Please upgrade "
316                                    "server or downgrade client.\n",
317                                    sbi->ll_md_exp->exp_obd->obd_name, buf);
318                 OBD_FREE(buf, PAGE_CACHE_SIZE);
319                 GOTO(out_md_fid, err = -EPROTO);
320         }
321
322         size = sizeof(*data);
323         err = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_CONN_DATA),
324                            KEY_CONN_DATA,  &size, data);
325         if (err) {
326                 CERROR("%s: Get connect data failed: rc = %d\n",
327                        sbi->ll_md_exp->exp_obd->obd_name, err);
328                 GOTO(out_md_fid, err);
329         }
330
331         LASSERT(osfs->os_bsize);
332         sb->s_blocksize = osfs->os_bsize;
333         sb->s_blocksize_bits = log2(osfs->os_bsize);
334         sb->s_magic = LL_SUPER_MAGIC;
335         sb->s_maxbytes = MAX_LFS_FILESIZE;
336         sbi->ll_namelen = osfs->os_namelen;
337
338         if ((sbi->ll_flags & LL_SBI_USER_XATTR) &&
339             !(data->ocd_connect_flags & OBD_CONNECT_XATTR)) {
340                 LCONSOLE_INFO("Disabling user_xattr feature because "
341                               "it is not supported on the server\n");
342                 sbi->ll_flags &= ~LL_SBI_USER_XATTR;
343         }
344
345         if (data->ocd_connect_flags & OBD_CONNECT_ACL) {
346 #ifdef MS_POSIXACL
347                 sb->s_flags |= MS_POSIXACL;
348 #endif
349                 sbi->ll_flags |= LL_SBI_ACL;
350         } else {
351                 LCONSOLE_INFO("client wants to enable acl, but mdt not!\n");
352 #ifdef MS_POSIXACL
353                 sb->s_flags &= ~MS_POSIXACL;
354 #endif
355                 sbi->ll_flags &= ~LL_SBI_ACL;
356         }
357
358         if (data->ocd_connect_flags & OBD_CONNECT_RMT_CLIENT) {
359                 if (!(sbi->ll_flags & LL_SBI_RMT_CLIENT)) {
360                         sbi->ll_flags |= LL_SBI_RMT_CLIENT;
361                         LCONSOLE_INFO("client is set as remote by default.\n");
362                 }
363         } else {
364                 if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
365                         sbi->ll_flags &= ~LL_SBI_RMT_CLIENT;
366                         LCONSOLE_INFO("client claims to be remote, but server "
367                                       "rejected, forced to be local.\n");
368                 }
369         }
370
371         if (data->ocd_connect_flags & OBD_CONNECT_MDS_CAPA) {
372                 LCONSOLE_INFO("client enabled MDS capability!\n");
373                 sbi->ll_flags |= LL_SBI_MDS_CAPA;
374         }
375
376         if (data->ocd_connect_flags & OBD_CONNECT_OSS_CAPA) {
377                 LCONSOLE_INFO("client enabled OSS capability!\n");
378                 sbi->ll_flags |= LL_SBI_OSS_CAPA;
379         }
380
381         if (data->ocd_connect_flags & OBD_CONNECT_64BITHASH)
382                 sbi->ll_flags |= LL_SBI_64BIT_HASH;
383
384         if (data->ocd_connect_flags & OBD_CONNECT_BRW_SIZE)
385                 sbi->ll_md_brw_pages = data->ocd_brw_size >> PAGE_CACHE_SHIFT;
386         else
387                 sbi->ll_md_brw_pages = 1;
388
389         if (data->ocd_connect_flags & OBD_CONNECT_LAYOUTLOCK)
390                 sbi->ll_flags |= LL_SBI_LAYOUT_LOCK;
391
392         if (data->ocd_ibits_known & MDS_INODELOCK_XATTR) {
393                 if (!(data->ocd_connect_flags & OBD_CONNECT_MAX_EASIZE)) {
394                         LCONSOLE_INFO("%s: disabling xattr cache due to "
395                                       "unknown maximum xattr size.\n", dt);
396                 } else {
397                         sbi->ll_flags |= LL_SBI_XATTR_CACHE;
398                         sbi->ll_xattr_cache_enabled = 1;
399                 }
400         }
401
402         obd = class_name2obd(dt);
403         if (!obd) {
404                 CERROR("DT %s: not setup or attached\n", dt);
405                 GOTO(out_md_fid, err = -ENODEV);
406         }
407
408         data->ocd_connect_flags = OBD_CONNECT_GRANT     | OBD_CONNECT_VERSION  |
409                                   OBD_CONNECT_REQPORTAL | OBD_CONNECT_BRW_SIZE |
410                                   OBD_CONNECT_CANCELSET | OBD_CONNECT_FID      |
411                                   OBD_CONNECT_SRVLOCK   | OBD_CONNECT_TRUNCLOCK|
412                                   OBD_CONNECT_AT | OBD_CONNECT_RMT_CLIENT |
413                                   OBD_CONNECT_OSS_CAPA | OBD_CONNECT_VBR|
414                                   OBD_CONNECT_FULL20 | OBD_CONNECT_64BITHASH |
415                                   OBD_CONNECT_MAXBYTES |
416                                   OBD_CONNECT_EINPROGRESS |
417                                   OBD_CONNECT_JOBSTATS | OBD_CONNECT_LVB_TYPE |
418                                   OBD_CONNECT_LAYOUTLOCK |
419                                   OBD_CONNECT_PINGLESS | OBD_CONNECT_LFSCK;
420
421         if (!OBD_FAIL_CHECK(OBD_FAIL_OSC_CONNECT_CKSUM)) {
422                 /* OBD_CONNECT_CKSUM should always be set, even if checksums are
423                  * disabled by default, because it can still be enabled on the
424                  * fly via /proc. As a consequence, we still need to come to an
425                  * agreement on the supported algorithms at connect time */
426                 data->ocd_connect_flags |= OBD_CONNECT_CKSUM;
427
428                 if (OBD_FAIL_CHECK(OBD_FAIL_OSC_CKSUM_ADLER_ONLY))
429                         data->ocd_cksum_types = OBD_CKSUM_ADLER;
430                 else
431                         data->ocd_cksum_types = cksum_types_supported_client();
432         }
433
434 #ifdef HAVE_LRU_RESIZE_SUPPORT
435         data->ocd_connect_flags |= OBD_CONNECT_LRU_RESIZE;
436 #endif
437         if (sbi->ll_flags & LL_SBI_RMT_CLIENT)
438                 data->ocd_connect_flags |= OBD_CONNECT_RMT_CLIENT_FORCE;
439
440         CDEBUG(D_RPCTRACE, "ocd_connect_flags: "LPX64" ocd_version: %d "
441                "ocd_grant: %d\n", data->ocd_connect_flags,
442                data->ocd_version, data->ocd_grant);
443
444         obd->obd_upcall.onu_owner = &sbi->ll_lco;
445         obd->obd_upcall.onu_upcall = cl_ocd_update;
446
447         data->ocd_brw_size = DT_MAX_BRW_SIZE;
448
449         err = obd_connect(NULL, &sbi->ll_dt_exp, obd, &sbi->ll_sb_uuid, data,
450                           NULL);
451         if (err == -EBUSY) {
452                 LCONSOLE_ERROR_MSG(0x150, "An OST (dt %s) is performing "
453                                    "recovery, of which this client is not a "
454                                    "part.  Please wait for recovery to "
455                                    "complete, abort, or time out.\n", dt);
456                 GOTO(out_md, err);
457         } else if (err) {
458                 CERROR("%s: Cannot connect to %s: rc = %d\n",
459                        sbi->ll_dt_exp->exp_obd->obd_name, dt, err);
460                 GOTO(out_md, err);
461         }
462
463         sbi->ll_dt_exp->exp_connect_data = *data;
464
465         err = obd_fid_init(sbi->ll_dt_exp->exp_obd, sbi->ll_dt_exp,
466                            LUSTRE_SEQ_METADATA);
467         if (err) {
468                 CERROR("%s: Can't init data layer FID infrastructure, "
469                        "rc = %d\n", sbi->ll_dt_exp->exp_obd->obd_name, err);
470                 GOTO(out_dt, err);
471         }
472
473         mutex_lock(&sbi->ll_lco.lco_lock);
474         sbi->ll_lco.lco_flags = data->ocd_connect_flags;
475         sbi->ll_lco.lco_md_exp = sbi->ll_md_exp;
476         sbi->ll_lco.lco_dt_exp = sbi->ll_dt_exp;
477         mutex_unlock(&sbi->ll_lco.lco_lock);
478
479         fid_zero(&sbi->ll_root_fid);
480         err = md_getstatus(sbi->ll_md_exp, &sbi->ll_root_fid, &oc);
481         if (err) {
482                 CERROR("cannot mds_connect: rc = %d\n", err);
483                 GOTO(out_lock_cn_cb, err);
484         }
485         if (!fid_is_sane(&sbi->ll_root_fid)) {
486                 CERROR("%s: Invalid root fid "DFID" during mount\n",
487                        sbi->ll_md_exp->exp_obd->obd_name,
488                        PFID(&sbi->ll_root_fid));
489                 GOTO(out_lock_cn_cb, err = -EINVAL);
490         }
491         CDEBUG(D_SUPER, "rootfid "DFID"\n", PFID(&sbi->ll_root_fid));
492
493         sb->s_op = &lustre_super_operations;
494 #if THREAD_SIZE >= 8192 /*b=17630*/
495         sb->s_export_op = &lustre_export_operations;
496 #endif
497
498         /* make root inode
499          * XXX: move this to after cbd setup? */
500         valid = OBD_MD_FLGETATTR | OBD_MD_FLBLOCKS | OBD_MD_FLMDSCAPA |
501                 OBD_MD_FLMODEASIZE;
502         if (sbi->ll_flags & LL_SBI_RMT_CLIENT)
503                 valid |= OBD_MD_FLRMTPERM;
504         else if (sbi->ll_flags & LL_SBI_ACL)
505                 valid |= OBD_MD_FLACL;
506
507         OBD_ALLOC_PTR(op_data);
508         if (op_data == NULL)
509                 GOTO(out_lock_cn_cb, err = -ENOMEM);
510
511         op_data->op_fid1 = sbi->ll_root_fid;
512         op_data->op_mode = 0;
513         op_data->op_capa1 = oc;
514         op_data->op_valid = valid;
515
516         err = md_getattr(sbi->ll_md_exp, op_data, &request);
517         if (oc)
518                 capa_put(oc);
519         OBD_FREE_PTR(op_data);
520         if (err) {
521                 CERROR("%s: md_getattr failed for root: rc = %d\n",
522                        sbi->ll_md_exp->exp_obd->obd_name, err);
523                 GOTO(out_lock_cn_cb, err);
524         }
525
526         err = md_get_lustre_md(sbi->ll_md_exp, request, sbi->ll_dt_exp,
527                                sbi->ll_md_exp, &lmd);
528         if (err) {
529                 CERROR("failed to understand root inode md: rc = %d\n", err);
530                 ptlrpc_req_finished(request);
531                 GOTO(out_lock_cn_cb, err);
532         }
533
534         LASSERT(fid_is_sane(&sbi->ll_root_fid));
535         root = ll_iget(sb, cl_fid_build_ino(&sbi->ll_root_fid,
536                                             sbi->ll_flags & LL_SBI_32BIT_API),
537                        &lmd);
538         md_free_lustre_md(sbi->ll_md_exp, &lmd);
539         ptlrpc_req_finished(request);
540
541         if (IS_ERR(root)) {
542                 if (lmd.lsm)
543                         obd_free_memmd(sbi->ll_dt_exp, &lmd.lsm);
544 #ifdef CONFIG_FS_POSIX_ACL
545                 if (lmd.posix_acl) {
546                         posix_acl_release(lmd.posix_acl);
547                         lmd.posix_acl = NULL;
548                 }
549 #endif
550                 err = IS_ERR(root) ? PTR_ERR(root) : -EBADF;
551                 root = NULL;
552                 CERROR("lustre_lite: bad iget4 for root\n");
553                 GOTO(out_root, err);
554         }
555
556 #ifdef CONFIG_FS_POSIX_ACL
557         if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
558                 rct_init(&sbi->ll_rct);
559                 et_init(&sbi->ll_et);
560         }
561 #endif
562
563         checksum = sbi->ll_flags & LL_SBI_CHECKSUM;
564         err = obd_set_info_async(NULL, sbi->ll_dt_exp, sizeof(KEY_CHECKSUM),
565                                  KEY_CHECKSUM, sizeof(checksum), &checksum,
566                                  NULL);
567         cl_sb_init(sb);
568
569         err = obd_set_info_async(NULL, sbi->ll_dt_exp, sizeof(KEY_CACHE_SET),
570                                  KEY_CACHE_SET, sizeof(*sbi->ll_cache),
571                                  sbi->ll_cache, NULL);
572
573         sb->s_root = d_make_root(root);
574         if (sb->s_root == NULL) {
575                 CERROR("%s: can't make root dentry\n",
576                         ll_get_fsname(sb, NULL, 0));
577                 GOTO(out_root, err = -ENOMEM);
578         }
579 #ifdef HAVE_DCACHE_LOCK
580         sb->s_root->d_op = &ll_d_ops;
581 #endif
582
583         sbi->ll_sdev_orig = sb->s_dev;
584
585         /* We set sb->s_dev equal on all lustre clients in order to support
586          * NFS export clustering.  NFSD requires that the FSID be the same
587          * on all clients. */
588         /* s_dev is also used in lt_compare() to compare two fs, but that is
589          * only a node-local comparison. */
590         uuid = obd_get_uuid(sbi->ll_md_exp);
591         if (uuid != NULL)
592                 sb->s_dev = get_uuid2int(uuid->uuid, strlen(uuid->uuid));
593
594         if (data != NULL)
595                 OBD_FREE_PTR(data);
596         if (osfs != NULL)
597                 OBD_FREE_PTR(osfs);
598         if (proc_lustre_fs_root != NULL) {
599                 err = lprocfs_register_mountpoint(proc_lustre_fs_root, sb,
600                                                   dt, md);
601                 if (err < 0) {
602                         CERROR("%s: could not register mount in lprocfs: "
603                                "rc = %d\n", ll_get_fsname(sb, NULL, 0), err);
604                         err = 0;
605                 }
606         }
607
608         RETURN(err);
609 out_root:
610         if (root)
611                 iput(root);
612 out_lock_cn_cb:
613         obd_fid_fini(sbi->ll_dt_exp->exp_obd);
614 out_dt:
615         obd_disconnect(sbi->ll_dt_exp);
616         sbi->ll_dt_exp = NULL;
617 out_md_fid:
618         obd_fid_fini(sbi->ll_md_exp->exp_obd);
619 out_md:
620         obd_disconnect(sbi->ll_md_exp);
621         sbi->ll_md_exp = NULL;
622 out:
623         if (data != NULL)
624                 OBD_FREE_PTR(data);
625         if (osfs != NULL)
626                 OBD_FREE_PTR(osfs);
627         return err;
628 }
629
630 int ll_get_max_mdsize(struct ll_sb_info *sbi, int *lmmsize)
631 {
632         int size, rc;
633
634         size = sizeof(*lmmsize);
635         rc = obd_get_info(NULL, sbi->ll_dt_exp, sizeof(KEY_MAX_EASIZE),
636                           KEY_MAX_EASIZE, &size, lmmsize);
637         if (rc != 0) {
638                 CERROR("%s: cannot get max LOV EA size: rc = %d\n",
639                        sbi->ll_dt_exp->exp_obd->obd_name, rc);
640                 RETURN(rc);
641         }
642
643         size = sizeof(int);
644         rc = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_MAX_EASIZE),
645                           KEY_MAX_EASIZE, &size, lmmsize);
646         if (rc)
647                 CERROR("Get max mdsize error rc %d\n", rc);
648
649         RETURN(rc);
650 }
651
652 /**
653  * Get the value of the default_easize parameter.
654  *
655  * \see client_obd::cl_default_mds_easize
656  *
657  * \param[in] sbi       superblock info for this filesystem
658  * \param[out] lmmsize  pointer to storage location for value
659  *
660  * \retval 0            on success
661  * \retval negative     negated errno on failure
662  */
663 int ll_get_default_mdsize(struct ll_sb_info *sbi, int *lmmsize)
664 {
665         int size, rc;
666
667         size = sizeof(int);
668         rc = obd_get_info(NULL, sbi->ll_md_exp, sizeof(KEY_DEFAULT_EASIZE),
669                          KEY_DEFAULT_EASIZE, &size, lmmsize);
670         if (rc)
671                 CERROR("Get default mdsize error rc %d\n", rc);
672
673         RETURN(rc);
674 }
675
676 /**
677  * Set the default_easize parameter to the given value.
678  *
679  * \see client_obd::cl_default_mds_easize
680  *
681  * \param[in] sbi       superblock info for this filesystem
682  * \param[in] lmmsize   the size to set
683  *
684  * \retval 0            on success
685  * \retval negative     negated errno on failure
686  */
687 int ll_set_default_mdsize(struct ll_sb_info *sbi, int lmmsize)
688 {
689         int rc;
690
691         if (lmmsize < sizeof(struct lov_mds_md) ||
692             lmmsize > OBD_MAX_DEFAULT_EA_SIZE)
693                 return -EINVAL;
694
695         rc = obd_set_info_async(NULL, sbi->ll_md_exp,
696                                 sizeof(KEY_DEFAULT_EASIZE), KEY_DEFAULT_EASIZE,
697                                 sizeof(int), &lmmsize, NULL);
698
699         RETURN(rc);
700 }
701
702 static void ll_dump_inode(struct inode *inode)
703 {
704         struct ll_d_hlist_node *tmp;
705         int dentry_count = 0;
706
707         LASSERT(inode != NULL);
708
709         ll_d_hlist_for_each(tmp, &inode->i_dentry)
710                 dentry_count++;
711
712         CERROR("%s: inode %p dump: dev=%s fid="DFID
713                " mode=%o count=%u, %d dentries\n",
714                ll_get_fsname(inode->i_sb, NULL, 0), inode,
715                ll_i2mdexp(inode)->exp_obd->obd_name, PFID(ll_inode2fid(inode)),
716                inode->i_mode, atomic_read(&inode->i_count), dentry_count);
717 }
718
719 void lustre_dump_dentry(struct dentry *dentry, int recur)
720 {
721         struct list_head *tmp;
722         int subdirs = 0;
723
724         LASSERT(dentry != NULL);
725
726         list_for_each(tmp, &dentry->d_subdirs)
727                 subdirs++;
728
729         CERROR("dentry %p dump: name=%.*s parent=%.*s (%p), inode=%p, count=%u,"
730                " flags=0x%x, fsdata=%p, %d subdirs\n", dentry,
731                dentry->d_name.len, dentry->d_name.name,
732                dentry->d_parent->d_name.len, dentry->d_parent->d_name.name,
733                dentry->d_parent, dentry->d_inode, ll_d_count(dentry),
734                dentry->d_flags, dentry->d_fsdata, subdirs);
735         if (dentry->d_inode != NULL)
736                 ll_dump_inode(dentry->d_inode);
737
738         if (recur == 0)
739                 return;
740
741         list_for_each(tmp, &dentry->d_subdirs) {
742                 struct dentry *d = list_entry(tmp, struct dentry, d_child);
743                 lustre_dump_dentry(d, recur - 1);
744         }
745 }
746
747 static void client_common_put_super(struct super_block *sb)
748 {
749         struct ll_sb_info *sbi = ll_s2sbi(sb);
750         ENTRY;
751
752 #ifdef CONFIG_FS_POSIX_ACL
753         if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
754                 et_fini(&sbi->ll_et);
755                 rct_fini(&sbi->ll_rct);
756         }
757 #endif
758
759         cl_sb_fini(sb);
760
761         list_del(&sbi->ll_conn_chain);
762
763         obd_fid_fini(sbi->ll_dt_exp->exp_obd);
764         obd_disconnect(sbi->ll_dt_exp);
765         sbi->ll_dt_exp = NULL;
766
767         lprocfs_unregister_mountpoint(sbi);
768
769         obd_fid_fini(sbi->ll_md_exp->exp_obd);
770         obd_disconnect(sbi->ll_md_exp);
771         sbi->ll_md_exp = NULL;
772
773         EXIT;
774 }
775
776 void ll_kill_super(struct super_block *sb)
777 {
778         struct ll_sb_info *sbi;
779         ENTRY;
780
781         /* not init sb ?*/
782         if (!(sb->s_flags & MS_ACTIVE))
783                 return;
784
785         sbi = ll_s2sbi(sb);
786         /* we need restore s_dev from changed for clustred NFS before put_super
787          * because new kernels have cached s_dev and change sb->s_dev in
788          * put_super not affected real removing devices */
789         if (sbi) {
790                 sb->s_dev = sbi->ll_sdev_orig;
791                 sbi->ll_umounting = 1;
792
793                 /* wait running statahead threads to quit */
794                 while (atomic_read(&sbi->ll_sa_running) > 0) {
795                         set_current_state(TASK_UNINTERRUPTIBLE);
796                         schedule_timeout(msecs_to_jiffies(MSEC_PER_SEC >> 3));
797                 }
798         }
799
800         EXIT;
801 }
802
803 static inline int ll_set_opt(const char *opt, char *data, int fl)
804 {
805         if (strncmp(opt, data, strlen(opt)) != 0)
806                 return(0);
807         else
808                 return(fl);
809 }
810
811 /* non-client-specific mount options are parsed in lmd_parse */
812 static int ll_options(char *options, int *flags)
813 {
814         int tmp;
815         char *s1 = options, *s2;
816         ENTRY;
817
818         if (!options)
819                 RETURN(0);
820
821         CDEBUG(D_CONFIG, "Parsing opts %s\n", options);
822
823         while (*s1) {
824                 CDEBUG(D_SUPER, "next opt=%s\n", s1);
825                 tmp = ll_set_opt("nolock", s1, LL_SBI_NOLCK);
826                 if (tmp) {
827                         *flags |= tmp;
828                         goto next;
829                 }
830                 tmp = ll_set_opt("flock", s1, LL_SBI_FLOCK);
831                 if (tmp) {
832                         *flags |= tmp;
833                         goto next;
834                 }
835                 tmp = ll_set_opt("localflock", s1, LL_SBI_LOCALFLOCK);
836                 if (tmp) {
837                         *flags |= tmp;
838                         goto next;
839                 }
840                 tmp = ll_set_opt("noflock", s1, LL_SBI_FLOCK|LL_SBI_LOCALFLOCK);
841                 if (tmp) {
842                         *flags &= ~tmp;
843                         goto next;
844                 }
845                 tmp = ll_set_opt("user_xattr", s1, LL_SBI_USER_XATTR);
846                 if (tmp) {
847                         *flags |= tmp;
848                         goto next;
849                 }
850                 tmp = ll_set_opt("nouser_xattr", s1, LL_SBI_USER_XATTR);
851                 if (tmp) {
852                         *flags &= ~tmp;
853                         goto next;
854                 }
855                 tmp = ll_set_opt("remote_client", s1, LL_SBI_RMT_CLIENT);
856                 if (tmp) {
857                         *flags |= tmp;
858                         goto next;
859                 }
860                 tmp = ll_set_opt("user_fid2path", s1, LL_SBI_USER_FID2PATH);
861                 if (tmp) {
862                         *flags |= tmp;
863                         goto next;
864                 }
865                 tmp = ll_set_opt("nouser_fid2path", s1, LL_SBI_USER_FID2PATH);
866                 if (tmp) {
867                         *flags &= ~tmp;
868                         goto next;
869                 }
870
871                 tmp = ll_set_opt("checksum", s1, LL_SBI_CHECKSUM);
872                 if (tmp) {
873                         *flags |= tmp;
874                         goto next;
875                 }
876                 tmp = ll_set_opt("nochecksum", s1, LL_SBI_CHECKSUM);
877                 if (tmp) {
878                         *flags &= ~tmp;
879                         goto next;
880                 }
881                 tmp = ll_set_opt("lruresize", s1, LL_SBI_LRU_RESIZE);
882                 if (tmp) {
883                         *flags |= tmp;
884                         goto next;
885                 }
886                 tmp = ll_set_opt("nolruresize", s1, LL_SBI_LRU_RESIZE);
887                 if (tmp) {
888                         *flags &= ~tmp;
889                         goto next;
890                 }
891                 tmp = ll_set_opt("lazystatfs", s1, LL_SBI_LAZYSTATFS);
892                 if (tmp) {
893                         *flags |= tmp;
894                         goto next;
895                 }
896                 tmp = ll_set_opt("nolazystatfs", s1, LL_SBI_LAZYSTATFS);
897                 if (tmp) {
898                         *flags &= ~tmp;
899                         goto next;
900                 }
901                 tmp = ll_set_opt("32bitapi", s1, LL_SBI_32BIT_API);
902                 if (tmp) {
903                         *flags |= tmp;
904                         goto next;
905                 }
906                 tmp = ll_set_opt("verbose", s1, LL_SBI_VERBOSE);
907                 if (tmp) {
908                         *flags |= tmp;
909                         goto next;
910                 }
911                 tmp = ll_set_opt("noverbose", s1, LL_SBI_VERBOSE);
912                 if (tmp) {
913                         *flags &= ~tmp;
914                         goto next;
915                 }
916                 LCONSOLE_ERROR_MSG(0x152, "Unknown option '%s', won't mount.\n",
917                                    s1);
918                 RETURN(-EINVAL);
919
920 next:
921                 /* Find next opt */
922                 s2 = strchr(s1, ',');
923                 if (s2 == NULL)
924                         break;
925                 s1 = s2 + 1;
926         }
927         RETURN(0);
928 }
929
930 void ll_lli_init(struct ll_inode_info *lli)
931 {
932         lli->lli_inode_magic = LLI_INODE_MAGIC;
933         lli->lli_flags = 0;
934         spin_lock_init(&lli->lli_lock);
935         lli->lli_posix_acl = NULL;
936         lli->lli_remote_perms = NULL;
937         mutex_init(&lli->lli_rmtperm_mutex);
938         /* Do not set lli_fid, it has been initialized already. */
939         fid_zero(&lli->lli_pfid);
940         INIT_LIST_HEAD(&lli->lli_oss_capas);
941         atomic_set(&lli->lli_open_count, 0);
942         lli->lli_mds_capa = NULL;
943         lli->lli_rmtperm_time = 0;
944         lli->lli_mds_read_och = NULL;
945         lli->lli_mds_write_och = NULL;
946         lli->lli_mds_exec_och = NULL;
947         lli->lli_open_fd_read_count = 0;
948         lli->lli_open_fd_write_count = 0;
949         lli->lli_open_fd_exec_count = 0;
950         mutex_init(&lli->lli_och_mutex);
951         spin_lock_init(&lli->lli_agl_lock);
952         spin_lock_init(&lli->lli_layout_lock);
953         ll_layout_version_set(lli, CL_LAYOUT_GEN_NONE);
954         lli->lli_clob = NULL;
955
956         init_rwsem(&lli->lli_xattrs_list_rwsem);
957         mutex_init(&lli->lli_xattrs_enq_lock);
958
959         LASSERT(lli->lli_vfs_inode.i_mode != 0);
960         if (S_ISDIR(lli->lli_vfs_inode.i_mode)) {
961                 mutex_init(&lli->lli_readdir_mutex);
962                 lli->lli_opendir_key = NULL;
963                 lli->lli_sai = NULL;
964                 spin_lock_init(&lli->lli_sa_lock);
965                 lli->lli_opendir_pid = 0;
966                 lli->lli_sa_enabled = 0;
967                 lli->lli_def_stripe_offset = -1;
968         } else {
969                 mutex_init(&lli->lli_size_mutex);
970                 lli->lli_symlink_name = NULL;
971                 init_rwsem(&lli->lli_trunc_sem);
972                 range_lock_tree_init(&lli->lli_write_tree);
973                 init_rwsem(&lli->lli_glimpse_sem);
974                 lli->lli_glimpse_time = 0;
975                 INIT_LIST_HEAD(&lli->lli_agl_list);
976                 lli->lli_agl_index = 0;
977                 lli->lli_async_rc = 0;
978         }
979         mutex_init(&lli->lli_layout_mutex);
980 }
981
982 static inline int ll_bdi_register(struct backing_dev_info *bdi)
983 {
984         static atomic_t ll_bdi_num = ATOMIC_INIT(0);
985
986         bdi->name = "lustre";
987         return bdi_register(bdi, NULL, "lustre-%d",
988                             atomic_inc_return(&ll_bdi_num));
989 }
990
991 int ll_fill_super(struct super_block *sb, struct vfsmount *mnt)
992 {
993         struct lustre_profile *lprof = NULL;
994         struct lustre_sb_info *lsi = s2lsi(sb);
995         struct ll_sb_info *sbi;
996         char  *dt = NULL, *md = NULL;
997         char  *profilenm = get_profile_name(sb);
998         struct config_llog_instance *cfg;
999         /* %p for void* in printf needs 16+2 characters: 0xffffffffffffffff */
1000         const int instlen = sizeof(cfg->cfg_instance) * 2 + 2;
1001         int    err;
1002         ENTRY;
1003
1004         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
1005
1006         OBD_ALLOC_PTR(cfg);
1007         if (cfg == NULL)
1008                 RETURN(-ENOMEM);
1009
1010         try_module_get(THIS_MODULE);
1011
1012         /* client additional sb info */
1013         lsi->lsi_llsbi = sbi = ll_init_sbi();
1014         if (!sbi) {
1015                 module_put(THIS_MODULE);
1016                 OBD_FREE_PTR(cfg);
1017                 RETURN(-ENOMEM);
1018         }
1019
1020         err = ll_options(lsi->lsi_lmd->lmd_opts, &sbi->ll_flags);
1021         if (err)
1022                 GOTO(out_free, err);
1023
1024         err = bdi_init(&lsi->lsi_bdi);
1025         if (err)
1026                 GOTO(out_free, err);
1027         lsi->lsi_flags |= LSI_BDI_INITIALIZED;
1028         lsi->lsi_bdi.capabilities = BDI_CAP_MAP_COPY;
1029         err = ll_bdi_register(&lsi->lsi_bdi);
1030         if (err)
1031                 GOTO(out_free, err);
1032
1033         sb->s_bdi = &lsi->lsi_bdi;
1034 #ifndef HAVE_DCACHE_LOCK
1035         /* kernel >= 2.6.38 store dentry operations in sb->s_d_op. */
1036         sb->s_d_op = &ll_d_ops;
1037 #endif
1038
1039         /* Generate a string unique to this super, in case some joker tries
1040            to mount the same fs at two mount points.
1041            Use the address of the super itself.*/
1042         cfg->cfg_instance = sb;
1043         cfg->cfg_uuid = lsi->lsi_llsbi->ll_sb_uuid;
1044         cfg->cfg_callback = class_config_llog_handler;
1045         /* set up client obds */
1046         err = lustre_process_log(sb, profilenm, cfg);
1047         if (err < 0)
1048                 GOTO(out_free, err);
1049
1050         /* Profile set with LCFG_MOUNTOPT so we can find our mdc and osc obds */
1051         lprof = class_get_profile(profilenm);
1052         if (lprof == NULL) {
1053                 LCONSOLE_ERROR_MSG(0x156, "The client profile '%s' could not be"
1054                                    " read from the MGS.  Does that filesystem "
1055                                    "exist?\n", profilenm);
1056                 GOTO(out_free, err = -EINVAL);
1057         }
1058         CDEBUG(D_CONFIG, "Found profile %s: mdc=%s osc=%s\n", profilenm,
1059                lprof->lp_md, lprof->lp_dt);
1060
1061         OBD_ALLOC(dt, strlen(lprof->lp_dt) + instlen + 2);
1062         if (!dt)
1063                 GOTO(out_free, err = -ENOMEM);
1064         sprintf(dt, "%s-%p", lprof->lp_dt, cfg->cfg_instance);
1065
1066         OBD_ALLOC(md, strlen(lprof->lp_md) + instlen + 2);
1067         if (!md)
1068                 GOTO(out_free, err = -ENOMEM);
1069         sprintf(md, "%s-%p", lprof->lp_md, cfg->cfg_instance);
1070
1071         /* connections, registrations, sb setup */
1072         err = client_common_fill_super(sb, md, dt, mnt);
1073         if (err < 0)
1074                 GOTO(out_free, err);
1075
1076         sbi->ll_client_common_fill_super_succeeded = 1;
1077
1078 out_free:
1079         if (md)
1080                 OBD_FREE(md, strlen(lprof->lp_md) + instlen + 2);
1081         if (dt)
1082                 OBD_FREE(dt, strlen(lprof->lp_dt) + instlen + 2);
1083         if (err)
1084                 ll_put_super(sb);
1085         else if (sbi->ll_flags & LL_SBI_VERBOSE)
1086                 LCONSOLE_WARN("Mounted %s\n", profilenm);
1087
1088         OBD_FREE_PTR(cfg);
1089         RETURN(err);
1090 } /* ll_fill_super */
1091
1092 void ll_put_super(struct super_block *sb)
1093 {
1094         struct config_llog_instance cfg, params_cfg;
1095         struct obd_device *obd;
1096         struct lustre_sb_info *lsi = s2lsi(sb);
1097         struct ll_sb_info *sbi = ll_s2sbi(sb);
1098         char *profilenm = get_profile_name(sb);
1099         long ccc_count;
1100         int next, force = 1, rc = 0;
1101         ENTRY;
1102
1103         CDEBUG(D_VFSTRACE, "VFS Op: sb %p - %s\n", sb, profilenm);
1104
1105         ll_print_capa_stat(sbi);
1106
1107         cfg.cfg_instance = sb;
1108         lustre_end_log(sb, profilenm, &cfg);
1109
1110         params_cfg.cfg_instance = sb;
1111         lustre_end_log(sb, PARAMS_FILENAME, &params_cfg);
1112
1113         if (sbi->ll_md_exp) {
1114                 obd = class_exp2obd(sbi->ll_md_exp);
1115                 if (obd)
1116                         force = obd->obd_force;
1117         }
1118
1119         /* Wait for unstable pages to be committed to stable storage */
1120         if (force == 0) {
1121                 struct l_wait_info lwi = LWI_INTR(LWI_ON_SIGNAL_NOOP, NULL);
1122                 rc = l_wait_event(sbi->ll_cache->ccc_unstable_waitq,
1123                         atomic_long_read(&sbi->ll_cache->ccc_unstable_nr) == 0,
1124                         &lwi);
1125         }
1126
1127         ccc_count = atomic_long_read(&sbi->ll_cache->ccc_unstable_nr);
1128         if (force == 0 && rc != -EINTR)
1129                 LASSERTF(ccc_count == 0, "count: %li\n", ccc_count);
1130
1131
1132         /* We need to set force before the lov_disconnect in
1133            lustre_common_put_super, since l_d cleans up osc's as well. */
1134         if (force) {
1135                 next = 0;
1136                 while ((obd = class_devices_in_group(&sbi->ll_sb_uuid,
1137                                                      &next)) != NULL) {
1138                         obd->obd_force = force;
1139                 }
1140         }
1141
1142         if (sbi->ll_client_common_fill_super_succeeded) {
1143                 /* Only if client_common_fill_super succeeded */
1144                 client_common_put_super(sb);
1145         }
1146
1147         next = 0;
1148         while ((obd = class_devices_in_group(&sbi->ll_sb_uuid, &next)) !=NULL) {
1149                 class_manual_cleanup(obd);
1150         }
1151
1152         if (sbi->ll_flags & LL_SBI_VERBOSE)
1153                 LCONSOLE_WARN("Unmounted %s\n", profilenm ? profilenm : "");
1154
1155         if (profilenm)
1156                 class_del_profile(profilenm);
1157
1158         if (lsi->lsi_flags & LSI_BDI_INITIALIZED) {
1159                 bdi_destroy(&lsi->lsi_bdi);
1160                 lsi->lsi_flags &= ~LSI_BDI_INITIALIZED;
1161         }
1162
1163         ll_free_sbi(sb);
1164         lsi->lsi_llsbi = NULL;
1165
1166         lustre_common_put_super(sb);
1167
1168         cl_env_cache_purge(~0);
1169
1170         module_put(THIS_MODULE);
1171
1172         EXIT;
1173 } /* client_put_super */
1174
1175 struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock)
1176 {
1177         struct inode *inode = NULL;
1178
1179         /* NOTE: we depend on atomic igrab() -bzzz */
1180         lock_res_and_lock(lock);
1181         if (lock->l_resource->lr_lvb_inode) {
1182                 struct ll_inode_info * lli;
1183                 lli = ll_i2info(lock->l_resource->lr_lvb_inode);
1184                 if (lli->lli_inode_magic == LLI_INODE_MAGIC) {
1185                         inode = igrab(lock->l_resource->lr_lvb_inode);
1186                 } else {
1187                         inode = lock->l_resource->lr_lvb_inode;
1188                         LDLM_DEBUG_LIMIT(inode->i_state & I_FREEING ?  D_INFO :
1189                                          D_WARNING, lock, "lr_lvb_inode %p is "
1190                                          "bogus: magic %08x",
1191                                          lock->l_resource->lr_lvb_inode,
1192                                          lli->lli_inode_magic);
1193                         inode = NULL;
1194                 }
1195         }
1196         unlock_res_and_lock(lock);
1197         return inode;
1198 }
1199
1200 static void ll_dir_clear_lsm_md(struct inode *inode)
1201 {
1202         struct ll_inode_info *lli = ll_i2info(inode);
1203
1204         LASSERT(S_ISDIR(inode->i_mode));
1205
1206         if (lli->lli_lsm_md != NULL) {
1207                 lmv_free_memmd(lli->lli_lsm_md);
1208                 lli->lli_lsm_md = NULL;
1209         }
1210 }
1211
1212 static struct inode *ll_iget_anon_dir(struct super_block *sb,
1213                                       const struct lu_fid *fid,
1214                                       struct lustre_md *md)
1215 {
1216         struct ll_sb_info       *sbi = ll_s2sbi(sb);
1217         struct mdt_body         *body = md->body;
1218         struct inode            *inode;
1219         ino_t                   ino;
1220         ENTRY;
1221
1222         ino = cl_fid_build_ino(fid, sbi->ll_flags & LL_SBI_32BIT_API);
1223         inode = iget_locked(sb, ino);
1224         if (inode == NULL) {
1225                 CERROR("%s: failed get simple inode "DFID": rc = -ENOENT\n",
1226                        ll_get_fsname(sb, NULL, 0), PFID(fid));
1227                 RETURN(ERR_PTR(-ENOENT));
1228         }
1229
1230         if (inode->i_state & I_NEW) {
1231                 struct ll_inode_info *lli = ll_i2info(inode);
1232                 struct lmv_stripe_md *lsm = md->lmv;
1233
1234                 inode->i_mode = (inode->i_mode & ~S_IFMT) |
1235                                 (body->mbo_mode & S_IFMT);
1236                 LASSERTF(S_ISDIR(inode->i_mode), "Not slave inode "DFID"\n",
1237                          PFID(fid));
1238
1239                 LTIME_S(inode->i_mtime) = 0;
1240                 LTIME_S(inode->i_atime) = 0;
1241                 LTIME_S(inode->i_ctime) = 0;
1242                 inode->i_rdev = 0;
1243
1244                 /* initializing backing dev info. */
1245                 inode->i_mapping->backing_dev_info =
1246                                                 &s2lsi(inode->i_sb)->lsi_bdi;
1247                 inode->i_op = &ll_dir_inode_operations;
1248                 inode->i_fop = &ll_dir_operations;
1249                 lli->lli_fid = *fid;
1250                 ll_lli_init(lli);
1251
1252                 LASSERT(lsm != NULL);
1253                 /* master object FID */
1254                 lli->lli_pfid = body->mbo_fid1;
1255                 CDEBUG(D_INODE, "lli %p slave "DFID" master "DFID"\n",
1256                        lli, PFID(fid), PFID(&lli->lli_pfid));
1257                 unlock_new_inode(inode);
1258         }
1259
1260         RETURN(inode);
1261 }
1262
1263 static int ll_init_lsm_md(struct inode *inode, struct lustre_md *md)
1264 {
1265         struct lu_fid *fid;
1266         struct lmv_stripe_md *lsm = md->lmv;
1267         int i;
1268
1269         LASSERT(lsm != NULL);
1270         /* XXX sigh, this lsm_root initialization should be in
1271          * LMV layer, but it needs ll_iget right now, so we
1272          * put this here right now. */
1273         for (i = 0; i < lsm->lsm_md_stripe_count; i++) {
1274                 fid = &lsm->lsm_md_oinfo[i].lmo_fid;
1275                 LASSERT(lsm->lsm_md_oinfo[i].lmo_root == NULL);
1276                 /* Unfortunately ll_iget will call ll_update_inode,
1277                  * where the initialization of slave inode is slightly
1278                  * different, so it reset lsm_md to NULL to avoid
1279                  * initializing lsm for slave inode. */
1280                 /* For migrating inode, master stripe and master object will
1281                  * be same, so we only need assign this inode */
1282                 if (lsm->lsm_md_hash_type & LMV_HASH_FLAG_MIGRATION && i == 0)
1283                         lsm->lsm_md_oinfo[i].lmo_root = inode;
1284                 else
1285                         lsm->lsm_md_oinfo[i].lmo_root =
1286                                 ll_iget_anon_dir(inode->i_sb, fid, md);
1287
1288                 if (IS_ERR(lsm->lsm_md_oinfo[i].lmo_root)) {
1289                         int rc = PTR_ERR(lsm->lsm_md_oinfo[i].lmo_root);
1290
1291                         lsm->lsm_md_oinfo[i].lmo_root = NULL;
1292                         return rc;
1293                 }
1294         }
1295
1296         return 0;
1297 }
1298
1299 static inline int lli_lsm_md_eq(const struct lmv_stripe_md *lsm_md1,
1300                                 const struct lmv_stripe_md *lsm_md2)
1301 {
1302         return lsm_md1->lsm_md_magic == lsm_md2->lsm_md_magic &&
1303                lsm_md1->lsm_md_stripe_count == lsm_md2->lsm_md_stripe_count &&
1304                lsm_md1->lsm_md_master_mdt_index ==
1305                                         lsm_md2->lsm_md_master_mdt_index &&
1306                lsm_md1->lsm_md_hash_type == lsm_md2->lsm_md_hash_type &&
1307                lsm_md1->lsm_md_layout_version ==
1308                                         lsm_md2->lsm_md_layout_version &&
1309                strcmp(lsm_md1->lsm_md_pool_name,
1310                       lsm_md2->lsm_md_pool_name) == 0;
1311 }
1312
1313 static int ll_update_lsm_md(struct inode *inode, struct lustre_md *md)
1314 {
1315         struct ll_inode_info *lli = ll_i2info(inode);
1316         struct lmv_stripe_md *lsm = md->lmv;
1317         int     rc;
1318         ENTRY;
1319
1320         LASSERT(S_ISDIR(inode->i_mode));
1321         CDEBUG(D_INODE, "update lsm %p of "DFID"\n", lli->lli_lsm_md,
1322                PFID(ll_inode2fid(inode)));
1323
1324         /* no striped information from request. */
1325         if (lsm == NULL) {
1326                 if (lli->lli_lsm_md == NULL) {
1327                         RETURN(0);
1328                 } else if (lli->lli_lsm_md->lsm_md_hash_type &
1329                                                 LMV_HASH_FLAG_MIGRATION) {
1330                         /* migration is done, the temporay MIGRATE layout has
1331                          * been removed */
1332                         CDEBUG(D_INODE, DFID" finish migration.\n",
1333                                PFID(ll_inode2fid(inode)));
1334                         lmv_free_memmd(lli->lli_lsm_md);
1335                         lli->lli_lsm_md = NULL;
1336                         RETURN(0);
1337                 } else {
1338                         /* The lustre_md from req does not include stripeEA,
1339                          * see ll_md_setattr */
1340                         RETURN(0);
1341                 }
1342         }
1343
1344         /* set the directory layout */
1345         if (lli->lli_lsm_md == NULL) {
1346
1347                 rc = ll_init_lsm_md(inode, md);
1348                 if (rc != 0)
1349                         RETURN(rc);
1350
1351                 lli->lli_lsm_md = lsm;
1352                 /* set lsm_md to NULL, so the following free lustre_md
1353                  * will not free this lsm */
1354                 md->lmv = NULL;
1355                 CDEBUG(D_INODE, "Set lsm %p magic %x to "DFID"\n", lsm,
1356                        lsm->lsm_md_magic, PFID(ll_inode2fid(inode)));
1357                 RETURN(0);
1358         }
1359
1360         /* Compare the old and new stripe information */
1361         if (!lsm_md_eq(lli->lli_lsm_md, lsm)) {
1362                 struct lmv_stripe_md    *old_lsm = lli->lli_lsm_md;
1363                 int                     idx;
1364
1365                 CERROR("%s: inode "DFID"(%p)'s lmv layout mismatch (%p)/(%p)"
1366                        "magic:0x%x/0x%x stripe count: %d/%d master_mdt: %d/%d"
1367                        "hash_type:0x%x/0x%x layout: 0x%x/0x%x pool:%s/%s\n",
1368                        ll_get_fsname(inode->i_sb, NULL, 0), PFID(&lli->lli_fid),
1369                        inode, lsm, old_lsm,
1370                        lsm->lsm_md_magic, old_lsm->lsm_md_magic,
1371                        lsm->lsm_md_stripe_count,
1372                        old_lsm->lsm_md_stripe_count,
1373                        lsm->lsm_md_master_mdt_index,
1374                        old_lsm->lsm_md_master_mdt_index,
1375                        lsm->lsm_md_hash_type, old_lsm->lsm_md_hash_type,
1376                        lsm->lsm_md_layout_version,
1377                        old_lsm->lsm_md_layout_version,
1378                        lsm->lsm_md_pool_name,
1379                        old_lsm->lsm_md_pool_name);
1380
1381                 for (idx = 0; idx < old_lsm->lsm_md_stripe_count; idx++) {
1382                         CERROR("%s: sub FIDs in old lsm idx %d, old: "DFID"\n",
1383                                ll_get_fsname(inode->i_sb, NULL, 0), idx,
1384                                PFID(&old_lsm->lsm_md_oinfo[idx].lmo_fid));
1385                 }
1386
1387                 for (idx = 0; idx < lsm->lsm_md_stripe_count; idx++) {
1388                         CERROR("%s: sub FIDs in new lsm idx %d, new: "DFID"\n",
1389                                ll_get_fsname(inode->i_sb, NULL, 0), idx,
1390                                PFID(&lsm->lsm_md_oinfo[idx].lmo_fid));
1391                 }
1392
1393                 RETURN(-EIO);
1394         }
1395
1396         RETURN(0);
1397 }
1398
1399 void ll_clear_inode(struct inode *inode)
1400 {
1401         struct ll_inode_info *lli = ll_i2info(inode);
1402         struct ll_sb_info *sbi = ll_i2sbi(inode);
1403         ENTRY;
1404
1405         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
1406                PFID(ll_inode2fid(inode)), inode);
1407
1408         if (S_ISDIR(inode->i_mode)) {
1409                 /* these should have been cleared in ll_file_release */
1410                 LASSERT(lli->lli_opendir_key == NULL);
1411                 LASSERT(lli->lli_sai == NULL);
1412                 LASSERT(lli->lli_opendir_pid == 0);
1413         }
1414
1415         md_null_inode(sbi->ll_md_exp, ll_inode2fid(inode));
1416
1417         LASSERT(!lli->lli_open_fd_write_count);
1418         LASSERT(!lli->lli_open_fd_read_count);
1419         LASSERT(!lli->lli_open_fd_exec_count);
1420
1421         if (lli->lli_mds_write_och)
1422                 ll_md_real_close(inode, FMODE_WRITE);
1423         if (lli->lli_mds_exec_och)
1424                 ll_md_real_close(inode, FMODE_EXEC);
1425         if (lli->lli_mds_read_och)
1426                 ll_md_real_close(inode, FMODE_READ);
1427
1428         if (S_ISLNK(inode->i_mode) && lli->lli_symlink_name) {
1429                 OBD_FREE(lli->lli_symlink_name,
1430                          strlen(lli->lli_symlink_name) + 1);
1431                 lli->lli_symlink_name = NULL;
1432         }
1433
1434         ll_xattr_cache_destroy(inode);
1435
1436         if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
1437                 LASSERT(lli->lli_posix_acl == NULL);
1438                 if (lli->lli_remote_perms) {
1439                         free_rmtperm_hash(lli->lli_remote_perms);
1440                         lli->lli_remote_perms = NULL;
1441                 }
1442         }
1443 #ifdef CONFIG_FS_POSIX_ACL
1444         else if (lli->lli_posix_acl) {
1445                 LASSERT(atomic_read(&lli->lli_posix_acl->a_refcount) == 1);
1446                 LASSERT(lli->lli_remote_perms == NULL);
1447                 posix_acl_release(lli->lli_posix_acl);
1448                 lli->lli_posix_acl = NULL;
1449         }
1450 #endif
1451         lli->lli_inode_magic = LLI_INODE_DEAD;
1452
1453         ll_clear_inode_capas(inode);
1454         if (S_ISDIR(inode->i_mode))
1455                 ll_dir_clear_lsm_md(inode);
1456         else if (S_ISREG(inode->i_mode) && !is_bad_inode(inode))
1457                 LASSERT(list_empty(&lli->lli_agl_list));
1458
1459         /*
1460          * XXX This has to be done before lsm is freed below, because
1461          * cl_object still uses inode lsm.
1462          */
1463         cl_inode_fini(inode);
1464
1465         EXIT;
1466 }
1467
1468 static int ll_md_setattr(struct dentry *dentry, struct md_op_data *op_data)
1469 {
1470         struct lustre_md md;
1471         struct inode *inode = dentry->d_inode;
1472         struct ll_sb_info *sbi = ll_i2sbi(inode);
1473         struct ptlrpc_request *request = NULL;
1474         int rc, ia_valid;
1475         ENTRY;
1476
1477         op_data = ll_prep_md_op_data(op_data, inode, NULL, NULL, 0, 0,
1478                                      LUSTRE_OPC_ANY, NULL);
1479         if (IS_ERR(op_data))
1480                 RETURN(PTR_ERR(op_data));
1481
1482         rc = md_setattr(sbi->ll_md_exp, op_data, NULL, 0, &request);
1483         if (rc) {
1484                 ptlrpc_req_finished(request);
1485                 if (rc == -ENOENT) {
1486                         clear_nlink(inode);
1487                         /* Unlinked special device node? Or just a race?
1488                          * Pretend we done everything. */
1489                         if (!S_ISREG(inode->i_mode) &&
1490                             !S_ISDIR(inode->i_mode)) {
1491                                 ia_valid = op_data->op_attr.ia_valid;
1492                                 op_data->op_attr.ia_valid &= ~TIMES_SET_FLAGS;
1493                                 rc = simple_setattr(dentry, &op_data->op_attr);
1494                                 op_data->op_attr.ia_valid = ia_valid;
1495                         }
1496                 } else if (rc != -EPERM && rc != -EACCES && rc != -ETXTBSY) {
1497                         CERROR("md_setattr fails: rc = %d\n", rc);
1498                 }
1499                 RETURN(rc);
1500         }
1501
1502         rc = md_get_lustre_md(sbi->ll_md_exp, request, sbi->ll_dt_exp,
1503                               sbi->ll_md_exp, &md);
1504         if (rc) {
1505                 ptlrpc_req_finished(request);
1506                 RETURN(rc);
1507         }
1508
1509         ia_valid = op_data->op_attr.ia_valid;
1510         /* inode size will be in ll_setattr_ost, can't do it now since dirty
1511          * cache is not cleared yet. */
1512         op_data->op_attr.ia_valid &= ~(TIMES_SET_FLAGS | ATTR_SIZE);
1513         rc = simple_setattr(dentry, &op_data->op_attr);
1514         op_data->op_attr.ia_valid = ia_valid;
1515
1516         rc = ll_update_inode(inode, &md);
1517         ptlrpc_req_finished(request);
1518
1519         RETURN(rc);
1520 }
1521
1522 static int ll_setattr_ost(struct inode *inode, struct iattr *attr)
1523 {
1524         struct obd_capa *capa;
1525         int rc;
1526
1527         if (attr->ia_valid & ATTR_SIZE)
1528                 capa = ll_osscapa_get(inode, CAPA_OPC_OSS_TRUNC);
1529         else
1530                 capa = ll_mdscapa_get(inode);
1531
1532         rc = cl_setattr_ost(ll_i2info(inode)->lli_clob, attr, 0, capa);
1533
1534         if (attr->ia_valid & ATTR_SIZE)
1535                 ll_truncate_free_capa(capa);
1536         else
1537                 capa_put(capa);
1538
1539         return rc;
1540 }
1541
1542 /* If this inode has objects allocated to it (lsm != NULL), then the OST
1543  * object(s) determine the file size and mtime.  Otherwise, the MDS will
1544  * keep these values until such a time that objects are allocated for it.
1545  * We do the MDS operations first, as it is checking permissions for us.
1546  * We don't to the MDS RPC if there is nothing that we want to store there,
1547  * otherwise there is no harm in updating mtime/atime on the MDS if we are
1548  * going to do an RPC anyways.
1549  *
1550  * If we are doing a truncate, we will send the mtime and ctime updates
1551  * to the OST with the punch RPC, otherwise we do an explicit setattr RPC.
1552  * I don't believe it is possible to get e.g. ATTR_MTIME_SET and ATTR_SIZE
1553  * at the same time.
1554  *
1555  * In case of HSMimport, we only set attr on MDS.
1556  */
1557 int ll_setattr_raw(struct dentry *dentry, struct iattr *attr, bool hsm_import)
1558 {
1559         struct inode *inode = dentry->d_inode;
1560         struct ll_inode_info *lli = ll_i2info(inode);
1561         struct md_op_data *op_data = NULL;
1562         bool file_is_released = false;
1563         int rc = 0;
1564         ENTRY;
1565
1566         CDEBUG(D_VFSTRACE, "%s: setattr inode "DFID"(%p) from %llu to %llu, "
1567                "valid %x, hsm_import %d\n",
1568                ll_get_fsname(inode->i_sb, NULL, 0), PFID(&lli->lli_fid),
1569                inode, i_size_read(inode), attr->ia_size, attr->ia_valid,
1570                hsm_import);
1571
1572         if (attr->ia_valid & ATTR_SIZE) {
1573                 /* Check new size against VFS/VM file size limit and rlimit */
1574                 rc = inode_newsize_ok(inode, attr->ia_size);
1575                 if (rc)
1576                         RETURN(rc);
1577
1578                 /* The maximum Lustre file size is variable, based on the
1579                  * OST maximum object size and number of stripes.  This
1580                  * needs another check in addition to the VFS check above. */
1581                 if (attr->ia_size > ll_file_maxbytes(inode)) {
1582                         CDEBUG(D_INODE,"file "DFID" too large %llu > "LPU64"\n",
1583                                PFID(&lli->lli_fid), attr->ia_size,
1584                                ll_file_maxbytes(inode));
1585                         RETURN(-EFBIG);
1586                 }
1587
1588                 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
1589         }
1590
1591         /* POSIX: check before ATTR_*TIME_SET set (from inode_change_ok) */
1592         if (attr->ia_valid & TIMES_SET_FLAGS) {
1593                 if ((!uid_eq(current_fsuid(), inode->i_uid)) &&
1594                     !cfs_capable(CFS_CAP_FOWNER))
1595                         RETURN(-EPERM);
1596         }
1597
1598         /* We mark all of the fields "set" so MDS/OST does not re-set them */
1599         if (attr->ia_valid & ATTR_CTIME) {
1600                 attr->ia_ctime = CFS_CURRENT_TIME;
1601                 attr->ia_valid |= ATTR_CTIME_SET;
1602         }
1603         if (!(attr->ia_valid & ATTR_ATIME_SET) &&
1604             (attr->ia_valid & ATTR_ATIME)) {
1605                 attr->ia_atime = CFS_CURRENT_TIME;
1606                 attr->ia_valid |= ATTR_ATIME_SET;
1607         }
1608         if (!(attr->ia_valid & ATTR_MTIME_SET) &&
1609             (attr->ia_valid & ATTR_MTIME)) {
1610                 attr->ia_mtime = CFS_CURRENT_TIME;
1611                 attr->ia_valid |= ATTR_MTIME_SET;
1612         }
1613
1614         if (attr->ia_valid & (ATTR_MTIME | ATTR_CTIME))
1615                 CDEBUG(D_INODE, "setting mtime %lu, ctime %lu, now = %lu\n",
1616                        LTIME_S(attr->ia_mtime), LTIME_S(attr->ia_ctime),
1617                        cfs_time_current_sec());
1618
1619         /* We always do an MDS RPC, even if we're only changing the size;
1620          * only the MDS knows whether truncate() should fail with -ETXTBUSY */
1621
1622         OBD_ALLOC_PTR(op_data);
1623         if (op_data == NULL)
1624                 RETURN(-ENOMEM);
1625
1626         if (!S_ISDIR(inode->i_mode)) {
1627                 if (attr->ia_valid & ATTR_SIZE)
1628                         inode_dio_write_done(inode);
1629                 mutex_unlock(&inode->i_mutex);
1630         }
1631
1632         /* truncate on a released file must failed with -ENODATA,
1633          * so size must not be set on MDS for released file
1634          * but other attributes must be set
1635          */
1636         if (S_ISREG(inode->i_mode)) {
1637                 struct cl_layout cl = {
1638                         .cl_is_released = false,
1639                 };
1640                 struct lu_env *env;
1641                 int refcheck;
1642                 __u32 gen;
1643
1644                 rc = ll_layout_refresh(inode, &gen);
1645                 if (rc < 0)
1646                         GOTO(out, rc);
1647
1648                 /* XXX: the only place we need to know the layout type,
1649                  * this will be removed by a later patch. -Jinshan */
1650                 env = cl_env_get(&refcheck);
1651                 if (IS_ERR(env))
1652                         GOTO(out, rc = PTR_ERR(env));
1653
1654                 rc = cl_object_layout_get(env, lli->lli_clob, &cl);
1655                 cl_env_put(env, &refcheck);
1656                 if (rc < 0)
1657                         GOTO(out, rc);
1658
1659                 file_is_released = cl.cl_is_released;
1660
1661                 if (!hsm_import && attr->ia_valid & ATTR_SIZE) {
1662                         if (file_is_released) {
1663                                 rc = ll_layout_restore(inode, 0, attr->ia_size);
1664                                 if (rc < 0)
1665                                         GOTO(out, rc);
1666
1667                                 file_is_released = false;
1668                                 ll_layout_refresh(inode, &gen);
1669                         }
1670
1671                         /* If we are changing file size, file content is
1672                          * modified, flag it. */
1673                         attr->ia_valid |= MDS_OPEN_OWNEROVERRIDE;
1674                         spin_lock(&lli->lli_lock);
1675                         lli->lli_flags |= LLIF_DATA_MODIFIED;
1676                         spin_unlock(&lli->lli_lock);
1677                         op_data->op_bias |= MDS_DATA_MODIFIED;
1678                 }
1679         }
1680
1681         memcpy(&op_data->op_attr, attr, sizeof(*attr));
1682
1683         rc = ll_md_setattr(dentry, op_data);
1684         if (rc)
1685                 GOTO(out, rc);
1686
1687         /* RPC to MDT is sent, cancel data modification flag */
1688         if (rc == 0 && (op_data->op_bias & MDS_DATA_MODIFIED)) {
1689                 spin_lock(&lli->lli_lock);
1690                 lli->lli_flags &= ~LLIF_DATA_MODIFIED;
1691                 spin_unlock(&lli->lli_lock);
1692         }
1693
1694         if (!S_ISREG(inode->i_mode) || file_is_released)
1695                 GOTO(out, rc = 0);
1696
1697         if (attr->ia_valid & (ATTR_SIZE |
1698                               ATTR_ATIME | ATTR_ATIME_SET |
1699                               ATTR_MTIME | ATTR_MTIME_SET)) {
1700                 /* For truncate and utimes sending attributes to OSTs, setting
1701                  * mtime/atime to the past will be performed under PW [0:EOF]
1702                  * extent lock (new_size:EOF for truncate).  It may seem
1703                  * excessive to send mtime/atime updates to OSTs when not
1704                  * setting times to past, but it is necessary due to possible
1705                  * time de-synchronization between MDT inode and OST objects */
1706                 rc = ll_setattr_ost(inode, attr);
1707         }
1708         EXIT;
1709 out:
1710         if (op_data != NULL)
1711                 ll_finish_md_op_data(op_data);
1712
1713         if (!S_ISDIR(inode->i_mode)) {
1714                 mutex_lock(&inode->i_mutex);
1715                 if ((attr->ia_valid & ATTR_SIZE) && !hsm_import)
1716                         inode_dio_wait(inode);
1717         }
1718
1719         ll_stats_ops_tally(ll_i2sbi(inode), (attr->ia_valid & ATTR_SIZE) ?
1720                         LPROC_LL_TRUNC : LPROC_LL_SETATTR, 1);
1721
1722         return rc;
1723 }
1724
1725 int ll_setattr(struct dentry *de, struct iattr *attr)
1726 {
1727         int mode = de->d_inode->i_mode;
1728
1729         if ((attr->ia_valid & (ATTR_CTIME|ATTR_SIZE|ATTR_MODE)) ==
1730                               (ATTR_CTIME|ATTR_SIZE|ATTR_MODE))
1731                 attr->ia_valid |= MDS_OPEN_OWNEROVERRIDE;
1732
1733         if (((attr->ia_valid & (ATTR_MODE|ATTR_FORCE|ATTR_SIZE)) ==
1734                                (ATTR_SIZE|ATTR_MODE)) &&
1735             (((mode & S_ISUID) && !(attr->ia_mode & S_ISUID)) ||
1736              (((mode & (S_ISGID|S_IXGRP)) == (S_ISGID|S_IXGRP)) &&
1737               !(attr->ia_mode & S_ISGID))))
1738                 attr->ia_valid |= ATTR_FORCE;
1739
1740         if ((attr->ia_valid & ATTR_MODE) &&
1741             (mode & S_ISUID) &&
1742             !(attr->ia_mode & S_ISUID) &&
1743             !(attr->ia_valid & ATTR_KILL_SUID))
1744                 attr->ia_valid |= ATTR_KILL_SUID;
1745
1746         if ((attr->ia_valid & ATTR_MODE) &&
1747             ((mode & (S_ISGID|S_IXGRP)) == (S_ISGID|S_IXGRP)) &&
1748             !(attr->ia_mode & S_ISGID) &&
1749             !(attr->ia_valid & ATTR_KILL_SGID))
1750                 attr->ia_valid |= ATTR_KILL_SGID;
1751
1752         return ll_setattr_raw(de, attr, false);
1753 }
1754
1755 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
1756                        __u64 max_age, __u32 flags)
1757 {
1758         struct ll_sb_info *sbi = ll_s2sbi(sb);
1759         struct obd_statfs obd_osfs;
1760         int rc;
1761         ENTRY;
1762
1763         rc = obd_statfs(NULL, sbi->ll_md_exp, osfs, max_age, flags);
1764         if (rc) {
1765                 CERROR("md_statfs fails: rc = %d\n", rc);
1766                 RETURN(rc);
1767         }
1768
1769         osfs->os_type = sb->s_magic;
1770
1771         CDEBUG(D_SUPER, "MDC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
1772                osfs->os_bavail, osfs->os_blocks, osfs->os_ffree,osfs->os_files);
1773
1774         if (sbi->ll_flags & LL_SBI_LAZYSTATFS)
1775                 flags |= OBD_STATFS_NODELAY;
1776
1777         rc = obd_statfs_rqset(sbi->ll_dt_exp, &obd_osfs, max_age, flags);
1778         if (rc) {
1779                 CERROR("obd_statfs fails: rc = %d\n", rc);
1780                 RETURN(rc);
1781         }
1782
1783         CDEBUG(D_SUPER, "OSC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
1784                obd_osfs.os_bavail, obd_osfs.os_blocks, obd_osfs.os_ffree,
1785                obd_osfs.os_files);
1786
1787         osfs->os_bsize = obd_osfs.os_bsize;
1788         osfs->os_blocks = obd_osfs.os_blocks;
1789         osfs->os_bfree = obd_osfs.os_bfree;
1790         osfs->os_bavail = obd_osfs.os_bavail;
1791
1792         /* If we don't have as many objects free on the OST as inodes
1793          * on the MDS, we reduce the total number of inodes to
1794          * compensate, so that the "inodes in use" number is correct.
1795          */
1796         if (obd_osfs.os_ffree < osfs->os_ffree) {
1797                 osfs->os_files = (osfs->os_files - osfs->os_ffree) +
1798                         obd_osfs.os_ffree;
1799                 osfs->os_ffree = obd_osfs.os_ffree;
1800         }
1801
1802         RETURN(rc);
1803 }
1804 int ll_statfs(struct dentry *de, struct kstatfs *sfs)
1805 {
1806         struct super_block *sb = de->d_sb;
1807         struct obd_statfs osfs;
1808         __u64 fsid = huge_encode_dev(sb->s_dev);
1809         int rc;
1810
1811         CDEBUG(D_VFSTRACE, "VFS Op: at "LPU64" jiffies\n", get_jiffies_64());
1812         ll_stats_ops_tally(ll_s2sbi(sb), LPROC_LL_STAFS, 1);
1813
1814         /* Some amount of caching on the client is allowed */
1815         rc = ll_statfs_internal(sb, &osfs,
1816                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
1817                                 0);
1818         if (rc)
1819                 return rc;
1820
1821         statfs_unpack(sfs, &osfs);
1822
1823         /* We need to downshift for all 32-bit kernels, because we can't
1824          * tell if the kernel is being called via sys_statfs64() or not.
1825          * Stop before overflowing f_bsize - in which case it is better
1826          * to just risk EOVERFLOW if caller is using old sys_statfs(). */
1827         if (sizeof(long) < 8) {
1828                 while (osfs.os_blocks > ~0UL && sfs->f_bsize < 0x40000000) {
1829                         sfs->f_bsize <<= 1;
1830
1831                         osfs.os_blocks >>= 1;
1832                         osfs.os_bfree >>= 1;
1833                         osfs.os_bavail >>= 1;
1834                 }
1835         }
1836
1837         sfs->f_blocks = osfs.os_blocks;
1838         sfs->f_bfree = osfs.os_bfree;
1839         sfs->f_bavail = osfs.os_bavail;
1840         sfs->f_fsid.val[0] = (__u32)fsid;
1841         sfs->f_fsid.val[1] = (__u32)(fsid >> 32);
1842         return 0;
1843 }
1844
1845 void ll_inode_size_lock(struct inode *inode)
1846 {
1847         struct ll_inode_info *lli;
1848
1849         LASSERT(!S_ISDIR(inode->i_mode));
1850
1851         lli = ll_i2info(inode);
1852         mutex_lock(&lli->lli_size_mutex);
1853 }
1854
1855 void ll_inode_size_unlock(struct inode *inode)
1856 {
1857         struct ll_inode_info *lli;
1858
1859         lli = ll_i2info(inode);
1860         mutex_unlock(&lli->lli_size_mutex);
1861 }
1862
1863 int ll_update_inode(struct inode *inode, struct lustre_md *md)
1864 {
1865         struct ll_inode_info *lli = ll_i2info(inode);
1866         struct mdt_body *body = md->body;
1867         struct lov_stripe_md *lsm = md->lsm;
1868         struct ll_sb_info *sbi = ll_i2sbi(inode);
1869
1870         LASSERT((lsm != NULL) == ((body->mbo_valid & OBD_MD_FLEASIZE) != 0));
1871         if (lsm != NULL)
1872                 cl_file_inode_init(inode, md);
1873
1874         if (S_ISDIR(inode->i_mode)) {
1875                 int     rc;
1876
1877                 rc = ll_update_lsm_md(inode, md);
1878                 if (rc != 0)
1879                         return rc;
1880         }
1881
1882         if (sbi->ll_flags & LL_SBI_RMT_CLIENT) {
1883                 if (body->mbo_valid & OBD_MD_FLRMTPERM)
1884                         ll_update_remote_perm(inode, md->remote_perm);
1885         }
1886 #ifdef CONFIG_FS_POSIX_ACL
1887         else if (body->mbo_valid & OBD_MD_FLACL) {
1888                 spin_lock(&lli->lli_lock);
1889                 if (lli->lli_posix_acl)
1890                         posix_acl_release(lli->lli_posix_acl);
1891                 lli->lli_posix_acl = md->posix_acl;
1892                 spin_unlock(&lli->lli_lock);
1893         }
1894 #endif
1895         inode->i_ino = cl_fid_build_ino(&body->mbo_fid1,
1896                                         sbi->ll_flags & LL_SBI_32BIT_API);
1897         inode->i_generation = cl_fid_build_gen(&body->mbo_fid1);
1898
1899         if (body->mbo_valid & OBD_MD_FLATIME) {
1900                 if (body->mbo_atime > LTIME_S(inode->i_atime))
1901                         LTIME_S(inode->i_atime) = body->mbo_atime;
1902                 lli->lli_atime = body->mbo_atime;
1903         }
1904
1905         if (body->mbo_valid & OBD_MD_FLMTIME) {
1906                 if (body->mbo_mtime > LTIME_S(inode->i_mtime)) {
1907                         CDEBUG(D_INODE, "setting ino %lu mtime from %lu "
1908                                "to "LPU64"\n", inode->i_ino,
1909                                LTIME_S(inode->i_mtime), body->mbo_mtime);
1910                         LTIME_S(inode->i_mtime) = body->mbo_mtime;
1911                 }
1912                 lli->lli_mtime = body->mbo_mtime;
1913         }
1914
1915         if (body->mbo_valid & OBD_MD_FLCTIME) {
1916                 if (body->mbo_ctime > LTIME_S(inode->i_ctime))
1917                         LTIME_S(inode->i_ctime) = body->mbo_ctime;
1918                 lli->lli_ctime = body->mbo_ctime;
1919         }
1920
1921         if (body->mbo_valid & OBD_MD_FLMODE)
1922                 inode->i_mode = (inode->i_mode & S_IFMT) |
1923                                 (body->mbo_mode & ~S_IFMT);
1924
1925         if (body->mbo_valid & OBD_MD_FLTYPE)
1926                 inode->i_mode = (inode->i_mode & ~S_IFMT) |
1927                                 (body->mbo_mode & S_IFMT);
1928
1929         LASSERT(inode->i_mode != 0);
1930         if (S_ISREG(inode->i_mode))
1931                 inode->i_blkbits = min(PTLRPC_MAX_BRW_BITS + 1,
1932                                        LL_MAX_BLKSIZE_BITS);
1933         else
1934                 inode->i_blkbits = inode->i_sb->s_blocksize_bits;
1935
1936         if (body->mbo_valid & OBD_MD_FLUID)
1937                 inode->i_uid = make_kuid(&init_user_ns, body->mbo_uid);
1938         if (body->mbo_valid & OBD_MD_FLGID)
1939                 inode->i_gid = make_kgid(&init_user_ns, body->mbo_gid);
1940         if (body->mbo_valid & OBD_MD_FLFLAGS)
1941                 inode->i_flags = ll_ext_to_inode_flags(body->mbo_flags);
1942         if (body->mbo_valid & OBD_MD_FLNLINK)
1943                 set_nlink(inode, body->mbo_nlink);
1944         if (body->mbo_valid & OBD_MD_FLRDEV)
1945                 inode->i_rdev = old_decode_dev(body->mbo_rdev);
1946
1947         if (body->mbo_valid & OBD_MD_FLID) {
1948                 /* FID shouldn't be changed! */
1949                 if (fid_is_sane(&lli->lli_fid)) {
1950                         LASSERTF(lu_fid_eq(&lli->lli_fid, &body->mbo_fid1),
1951                                  "Trying to change FID "DFID
1952                                  " to the "DFID", inode "DFID"(%p)\n",
1953                                  PFID(&lli->lli_fid), PFID(&body->mbo_fid1),
1954                                  PFID(ll_inode2fid(inode)), inode);
1955                 } else {
1956                         lli->lli_fid = body->mbo_fid1;
1957                 }
1958         }
1959
1960         LASSERT(fid_seq(&lli->lli_fid) != 0);
1961
1962         if (body->mbo_valid & OBD_MD_FLSIZE) {
1963                 i_size_write(inode, body->mbo_size);
1964
1965                 CDEBUG(D_VFSTRACE, "inode="DFID", updating i_size %llu\n",
1966                        PFID(ll_inode2fid(inode)),
1967                        (unsigned long long)body->mbo_size);
1968
1969                 if (body->mbo_valid & OBD_MD_FLBLOCKS)
1970                         inode->i_blocks = body->mbo_blocks;
1971         }
1972
1973         if (body->mbo_valid & OBD_MD_FLMDSCAPA) {
1974                 LASSERT(md->mds_capa);
1975                 ll_add_capa(inode, md->mds_capa);
1976         }
1977
1978         if (body->mbo_valid & OBD_MD_FLOSSCAPA) {
1979                 LASSERT(md->oss_capa);
1980                 ll_add_capa(inode, md->oss_capa);
1981         }
1982
1983         if (body->mbo_valid & OBD_MD_TSTATE) {
1984                 if (body->mbo_t_state & MS_RESTORE)
1985                         lli->lli_flags |= LLIF_FILE_RESTORING;
1986         }
1987
1988         return 0;
1989 }
1990
1991 int ll_read_inode2(struct inode *inode, void *opaque)
1992 {
1993         struct lustre_md *md = opaque;
1994         struct ll_inode_info *lli = ll_i2info(inode);
1995         int     rc;
1996         ENTRY;
1997
1998         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
1999                PFID(&lli->lli_fid), inode);
2000
2001         /* Core attributes from the MDS first.  This is a new inode, and
2002          * the VFS doesn't zero times in the core inode so we have to do
2003          * it ourselves.  They will be overwritten by either MDS or OST
2004          * attributes - we just need to make sure they aren't newer. */
2005         LTIME_S(inode->i_mtime) = 0;
2006         LTIME_S(inode->i_atime) = 0;
2007         LTIME_S(inode->i_ctime) = 0;
2008         inode->i_rdev = 0;
2009         rc = ll_update_inode(inode, md);
2010         if (rc != 0)
2011                 RETURN(rc);
2012
2013         /* OIDEBUG(inode); */
2014
2015         /* initializing backing dev info. */
2016         inode->i_mapping->backing_dev_info = &s2lsi(inode->i_sb)->lsi_bdi;
2017
2018
2019         if (S_ISREG(inode->i_mode)) {
2020                 struct ll_sb_info *sbi = ll_i2sbi(inode);
2021                 inode->i_op = &ll_file_inode_operations;
2022                 inode->i_fop = sbi->ll_fop;
2023                 inode->i_mapping->a_ops = (struct address_space_operations *)&ll_aops;
2024                 EXIT;
2025         } else if (S_ISDIR(inode->i_mode)) {
2026                 inode->i_op = &ll_dir_inode_operations;
2027                 inode->i_fop = &ll_dir_operations;
2028                 EXIT;
2029         } else if (S_ISLNK(inode->i_mode)) {
2030                 inode->i_op = &ll_fast_symlink_inode_operations;
2031                 EXIT;
2032         } else {
2033                 inode->i_op = &ll_special_inode_operations;
2034
2035                 init_special_inode(inode, inode->i_mode,
2036                                    inode->i_rdev);
2037
2038                 EXIT;
2039         }
2040
2041         return 0;
2042 }
2043
2044 void ll_delete_inode(struct inode *inode)
2045 {
2046         struct ll_inode_info *lli = ll_i2info(inode);
2047         ENTRY;
2048
2049         if (S_ISREG(inode->i_mode) && lli->lli_clob != NULL)
2050                 /* It is last chance to write out dirty pages,
2051                  * otherwise we may lose data while umount */
2052                 cl_sync_file_range(inode, 0, OBD_OBJECT_EOF, CL_FSYNC_LOCAL, 1);
2053
2054         truncate_inode_pages_final(&inode->i_data);
2055
2056         LASSERTF(inode->i_data.nrpages == 0, "inode="DFID"(%p) nrpages=%lu, "
2057                  "see https://jira.hpdd.intel.com/browse/LU-118\n",
2058                  PFID(ll_inode2fid(inode)), inode, inode->i_data.nrpages);
2059
2060 #ifdef HAVE_SBOPS_EVICT_INODE
2061         ll_clear_inode(inode);
2062 #endif
2063         clear_inode(inode);
2064
2065         EXIT;
2066 }
2067
2068 int ll_iocontrol(struct inode *inode, struct file *file,
2069                  unsigned int cmd, unsigned long arg)
2070 {
2071         struct ll_sb_info *sbi = ll_i2sbi(inode);
2072         struct ptlrpc_request *req = NULL;
2073         int rc, flags = 0;
2074         ENTRY;
2075
2076         switch(cmd) {
2077         case FSFILT_IOC_GETFLAGS: {
2078                 struct mdt_body *body;
2079                 struct md_op_data *op_data;
2080
2081                 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL,
2082                                              0, 0, LUSTRE_OPC_ANY,
2083                                              NULL);
2084                 if (IS_ERR(op_data))
2085                         RETURN(PTR_ERR(op_data));
2086
2087                 op_data->op_valid = OBD_MD_FLFLAGS;
2088                 rc = md_getattr(sbi->ll_md_exp, op_data, &req);
2089                 ll_finish_md_op_data(op_data);
2090                 if (rc) {
2091                         CERROR("%s: failure inode "DFID": rc = %d\n",
2092                                sbi->ll_md_exp->exp_obd->obd_name,
2093                                PFID(ll_inode2fid(inode)), rc);
2094                         RETURN(-abs(rc));
2095                 }
2096
2097                 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
2098
2099                 flags = body->mbo_flags;
2100
2101                 ptlrpc_req_finished(req);
2102
2103                 RETURN(put_user(flags, (int __user *)arg));
2104         }
2105         case FSFILT_IOC_SETFLAGS: {
2106                 struct iattr *attr;
2107                 struct md_op_data *op_data;
2108                 struct cl_object *obj;
2109                 struct obd_capa *capa;
2110
2111                 if (get_user(flags, (int __user *)arg))
2112                         RETURN(-EFAULT);
2113
2114                 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
2115                                              LUSTRE_OPC_ANY, NULL);
2116                 if (IS_ERR(op_data))
2117                         RETURN(PTR_ERR(op_data));
2118
2119                 op_data->op_attr_flags = flags;
2120                 op_data->op_attr.ia_valid |= ATTR_ATTR_FLAG;
2121                 rc = md_setattr(sbi->ll_md_exp, op_data, NULL, 0, &req);
2122                 ll_finish_md_op_data(op_data);
2123                 ptlrpc_req_finished(req);
2124                 if (rc)
2125                         RETURN(rc);
2126
2127                 inode->i_flags = ll_ext_to_inode_flags(flags);
2128
2129                 obj = ll_i2info(inode)->lli_clob;
2130                 if (obj == NULL)
2131                         RETURN(0);
2132
2133                 OBD_ALLOC_PTR(attr);
2134                 if (attr == NULL)
2135                         RETURN(-ENOMEM);
2136
2137                 attr->ia_valid = ATTR_ATTR_FLAG;
2138
2139                 capa = ll_mdscapa_get(inode);
2140                 rc = cl_setattr_ost(obj, attr, flags, capa);
2141                 capa_put(capa);
2142
2143                 OBD_FREE_PTR(attr);
2144                 RETURN(rc);
2145         }
2146         default:
2147                 RETURN(-ENOSYS);
2148         }
2149
2150         RETURN(0);
2151 }
2152
2153 int ll_flush_ctx(struct inode *inode)
2154 {
2155         struct ll_sb_info  *sbi = ll_i2sbi(inode);
2156
2157         CDEBUG(D_SEC, "flush context for user %d\n",
2158                from_kuid(&init_user_ns, current_uid()));
2159
2160         obd_set_info_async(NULL, sbi->ll_md_exp,
2161                            sizeof(KEY_FLUSH_CTX), KEY_FLUSH_CTX,
2162                            0, NULL, NULL);
2163         obd_set_info_async(NULL, sbi->ll_dt_exp,
2164                            sizeof(KEY_FLUSH_CTX), KEY_FLUSH_CTX,
2165                            0, NULL, NULL);
2166         return 0;
2167 }
2168
2169 /* umount -f client means force down, don't save state */
2170 void ll_umount_begin(struct super_block *sb)
2171 {
2172         struct ll_sb_info *sbi = ll_s2sbi(sb);
2173         struct obd_device *obd;
2174         struct obd_ioctl_data *ioc_data;
2175         ENTRY;
2176
2177         CDEBUG(D_VFSTRACE, "VFS Op: superblock %p count %d active %d\n", sb,
2178                sb->s_count, atomic_read(&sb->s_active));
2179
2180         obd = class_exp2obd(sbi->ll_md_exp);
2181         if (obd == NULL) {
2182                 CERROR("Invalid MDC connection handle "LPX64"\n",
2183                        sbi->ll_md_exp->exp_handle.h_cookie);
2184                 EXIT;
2185                 return;
2186         }
2187         obd->obd_force = 1;
2188
2189         obd = class_exp2obd(sbi->ll_dt_exp);
2190         if (obd == NULL) {
2191                 CERROR("Invalid LOV connection handle "LPX64"\n",
2192                        sbi->ll_dt_exp->exp_handle.h_cookie);
2193                 EXIT;
2194                 return;
2195         }
2196         obd->obd_force = 1;
2197
2198         OBD_ALLOC_PTR(ioc_data);
2199         if (ioc_data) {
2200                 obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_md_exp,
2201                               sizeof *ioc_data, ioc_data, NULL);
2202
2203                 obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_dt_exp,
2204                               sizeof *ioc_data, ioc_data, NULL);
2205
2206                 OBD_FREE_PTR(ioc_data);
2207         }
2208
2209         /* Really, we'd like to wait until there are no requests outstanding,
2210          * and then continue.  For now, we just invalidate the requests,
2211          * schedule() and sleep one second if needed, and hope.
2212          */
2213         schedule();
2214         EXIT;
2215 }
2216
2217 int ll_remount_fs(struct super_block *sb, int *flags, char *data)
2218 {
2219         struct ll_sb_info *sbi = ll_s2sbi(sb);
2220         char *profilenm = get_profile_name(sb);
2221         int err;
2222         __u32 read_only;
2223
2224         if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY)) {
2225                 read_only = *flags & MS_RDONLY;
2226                 err = obd_set_info_async(NULL, sbi->ll_md_exp,
2227                                          sizeof(KEY_READ_ONLY),
2228                                          KEY_READ_ONLY, sizeof(read_only),
2229                                          &read_only, NULL);
2230                 if (err) {
2231                         LCONSOLE_WARN("Failed to remount %s %s (%d)\n",
2232                                       profilenm, read_only ?
2233                                       "read-only" : "read-write", err);
2234                         return err;
2235                 }
2236
2237                 if (read_only)
2238                         sb->s_flags |= MS_RDONLY;
2239                 else
2240                         sb->s_flags &= ~MS_RDONLY;
2241
2242                 if (sbi->ll_flags & LL_SBI_VERBOSE)
2243                         LCONSOLE_WARN("Remounted %s %s\n", profilenm,
2244                                       read_only ?  "read-only" : "read-write");
2245         }
2246         return 0;
2247 }
2248
2249 /**
2250  * Cleanup the open handle that is cached on MDT-side.
2251  *
2252  * For open case, the client side open handling thread may hit error
2253  * after the MDT grant the open. Under such case, the client should
2254  * send close RPC to the MDT as cleanup; otherwise, the open handle
2255  * on the MDT will be leaked there until the client umount or evicted.
2256  *
2257  * In further, if someone unlinked the file, because the open handle
2258  * holds the reference on such file/object, then it will block the
2259  * subsequent threads that want to locate such object via FID.
2260  *
2261  * \param[in] sb        super block for this file-system
2262  * \param[in] open_req  pointer to the original open request
2263  */
2264 void ll_open_cleanup(struct super_block *sb, struct ptlrpc_request *open_req)
2265 {
2266         struct mdt_body                 *body;
2267         struct md_op_data               *op_data;
2268         struct ptlrpc_request           *close_req = NULL;
2269         struct obd_export               *exp       = ll_s2sbi(sb)->ll_md_exp;
2270         ENTRY;
2271
2272         body = req_capsule_server_get(&open_req->rq_pill, &RMF_MDT_BODY);
2273         OBD_ALLOC_PTR(op_data);
2274         if (op_data == NULL) {
2275                 CWARN("%s: cannot allocate op_data to release open handle for "
2276                       DFID"\n",
2277                       ll_get_fsname(sb, NULL, 0), PFID(&body->mbo_fid1));
2278
2279                 RETURN_EXIT;
2280         }
2281
2282         op_data->op_fid1 = body->mbo_fid1;
2283         op_data->op_handle = body->mbo_handle;
2284         op_data->op_mod_time = cfs_time_current_sec();
2285         md_close(exp, op_data, NULL, &close_req);
2286         ptlrpc_req_finished(close_req);
2287         ll_finish_md_op_data(op_data);
2288
2289         EXIT;
2290 }
2291
2292 int ll_prep_inode(struct inode **inode, struct ptlrpc_request *req,
2293                   struct super_block *sb, struct lookup_intent *it)
2294 {
2295         struct ll_sb_info *sbi = NULL;
2296         struct lustre_md md = { NULL };
2297         int rc;
2298         ENTRY;
2299
2300         LASSERT(*inode || sb);
2301         sbi = sb ? ll_s2sbi(sb) : ll_i2sbi(*inode);
2302         rc = md_get_lustre_md(sbi->ll_md_exp, req, sbi->ll_dt_exp,
2303                               sbi->ll_md_exp, &md);
2304         if (rc != 0)
2305                 GOTO(cleanup, rc);
2306
2307         if (*inode) {
2308                 rc = ll_update_inode(*inode, &md);
2309                 if (rc != 0)
2310                         GOTO(out, rc);
2311         } else {
2312                 LASSERT(sb != NULL);
2313
2314                 /*
2315                  * At this point server returns to client's same fid as client
2316                  * generated for creating. So using ->fid1 is okay here.
2317                  */
2318                 LASSERT(fid_is_sane(&md.body->mbo_fid1));
2319
2320                 *inode = ll_iget(sb, cl_fid_build_ino(&md.body->mbo_fid1,
2321                                              sbi->ll_flags & LL_SBI_32BIT_API),
2322                                  &md);
2323                 if (IS_ERR(*inode)) {
2324 #ifdef CONFIG_FS_POSIX_ACL
2325                         if (md.posix_acl) {
2326                                 posix_acl_release(md.posix_acl);
2327                                 md.posix_acl = NULL;
2328                         }
2329 #endif
2330                         rc = IS_ERR(*inode) ? PTR_ERR(*inode) : -ENOMEM;
2331                         *inode = NULL;
2332                         CERROR("new_inode -fatal: rc %d\n", rc);
2333                         GOTO(out, rc);
2334                 }
2335         }
2336
2337         /* Handling piggyback layout lock.
2338          * Layout lock can be piggybacked by getattr and open request.
2339          * The lsm can be applied to inode only if it comes with a layout lock
2340          * otherwise correct layout may be overwritten, for example:
2341          * 1. proc1: mdt returns a lsm but not granting layout
2342          * 2. layout was changed by another client
2343          * 3. proc2: refresh layout and layout lock granted
2344          * 4. proc1: to apply a stale layout */
2345         if (it != NULL && it->d.lustre.it_lock_mode != 0) {
2346                 struct lustre_handle lockh;
2347                 struct ldlm_lock *lock;
2348
2349                 lockh.cookie = it->d.lustre.it_lock_handle;
2350                 lock = ldlm_handle2lock(&lockh);
2351                 LASSERT(lock != NULL);
2352                 if (ldlm_has_layout(lock)) {
2353                         struct cl_object_conf conf;
2354
2355                         memset(&conf, 0, sizeof(conf));
2356                         conf.coc_opc = OBJECT_CONF_SET;
2357                         conf.coc_inode = *inode;
2358                         conf.coc_lock = lock;
2359                         conf.u.coc_md = &md;
2360                         (void)ll_layout_conf(*inode, &conf);
2361                 }
2362                 LDLM_LOCK_PUT(lock);
2363         }
2364
2365         GOTO(out, rc = 0);
2366
2367 out:
2368         if (md.lsm != NULL)
2369                 obd_free_memmd(sbi->ll_dt_exp, &md.lsm);
2370         md_free_lustre_md(sbi->ll_md_exp, &md);
2371
2372 cleanup:
2373         if (rc != 0 && it != NULL && it->it_op & IT_OPEN)
2374                 ll_open_cleanup(sb != NULL ? sb : (*inode)->i_sb, req);
2375
2376         return rc;
2377 }
2378
2379 int ll_obd_statfs(struct inode *inode, void __user *arg)
2380 {
2381         struct ll_sb_info *sbi = NULL;
2382         struct obd_export *exp;
2383         char *buf = NULL;
2384         struct obd_ioctl_data *data = NULL;
2385         __u32 type;
2386         __u32 __user flags;     /* not user, but obd_iocontrol is abused */
2387         int len = 0, rc;
2388
2389         if (!inode || !(sbi = ll_i2sbi(inode)))
2390                 GOTO(out_statfs, rc = -EINVAL);
2391
2392         rc = obd_ioctl_getdata(&buf, &len, arg);
2393         if (rc)
2394                 GOTO(out_statfs, rc);
2395
2396         data = (void*)buf;
2397         if (!data->ioc_inlbuf1 || !data->ioc_inlbuf2 ||
2398             !data->ioc_pbuf1 || !data->ioc_pbuf2)
2399                 GOTO(out_statfs, rc = -EINVAL);
2400
2401         if (data->ioc_inllen1 != sizeof(__u32) ||
2402             data->ioc_inllen2 != sizeof(__u32) ||
2403             data->ioc_plen1 != sizeof(struct obd_statfs) ||
2404             data->ioc_plen2 != sizeof(struct obd_uuid))
2405                 GOTO(out_statfs, rc = -EINVAL);
2406
2407         memcpy(&type, data->ioc_inlbuf1, sizeof(__u32));
2408         if (type & LL_STATFS_LMV)
2409                 exp = sbi->ll_md_exp;
2410         else if (type & LL_STATFS_LOV)
2411                 exp = sbi->ll_dt_exp;
2412         else
2413                 GOTO(out_statfs, rc = -ENODEV);
2414
2415         flags = (type & LL_STATFS_NODELAY) ? OBD_STATFS_NODELAY : 0;
2416         rc = obd_iocontrol(IOC_OBD_STATFS, exp, len, buf, &flags);
2417         if (rc)
2418                 GOTO(out_statfs, rc);
2419 out_statfs:
2420         if (buf)
2421                 obd_ioctl_freedata(buf, len);
2422         return rc;
2423 }
2424
2425 int ll_process_config(struct lustre_cfg *lcfg)
2426 {
2427         struct super_block *sb;
2428         unsigned long x;
2429         int rc = 0;
2430         char *ptr;
2431
2432         /* The instance name contains the sb: lustre-client-aacfe000 */
2433         ptr = strrchr(lustre_cfg_string(lcfg, 0), '-');
2434         if (!ptr || !*(++ptr))
2435                 return -EINVAL;
2436         if (sscanf(ptr, "%lx", &x) != 1)
2437                 return -EINVAL;
2438         sb = (struct super_block *)x;
2439         /* This better be a real Lustre superblock! */
2440         LASSERT(s2lsi(sb)->lsi_lmd->lmd_magic == LMD_MAGIC);
2441
2442         /* Note we have not called client_common_fill_super yet, so
2443            proc fns must be able to handle that! */
2444         rc = class_process_proc_param(PARAM_LLITE, lprocfs_llite_obd_vars,
2445                                       lcfg, sb);
2446         if (rc > 0)
2447                 rc = 0;
2448         return rc;
2449 }
2450
2451 /* this function prepares md_op_data hint for passing it down to MD stack. */
2452 struct md_op_data *ll_prep_md_op_data(struct md_op_data *op_data,
2453                                       struct inode *i1, struct inode *i2,
2454                                       const char *name, size_t namelen,
2455                                       __u32 mode, __u32 opc, void *data)
2456 {
2457         LASSERT(i1 != NULL);
2458
2459         if (name == NULL) {
2460                 /* Do not reuse namelen for something else. */
2461                 if (namelen != 0)
2462                         return ERR_PTR(-EINVAL);
2463         } else {
2464                 if (namelen > ll_i2sbi(i1)->ll_namelen)
2465                         return ERR_PTR(-ENAMETOOLONG);
2466
2467                 if (!lu_name_is_valid_2(name, namelen))
2468                         return ERR_PTR(-EINVAL);
2469         }
2470
2471         if (op_data == NULL)
2472                 OBD_ALLOC_PTR(op_data);
2473
2474         if (op_data == NULL)
2475                 return ERR_PTR(-ENOMEM);
2476
2477         ll_i2gids(op_data->op_suppgids, i1, i2);
2478         op_data->op_fid1 = *ll_inode2fid(i1);
2479         op_data->op_capa1 = ll_mdscapa_get(i1);
2480         op_data->op_default_stripe_offset = -1;
2481         if (S_ISDIR(i1->i_mode)) {
2482                 op_data->op_mea1 = ll_i2info(i1)->lli_lsm_md;
2483                 if (opc == LUSTRE_OPC_MKDIR)
2484                         op_data->op_default_stripe_offset =
2485                                    ll_i2info(i1)->lli_def_stripe_offset;
2486         }
2487
2488         if (i2) {
2489                 op_data->op_fid2 = *ll_inode2fid(i2);
2490                 op_data->op_capa2 = ll_mdscapa_get(i2);
2491                 if (S_ISDIR(i2->i_mode))
2492                         op_data->op_mea2 = ll_i2info(i2)->lli_lsm_md;
2493         } else {
2494                 fid_zero(&op_data->op_fid2);
2495                 op_data->op_capa2 = NULL;
2496         }
2497
2498         if (ll_i2sbi(i1)->ll_flags & LL_SBI_64BIT_HASH)
2499                 op_data->op_cli_flags |= CLI_HASH64;
2500
2501         if (ll_need_32bit_api(ll_i2sbi(i1)))
2502                 op_data->op_cli_flags |= CLI_API32;
2503
2504         op_data->op_name = name;
2505         op_data->op_namelen = namelen;
2506         op_data->op_mode = mode;
2507         op_data->op_mod_time = cfs_time_current_sec();
2508         op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
2509         op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
2510         op_data->op_cap = cfs_curproc_cap_pack();
2511         op_data->op_bias = 0;
2512         op_data->op_cli_flags = 0;
2513         if ((opc == LUSTRE_OPC_CREATE) && (name != NULL) &&
2514              filename_is_volatile(name, namelen, &op_data->op_mds)) {
2515                 op_data->op_bias |= MDS_CREATE_VOLATILE;
2516         } else {
2517                 op_data->op_mds = 0;
2518         }
2519         op_data->op_data = data;
2520
2521         /* When called by ll_setattr_raw, file is i1. */
2522         if (LLIF_DATA_MODIFIED & ll_i2info(i1)->lli_flags)
2523                 op_data->op_bias |= MDS_DATA_MODIFIED;
2524
2525         return op_data;
2526 }
2527
2528 void ll_finish_md_op_data(struct md_op_data *op_data)
2529 {
2530         capa_put(op_data->op_capa1);
2531         capa_put(op_data->op_capa2);
2532         OBD_FREE_PTR(op_data);
2533 }
2534
2535 #ifdef HAVE_SUPEROPS_USE_DENTRY
2536 int ll_show_options(struct seq_file *seq, struct dentry *dentry)
2537 #else
2538 int ll_show_options(struct seq_file *seq, struct vfsmount *vfs)
2539 #endif
2540 {
2541         struct ll_sb_info *sbi;
2542
2543 #ifdef HAVE_SUPEROPS_USE_DENTRY
2544         LASSERT((seq != NULL) && (dentry != NULL));
2545         sbi = ll_s2sbi(dentry->d_sb);
2546 #else
2547         LASSERT((seq != NULL) && (vfs != NULL));
2548         sbi = ll_s2sbi(vfs->mnt_sb);
2549 #endif
2550
2551         if (sbi->ll_flags & LL_SBI_NOLCK)
2552                 seq_puts(seq, ",nolock");
2553
2554         if (sbi->ll_flags & LL_SBI_FLOCK)
2555                 seq_puts(seq, ",flock");
2556
2557         if (sbi->ll_flags & LL_SBI_LOCALFLOCK)
2558                 seq_puts(seq, ",localflock");
2559
2560         if (sbi->ll_flags & LL_SBI_USER_XATTR)
2561                 seq_puts(seq, ",user_xattr");
2562
2563         if (sbi->ll_flags & LL_SBI_LAZYSTATFS)
2564                 seq_puts(seq, ",lazystatfs");
2565
2566         if (sbi->ll_flags & LL_SBI_USER_FID2PATH)
2567                 seq_puts(seq, ",user_fid2path");
2568
2569         RETURN(0);
2570 }
2571
2572 /**
2573  * Get obd name by cmd, and copy out to user space
2574  */
2575 int ll_get_obd_name(struct inode *inode, unsigned int cmd, unsigned long arg)
2576 {
2577         struct ll_sb_info *sbi = ll_i2sbi(inode);
2578         struct obd_device *obd;
2579         ENTRY;
2580
2581         if (cmd == OBD_IOC_GETDTNAME)
2582                 obd = class_exp2obd(sbi->ll_dt_exp);
2583         else if (cmd == OBD_IOC_GETMDNAME)
2584                 obd = class_exp2obd(sbi->ll_md_exp);
2585         else
2586                 RETURN(-EINVAL);
2587
2588         if (!obd)
2589                 RETURN(-ENOENT);
2590
2591         if (copy_to_user((void __user *)arg, obd->obd_name,
2592                          strlen(obd->obd_name) + 1))
2593                 RETURN(-EFAULT);
2594
2595         RETURN(0);
2596 }
2597
2598 /**
2599  * Get lustre file system name by \a sbi. If \a buf is provided(non-NULL), the
2600  * fsname will be returned in this buffer; otherwise, a static buffer will be
2601  * used to store the fsname and returned to caller.
2602  */
2603 char *ll_get_fsname(struct super_block *sb, char *buf, int buflen)
2604 {
2605         static char fsname_static[MTI_NAME_MAXLEN];
2606         struct lustre_sb_info *lsi = s2lsi(sb);
2607         char *ptr;
2608         int len;
2609
2610         if (buf == NULL) {
2611                 /* this means the caller wants to use static buffer
2612                  * and it doesn't care about race. Usually this is
2613                  * in error reporting path */
2614                 buf = fsname_static;
2615                 buflen = sizeof(fsname_static);
2616         }
2617
2618         len = strlen(lsi->lsi_lmd->lmd_profile);
2619         ptr = strrchr(lsi->lsi_lmd->lmd_profile, '-');
2620         if (ptr && (strcmp(ptr, "-client") == 0))
2621                 len -= 7;
2622
2623         if (unlikely(len >= buflen))
2624                 len = buflen - 1;
2625         strncpy(buf, lsi->lsi_lmd->lmd_profile, len);
2626         buf[len] = '\0';
2627
2628         return buf;
2629 }
2630
2631 static char* ll_d_path(struct dentry *dentry, char *buf, int bufsize)
2632 {
2633         char *path = NULL;
2634
2635         struct path p;
2636
2637         p.dentry = dentry;
2638         p.mnt = current->fs->root.mnt;
2639         path_get(&p);
2640         path = d_path(&p, buf, bufsize);
2641         path_put(&p);
2642         return path;
2643 }
2644
2645 void ll_dirty_page_discard_warn(struct page *page, int ioret)
2646 {
2647         char *buf, *path = NULL;
2648         struct dentry *dentry = NULL;
2649         struct inode *inode = page->mapping->host;
2650
2651         /* this can be called inside spin lock so use GFP_ATOMIC. */
2652         buf = (char *)__get_free_page(GFP_ATOMIC);
2653         if (buf != NULL) {
2654                 dentry = d_find_alias(page->mapping->host);
2655                 if (dentry != NULL)
2656                         path = ll_d_path(dentry, buf, PAGE_SIZE);
2657         }
2658
2659         CDEBUG(D_WARNING,
2660                "%s: dirty page discard: %s/fid: "DFID"/%s may get corrupted "
2661                "(rc %d)\n", ll_get_fsname(page->mapping->host->i_sb, NULL, 0),
2662                s2lsi(page->mapping->host->i_sb)->lsi_lmd->lmd_dev,
2663                PFID(ll_inode2fid(inode)),
2664                (path && !IS_ERR(path)) ? path : "", ioret);
2665
2666         if (dentry != NULL)
2667                 dput(dentry);
2668
2669         if (buf != NULL)
2670                 free_page((unsigned long)buf);
2671 }
2672
2673 ssize_t ll_copy_user_md(const struct lov_user_md __user *md,
2674                         struct lov_user_md **kbuf)
2675 {
2676         struct lov_user_md      lum;
2677         ssize_t                 lum_size;
2678         ENTRY;
2679
2680         if (copy_from_user(&lum, md, sizeof(lum)))
2681                 RETURN(-EFAULT);
2682
2683         lum_size = ll_lov_user_md_size(&lum);
2684         if (lum_size < 0)
2685                 RETURN(lum_size);
2686
2687         OBD_ALLOC(*kbuf, lum_size);
2688         if (*kbuf == NULL)
2689                 RETURN(-ENOMEM);
2690
2691         if (copy_from_user(*kbuf, md, lum_size) != 0) {
2692                 OBD_FREE(*kbuf, lum_size);
2693                 RETURN(-EFAULT);
2694         }
2695
2696         RETURN(lum_size);
2697 }
2698
2699 /*
2700  * Compute llite root squash state after a change of root squash
2701  * configuration setting or add/remove of a lnet nid
2702  */
2703 void ll_compute_rootsquash_state(struct ll_sb_info *sbi)
2704 {
2705         struct root_squash_info *squash = &sbi->ll_squash;
2706         int i;
2707         bool matched;
2708         lnet_process_id_t id;
2709
2710         /* Update norootsquash flag */
2711         down_write(&squash->rsi_sem);
2712         if (list_empty(&squash->rsi_nosquash_nids))
2713                 sbi->ll_flags &= ~LL_SBI_NOROOTSQUASH;
2714         else {
2715                 /* Do not apply root squash as soon as one of our NIDs is
2716                  * in the nosquash_nids list */
2717                 matched = false;
2718                 i = 0;
2719                 while (LNetGetId(i++, &id) != -ENOENT) {
2720                         if (LNET_NETTYP(LNET_NIDNET(id.nid)) == LOLND)
2721                                 continue;
2722                         if (cfs_match_nid(id.nid, &squash->rsi_nosquash_nids)) {
2723                                 matched = true;
2724                                 break;
2725                         }
2726                 }
2727                 if (matched)
2728                         sbi->ll_flags |= LL_SBI_NOROOTSQUASH;
2729                 else
2730                         sbi->ll_flags &= ~LL_SBI_NOROOTSQUASH;
2731         }
2732         up_write(&squash->rsi_sem);
2733 }
2734
2735 /**
2736  * Parse linkea content to extract information about a given hardlink
2737  *
2738  * \param[in]   ldata      - Initialized linkea data
2739  * \param[in]   linkno     - Link identifier
2740  * \param[out]  parent_fid - The entry's parent FID
2741  * \param[out]  ln         - Entry name destination buffer
2742  *
2743  * \retval 0 on success
2744  * \retval Appropriate negative error code on failure
2745  */
2746 static int ll_linkea_decode(struct linkea_data *ldata, unsigned int linkno,
2747                             struct lu_fid *parent_fid, struct lu_name *ln)
2748 {
2749         unsigned int    idx;
2750         int             rc;
2751         ENTRY;
2752
2753         rc = linkea_init(ldata);
2754         if (rc < 0)
2755                 RETURN(rc);
2756
2757         if (linkno >= ldata->ld_leh->leh_reccount)
2758                 /* beyond last link */
2759                 RETURN(-ENODATA);
2760
2761         linkea_first_entry(ldata);
2762         for (idx = 0; ldata->ld_lee != NULL; idx++) {
2763                 linkea_entry_unpack(ldata->ld_lee, &ldata->ld_reclen, ln,
2764                                     parent_fid);
2765                 if (idx == linkno)
2766                         break;
2767
2768                 linkea_next_entry(ldata);
2769         }
2770
2771         if (idx < linkno)
2772                 RETURN(-ENODATA);
2773
2774         RETURN(0);
2775 }
2776
2777 /**
2778  * Get parent FID and name of an identified link. Operation is performed for
2779  * a given link number, letting the caller iterate over linkno to list one or
2780  * all links of an entry.
2781  *
2782  * \param[in]     file - File descriptor against which to perform the operation
2783  * \param[in,out] arg  - User-filled structure containing the linkno to operate
2784  *                       on and the available size. It is eventually filled with
2785  *                       the requested information or left untouched on error
2786  *
2787  * \retval - 0 on success
2788  * \retval - Appropriate negative error code on failure
2789  */
2790 int ll_getparent(struct file *file, struct getparent __user *arg)
2791 {
2792         struct dentry           *dentry = file->f_path.dentry;
2793         struct inode            *inode = dentry->d_inode;
2794         struct linkea_data      *ldata;
2795         struct lu_buf            buf = LU_BUF_NULL;
2796         struct lu_name           ln;
2797         struct lu_fid            parent_fid;
2798         __u32                    linkno;
2799         __u32                    name_size;
2800         int                      rc;
2801
2802         ENTRY;
2803
2804         if (!cfs_capable(CFS_CAP_DAC_READ_SEARCH) &&
2805             !(ll_i2sbi(inode)->ll_flags & LL_SBI_USER_FID2PATH))
2806                 RETURN(-EPERM);
2807
2808         if (get_user(name_size, &arg->gp_name_size))
2809                 RETURN(-EFAULT);
2810
2811         if (get_user(linkno, &arg->gp_linkno))
2812                 RETURN(-EFAULT);
2813
2814         if (name_size > PATH_MAX)
2815                 RETURN(-EINVAL);
2816
2817         OBD_ALLOC(ldata, sizeof(*ldata));
2818         if (ldata == NULL)
2819                 RETURN(-ENOMEM);
2820
2821         rc = linkea_data_new(ldata, &buf);
2822         if (rc < 0)
2823                 GOTO(ldata_free, rc);
2824
2825         rc = ll_getxattr(dentry, XATTR_NAME_LINK, buf.lb_buf, buf.lb_len);
2826         if (rc < 0)
2827                 GOTO(lb_free, rc);
2828
2829         rc = ll_linkea_decode(ldata, linkno, &parent_fid, &ln);
2830         if (rc < 0)
2831                 GOTO(lb_free, rc);
2832
2833         if (ln.ln_namelen >= name_size)
2834                 GOTO(lb_free, rc = -EOVERFLOW);
2835
2836         if (copy_to_user(&arg->gp_fid, &parent_fid, sizeof(arg->gp_fid)))
2837                 GOTO(lb_free, rc = -EFAULT);
2838
2839         if (copy_to_user(&arg->gp_name, ln.ln_name, ln.ln_namelen))
2840                 GOTO(lb_free, rc = -EFAULT);
2841
2842         if (put_user('\0', arg->gp_name + ln.ln_namelen))
2843                 GOTO(lb_free, rc = -EFAULT);
2844
2845 lb_free:
2846         lu_buf_free(&buf);
2847 ldata_free:
2848         OBD_FREE(ldata, sizeof(*ldata));
2849
2850         RETURN(rc);
2851 }