Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
2bd2d053
Commit
2bd2d053
authored
Sep 25, 2003
by
Chas Williams
Committed by
David S. Miller
Sep 25, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ATM]: [ioctl][6/8] Move clip seq_file ops to clip.c (from levon@movementarian.org)
parent
25609258
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
226 additions
and
219 deletions
+226
-219
include/linux/atmdev.h
include/linux/atmdev.h
+2
-0
net/atm/clip.c
net/atm/clip.c
+224
-0
net/atm/proc.c
net/atm/proc.c
+0
-219
No files found.
include/linux/atmdev.h
View file @
2bd2d053
...
...
@@ -214,6 +214,8 @@ struct atm_cirange {
#ifdef CONFIG_PROC_FS
#include <linux/proc_fs.h>
extern
struct
proc_dir_entry
*
atm_proc_root
;
#endif
...
...
net/atm/clip.c
View file @
2bd2d053
...
...
@@ -24,6 +24,10 @@
#include <linux/if.h>
/* for IFF_UP */
#include <linux/inetdevice.h>
#include <linux/bitops.h>
#ifdef CONFIG_PROC_FS
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#endif
#include <net/route.h>
/* for struct rtable and routing */
#include <net/icmp.h>
/* icmp_send */
#include <asm/param.h>
/* for HZ */
...
...
@@ -768,8 +772,226 @@ static struct atm_clip_ops __atm_clip_ops = {
.
owner
=
THIS_MODULE
};
#ifdef CONFIG_PROC_FS
static
void
svc_addr
(
struct
seq_file
*
seq
,
struct
sockaddr_atmsvc
*
addr
)
{
static
int
code
[]
=
{
1
,
2
,
10
,
6
,
1
,
0
};
static
int
e164
[]
=
{
1
,
8
,
4
,
6
,
1
,
0
};
if
(
*
addr
->
sas_addr
.
pub
)
{
seq_printf
(
seq
,
"%s"
,
addr
->
sas_addr
.
pub
);
if
(
*
addr
->
sas_addr
.
prv
)
seq_putc
(
seq
,
'+'
);
}
else
if
(
!*
addr
->
sas_addr
.
prv
)
{
seq_printf
(
seq
,
"%s"
,
"(none)"
);
return
;
}
if
(
*
addr
->
sas_addr
.
prv
)
{
unsigned
char
*
prv
=
addr
->
sas_addr
.
prv
;
int
*
fields
;
int
i
,
j
;
fields
=
*
prv
==
ATM_AFI_E164
?
e164
:
code
;
for
(
i
=
0
;
fields
[
i
];
i
++
)
{
for
(
j
=
fields
[
i
];
j
;
j
--
)
seq_printf
(
seq
,
"%02X"
,
*
prv
++
);
if
(
fields
[
i
+
1
])
seq_putc
(
seq
,
'.'
);
}
}
}
static
void
atmarp_info
(
struct
seq_file
*
seq
,
struct
net_device
*
dev
,
struct
atmarp_entry
*
entry
,
struct
clip_vcc
*
clip_vcc
)
{
char
buf
[
17
];
int
svc
,
off
;
svc
=
!
clip_vcc
||
clip_vcc
->
vcc
->
sk
->
sk_family
==
AF_ATMSVC
;
seq_printf
(
seq
,
"%-6s%-4s%-4s%5ld "
,
dev
->
name
,
svc
?
"SVC"
:
"PVC"
,
!
clip_vcc
||
clip_vcc
->
encap
?
"LLC"
:
"NULL"
,
(
jiffies
-
(
clip_vcc
?
clip_vcc
->
last_use
:
entry
->
neigh
->
used
))
/
HZ
);
off
=
snprintf
(
buf
,
sizeof
(
buf
)
-
1
,
"%d.%d.%d.%d"
,
NIPQUAD
(
entry
->
ip
));
while
(
off
<
16
)
buf
[
off
++
]
=
' '
;
buf
[
off
]
=
'\0'
;
seq_printf
(
seq
,
"%s"
,
buf
);
if
(
!
clip_vcc
)
{
if
(
time_before
(
jiffies
,
entry
->
expires
))
seq_printf
(
seq
,
"(resolving)
\n
"
);
else
seq_printf
(
seq
,
"(expired, ref %d)
\n
"
,
atomic_read
(
&
entry
->
neigh
->
refcnt
));
}
else
if
(
!
svc
)
{
seq_printf
(
seq
,
"%d.%d.%d
\n
"
,
clip_vcc
->
vcc
->
dev
->
number
,
clip_vcc
->
vcc
->
vpi
,
clip_vcc
->
vcc
->
vci
);
}
else
{
svc_addr
(
seq
,
&
clip_vcc
->
vcc
->
remote
);
seq_putc
(
seq
,
'\n'
);
}
}
struct
arp_state
{
int
bucket
;
struct
neighbour
*
n
;
struct
clip_vcc
*
vcc
;
};
static
void
*
arp_vcc_walk
(
struct
arp_state
*
state
,
struct
atmarp_entry
*
e
,
loff_t
*
l
)
{
struct
clip_vcc
*
vcc
=
state
->
vcc
;
if
(
!
vcc
)
vcc
=
e
->
vccs
;
if
(
vcc
==
(
void
*
)
1
)
{
vcc
=
e
->
vccs
;
--*
l
;
}
for
(;
vcc
;
vcc
=
vcc
->
next
)
{
if
(
--*
l
<
0
)
break
;
}
state
->
vcc
=
vcc
;
return
(
*
l
<
0
)
?
state
:
NULL
;
}
static
void
*
arp_get_idx
(
struct
arp_state
*
state
,
loff_t
l
)
{
void
*
v
=
NULL
;
for
(;
state
->
bucket
<=
NEIGH_HASHMASK
;
state
->
bucket
++
)
{
for
(;
state
->
n
;
state
->
n
=
state
->
n
->
next
)
{
v
=
arp_vcc_walk
(
state
,
NEIGH2ENTRY
(
state
->
n
),
&
l
);
if
(
v
)
goto
done
;
}
state
->
n
=
clip_tbl_hook
->
hash_buckets
[
state
->
bucket
+
1
];
}
done:
return
v
;
}
static
void
*
arp_seq_start
(
struct
seq_file
*
seq
,
loff_t
*
pos
)
{
struct
arp_state
*
state
=
seq
->
private
;
void
*
ret
=
(
void
*
)
1
;
if
(
!
clip_tbl_hook
)
{
state
->
bucket
=
-
1
;
goto
out
;
}
read_lock_bh
(
&
clip_tbl_hook
->
lock
);
state
->
bucket
=
0
;
state
->
n
=
clip_tbl_hook
->
hash_buckets
[
0
];
state
->
vcc
=
(
void
*
)
1
;
if
(
*
pos
)
ret
=
arp_get_idx
(
state
,
*
pos
);
out:
return
ret
;
}
static
void
arp_seq_stop
(
struct
seq_file
*
seq
,
void
*
v
)
{
struct
arp_state
*
state
=
seq
->
private
;
if
(
state
->
bucket
!=
-
1
)
read_unlock_bh
(
&
clip_tbl_hook
->
lock
);
}
static
void
*
arp_seq_next
(
struct
seq_file
*
seq
,
void
*
v
,
loff_t
*
pos
)
{
struct
arp_state
*
state
=
seq
->
private
;
v
=
arp_get_idx
(
state
,
1
);
*
pos
+=
!!
PTR_ERR
(
v
);
return
v
;
}
static
int
arp_seq_show
(
struct
seq_file
*
seq
,
void
*
v
)
{
static
char
atm_arp_banner
[]
=
"IPitf TypeEncp Idle IP address ATM address
\n
"
;
if
(
v
==
(
void
*
)
1
)
seq_puts
(
seq
,
atm_arp_banner
);
else
{
struct
arp_state
*
state
=
seq
->
private
;
struct
neighbour
*
n
=
state
->
n
;
struct
clip_vcc
*
vcc
=
state
->
vcc
;
atmarp_info
(
seq
,
n
->
dev
,
NEIGH2ENTRY
(
n
),
vcc
);
}
return
0
;
}
static
struct
seq_operations
arp_seq_ops
=
{
.
start
=
arp_seq_start
,
.
next
=
arp_seq_next
,
.
stop
=
arp_seq_stop
,
.
show
=
arp_seq_show
,
};
static
int
arp_seq_open
(
struct
inode
*
inode
,
struct
file
*
file
)
{
struct
arp_state
*
state
;
struct
seq_file
*
seq
;
int
rc
=
-
EAGAIN
;
if
(
!
try_atm_clip_ops
())
goto
out
;
state
=
kmalloc
(
sizeof
(
*
state
),
GFP_KERNEL
);
if
(
!
state
)
{
rc
=
-
ENOMEM
;
goto
out_put
;
}
rc
=
seq_open
(
file
,
&
arp_seq_ops
);
if
(
rc
)
goto
out_kfree
;
seq
=
file
->
private_data
;
seq
->
private
=
state
;
out:
return
rc
;
out_put:
module_put
(
atm_clip_ops
->
owner
);
out_kfree:
kfree
(
state
);
goto
out
;
}
static
int
arp_seq_release
(
struct
inode
*
inode
,
struct
file
*
file
)
{
module_put
(
atm_clip_ops
->
owner
);
return
seq_release_private
(
inode
,
file
);
}
static
struct
file_operations
arp_seq_fops
=
{
.
open
=
arp_seq_open
,
.
read
=
seq_read
,
.
llseek
=
seq_lseek
,
.
release
=
arp_seq_release
,
.
owner
=
THIS_MODULE
};
#endif
static
int
__init
atm_clip_init
(
void
)
{
#ifdef CONFIG_PROC_FS
struct
proc_dir_entry
*
p
;
p
=
create_proc_entry
(
"arp"
,
S_IRUGO
,
atm_proc_root
);
if
(
p
)
p
->
proc_fops
=
&
arp_seq_fops
;
#endif
/* we should use neigh_table_init() */
clip_tbl
.
lock
=
RW_LOCK_UNLOCKED
;
clip_tbl
.
kmem_cachep
=
kmem_cache_create
(
clip_tbl
.
id
,
...
...
@@ -791,6 +1013,8 @@ static void __exit atm_clip_exit(void)
{
struct
net_device
*
dev
,
*
next
;
remove_proc_entry
(
"arp"
,
atm_proc_root
);
atm_clip_ops_set
(
NULL
);
neigh_ifdown
(
&
clip_tbl
,
NULL
);
...
...
net/atm/proc.c
View file @
2bd2d053
...
...
@@ -22,8 +22,6 @@
#include <linux/atmdev.h>
#include <linux/netdevice.h>
#include <linux/atmclip.h>
#include <linux/atmarp.h>
#include <linux/if_arp.h>
#include <linux/init.h>
/* for __init */
#include <net/atmclip.h>
#include <asm/uaccess.h>
...
...
@@ -70,70 +68,6 @@ static void atm_dev_info(struct seq_file *seq, const struct atm_dev *dev)
seq_putc
(
seq
,
'\n'
);
}
#if defined(CONFIG_ATM_CLIP) || defined(CONFIG_ATM_CLIP_MODULE)
static
void
svc_addr
(
struct
seq_file
*
seq
,
struct
sockaddr_atmsvc
*
addr
)
{
static
int
code
[]
=
{
1
,
2
,
10
,
6
,
1
,
0
};
static
int
e164
[]
=
{
1
,
8
,
4
,
6
,
1
,
0
};
if
(
*
addr
->
sas_addr
.
pub
)
{
seq_printf
(
seq
,
"%s"
,
addr
->
sas_addr
.
pub
);
if
(
*
addr
->
sas_addr
.
prv
)
seq_putc
(
seq
,
'+'
);
}
else
if
(
!*
addr
->
sas_addr
.
prv
)
{
seq_printf
(
seq
,
"%s"
,
"(none)"
);
return
;
}
if
(
*
addr
->
sas_addr
.
prv
)
{
unsigned
char
*
prv
=
addr
->
sas_addr
.
prv
;
int
*
fields
;
int
i
,
j
;
fields
=
*
prv
==
ATM_AFI_E164
?
e164
:
code
;
for
(
i
=
0
;
fields
[
i
];
i
++
)
{
for
(
j
=
fields
[
i
];
j
;
j
--
)
seq_printf
(
seq
,
"%02X"
,
*
prv
++
);
if
(
fields
[
i
+
1
])
seq_putc
(
seq
,
'.'
);
}
}
}
static
void
atmarp_info
(
struct
seq_file
*
seq
,
struct
net_device
*
dev
,
struct
atmarp_entry
*
entry
,
struct
clip_vcc
*
clip_vcc
)
{
char
buf
[
17
];
int
svc
,
off
;
svc
=
!
clip_vcc
||
clip_vcc
->
vcc
->
sk
->
sk_family
==
AF_ATMSVC
;
seq_printf
(
seq
,
"%-6s%-4s%-4s%5ld "
,
dev
->
name
,
svc
?
"SVC"
:
"PVC"
,
!
clip_vcc
||
clip_vcc
->
encap
?
"LLC"
:
"NULL"
,
(
jiffies
-
(
clip_vcc
?
clip_vcc
->
last_use
:
entry
->
neigh
->
used
))
/
HZ
);
off
=
snprintf
(
buf
,
sizeof
(
buf
)
-
1
,
"%d.%d.%d.%d"
,
NIPQUAD
(
entry
->
ip
));
while
(
off
<
16
)
buf
[
off
++
]
=
' '
;
buf
[
off
]
=
'\0'
;
seq_printf
(
seq
,
"%s"
,
buf
);
if
(
!
clip_vcc
)
{
if
(
time_before
(
jiffies
,
entry
->
expires
))
seq_printf
(
seq
,
"(resolving)
\n
"
);
else
seq_printf
(
seq
,
"(expired, ref %d)
\n
"
,
atomic_read
(
&
entry
->
neigh
->
refcnt
));
}
else
if
(
!
svc
)
{
seq_printf
(
seq
,
"%d.%d.%d
\n
"
,
clip_vcc
->
vcc
->
dev
->
number
,
clip_vcc
->
vcc
->
vpi
,
clip_vcc
->
vcc
->
vci
);
}
else
{
svc_addr
(
seq
,
&
clip_vcc
->
vcc
->
remote
);
seq_putc
(
seq
,
'\n'
);
}
}
#endif
/* CONFIG_ATM_CLIP */
struct
vcc_state
{
struct
sock
*
sk
;
int
family
;
...
...
@@ -485,156 +419,6 @@ static struct file_operations svc_seq_fops = {
.
release
=
vcc_seq_release
,
};
#if defined(CONFIG_ATM_CLIP) || defined(CONFIG_ATM_CLIP_MODULE)
struct
arp_state
{
int
bucket
;
struct
neighbour
*
n
;
struct
clip_vcc
*
vcc
;
};
static
void
*
arp_vcc_walk
(
struct
arp_state
*
state
,
struct
atmarp_entry
*
e
,
loff_t
*
l
)
{
struct
clip_vcc
*
vcc
=
state
->
vcc
;
if
(
!
vcc
)
vcc
=
e
->
vccs
;
if
(
vcc
==
(
void
*
)
1
)
{
vcc
=
e
->
vccs
;
--*
l
;
}
for
(;
vcc
;
vcc
=
vcc
->
next
)
{
if
(
--*
l
<
0
)
break
;
}
state
->
vcc
=
vcc
;
return
(
*
l
<
0
)
?
state
:
NULL
;
}
static
void
*
arp_get_idx
(
struct
arp_state
*
state
,
loff_t
l
)
{
void
*
v
=
NULL
;
for
(;
state
->
bucket
<=
NEIGH_HASHMASK
;
state
->
bucket
++
)
{
for
(;
state
->
n
;
state
->
n
=
state
->
n
->
next
)
{
v
=
arp_vcc_walk
(
state
,
NEIGH2ENTRY
(
state
->
n
),
&
l
);
if
(
v
)
goto
done
;
}
state
->
n
=
clip_tbl_hook
->
hash_buckets
[
state
->
bucket
+
1
];
}
done:
return
v
;
}
static
void
*
arp_seq_start
(
struct
seq_file
*
seq
,
loff_t
*
pos
)
{
struct
arp_state
*
state
=
seq
->
private
;
void
*
ret
=
(
void
*
)
1
;
if
(
!
clip_tbl_hook
)
{
state
->
bucket
=
-
1
;
goto
out
;
}
read_lock_bh
(
&
clip_tbl_hook
->
lock
);
state
->
bucket
=
0
;
state
->
n
=
clip_tbl_hook
->
hash_buckets
[
0
];
state
->
vcc
=
(
void
*
)
1
;
if
(
*
pos
)
ret
=
arp_get_idx
(
state
,
*
pos
);
out:
return
ret
;
}
static
void
arp_seq_stop
(
struct
seq_file
*
seq
,
void
*
v
)
{
struct
arp_state
*
state
=
seq
->
private
;
if
(
state
->
bucket
!=
-
1
)
read_unlock_bh
(
&
clip_tbl_hook
->
lock
);
}
static
void
*
arp_seq_next
(
struct
seq_file
*
seq
,
void
*
v
,
loff_t
*
pos
)
{
struct
arp_state
*
state
=
seq
->
private
;
v
=
arp_get_idx
(
state
,
1
);
*
pos
+=
!!
PTR_ERR
(
v
);
return
v
;
}
static
int
arp_seq_show
(
struct
seq_file
*
seq
,
void
*
v
)
{
static
char
atm_arp_banner
[]
=
"IPitf TypeEncp Idle IP address ATM address
\n
"
;
if
(
v
==
(
void
*
)
1
)
seq_puts
(
seq
,
atm_arp_banner
);
else
{
struct
arp_state
*
state
=
seq
->
private
;
struct
neighbour
*
n
=
state
->
n
;
struct
clip_vcc
*
vcc
=
state
->
vcc
;
atmarp_info
(
seq
,
n
->
dev
,
NEIGH2ENTRY
(
n
),
vcc
);
}
return
0
;
}
static
struct
seq_operations
arp_seq_ops
=
{
.
start
=
arp_seq_start
,
.
next
=
arp_seq_next
,
.
stop
=
arp_seq_stop
,
.
show
=
arp_seq_show
,
};
static
int
arp_seq_open
(
struct
inode
*
inode
,
struct
file
*
file
)
{
struct
arp_state
*
state
;
struct
seq_file
*
seq
;
int
rc
=
-
EAGAIN
;
if
(
!
try_atm_clip_ops
())
goto
out
;
state
=
kmalloc
(
sizeof
(
*
state
),
GFP_KERNEL
);
if
(
!
state
)
{
rc
=
-
ENOMEM
;
goto
out_put
;
}
rc
=
seq_open
(
file
,
&
arp_seq_ops
);
if
(
rc
)
goto
out_kfree
;
seq
=
file
->
private_data
;
seq
->
private
=
state
;
out:
return
rc
;
out_put:
module_put
(
atm_clip_ops
->
owner
);
out_kfree:
kfree
(
state
);
goto
out
;
}
static
int
arp_seq_release
(
struct
inode
*
inode
,
struct
file
*
file
)
{
module_put
(
atm_clip_ops
->
owner
);
return
seq_release_private
(
inode
,
file
);
}
static
struct
file_operations
arp_seq_fops
=
{
.
open
=
arp_seq_open
,
.
read
=
seq_read
,
.
llseek
=
seq_lseek
,
.
release
=
arp_seq_release
,
};
#endif
/* CONFIG_ATM_CLIP */
#if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
struct
lec_state
{
...
...
@@ -928,9 +712,6 @@ static struct atm_proc_entry {
{
.
name
=
"pvc"
,
.
proc_fops
=
&
pvc_seq_fops
},
{
.
name
=
"svc"
,
.
proc_fops
=
&
svc_seq_fops
},
{
.
name
=
"vc"
,
.
proc_fops
=
&
vcc_seq_fops
},
#if defined(CONFIG_ATM_CLIP) || defined(CONFIG_ATM_CLIP_MODULE)
{
.
name
=
"arp"
,
.
proc_fops
=
&
arp_seq_fops
},
#endif
#if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE)
{
.
name
=
"lec"
,
.
proc_fops
=
&
lec_seq_fops
},
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment