[PATCH pynfs v3 22/26] server41tests: test link triggers ADD notification
Jeff Layton <[email protected]>
| Newsgroups | gmane.linux.nfs |
|---|---|
| Message-ID | <[email protected]> |
Verify that creating a hard link triggers a NOTIFY4_ADD_ENTRY notification on the directory's delegation. Signed-off-by: Jeff Layton <[email protected]> --- nfs4.1/server41tests/st_dir_deleg.py | 56 ++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/nfs4.1/server41tests/st_dir_deleg.py b/nfs4.1/server41tests/st_dir_deleg.py index 43e9ce4cb4d2..973ac5b8f934 100644 --- a/nfs4.1/server41tests/st_dir_deleg.py +++ b/nfs4.1/server41tests/st_dir_deleg.py @@ -855,3 +855,59 @@ def testDirDelegCrossRenameTarget(t, env): fail("Expected ADD notification for cross-dir rename target, got %d" % evt_type) if evt.nad_new_entry.ne_file != env.testname(t): fail("Wrong entry name in ADD notification") + +def testDirDelegLinkNotify(t, env): + """Verify hard link triggers ADD notification + + Per RFC 8881bis Section 27.4.4, the server sends an ADD notification + when a hard link is being created to an existing file. + + FLAGS: dirdeleg all + CODE: DIRDELEG19 + """ + c = env.c1 + cb = threading.Event() + sess1, fh, deleg = _getDirDeleg(t, env, + [NOTIFY4_ADD_ENTRY, + NOTIFY4_GFLAG_EXTEND], cb) + + # Create a file in the delegated directory from sess1 + claim = open_claim4(CLAIM_NULL, env.testname(t)) + owner = open_owner4(0, b"owner") + how = openflag4(OPEN4_CREATE, createhow4(GUARDED4, {FATTR4_SIZE:0})) + open_op = [ op.putfh(fh), op.open(0, + OPEN4_SHARE_ACCESS_WRITE | OPEN4_SHARE_ACCESS_WANT_NO_DELEG, + OPEN4_SHARE_DENY_NONE, owner, how, claim), op.getfh() ] + res = sess1.compound(open_op) + check(res) + open_stateid = res.resarray[-2].stateid + file_fh = res.resarray[-1].object + close_file(sess1, file_fh, stateid=open_stateid) + + # Clear the notification state from the create + cb.clear() + cb.got_notify = False + + # Link the file to a new name from sess2 + link_name = b"%s_link" % env.testname(t) + sess2 = c.new_client_session(b"%s_2" % env.testname(t)) + link_op = [ op.putfh(file_fh), op.savefh(), + op.putfh(fh), + op.link(link_name) ] + res = sess2.compound(link_op) + check(res) + + completed = cb.wait(2) + + delegreturn_op = [ op.putfh(fh), op.delegreturn(deleg) ] + res = sess1.compound(delegreturn_op) + check(res) + + if (not completed or not cb.got_notify): + fail("Didn't receive a CB_NOTIFY from the server!") + + evt_type, evt = decode_notify_event(cb.changes[0]) + if evt_type != NOTIFY4_ADD_ENTRY: + fail("Expected ADD notification for link, got %d" % evt_type) + if evt.nad_new_entry.ne_file != link_name: + fail("Wrong entry name in ADD notification") -- 2.54.0