Skip to content

Commit 268bdaa

Browse files
committed
Refactor the file_operations functions of fsocket
The fastsocket is created refer to the kernel socket. So we should follow the kernel socket style. 1. Rename socket_file_ops variable to fsocket_file_ops; 2. Rename the file_operations functions refer to kernel socket operation functions. The style of latter is sock_xxxx, so the former one should be the fsock_xxx 3. Declare the external function in one block; 4. The implementation of some fsocket operation functions just invoke the kernel socket operation functions. Now use them directly. It could decrease one function call. Although the old functions are defined like inline, it will not be unfolded because it's used as callback.
1 parent 27cdba1 commit 268bdaa

File tree

2 files changed

+112
-173
lines changed

2 files changed

+112
-173
lines changed

kernel/net/fastsocket/fastsocket_core.c

+110-172
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,18 @@ struct fsocket_stats {
4545
extern struct kmem_cache *dentry_cache;
4646
extern int inet_create(struct net *net, struct socket *sock, int protocol, int kern);
4747

48+
extern unsigned int sock_poll(struct file *file, poll_table *wait);
49+
extern ssize_t sock_sendpage(struct file *file, struct page *page,
50+
int offset, size_t size, loff_t *ppos, int more);
51+
extern ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe,
52+
struct file *out, loff_t *ppos, size_t len, unsigned int flags);
53+
extern ssize_t sock_splice_read(struct file *file, loff_t *ppos,
54+
struct pipe_inode_info *pipe, size_t len, unsigned int flags);
55+
extern ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
56+
unsigned long nr_segs, loff_t pos);
57+
extern ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
58+
unsigned long nr_segs, loff_t pos);
59+
4860
static DEFINE_PER_CPU(struct fsocket_stats, fsocket_stats);
4961
static DEFINE_PER_CPU(unsigned int, global_spawn_accept) = 0;
5062
static struct kmem_cache *fsocket_cachep;
@@ -69,17 +81,6 @@ static inline void fsock_free_sock(struct socket *sock)
6981
module_put(THIS_MODULE);
7082
}
7183

72-
static inline unsigned int fast_sock_poll(struct file *file, poll_table *wait)
73-
{
74-
struct socket *sock;
75-
76-
sock = (struct socket *)file->private_data;
77-
if (sock && sock->ops && sock->ops->poll)
78-
return sock->ops->poll(file, sock, wait);
79-
80-
return -EINVAL;
81-
}
82-
8384
static int __fsocket_filp_close(struct file *file)
8485
{
8586
struct dentry *dentry = file->f_path.dentry;
@@ -141,125 +142,61 @@ static inline int fsocket_filp_close(struct file *file)
141142
return 0;
142143
}
143144

144-
static inline int fast_sock_close(struct inode *i_node, struct file *file)
145+
static inline int fsock_close(struct inode *i_node, struct file *file)
145146
{
146-
DPRINTK(DEBUG, "Enter fast_sock_close, inode(%p) file(%p)\n", i_node, file);
147+
DPRINTK(DEBUG, "Enter fsock_close, inode(%p) file(%p)\n", i_node, file);
147148

148149
return fsocket_filp_close(file);
149150
}
150151

151-
loff_t fast_sock_llseek(struct file *file, loff_t offset, int origin)
152-
{
153-
return -ESPIPE;
154-
}
155-
156-
static int fast_sock_open(struct inode *irrelevant, struct file *dontcare)
152+
static int fsock_no_open(struct inode *irrelevant, struct file *dontcare)
157153
{
158154
return -ENXIO;
159155
}
160156

161-
extern ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
162-
unsigned long nr_segs, loff_t pos);
163-
164-
extern ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
165-
unsigned long nr_segs, loff_t pos);
166-
167-
static inline ssize_t fast_sock_read(struct kiocb *iocb, const struct iovec *iov,
168-
unsigned long nr_segs, loff_t pos)
169-
{
170-
ssize_t ret;
171-
ret = sock_aio_read(iocb, iov, nr_segs, pos);
172-
DPRINTK(DEBUG, "Read %ld\n", ret);
173-
return ret;
174-
}
175-
176-
static inline ssize_t fast_sock_write(struct kiocb *iocb, const struct iovec *iov,
177-
unsigned long nr_segs, loff_t pos)
157+
static long fsock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
178158
{
179-
ssize_t ret;
180-
ret = sock_aio_write(iocb, iov, nr_segs, pos);
181-
DPRINTK(DEBUG, "Write %ld\n", ret);
182-
return ret;
183-
}
184-
185-
static inline long fast_sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
186-
{
187-
DPRINTK(INFO, "Do!\n");
188-
return -EINVAL;
159+
DPRINTK(INFO, "Do!\n");
160+
return -EINVAL;
189161
}
190162

