aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/procfs.c
blob: 3a0e2d3ca8c7a12b3a089a736a0d6d17fea876ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/*
 * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. Neither the name of Hyra nor the names of its
 *    contributors may be used to endorse or promote products derived from
 *    this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <sys/types.h>
#include <sys/mount.h>
#include <sys/queue.h>
#include <sys/errno.h>
#include <vm/dynalloc.h>
#include <sys/vfs.h>
#include <fs/procfs.h>
#include <string.h>

struct proc_node {
    struct spinlock lock;
    struct proc_entry *entry;
    char *name;
    TAILQ_ENTRY(proc_node) link;
};

static TAILQ_HEAD(, proc_node) proc_nodes;
static bool nodelist_init = false;

static struct proc_node *
name_to_node(const char *name)
{
    struct proc_node *n;

    TAILQ_FOREACH(n, &proc_nodes, link) {
        if (strcmp(n->name, name) == 0) {
            return n;
        }
    }

    return NULL;
}

static int
procfs_make_node(const char *name, struct proc_node **res)
{
    size_t name_len = 0;
    const char *p = name;
    struct proc_node *n;

    /* Disallow paths */
    for (; *p; ++p, ++name_len) {
        if (*p == '/') {
            return -EINVAL;
        }
    }

    if (!vfs_is_valid_path(name))
        return -EINVAL;

    n = dynalloc(sizeof(struct proc_node));
    if (n == NULL)
        return -ENOMEM;

    n->name = dynalloc(sizeof(char) * name_len);
    if (n->name == NULL)
        return -ENOMEM;

    memcpy(n->name, name, name_len + 1);
    *res = n;
    return 0;
}

struct proc_entry *
procfs_alloc_entry(void)
{
    struct proc_entry *entry;

    entry = dynalloc(sizeof(*entry));
    if (entry == NULL)
        return NULL;

    memset(entry, 0, sizeof(*entry));
    return entry;
}

int
procfs_add_entry(const char *name, struct proc_entry *entry)
{
    struct proc_node *proc;
    int status;

    if (name == NULL || entry == NULL)
        return -EINVAL;
    if ((status = procfs_make_node(name, &proc)) != 0)
        return status;

    proc->entry = entry;
    TAILQ_INSERT_HEAD(&proc_nodes, proc, link);
    return 0;
}

static int
procfs_init(struct fs_info *info, struct vnode *source)
{
    if (source != NULL)
        return -EINVAL;


    TAILQ_INIT(&proc_nodes);
    nodelist_init = true;
    procfs_populate();
    return 0;
}

static int
procfs_rw_vnode(struct vnode *vp, struct sio_txn *sio, bool write)
{
    struct proc_node *proc;
    struct proc_entry *entry;

    if (vp == NULL)
        return -EIO;

    proc = vp->data;
    entry = proc->entry;

    return write ? entry->write(entry, sio)
                 : entry->read(entry, sio);
}

static int
vop_write(struct vnode *vp, struct sio_txn *sio)
{
    return procfs_rw_vnode(vp, sio, true);
}

static int
vop_read(struct vnode *vp, struct sio_txn *sio)
{
    return procfs_rw_vnode(vp, sio, false);
}

static int
vop_open(struct vnode *vp)
{
    return 0;
}

static int
vop_close(struct vnode *vp)
{
    return 0;
}

static int
vop_vget(struct vnode *parent, const char *name, struct vnode **vp)
{
    struct proc_node *proc;
    struct vnode *vnode;
    int status;

    if (!nodelist_init)
        return -EIO;
    if ((proc = name_to_node(name)) == NULL)
        return -ENOENT;
    if ((status = vfs_alloc_vnode(&vnode, NULL, VREG)) != 0)
        return status;

    vnode->parent = parent;
    vnode->data = proc;
    vnode->vops = &g_procfs_vops;
    *vp = vnode;
    return 0;
}

struct vfsops g_procfs_ops = {
    .init = procfs_init
};

struct vops g_procfs_vops = {
    .vget = vop_vget,
    .read = vop_read,
    .write = vop_write,
    .open = vop_open,
    .close = vop_close
};