Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-2.0-only 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> 8 : : */ 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 : : * 22 : : * Returns the created node on success, ERR_PTR() value on error. 23 : : * Ownership of the link matches ownership of the target. 24 : : */ 25 : 3 : struct kernfs_node *kernfs_create_link(struct kernfs_node *parent, 26 : : const char *name, 27 : : struct kernfs_node *target) 28 : : { 29 : : struct kernfs_node *kn; 30 : : int error; 31 : 3 : kuid_t uid = GLOBAL_ROOT_UID; 32 : 3 : kgid_t gid = GLOBAL_ROOT_GID; 33 : : 34 : 3 : if (target->iattr) { 35 : 0 : uid = target->iattr->ia_uid; 36 : 0 : gid = target->iattr->ia_gid; 37 : : } 38 : : 39 : 3 : kn = kernfs_new_node(parent, name, S_IFLNK|S_IRWXUGO, uid, gid, 40 : : KERNFS_LINK); 41 : 3 : if (!kn) 42 : : return ERR_PTR(-ENOMEM); 43 : : 44 : 3 : if (kernfs_ns_enabled(parent)) 45 : 3 : kn->ns = target->ns; 46 : 3 : kn->symlink.target_kn = target; 47 : 3 : kernfs_get(target); /* ref owned by symlink */ 48 : : 49 : 3 : error = kernfs_add_one(kn); 50 : 3 : if (!error) 51 : : return kn; 52 : : 53 : 0 : kernfs_put(kn); 54 : 0 : return ERR_PTR(error); 55 : : } 56 : : 57 : 3 : static int kernfs_get_target_path(struct kernfs_node *parent, 58 : : struct kernfs_node *target, char *path) 59 : : { 60 : : struct kernfs_node *base, *kn; 61 : : char *s = path; 62 : : int len = 0; 63 : : 64 : : /* go up to the root, stop at the base */ 65 : : base = parent; 66 : 3 : while (base->parent) { 67 : 3 : kn = target->parent; 68 : 3 : while (kn->parent && base != kn) 69 : : kn = kn->parent; 70 : : 71 : 3 : if (base == kn) 72 : : break; 73 : : 74 : 3 : if ((s - path) + 3 >= PATH_MAX) 75 : : return -ENAMETOOLONG; 76 : : 77 : 3 : strcpy(s, "../"); 78 : 3 : s += 3; 79 : 3 : base = base->parent; 80 : : } 81 : : 82 : : /* determine end of target string for reverse fillup */ 83 : : kn = target; 84 : 3 : while (kn->parent && kn != base) { 85 : 3 : len += strlen(kn->name) + 1; 86 : : kn = kn->parent; 87 : : } 88 : : 89 : : /* check limits */ 90 : 3 : if (len < 2) 91 : : return -EINVAL; 92 : 3 : len--; 93 : 3 : if ((s - path) + len >= PATH_MAX) 94 : : return -ENAMETOOLONG; 95 : : 96 : : /* reverse fillup of target string from target to base */ 97 : : kn = target; 98 : 3 : while (kn->parent && kn != base) { 99 : 3 : int slen = strlen(kn->name); 100 : : 101 : 3 : len -= slen; 102 : 3 : memcpy(s + len, kn->name, slen); 103 : 3 : if (len) 104 : 3 : s[--len] = '/'; 105 : : 106 : 3 : kn = kn->parent; 107 : : } 108 : : 109 : : return 0; 110 : : } 111 : : 112 : 3 : static int kernfs_getlink(struct inode *inode, char *path) 113 : : { 114 : 3 : struct kernfs_node *kn = inode->i_private; 115 : 3 : struct kernfs_node *parent = kn->parent; 116 : 3 : struct kernfs_node *target = kn->symlink.target_kn; 117 : : int error; 118 : : 119 : 3 : mutex_lock(&kernfs_mutex); 120 : 3 : error = kernfs_get_target_path(parent, target, path); 121 : 3 : mutex_unlock(&kernfs_mutex); 122 : : 123 : 3 : return error; 124 : : } 125 : : 126 : 3 : static const char *kernfs_iop_get_link(struct dentry *dentry, 127 : : struct inode *inode, 128 : : struct delayed_call *done) 129 : : { 130 : : char *body; 131 : : int error; 132 : : 133 : 3 : if (!dentry) 134 : : return ERR_PTR(-ECHILD); 135 : 3 : body = kzalloc(PAGE_SIZE, GFP_KERNEL); 136 : 3 : if (!body) 137 : : return ERR_PTR(-ENOMEM); 138 : 3 : error = kernfs_getlink(inode, body); 139 : 3 : if (unlikely(error < 0)) { 140 : 0 : kfree(body); 141 : 0 : return ERR_PTR(error); 142 : : } 143 : : set_delayed_call(done, kfree_link, body); 144 : 3 : return body; 145 : : } 146 : : 147 : : const struct inode_operations kernfs_symlink_iops = { 148 : : .listxattr = kernfs_iop_listxattr, 149 : : .get_link = kernfs_iop_get_link, 150 : : .setattr = kernfs_iop_setattr, 151 : : .getattr = kernfs_iop_getattr, 152 : : .permission = kernfs_iop_permission, 153 : : };