191163
#ifdef CONFIG_COMPAT
192-
static inline long fast_compate_sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
164+
static long compat_fsock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
193165
{
194-
DPRINTK(INFO, "Do!\n");
195-
return -EINVAL;
166+
DPRINTK(INFO, "Do!\n");
167+
return -EINVAL;
196168
}
197169
#endif
198170

199-
static inline int fast_sock_mmap(struct file *file, struct vm_area_struct *vma)
171+
static int fsock_mmap(struct file *file, struct vm_area_struct *vma)
200172
{
201173
DPRINTK(INFO, "Do!\n");
202174
return -EINVAL;
203175
}
204176

205-
static inline int fast_sock_fasync(int fd, struct file *filp, int on)
177+
static int fsock_fasync(int fd, struct file *filp, int on)
206178
{
207179
DPRINTK(INFO, "Do!\n");
208180
return -EINVAL;
209181
}
210182

211-
extern ssize_t sock_sendpage(struct file *file, struct page *page,
212-
int offset, size_t size, loff_t *ppos, int more);
213-
214-
static inline ssize_t fast_sock_sendpage(struct file *file, struct page *page,
215-
int offset, size_t size, loff_t *ppos, int more)
216-
{
217-
ssize_t ret;
218-
ret = sock_sendpage(file, page, offset, size, ppos, more);
219-
DPRINTK(DEBUG, "Send page %ld\n", ret);
220-
return ret;
221-
}
222-
223-
extern ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe,
224-
struct file *out, loff_t *ppos, size_t len, unsigned int flags);
225-
extern ssize_t sock_splice_read(struct file *file, loff_t *ppos,
226-
struct pipe_inode_info *pipe, size_t len, unsigned int flags);
227-
228-
static inline ssize_t fast_sock_splice_write(struct pipe_inode_info *pipe,
229-
struct file *out, loff_t *ppos, size_t len, unsigned int flags)
230-
{
231-
ssize_t ret;
232-
ret = generic_splice_sendpage(pipe, out, ppos, len, flags);
233-
DPRINTK(DEBUG, "Splice wirte %ld\n", ret);
234-
return ret;
235-
}
236-
237-
static inline ssize_t fast_sock_splice_read(struct file *file, loff_t *ppos,
238-
struct pipe_inode_info *pipe, size_t len, unsigned int flags)
239-
{
240-
ssize_t ret;
241-
ret = sock_splice_read(file, ppos, pipe, len, flags);
242-
DPRINTK(DEBUG, "Splice read %ld\n", ret);
243-
return ret;
244-
}
245-
246-
static const struct file_operations socket_file_ops = {
183+
static const struct file_operations fsocket_file_ops = {
247184
.owner = THIS_MODULE,
248-
.llseek = fast_sock_llseek,
249-
.aio_read = fast_sock_read,
250-
.aio_write = fast_sock_write,
251-
.poll = fast_sock_poll,
252-
.unlocked_ioctl = fast_sock_ioctl,
185+
.llseek = no_llseek,
186+
.aio_read = sock_aio_read,
187+
.aio_write = sock_aio_write,
188+
.poll = sock_poll,
189+
.unlocked_ioctl = fsock_ioctl,
253190
#ifdef CONFIG_COMPAT
254-
.compat_ioctl = fast_compate_sock_ioctl,
191+
.compat_ioctl = compat_fsock_ioctl,
255192
#endif
256-
.mmap = fast_sock_mmap,
257-
.open = fast_sock_open, /* special open code to disallow open via /proc */
258-
.release = fast_sock_close,
259-
.fasync = fast_sock_fasync,
260-
.sendpage = fast_sock_sendpage,
261-
.splice_write = fast_sock_splice_write,
262-
.splice_read = fast_sock_splice_read,
193+
.mmap = fsock_mmap,
194+
.open = fsock_no_open, /* special open code to disallow open via /proc */
195+
.release = fsock_close,
196+
.fasync = fsock_fasync,
197+
.sendpage = sock_sendpage,
198+
.splice_write = generic_splice_sendpage,
199+
.splice_read = sock_splice_read,
263200
};
264201

265202
static char *fastsockfs_dynamic_dname(struct dentry *dentry, char *buffer, int buflen,
@@ -298,75 +235,6 @@ static void __put_unused_fd(struct files_struct *files, unsigned int fd)
298235
files->next_fd = fd;
299236
}
300237

301-
#define FSOCKET_INODE_START ( 1 << 12 )
302-
303-
static struct socket *fsocket_alloc_socket(void)
304-
{
305-
static const struct inode_operations empty_iops;
306-
static const struct file_operations empty_fops;
307-
struct socket *sock;
308-
//FIXME: Just guess this inode number is not something really matters.
309-
static unsigned int last_ino = FSOCKET_INODE_START;
310-
struct inode *inode = NULL;
311-
struct fsocket_stats *stats = &__get_cpu_var(fsocket_stats);
312-
313-
sock = (struct socket *)kmem_cache_alloc(fsocket_cachep, GFP_KERNEL);
314-
if (!sock) {
315-
DPRINTK(ERR, "Fail to allocate sock\n");
316-
goto err1;
317-
}
318-
319-
if(!try_module_get(THIS_MODULE)) {
320-
goto err2;
321-
}
322-
323-
if (security_inode_alloc(SOCK_INODE(sock))) {
324-
goto err3;
325-
}
326-
327-
init_waitqueue_head(&sock->wait);
328-
329-
sock->fasync_list = NULL;
330-
sock->state = SS_UNCONNECTED;
331-
sock->flags = 0;
332-
sock->ops = NULL;
333-
sock->sk = NULL;
334-
sock->file = NULL;
335-
336-
sock->type = 0;
337-
338-
inode = SOCK_INODE(sock);
339-
340-
inode->i_op = &empty_iops;
341-
inode->i_fop = &empty_fops;
342-
inode->i_sb = fastsocket_mnt->mnt_sb;
343-
atomic_set(&inode->i_count, 1);
344-
345-
INIT_LIST_HEAD(&inode->i_list);
346-
INIT_LIST_HEAD(&inode->i_sb_list);
347-
348-
inode->i_ino = ++last_ino;
349-
inode->i_state = 0;
350-
351-
kmemcheck_annotate_bitfield(sock, type);
352-
inode->i_mode = S_IFSOCK | S_IRWXUGO;
353-
inode->i_uid = current_fsuid();
354-
inode->i_gid = current_fsgid();
355-
356-
++stats->sock_alloc;
357-
358-
DPRINTK(DEBUG, "Allocat inode 0x%p\n", inode);
359-
360-
return sock;
361-
362-
err3:
363-
module_put(THIS_MODULE);
364-
err2:
365-
kmem_cache_free(fsocket_cachep, sock);
366-
err1:
367-
return NULL;
368-
}
369-
370238
#define DNAME_INLINE_LEN (sizeof(struct dentry)-offsetof(struct dentry,d_iname))
371239

372240
static void fsock_d_free(struct dentry *dentry)
@@ -456,7 +324,7 @@ static int fsock_alloc_file(struct socket *sock, struct file **f, int flags)
456324

457325
path.mnt = fastsocket_mnt;
458326

459-
SOCK_INODE(sock)->i_fop = &socket_file_ops;
327+
SOCK_INODE(sock)->i_fop = &fsocket_file_ops;
460328

461329
file = get_empty_filp();
462330
if (unlikely(!file)) {
@@ -473,7 +341,7 @@ static int fsock_alloc_file(struct socket *sock, struct file **f, int flags)
473341
file->f_mode = FMODE_READ | FMODE_WRITE | FMODE_FASTSOCKET;
474342
if (enable_fast_epoll)
475343
file->f_mode |= FMODE_BIND_EPI;
476-
file->f_op = &socket_file_ops;
344+
file->f_op = &fsocket_file_ops;
477345

478346
sock->file = file;
479347

@@ -502,6 +370,76 @@ static int fsock_map_fd(struct socket *sock, int flags)
502370
return fd;
503371
}
504372

373+
static struct socket *fsocket_alloc_socket(void)
374+
{
375+
#define FSOCKET_INODE_START ( 1 << 12 )
376+
377+
static const struct inode_operations empty_iops;
378+
static const struct file_operations empty_fops;
379+
struct socket *sock;
380+
//FIXME: Just guess this inode number is not something really matters.
381+
static unsigned int last_ino = FSOCKET_INODE_START;
382+
struct inode *inode = NULL;
383+
struct fsocket_stats *stats = &__get_cpu_var(fsocket_stats);
384+
385+
sock = (struct socket *)kmem_cache_alloc(fsocket_cachep, GFP_KERNEL);
386+
if (!sock) {
387+
DPRINTK(ERR, "Fail to allocate sock\n");
388+
goto err1;
389+
}
390+
391+
if(!try_module_get(THIS_MODULE)) {
392+
goto err2;
393+
}
394+
395+
if (security_inode_alloc(SOCK_INODE(sock))) {
396+
goto err3;
397+
}
398+
399+
init_waitqueue_head(&sock->wait);
400+
401+
sock->fasync_list = NULL;
402+
sock->state = SS_UNCONNECTED;
403+
sock->flags = 0;
404+
sock->ops = NULL;
405+
sock->sk = NULL;
406+
sock->file = NULL;
407+
408+
sock->type = 0;
409+
410+
inode = SOCK_INODE(sock);
411+
412+
inode->i_op = &empty_iops;
413+
inode->i_fop = &empty_fops;
414+
inode->i_sb = fastsocket_mnt->mnt_sb;
415+
atomic_set(&inode->i_count, 1);
416+
417+
INIT_LIST_HEAD(&inode->i_list);
418+
INIT_LIST_HEAD(&inode->i_sb_list);
419+
420+
inode->i_ino = ++last_ino;
421+
inode->i_state = 0;
422+
423+
kmemcheck_annotate_bitfield(sock, type);
424+
inode->i_mode = S_IFSOCK | S_IRWXUGO;
425+
inode->i_uid = current_fsuid();
426+
inode->i_gid = current_fsgid();
427+
428+
++stats->sock_alloc;
429+
430+
DPRINTK(DEBUG, "Allocat inode 0x%p\n", inode);
431+
432+
return sock;
433+
434+
err3:
435+
module_put(THIS_MODULE);
436+
err2:
437+
kmem_cache_free(fsocket_cachep, sock);
438+
err1:
439+
return NULL;
440+
}
441+
442+
505443
static void fsocket_init_socket(struct socket *sock)
506444
{
507445
if (enable_direct_tcp) {
@@ -610,7 +548,7 @@ static int fsocket_spawn_clone(int fd, struct socket *oldsock, struct socket **n
610548

611549
path.mnt = fastsocket_mnt;
612550

613-
SOCK_INODE(sock)->i_fop = &socket_file_ops;
551+
SOCK_INODE(sock)->i_fop = &fsocket_file_ops;
614552

615553
sfile->f_path = path;
616554
sfile->f_mapping = NULL;

kernel/net/socket.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,7 @@ int sock_create_lite(int family, int type, int protocol, struct socket **res)
10591059
}
10601060

10611061
/* No kernel lock held - perfect */
1062-
static unsigned int sock_poll(struct file *file, poll_table *wait)
1062+
unsigned int sock_poll(struct file *file, poll_table *wait)
10631063
{
10641064
struct socket *sock;
10651065

@@ -1069,6 +1069,7 @@ static unsigned int sock_poll(struct file *file, poll_table *wait)
10691069
sock = file->private_data;
10701070
return sock->ops->poll(file, sock, wait);
10711071
}
1072+
EXPORT_SYMBOL(sock_poll);
10721073

10731074
static int sock_mmap(struct file *file, struct vm_area_struct *vma)
10741075
{

0 commit comments

Comments
 (0)