mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 21:51:05 +00:00
9p: Modify the stat structures to use kuid_t and kgid_t
9p has thre strucrtures that can encode inode stat information. Modify all of those structures to contain kuid_t and kgid_t values. Modify he wire encoders and decoders of those structures to use 'u' and 'g' instead of 'd' in the format string where uids and gids are present. This results in all kuid and kgid conversion to and from on the wire values being performed by the same code in protocol.c where the client is known at the time of the conversion. Cc: Eric Van Hensbergen <ericvh@gmail.com> Cc: Ron Minnich <rminnich@gmail.com> Cc: Latchesar Ionkov <lucho@ionkov.net> Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
This commit is contained in:
parent
f791f7c5e3
commit
447c50943f
4 changed files with 30 additions and 21 deletions
|
@ -199,11 +199,12 @@ p9pdu_vreadf(struct p9_fcall *pdu, int proto_version, const char *fmt,
|
|||
va_arg(ap, struct p9_wstat *);
|
||||
|
||||
memset(stbuf, 0, sizeof(struct p9_wstat));
|
||||
stbuf->n_uid = stbuf->n_gid = stbuf->n_muid =
|
||||
-1;
|
||||
stbuf->n_uid = stbuf->n_muid = INVALID_UID;
|
||||
stbuf->n_gid = INVALID_GID;
|
||||
|
||||
errcode =
|
||||
p9pdu_readf(pdu, proto_version,
|
||||
"wwdQdddqssss?sddd",
|
||||
"wwdQdddqssss?sugu",
|
||||
&stbuf->size, &stbuf->type,
|
||||
&stbuf->dev, &stbuf->qid,
|
||||
&stbuf->mode, &stbuf->atime,
|
||||
|
@ -316,7 +317,7 @@ p9pdu_vreadf(struct p9_fcall *pdu, int proto_version, const char *fmt,
|
|||
memset(stbuf, 0, sizeof(struct p9_stat_dotl));
|
||||
errcode =
|
||||
p9pdu_readf(pdu, proto_version,
|
||||
"qQdddqqqqqqqqqqqqqqq",
|
||||
"qQdugqqqqqqqqqqqqqqq",
|
||||
&stbuf->st_result_mask,
|
||||
&stbuf->qid,
|
||||
&stbuf->st_mode,
|
||||
|
@ -426,7 +427,7 @@ p9pdu_vwritef(struct p9_fcall *pdu, int proto_version, const char *fmt,
|
|||
va_arg(ap, const struct p9_wstat *);
|
||||
errcode =
|
||||
p9pdu_writef(pdu, proto_version,
|
||||
"wwdQdddqssss?sddd",
|
||||
"wwdQdddqssss?sugu",
|
||||
stbuf->size, stbuf->type,
|
||||
stbuf->dev, &stbuf->qid,
|
||||
stbuf->mode, stbuf->atime,
|
||||
|
@ -504,7 +505,7 @@ p9pdu_vwritef(struct p9_fcall *pdu, int proto_version, const char *fmt,
|
|||
struct p9_iattr_dotl *);
|
||||
|
||||
errcode = p9pdu_writef(pdu, proto_version,
|
||||
"ddddqqqqq",
|
||||
"ddugqqqqq",
|
||||
p9attr->valid,
|
||||
p9attr->mode,
|
||||
p9attr->uid,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue