@@ -45,6 +45,18 @@ struct fsocket_stats {
45
45
extern struct kmem_cache * dentry_cache ;
46
46
extern int inet_create (struct net * net , struct socket * sock , int protocol , int kern );
47
47
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
+
48
60
static DEFINE_PER_CPU (struct fsocket_stats , fsocket_stats ) ;
49
61
static DEFINE_PER_CPU (unsigned int , global_spawn_accept ) = 0 ;
50
62
static struct kmem_cache * fsocket_cachep ;
@@ -69,17 +81,6 @@ static inline void fsock_free_sock(struct socket *sock)
69
81
module_put (THIS_MODULE );
70
82
}
71
83
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
-
83
84
static int __fsocket_filp_close (struct file * file )
84
85
{
85
86
struct dentry * dentry = file -> f_path .dentry ;
@@ -141,125 +142,61 @@ static inline int fsocket_filp_close(struct file *file)
141
142
return 0 ;
142
143
}
143
144
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 )
145
146
{
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 );
147
148
148
149
return fsocket_filp_close (file );
149
150
}
150
151
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 )
157
153
{
158
154
return - ENXIO ;
159
155
}
160
156
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 )
178
158
{
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 ;
189
161
}
190
162
191
163
#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 )
193
165
{
194
- DPRINTK (INFO , "Do!\n" );
195
- return - EINVAL ;
166
+ DPRINTK (INFO , "Do!\n" );
167
+ return - EINVAL ;
196
168
}
197
169
#endif
198
170
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 )
200
172
{
201
173
DPRINTK (INFO , "Do!\n" );
202
174
return - EINVAL ;
203
175
}
204
176
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 )
206
178
{
207
179
DPRINTK (INFO , "Do!\n" );
208
180
return - EINVAL ;
209
181
}
210
182
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 = {
247
184
.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 ,
253
190
#ifdef CONFIG_COMPAT
254
- .compat_ioctl = fast_compate_sock_ioctl ,
191
+ .compat_ioctl = compat_fsock_ioctl ,
255
192
#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 ,
263
200
};
264
201
265
202
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)
298
235
files -> next_fd = fd ;
299
236
}
300
237
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
-
370
238
#define DNAME_INLINE_LEN (sizeof(struct dentry)-offsetof(struct dentry,d_iname))
371
239
372
240
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)
456
324
457
325
path .mnt = fastsocket_mnt ;
458
326
459
- SOCK_INODE (sock )-> i_fop = & socket_file_ops ;
327
+ SOCK_INODE (sock )-> i_fop = & fsocket_file_ops ;
460
328
461
329
file = get_empty_filp ();
462
330
if (unlikely (!file )) {
@@ -473,7 +341,7 @@ static int fsock_alloc_file(struct socket *sock, struct file **f, int flags)
473
341
file -> f_mode = FMODE_READ | FMODE_WRITE | FMODE_FASTSOCKET ;
474
342
if (enable_fast_epoll )
475
343
file -> f_mode |= FMODE_BIND_EPI ;
476
- file -> f_op = & socket_file_ops ;
344
+ file -> f_op = & fsocket_file_ops ;
477
345
478
346
sock -> file = file ;
479
347
@@ -502,6 +370,76 @@ static int fsock_map_fd(struct socket *sock, int flags)
502
370
return fd ;
503
371
}
504
372
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
+
505
443
static void fsocket_init_socket (struct socket * sock )
506
444
{
507
445
if (enable_direct_tcp ) {
@@ -610,7 +548,7 @@ static int fsocket_spawn_clone(int fd, struct socket *oldsock, struct socket **n
610
548
611
549
path .mnt = fastsocket_mnt ;
612
550
613
- SOCK_INODE (sock )-> i_fop = & socket_file_ops ;
551
+ SOCK_INODE (sock )-> i_fop = & fsocket_file_ops ;
614
552
615
553
sfile -> f_path = path ;
616
554
sfile -> f_mapping = NULL ;
0 commit comments