Skip to content

Commit

Permalink
fold unix_mknod() into unix_bind_bsd()
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Al Viro authored and davem330 committed Jun 21, 2021
1 parent fa42d91 commit 71e6be6
Showing 1 changed file with 17 additions and 25 deletions.
42 changes: 17 additions & 25 deletions net/unix/af_unix.c
Original file line number Diff line number Diff line change
Expand Up @@ -984,46 +984,38 @@ static struct sock *unix_find_other(struct net *net,
return NULL;
}

static int unix_mknod(const char *sun_path, umode_t mode, struct path *res)
static int unix_bind_bsd(struct sock *sk, struct unix_address *addr)
{
struct unix_sock *u = unix_sk(sk);
umode_t mode = S_IFSOCK |
(SOCK_INODE(sk->sk_socket)->i_mode & ~current_umask());
struct path parent, path;
struct user_namespace *ns; // barf...
struct dentry *dentry;
struct path path;
int err = 0;
unsigned int hash;
int err;

/*
* Get the parent directory, calculate the hash for last
* component.
*/
dentry = kern_path_create(AT_FDCWD, sun_path, &path, 0);
err = PTR_ERR(dentry);
dentry = kern_path_create(AT_FDCWD, addr->name->sun_path, &parent, 0);
if (IS_ERR(dentry))
return err;
return PTR_ERR(dentry);
ns = mnt_user_ns(parent.mnt);

/*
* All right, let's create it.
*/
err = security_path_mknod(&path, dentry, mode, 0);
err = security_path_mknod(&parent, dentry, mode, 0);
if (!err) {
err = vfs_mknod(mnt_user_ns(path.mnt), d_inode(path.dentry),
dentry, mode, 0);
err = vfs_mknod(ns, d_inode(parent.dentry), dentry, mode, 0);
if (!err) {
res->mnt = mntget(path.mnt);
res->dentry = dget(dentry);
path.mnt = mntget(parent.mnt);
path.dentry = dget(dentry);
}
}
done_path_create(&path, dentry);
return err;
}

static int unix_bind_bsd(struct sock *sk, struct unix_address *addr)
{
struct unix_sock *u = unix_sk(sk);
struct path path = { };
umode_t mode = S_IFSOCK |
(SOCK_INODE(sk->sk_socket)->i_mode & ~current_umask());
unsigned int hash;
int err;

err = unix_mknod(addr->name->sun_path, mode, &path);
done_path_create(&parent, dentry);
if (err)
return err;

Expand Down

0 comments on commit 71e6be6

Please sign in to comment.