Whamcloud - gitweb
LU-12616 obclass: fix MDS start/stop race
[fs/lustre-release.git] / lustre / osp / osp_md_object.c
index fb77b3b..864462e 100644 (file)
@@ -20,7 +20,7 @@
  * GPL HEADER END
  */
 /*
- * Copyright (c) 2013, 2016, Intel Corporation.
+ * Copyright (c) 2013, 2017, Intel Corporation.
  */
 /*
  * lustre/osp/osp_md_object.c
@@ -157,15 +157,15 @@ int osp_md_create(const struct lu_env *env, struct dt_object *dt,
                  struct lu_attr *attr, struct dt_allocation_hint *hint,
                  struct dt_object_format *dof, struct thandle *th)
 {
-       struct osp_update_request       *update;
-       struct osp_object               *obj = dt2osp_obj(dt);
-       int                             rc;
+       struct osp_update_request *update;
+       struct osp_object *obj = dt2osp_obj(dt);
+       int rc;
 
        update = thandle_to_osp_update_request(th);
        LASSERT(update != NULL);
 
        LASSERT(attr->la_valid & LA_TYPE);
-       rc = osp_update_rpc_pack(env, create, update, OUT_CREATE,
+       rc = OSP_UPDATE_RPC_PACK(env, out_create_pack, update,
                                 lu_object_fid(&dt->do_lu), attr, hint, dof);
        if (rc != 0)
                GOTO(out, rc);
@@ -178,6 +178,7 @@ int osp_md_create(const struct lu_env *env, struct dt_object *dt,
 
        dt->do_lu.lo_header->loh_attr |= LOHA_EXISTS | (attr->la_mode & S_IFMT);
        dt2osp_obj(dt)->opo_non_exist = 0;
+       obj->opo_stale = 0;
 
        obj->opo_attr = *attr;
 out:
@@ -219,13 +220,13 @@ static int osp_md_declare_ref_del(const struct lu_env *env,
 static int osp_md_ref_del(const struct lu_env *env, struct dt_object *dt,
                          struct thandle *th)
 {
-       struct osp_update_request       *update;
-       int                             rc;
+       struct osp_update_request *update;
+       int rc;
 
        update = thandle_to_osp_update_request(th);
        LASSERT(update != NULL);
 
-       rc = osp_update_rpc_pack(env, ref_del, update, OUT_REF_DEL,
+       rc = OSP_UPDATE_RPC_PACK(env, out_ref_del_pack, update,
                                 lu_object_fid(&dt->do_lu));
        return rc;
 }
@@ -265,13 +266,13 @@ static int osp_md_declare_ref_add(const struct lu_env *env,
 static int osp_md_ref_add(const struct lu_env *env, struct dt_object *dt,
                          struct thandle *th)
 {
-       struct osp_update_request       *update;
-       int                             rc;
+       struct osp_update_request *update;
+       int rc;
 
        update = thandle_to_osp_update_request(th);
        LASSERT(update != NULL);
 
-       rc = osp_update_rpc_pack(env, ref_add, update, OUT_REF_ADD,
+       rc = OSP_UPDATE_RPC_PACK(env, out_ref_add_pack, update,
                                 lu_object_fid(&dt->do_lu));
        return rc;
 }
@@ -341,13 +342,13 @@ int osp_md_declare_attr_set(const struct lu_env *env, struct dt_object *dt,
 int osp_md_attr_set(const struct lu_env *env, struct dt_object *dt,
                    const struct lu_attr *attr, struct thandle *th)
 {
-       struct osp_update_request       *update;
-       int                             rc;
+       struct osp_update_request *update;
+       int rc;
 
        update = thandle_to_osp_update_request(th);
        LASSERT(update != NULL);
 
-       rc = osp_update_rpc_pack(env, attr_set, update, OUT_ATTR_SET,
+       rc = OSP_UPDATE_RPC_PACK(env, out_attr_set_pack, update,
                                 lu_object_fid(&dt->do_lu), attr);
        return rc;
 }
@@ -362,7 +363,7 @@ int osp_md_attr_set(const struct lu_env *env, struct dt_object *dt,
  *
  * \param[in] env      execution environment
  * \param[in] dt       object to be locked
- * \param[in] role     lock role from MDD layer, see mdd_object_role().
+ * \param[in] role     lock role from MDD layer, see dt_object_role().
  */
 static void osp_md_read_lock(const struct lu_env *env, struct dt_object *dt,
                             unsigned role)
