Re: [PATCH 17/33] sunrpc: mark all struct rpc_procinfo instances as const

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, 2017-05-12 at 18:16 +0200, Christoph Hellwig wrote:
> struct rpc_procinfo contains function pointers, and marking it as
> constant avoids it being able to be used as an attach vector for
> code injections.
> 
> Signed-off-by: Christoph Hellwig <hch@xxxxxx>
> Acked-by: Trond Myklebust <trond.myklebust@xxxxxxxxxxxxxxx>
> ---
>  fs/lockd/clnt4xdr.c                  |  2 +-
>  fs/lockd/clntxdr.c                   |  2 +-
>  fs/lockd/mon.c                       |  2 +-
>  fs/nfs/internal.h                    |  6 +++---
>  fs/nfs/mount_clnt.c                  |  4 ++--
>  fs/nfs/nfs2xdr.c                     |  2 +-
>  fs/nfs/nfs3xdr.c                     |  4 ++--
>  fs/nfs/nfs4_fs.h                     |  2 +-
>  fs/nfs/nfs4xdr.c                     |  2 +-
>  fs/nfsd/nfs4callback.c               |  2 +-
>  include/linux/sunrpc/clnt.h          |  4 ++--
>  include/linux/sunrpc/sched.h         |  2 +-
>  net/sunrpc/auth_gss/gss_rpc_upcall.c |  2 +-
>  net/sunrpc/clnt.c                    |  4 ++--
>  net/sunrpc/rpcb_clnt.c               | 19 ++++++++++---------
>  net/sunrpc/stats.c                   |  2 +-
>  16 files changed, 31 insertions(+), 30 deletions(-)
> 
> diff --git a/fs/lockd/clnt4xdr.c b/fs/lockd/clnt4xdr.c
> index 7c255d1d7c64..c349fc0f9b80 100644
> --- a/fs/lockd/clnt4xdr.c
> +++ b/fs/lockd/clnt4xdr.c
> @@ -584,7 +584,7 @@ static int nlm4_xdr_dec_res(struct rpc_rqst *req,
>  	.p_name      = #proc,						\
>  	}
>  
> -static struct rpc_procinfo	nlm4_procedures[] = {
> +static const struct rpc_procinfo nlm4_procedures[] = {
>  	PROC(TEST,		testargs,	testres),
>  	PROC(LOCK,		lockargs,	res),
>  	PROC(CANCEL,		cancargs,	res),
> diff --git a/fs/lockd/clntxdr.c b/fs/lockd/clntxdr.c
> index 39500c5743a5..3b4724a6c4ee 100644
> --- a/fs/lockd/clntxdr.c
> +++ b/fs/lockd/clntxdr.c
> @@ -582,7 +582,7 @@ static int nlm_xdr_dec_res(struct rpc_rqst *req,
>  	.p_name      = #proc,						\
>  	}
>  
> -static struct rpc_procinfo	nlm_procedures[] = {
> +static const struct rpc_procinfo nlm_procedures[] = {
>  	PROC(TEST,		testargs,	testres),
>  	PROC(LOCK,		lockargs,	res),
>  	PROC(CANCEL,		cancargs,	res),
> diff --git a/fs/lockd/mon.c b/fs/lockd/mon.c
> index fe4ec82764fe..9d8166c39c54 100644
> --- a/fs/lockd/mon.c
> +++ b/fs/lockd/mon.c
> @@ -531,7 +531,7 @@ static int nsm_xdr_dec_stat(struct rpc_rqst *rqstp,
>  #define SM_monres_sz	2
>  #define SM_unmonres_sz	1
>  
> -static struct rpc_procinfo	nsm_procedures[] = {
> +static const struct rpc_procinfo nsm_procedures[] = {
>  [NSMPROC_MON] = {
>  		.p_proc		= NSMPROC_MON,
>  		.p_encode	= nsm_xdr_enc_mon,
> diff --git a/fs/nfs/internal.h b/fs/nfs/internal.h
> index e9b4c3320e37..c21254924389 100644
> --- a/fs/nfs/internal.h
> +++ b/fs/nfs/internal.h
> @@ -270,12 +270,12 @@ static inline bool nfs_match_open_context(const struct nfs_open_context *ctx1,
>  }
>  
>  /* nfs2xdr.c */
> -extern struct rpc_procinfo nfs_procedures[];
> +extern const struct rpc_procinfo nfs_procedures[];
>  extern int nfs2_decode_dirent(struct xdr_stream *,
>  				struct nfs_entry *, int);
>  
>  /* nfs3xdr.c */
> -extern struct rpc_procinfo nfs3_procedures[];
> +extern const struct rpc_procinfo nfs3_procedures[];
>  extern int nfs3_decode_dirent(struct xdr_stream *,
>  				struct nfs_entry *, int);
>  
> @@ -292,7 +292,7 @@ extern const u32 nfs41_maxgetdevinfo_overhead;
>  
>  /* nfs4proc.c */
>  #if IS_ENABLED(CONFIG_NFS_V4)
> -extern struct rpc_procinfo nfs4_procedures[];
> +extern const struct rpc_procinfo nfs4_procedures[];
>  #endif
>  
>  #ifdef CONFIG_NFS_V4_SECURITY_LABEL
> diff --git a/fs/nfs/mount_clnt.c b/fs/nfs/mount_clnt.c
> index d25914aa8bf9..3efe946672be 100644
> --- a/fs/nfs/mount_clnt.c
> +++ b/fs/nfs/mount_clnt.c
> @@ -466,7 +466,7 @@ static int mnt_xdr_dec_mountres3(struct rpc_rqst *req,
>  	return decode_auth_flavors(xdr, res);
>  }
>  
> -static struct rpc_procinfo mnt_procedures[] = {
> +static const struct rpc_procinfo mnt_procedures[] = {
>  	[MOUNTPROC_MNT] = {
>  		.p_proc		= MOUNTPROC_MNT,
>  		.p_encode	= mnt_xdr_enc_dirpath,
> @@ -485,7 +485,7 @@ static struct rpc_procinfo mnt_procedures[] = {
>  	},
>  };
>  
> -static struct rpc_procinfo mnt3_procedures[] = {
> +static const struct rpc_procinfo mnt3_procedures[] = {
>  	[MOUNTPROC3_MNT] = {
>  		.p_proc		= MOUNTPROC3_MNT,
>  		.p_encode	= mnt_xdr_enc_dirpath,
> diff --git a/fs/nfs/nfs2xdr.c b/fs/nfs/nfs2xdr.c
> index 16b4526299c1..c8a7e98c1371 100644
> --- a/fs/nfs/nfs2xdr.c
> +++ b/fs/nfs/nfs2xdr.c
> @@ -1152,7 +1152,7 @@ static int nfs_stat_to_errno(enum nfs_stat status)
>  	.p_statidx  =  NFSPROC_##proc,					\
>  	.p_name     =  #proc,						\
>  	}
> -struct rpc_procinfo	nfs_procedures[] = {
> +const struct rpc_procinfo nfs_procedures[] = {
>  	PROC(GETATTR,	fhandle,	attrstat,	1),
>  	PROC(SETATTR,	sattrargs,	attrstat,	0),
>  	PROC(LOOKUP,	diropargs,	diropres,	2),
> diff --git a/fs/nfs/nfs3xdr.c b/fs/nfs/nfs3xdr.c
> index 85ff1187e637..670eddb3ae36 100644
> --- a/fs/nfs/nfs3xdr.c
> +++ b/fs/nfs/nfs3xdr.c
> @@ -2554,7 +2554,7 @@ static int nfs3_stat_to_errno(enum nfs_stat status)
>  	.p_name      = #proc,						\
>  	}
>  
> -struct rpc_procinfo	nfs3_procedures[] = {
> +const struct rpc_procinfo nfs3_procedures[] = {
>  	PROC(GETATTR,		getattr,	getattr,	1),
>  	PROC(SETATTR,		setattr,	setattr,	0),
>  	PROC(LOOKUP,		lookup,		lookup,		2),
> @@ -2587,7 +2587,7 @@ const struct rpc_version nfs_version3 = {
>  };
>  
>  #ifdef CONFIG_NFS_V3_ACL
> -static struct rpc_procinfo	nfs3_acl_procedures[] = {
> +static const struct rpc_procinfo nfs3_acl_procedures[] = {
>  	[ACLPROC3_GETACL] = {
>  		.p_proc = ACLPROC3_GETACL,
>  		.p_encode = nfs3_xdr_enc_getacl3args,
> diff --git a/fs/nfs/nfs4_fs.h b/fs/nfs/nfs4_fs.h
> index af285cc27ccf..9b0cf3872722 100644
> --- a/fs/nfs/nfs4_fs.h
> +++ b/fs/nfs/nfs4_fs.h
> @@ -493,7 +493,7 @@ static inline void nfs4_unregister_sysctl(void)
>  #endif
>  
>  /* nfs4xdr.c */
> -extern struct rpc_procinfo nfs4_procedures[];
> +extern const struct rpc_procinfo nfs4_procedures[];
>  
>  struct nfs4_mount_data;
>  
> diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c
> index 40cf5529e65f..0f1f290c97cd 100644
> --- a/fs/nfs/nfs4xdr.c
> +++ b/fs/nfs/nfs4xdr.c
> @@ -7594,7 +7594,7 @@ nfs4_stat_to_errno(int stat)
>  	.p_name = #proc,	\
>  }
>  
> -struct rpc_procinfo	nfs4_procedures[] = {
> +const struct rpc_procinfo nfs4_procedures[] = {
>  	PROC(READ,		enc_read,		dec_read),
>  	PROC(WRITE,		enc_write,		dec_write),
>  	PROC(COMMIT,		enc_commit,		dec_commit),
> diff --git a/fs/nfsd/nfs4callback.c b/fs/nfsd/nfs4callback.c
> index afa961fe073c..ac10f78c0fb3 100644
> --- a/fs/nfsd/nfs4callback.c
> +++ b/fs/nfsd/nfs4callback.c
> @@ -696,7 +696,7 @@ static int nfs4_xdr_dec_cb_notify_lock(struct rpc_rqst *rqstp,
>  	.p_name    = #proc,						\
>  }
>  
> -static struct rpc_procinfo nfs4_cb_procedures[] = {
> +static const struct rpc_procinfo nfs4_cb_procedures[] = {
>  	PROC(CB_NULL,	NULL,		cb_null,	cb_null),
>  	PROC(CB_RECALL,	COMPOUND,	cb_recall,	cb_recall),
>  #ifdef CONFIG_NFSD_PNFS
> diff --git a/include/linux/sunrpc/clnt.h b/include/linux/sunrpc/clnt.h
> index c75ba37151fe..55ef67bea06b 100644
> --- a/include/linux/sunrpc/clnt.h
> +++ b/include/linux/sunrpc/clnt.h
> @@ -39,7 +39,7 @@ struct rpc_clnt {
>  	struct list_head	cl_tasks;	/* List of tasks */
>  	spinlock_t		cl_lock;	/* spinlock */
>  	struct rpc_xprt __rcu *	cl_xprt;	/* transport */
> -	struct rpc_procinfo *	cl_procinfo;	/* procedure info */
> +	const struct rpc_procinfo *cl_procinfo;	/* procedure info */
>  	u32			cl_prog,	/* RPC program number */
>  				cl_vers,	/* RPC version number */
>  				cl_maxproc;	/* max procedure number */
> @@ -87,7 +87,7 @@ struct rpc_program {
>  struct rpc_version {
>  	u32			number;		/* version number */
>  	unsigned int		nrprocs;	/* number of procs */
> -	struct rpc_procinfo *	procs;		/* procedure array */
> +	const struct rpc_procinfo *procs;	/* procedure array */
>  	unsigned int		*counts;	/* call counts */
>  };
>  
> diff --git a/include/linux/sunrpc/sched.h b/include/linux/sunrpc/sched.h
> index 7ba040c797ec..ed60253abd0a 100644
> --- a/include/linux/sunrpc/sched.h
> +++ b/include/linux/sunrpc/sched.h
> @@ -22,7 +22,7 @@
>   */
>  struct rpc_procinfo;
>  struct rpc_message {
> -	struct rpc_procinfo *	rpc_proc;	/* Procedure information */
> +	const struct rpc_procinfo *rpc_proc;	/* Procedure information */
>  	void *			rpc_argp;	/* Arguments */
>  	void *			rpc_resp;	/* Result */
>  	struct rpc_cred *	rpc_cred;	/* Credentials */
> diff --git a/net/sunrpc/auth_gss/gss_rpc_upcall.c b/net/sunrpc/auth_gss/gss_rpc_upcall.c
> index f8729b647605..46b295e4f2b8 100644
> --- a/net/sunrpc/auth_gss/gss_rpc_upcall.c
> +++ b/net/sunrpc/auth_gss/gss_rpc_upcall.c
> @@ -63,7 +63,7 @@ enum {
>  	.p_name   = #proc,				\
>  }
>  
> -static struct rpc_procinfo gssp_procedures[] = {
> +static const struct rpc_procinfo gssp_procedures[] = {
>  	PROC(INDICATE_MECHS, indicate_mechs),
>          PROC(GET_CALL_CONTEXT, get_call_context),
>          PROC(IMPORT_AND_CANON_NAME, import_and_canon_name),
> diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
> index f2d1f971247b..2e49d1f892b7 100644
> --- a/net/sunrpc/clnt.c
> +++ b/net/sunrpc/clnt.c
> @@ -1674,7 +1674,7 @@ call_allocate(struct rpc_task *task)
>  	unsigned int slack = task->tk_rqstp->rq_cred->cr_auth->au_cslack;
>  	struct rpc_rqst *req = task->tk_rqstp;
>  	struct rpc_xprt *xprt = req->rq_xprt;
> -	struct rpc_procinfo *proc = task->tk_msg.rpc_proc;
> +	const struct rpc_procinfo *proc = task->tk_msg.rpc_proc;
>  	int status;
>  
>  	dprint_status(task);
> @@ -2489,7 +2489,7 @@ static int rpcproc_decode_null(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
>  	return 0;
>  }
>  
> -static struct rpc_procinfo rpcproc_null = {
> +static const struct rpc_procinfo rpcproc_null = {
>  	.p_encode = rpcproc_encode_null,
>  	.p_decode = rpcproc_decode_null,
>  };
> diff --git a/net/sunrpc/rpcb_clnt.c b/net/sunrpc/rpcb_clnt.c
> index 9d47b9d3bbee..ea0676f199c8 100644
> --- a/net/sunrpc/rpcb_clnt.c
> +++ b/net/sunrpc/rpcb_clnt.c
> @@ -128,13 +128,13 @@ struct rpcbind_args {
>  	int			r_status;
>  };
>  
> -static struct rpc_procinfo rpcb_procedures2[];
> -static struct rpc_procinfo rpcb_procedures3[];
> -static struct rpc_procinfo rpcb_procedures4[];
> +static const struct rpc_procinfo rpcb_procedures2[];
> +static const struct rpc_procinfo rpcb_procedures3[];
> +static const struct rpc_procinfo rpcb_procedures4[];
>  
>  struct rpcb_info {
>  	u32			rpc_vers;
> -	struct rpc_procinfo *	rpc_proc;
> +	const struct rpc_procinfo *rpc_proc;
>  };
>  
>  static const struct rpcb_info rpcb_next_version[];
> @@ -620,7 +620,8 @@ int rpcb_v4_register(struct net *net, const u32 program, const u32 version,
>  	return -EAFNOSUPPORT;
>  }
>  
> -static struct rpc_task *rpcb_call_async(struct rpc_clnt *rpcb_clnt, struct rpcbind_args *map, struct rpc_procinfo *proc)
> +static struct rpc_task *rpcb_call_async(struct rpc_clnt *rpcb_clnt,
> +		struct rpcbind_args *map, const struct rpc_procinfo *proc)
>  {
>  	struct rpc_message msg = {
>  		.rpc_proc = proc,
> @@ -671,7 +672,7 @@ static struct rpc_clnt *rpcb_find_transport_owner(struct rpc_clnt *clnt)
>  void rpcb_getport_async(struct rpc_task *task)
>  {
>  	struct rpc_clnt *clnt;
> -	struct rpc_procinfo *proc;
> +	const struct rpc_procinfo *proc;
>  	u32 bind_version;
>  	struct rpc_xprt *xprt;
>  	struct rpc_clnt	*rpcb_clnt;
> @@ -994,7 +995,7 @@ static int rpcb_dec_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
>   * since the Linux kernel RPC code requires only these.
>   */
>  
> -static struct rpc_procinfo rpcb_procedures2[] = {
> +static const struct rpc_procinfo rpcb_procedures2[] = {
>  	[RPCBPROC_SET] = {
>  		.p_proc		= RPCBPROC_SET,
>  		.p_encode	= rpcb_enc_mapping,
> @@ -1027,7 +1028,7 @@ static struct rpc_procinfo rpcb_procedures2[] = {
>  	},
>  };
>  
> -static struct rpc_procinfo rpcb_procedures3[] = {
> +static const struct rpc_procinfo rpcb_procedures3[] = {
>  	[RPCBPROC_SET] = {
>  		.p_proc		= RPCBPROC_SET,
>  		.p_encode	= rpcb_enc_getaddr,
> @@ -1060,7 +1061,7 @@ static struct rpc_procinfo rpcb_procedures3[] = {
>  	},
>  };
>  
> -static struct rpc_procinfo rpcb_procedures4[] = {
> +static const struct rpc_procinfo rpcb_procedures4[] = {
>  	[RPCBPROC_SET] = {
>  		.p_proc		= RPCBPROC_SET,
>  		.p_encode	= rpcb_enc_getaddr,
> diff --git a/net/sunrpc/stats.c b/net/sunrpc/stats.c
> index 91c84d18bf9a..8b6c35ae1d57 100644
> --- a/net/sunrpc/stats.c
> +++ b/net/sunrpc/stats.c
> @@ -191,7 +191,7 @@ void rpc_count_iostats(const struct rpc_task *task, struct rpc_iostats *stats)
>  EXPORT_SYMBOL_GPL(rpc_count_iostats);
>  
>  static void _print_name(struct seq_file *seq, unsigned int op,
> -			struct rpc_procinfo *procs)
> +			const struct rpc_procinfo *procs)
>  {
>  	if (procs[op].p_name)
>  		seq_printf(seq, "\t%12s: ", procs[op].p_name);

Reviewed-by: Jeff Layton <jlayton@xxxxxxxxxx>
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Linux Filesystem Development]     [Linux USB Development]     [Linux Media Development]     [Video for Linux]     [Linux NILFS]     [Linux Audio Users]     [Yosemite Info]     [Linux SCSI]

  Powered by Linux