dm-crypt: use __bio_add_page to add single page to clone bio
[linux-block.git] / fs / kernfs / symlink.c
CommitLineData
55716d26 1// SPDX-License-Identifier: GPL-2.0-only
b8441ed2
TH
2/*
3 * fs/kernfs/symlink.c - kernfs symlink implementation
4 *
5 * Copyright (c) 2001-3 Patrick Mochel
6 * Copyright (c) 2007 SUSE Linux Products GmbH
7 * Copyright (c) 2007, 2013 Tejun Heo <tj@kernel.org>
b8441ed2 8 */
2072f1af
TH
9
10#include <linux/fs.h>
11#include <linux/gfp.h>
12#include <linux/namei.h>
13
14#include "kernfs-internal.h"
15
16/**
17 * kernfs_create_link - create a symlink
18 * @parent: directory to create the symlink in
19 * @name: name of the symlink
20 * @target: target node for the symlink to point to
21 *
24b3e3dd 22 * Return: the created node on success, ERR_PTR() value on error.
488dee96 23 * Ownership of the link matches ownership of the target.
2072f1af 24 */
324a56e1
TH
25struct kernfs_node *kernfs_create_link(struct kernfs_node *parent,
26 const char *name,
27 struct kernfs_node *target)
2072f1af 28{
324a56e1 29 struct kernfs_node *kn;
2072f1af 30 int error;
488dee96
DT
31 kuid_t uid = GLOBAL_ROOT_UID;
32 kgid_t gid = GLOBAL_ROOT_GID;
2072f1af 33
488dee96 34 if (target->iattr) {
05895219
OM
35 uid = target->iattr->ia_uid;
36 gid = target->iattr->ia_gid;
488dee96
DT
37 }
38
8f5cfb3b 39 kn = kernfs_new_node(parent, name, S_IFLNK|0777, uid, gid, KERNFS_LINK);
324a56e1 40 if (!kn)
2072f1af
TH
41 return ERR_PTR(-ENOMEM);
42
ac9bba03 43 if (kernfs_ns_enabled(parent))
adc5e8b5
TH
44 kn->ns = target->ns;
45 kn->symlink.target_kn = target;
2072f1af
TH
46 kernfs_get(target); /* ref owned by symlink */
47
988cd7af 48 error = kernfs_add_one(kn);
2072f1af 49 if (!error)
324a56e1 50 return kn;
2072f1af 51
324a56e1 52 kernfs_put(kn);
2072f1af
TH
53 return ERR_PTR(error);
54}
55
c637b8ac
TH
56static int kernfs_get_target_path(struct kernfs_node *parent,
57 struct kernfs_node *target, char *path)
2072f1af 58{
324a56e1 59 struct kernfs_node *base, *kn;
2072f1af
TH
60 char *s = path;
61 int len = 0;
62
63 /* go up to the root, stop at the base */
324a56e1 64 base = parent;
adc5e8b5
TH
65 while (base->parent) {
66 kn = target->parent;
67 while (kn->parent && base != kn)
68 kn = kn->parent;
2072f1af 69
324a56e1 70 if (base == kn)
2072f1af
TH
71 break;
72
a75e78f2
BE
73 if ((s - path) + 3 >= PATH_MAX)
74 return -ENAMETOOLONG;
75
2072f1af
TH
76 strcpy(s, "../");
77 s += 3;
adc5e8b5 78 base = base->parent;
2072f1af
TH
79 }
80
81 /* determine end of target string for reverse fillup */
324a56e1 82 kn = target;
adc5e8b5
TH
83 while (kn->parent && kn != base) {
84 len += strlen(kn->name) + 1;
85 kn = kn->parent;
2072f1af
TH
86 }
87
88 /* check limits */
89 if (len < 2)
90 return -EINVAL;
91 len--;
a75e78f2 92 if ((s - path) + len >= PATH_MAX)
2072f1af
TH
93 return -ENAMETOOLONG;
94
95 /* reverse fillup of target string from target to base */
324a56e1 96 kn = target;
adc5e8b5
TH
97 while (kn->parent && kn != base) {
98 int slen = strlen(kn->name);
2072f1af
TH
99
100 len -= slen;
166126c1 101 memcpy(s + len, kn->name, slen);
2072f1af
TH
102 if (len)
103 s[--len] = '/';
104
adc5e8b5 105 kn = kn->parent;
2072f1af
TH
106 }
107
108 return 0;
109}
110
319ba91d 111static int kernfs_getlink(struct inode *inode, char *path)
2072f1af 112{
319ba91d 113 struct kernfs_node *kn = inode->i_private;
adc5e8b5
TH
114 struct kernfs_node *parent = kn->parent;
115 struct kernfs_node *target = kn->symlink.target_kn;
393c3714 116 struct kernfs_root *root = kernfs_root(parent);
2072f1af
TH
117 int error;
118
393c3714 119 down_read(&root->kernfs_rwsem);
c637b8ac 120 error = kernfs_get_target_path(parent, target, path);
393c3714 121 up_read(&root->kernfs_rwsem);
2072f1af
TH
122
123 return error;
124}
125
6b255391 126static const char *kernfs_iop_get_link(struct dentry *dentry,
fceef393
AV
127 struct inode *inode,
128 struct delayed_call *done)
2072f1af 129{
fceef393
AV
130 char *body;
131 int error;
6b255391
AV
132
133 if (!dentry)
134 return ERR_PTR(-ECHILD);
fceef393
AV
135 body = kzalloc(PAGE_SIZE, GFP_KERNEL);
136 if (!body)
680baacb 137 return ERR_PTR(-ENOMEM);
319ba91d 138 error = kernfs_getlink(inode, body);
680baacb 139 if (unlikely(error < 0)) {
fceef393 140 kfree(body);
680baacb 141 return ERR_PTR(error);
2072f1af 142 }
fceef393
AV
143 set_delayed_call(done, kfree_link, body);
144 return body;
2072f1af
TH
145}
146
a797bfc3 147const struct inode_operations kernfs_symlink_iops = {
c637b8ac 148 .listxattr = kernfs_iop_listxattr,
6b255391 149 .get_link = kernfs_iop_get_link,
c637b8ac
TH
150 .setattr = kernfs_iop_setattr,
151 .getattr = kernfs_iop_getattr,
152 .permission = kernfs_iop_permission,
2072f1af 153};