@@ -382,7 +383,7 @@ static void osp_md_read_lock(const struct lu_env *env, struct dt_object *dt,
  *
  * \param[in] env      execution environment
  * \param[in] dt       object to be locked
- * \param[in] role     lock role from MDD layer, see mdd_object_role().
+ * \param[in] role     lock role from MDD layer, see dt_object_role().
  */
 static void osp_md_write_lock(const struct lu_env *env, struct dt_object *dt,
                              unsigned role)
@@ -477,7 +478,7 @@ static int osp_md_index_lookup(const struct lu_env *env, struct dt_object *dt,
        if (IS_ERR(update))
                RETURN(PTR_ERR(update));
 
-       rc = osp_update_rpc_pack(env, index_lookup, update, OUT_INDEX_LOOKUP,
+       rc = OSP_UPDATE_RPC_PACK(env, out_index_lookup_pack, update,
                                 lu_object_fid(&dt->do_lu), rec, key);
        if (rc != 0) {
                CERROR("%s: Insert update error: rc = %d\n",
@@ -569,25 +570,21 @@ static int osp_md_declare_index_insert(const struct lu_env *env,
  * \param[in] rec      record of the index to be inserted
  * \param[in] key      key of the index to be inserted
  * \param[in] th       the transaction handle
- * \param[in] ignore_quota quota enforcement for insert
  *
  * \retval             0 if packing index insert succeeds.
  * \retval             negative errno if packing fails.
  */
-static int osp_md_index_insert(const struct lu_env *env,
-                              struct dt_object *dt,
+static int osp_md_index_insert(const struct lu_env *env, struct dt_object *dt,
                               const struct dt_rec *rec,
-                              const struct dt_key *key,
-                              struct thandle *th,
-                              int ignore_quota)
+                              const struct dt_key *key, struct thandle *th)
 {
        struct osp_update_request *update;
-       int                      rc;
+       int rc;
 
        update = thandle_to_osp_update_request(th);
        LASSERT(update != NULL);
 
-       rc = osp_update_rpc_pack(env, index_insert, update, OUT_INDEX_INSERT,
+       rc = OSP_UPDATE_RPC_PACK(env, out_index_insert_pack, update,
                                 lu_object_fid(&dt->do_lu), rec, key);
        return rc;
 }
@@ -639,7 +636,7 @@ static int osp_md_index_delete(const struct lu_env *env,
        update = thandle_to_osp_update_request(th);
        LASSERT(update != NULL);
 
-       rc = osp_update_rpc_pack(env, index_delete, update, OUT_INDEX_DELETE,
+       rc = OSP_UPDATE_RPC_PACK(env, out_index_delete_pack, update,
                                 lu_object_fid(&dt->do_lu), key);
 
        return rc;
@@ -818,6 +815,95 @@ const struct dt_index_operations osp_md_index_ops = {
 };
 
 /**
+ * Implement OSP layer dt_object_operations::do_xattr_list() interface.
+ *
+ * List extended attribute from the specified MDT/OST object, result is not
+ * cached because this is called by directory migration only.
+ *
+ * \param[in] env      pointer to the thread context
+ * \param[in] dt       pointer to the OSP layer dt_object
+ * \param[out] buf     pointer to the lu_buf to hold the extended attribute
+ *
+ * \retval             positive bytes used/required in the buffer
+ * \retval             negative error number on failure
+ */
+static int osp_md_xattr_list(const struct lu_env *env, struct dt_object *dt,
+                            const struct lu_buf *buf)
+{
+       struct osp_device *osp = lu2osp_dev(dt->do_lu.lo_dev);
+       struct osp_object *obj = dt2osp_obj(dt);
+       struct dt_device *dev = &osp->opd_dt_dev;
+       struct lu_buf *rbuf = &osp_env_info(env)->osi_lb2;
+       struct osp_update_request *update = NULL;
+       struct ptlrpc_request *req = NULL;
+       struct object_update_reply *reply;
+       const char *dname  = dt->do_lu.lo_dev->ld_obd->obd_name;
+       int rc = 0;
+
+       ENTRY;
+
+       LASSERT(buf);
+
+       if (unlikely(obj->opo_non_exist))
+               RETURN(-ENOENT);
+
+       update = osp_update_request_create(dev);
+       if (IS_ERR(update))
+               RETURN(PTR_ERR(update));
+
+       rc = OSP_UPDATE_RPC_PACK(env, out_xattr_list_pack, update,
+                                lu_object_fid(&dt->do_lu), buf->lb_len);
+       if (rc) {
+               CERROR("%s: Insert update error "DFID": rc = %d\n",
+                      dname, PFID(lu_object_fid(&dt->do_lu)), rc);
+               GOTO(out, rc);
+       }
+
+       rc = osp_remote_sync(env, osp, update, &req);
+       if (rc < 0) {
+               if (rc == -ENOENT) {
+                       dt->do_lu.lo_header->loh_attr &= ~LOHA_EXISTS;
+                       obj->opo_non_exist = 1;
+               }
+               GOTO(out, rc);
+       }
+
+       reply = req_capsule_server_sized_get(&req->rq_pill,
+                                            &RMF_OUT_UPDATE_REPLY,
+                                            OUT_UPDATE_REPLY_SIZE);
+       if (reply->ourp_magic != UPDATE_REPLY_MAGIC) {
+               DEBUG_REQ(D_ERROR, req,
+                         "%s: Wrong version %x expected %x "DFID": rc = %d\n",
+                         dname, reply->ourp_magic, UPDATE_REPLY_MAGIC,
+                         PFID(lu_object_fid(&dt->do_lu)), -EPROTO);
+
+               GOTO(out, rc = -EPROTO);
+       }
+
+       rc = object_update_result_data_get(reply, rbuf, 0);
+       if (rc < 0)
+               GOTO(out, rc);
+
+       if (!buf->lb_buf)
+               GOTO(out, rc);
+
+       if (unlikely(buf->lb_len < rbuf->lb_len))
+               GOTO(out, rc = -ERANGE);
+
+       memcpy(buf->lb_buf, rbuf->lb_buf, rbuf->lb_len);
+       EXIT;
+
+out:
+       if (req)
+               ptlrpc_req_finished(req);
+
+       if (update && !IS_ERR(update))
+               osp_update_request_destroy(env, update);
+
+       return rc;
+}
+
+/**
  * Implementation of dt_object_operations::do_index_try
  *
  * Try to initialize the index API pointer for the given object. This
@@ -872,8 +958,6 @@ static int osp_md_object_lock(const struct lu_env *env,
        res_id = einfo->ei_res_id;
        LASSERT(res_id != NULL);
 
-       if (einfo->ei_nonblock)
-               flags |= LDLM_FL_BLOCK_NOWAIT;
        if (einfo->ei_mode & (LCK_EX | LCK_PW))
                flags |= LDLM_FL_COS_INCOMPAT;
 
@@ -953,10 +1037,10 @@ int osp_md_declare_destroy(const struct lu_env *env, struct dt_object *dt,
 int osp_md_destroy(const struct lu_env *env, struct dt_object *dt,
                   struct thandle *th)
 {
-       struct osp_object               *o = dt2osp_obj(dt);
-       struct osp_device               *osp = lu2osp_dev(dt->do_lu.lo_dev);
-       struct osp_update_request       *update;
-       int                             rc = 0;
+       struct osp_object *o = dt2osp_obj(dt);
+       struct osp_device *osp = lu2osp_dev(dt->do_lu.lo_dev);
+       struct osp_update_request *update;
+       int rc = 0;
 
        ENTRY;
        o->opo_non_exist = 1;
@@ -965,7 +1049,7 @@ int osp_md_destroy(const struct lu_env *env, struct dt_object *dt,
        update = thandle_to_osp_update_request(th);
        LASSERT(update != NULL);
 
-       rc = osp_update_rpc_pack(env, destroy, update, OUT_DESTROY,
+       rc = OSP_UPDATE_RPC_PACK(env, out_destroy_pack, update,
                                 lu_object_fid(&dt->do_lu));
        if (rc != 0)
                RETURN(rc);
@@ -996,6 +1080,7 @@ struct dt_object_operations osp_md_obj_ops = {
        .do_declare_attr_set  = osp_md_declare_attr_set,
        .do_attr_set          = osp_md_attr_set,
        .do_xattr_get         = osp_xattr_get,
+       .do_xattr_list        = osp_md_xattr_list,
        .do_declare_xattr_set = osp_declare_xattr_set,
        .do_xattr_set         = osp_xattr_set,
        .do_declare_xattr_del = osp_declare_xattr_del,
@@ -1053,14 +1138,13 @@ static ssize_t osp_md_declare_write(const struct lu_env *env,
  * \param[in] buf      buffer to write which includes an embedded size field
  * \param[in] pos      offet in the object to start writing at
  * \param[in] th       transaction handle
- * \param[in] ignore_quota quota enforcement for this write
  *
  * \retval             the buffer size in bytes if packing succeeds.
  * \retval             negative errno if packing fails.
  */
 static ssize_t osp_md_write(const struct lu_env *env, struct dt_object *dt,
                            const struct lu_buf *buf, loff_t *pos,
-                           struct thandle *th, int ignore_quota)
+                           struct thandle *th)
 {
        struct osp_object         *obj = dt2osp_obj(dt);
        struct osp_update_request  *update;
@@ -1074,7 +1158,7 @@ static ssize_t osp_md_write(const struct lu_env *env, struct dt_object *dt,
        CDEBUG(D_INFO, "write "DFID" offset = %llu length = %zu\n",
               PFID(lu_object_fid(&dt->do_lu)), *pos, buf->lb_len);
 
-       rc = osp_update_rpc_pack(env, write, update, OUT_WRITE,
+       rc = OSP_UPDATE_RPC_PACK(env, out_write_pack, update,
                                 lu_object_fid(&dt->do_lu), buf, *pos);
        if (rc < 0)
                RETURN(rc);
@@ -1136,7 +1220,7 @@ static ssize_t osp_md_read(const struct lu_env *env, struct dt_object *dt,
        if (IS_ERR(update))
                RETURN(PTR_ERR(update));
 
-       rc = osp_update_rpc_pack(env, read, update, OUT_READ,
+       rc = OSP_UPDATE_RPC_PACK(env, out_read_pack, update,
                                 lu_object_fid(&dt->do_lu),
                                 rbuf->lb_len, *pos);
        if (rc != 0) {