mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
All NLMv3 server-side procedures now dispatch through xdrgen-generated encoder and decoder functions, leaving the hand-written XDR processing in fs/lockd/xdr.c with no remaining callers. Remove fs/lockd/xdr.c, the fs/lockd/svcxdr.h header it included, the Makefile entry, and the now-unused nlmsvc_decode_* / nlmsvc_encode_* prototypes from fs/lockd/xdr.h. The structure definitions and status code macros in xdr.h are retained as they are still used by the client-side code. Reviewed-by: Jeff Layton <jlayton@kernel.org> Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
86 lines
1.7 KiB
C
86 lines
1.7 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* XDR types for the NLM protocol
|
|
*
|
|
* Copyright (C) 1996 Olaf Kirch <okir@monad.swb.de>
|
|
*/
|
|
|
|
#ifndef _LOCKD_XDR_H
|
|
#define _LOCKD_XDR_H
|
|
|
|
#include <linux/fs.h>
|
|
#include <linux/filelock.h>
|
|
#include <linux/nfs.h>
|
|
#include <linux/sunrpc/xdr.h>
|
|
|
|
#define SM_MAXSTRLEN 1024
|
|
#define SM_PRIV_SIZE 16
|
|
|
|
struct nsm_private {
|
|
unsigned char data[SM_PRIV_SIZE];
|
|
};
|
|
|
|
#define NLM_MAXCOOKIELEN 32
|
|
#define NLM_MAXSTRLEN 1024
|
|
|
|
#define nlm_granted cpu_to_be32(NLM_LCK_GRANTED)
|
|
#define nlm_lck_denied cpu_to_be32(NLM_LCK_DENIED)
|
|
#define nlm_lck_denied_nolocks cpu_to_be32(NLM_LCK_DENIED_NOLOCKS)
|
|
#define nlm_lck_blocked cpu_to_be32(NLM_LCK_BLOCKED)
|
|
#define nlm_lck_denied_grace_period cpu_to_be32(NLM_LCK_DENIED_GRACE_PERIOD)
|
|
|
|
/* Lock info passed via NLM */
|
|
struct lockd_lock {
|
|
char * caller;
|
|
unsigned int len; /* length of "caller" */
|
|
struct nfs_fh fh;
|
|
struct xdr_netobj oh;
|
|
u32 svid;
|
|
u64 lock_start;
|
|
u64 lock_len;
|
|
struct file_lock fl;
|
|
};
|
|
|
|
/*
|
|
* NLM cookies. Technically they can be 1K, but Linux only uses 8 bytes.
|
|
* FreeBSD uses 16, Apple Mac OS X 10.3 uses 20. Therefore we set it to
|
|
* 32 bytes.
|
|
*/
|
|
|
|
struct lockd_cookie {
|
|
unsigned char data[NLM_MAXCOOKIELEN];
|
|
unsigned int len;
|
|
};
|
|
|
|
/*
|
|
* Generic lockd arguments for all but sm_notify
|
|
*/
|
|
struct lockd_args {
|
|
struct lockd_cookie cookie;
|
|
struct lockd_lock lock;
|
|
u32 block;
|
|
u32 reclaim;
|
|
u32 state;
|
|
};
|
|
|
|
/*
|
|
* Generic lockd result
|
|
*/
|
|
struct lockd_res {
|
|
struct lockd_cookie cookie;
|
|
__be32 status;
|
|
struct lockd_lock lock;
|
|
};
|
|
|
|
/*
|
|
* statd callback when client has rebooted
|
|
*/
|
|
struct lockd_reboot {
|
|
char *mon;
|
|
unsigned int len;
|
|
u32 state;
|
|
struct nsm_private priv;
|
|
};
|
|
|
|
#endif /* _LOCKD_XDR_H */
|