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
Kirill Smelkov
linux
Commits
e0380eac
Commit
e0380eac
authored
Jun 16, 2003
by
Chas Williams
Committed by
David S. Miller
Jun 16, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ATM]: Split atm_ioctl into vcc_ioctl and atm_dev_ioctl.
parent
d51b8f84
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
306 additions
and
309 deletions
+306
-309
net/atm/common.c
net/atm/common.c
+66
-306
net/atm/common.h
net/atm/common.h
+1
-1
net/atm/pvc.c
net/atm/pvc.c
+1
-1
net/atm/resources.c
net/atm/resources.c
+236
-0
net/atm/resources.h
net/atm/resources.h
+1
-0
net/atm/svc.c
net/atm/svc.c
+1
-1
No files found.
net/atm/common.c
View file @
e0380eac
This diff is collapsed.
Click to expand it.
net/atm/common.h
View file @
e0380eac
...
@@ -18,7 +18,7 @@ int atm_recvmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *m,
...
@@ -18,7 +18,7 @@ int atm_recvmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *m,
int
atm_sendmsg
(
struct
kiocb
*
iocb
,
struct
socket
*
sock
,
struct
msghdr
*
m
,
int
atm_sendmsg
(
struct
kiocb
*
iocb
,
struct
socket
*
sock
,
struct
msghdr
*
m
,
int
total_len
);
int
total_len
);
unsigned
int
atm_poll
(
struct
file
*
file
,
struct
socket
*
sock
,
poll_table
*
wait
);
unsigned
int
atm_poll
(
struct
file
*
file
,
struct
socket
*
sock
,
poll_table
*
wait
);
int
atm_ioctl
(
struct
socket
*
sock
,
unsigned
int
cmd
,
unsigned
long
arg
);
int
vcc_ioctl
(
struct
socket
*
sock
,
unsigned
int
cmd
,
unsigned
long
arg
);
int
atm_setsockopt
(
struct
socket
*
sock
,
int
level
,
int
optname
,
char
*
optval
,
int
atm_setsockopt
(
struct
socket
*
sock
,
int
level
,
int
optname
,
char
*
optval
,
int
optlen
);
int
optlen
);
int
atm_getsockopt
(
struct
socket
*
sock
,
int
level
,
int
optname
,
char
*
optval
,
int
atm_getsockopt
(
struct
socket
*
sock
,
int
level
,
int
optname
,
char
*
optval
,
...
...
net/atm/pvc.c
View file @
e0380eac
...
@@ -82,7 +82,7 @@ static struct proto_ops SOCKOPS_WRAPPED(pvc_proto_ops) = {
...
@@ -82,7 +82,7 @@ static struct proto_ops SOCKOPS_WRAPPED(pvc_proto_ops) = {
.
accept
=
sock_no_accept
,
.
accept
=
sock_no_accept
,
.
getname
=
pvc_getname
,
.
getname
=
pvc_getname
,
.
poll
=
atm_poll
,
.
poll
=
atm_poll
,
.
ioctl
=
atm
_ioctl
,
.
ioctl
=
vcc
_ioctl
,
.
listen
=
sock_no_listen
,
.
listen
=
sock_no_listen
,
.
shutdown
=
pvc_shutdown
,
.
shutdown
=
pvc_shutdown
,
.
setsockopt
=
atm_setsockopt
,
.
setsockopt
=
atm_setsockopt
,
...
...
net/atm/resources.c
View file @
e0380eac
...
@@ -12,6 +12,7 @@
...
@@ -12,6 +12,7 @@
#include <linux/ctype.h>
#include <linux/ctype.h>
#include <linux/string.h>
#include <linux/string.h>
#include <linux/atmdev.h>
#include <linux/atmdev.h>
#include <linux/sonet.h>
#include <linux/kernel.h>
/* for barrier */
#include <linux/kernel.h>
/* for barrier */
#include <linux/module.h>
#include <linux/module.h>
#include <linux/bitops.h>
#include <linux/bitops.h>
...
@@ -19,6 +20,7 @@
...
@@ -19,6 +20,7 @@
#include "common.h"
#include "common.h"
#include "resources.h"
#include "resources.h"
#include "addr.h"
#ifndef NULL
#ifndef NULL
...
@@ -171,6 +173,240 @@ void shutdown_atm_dev(struct atm_dev *dev)
...
@@ -171,6 +173,240 @@ void shutdown_atm_dev(struct atm_dev *dev)
atm_dev_deregister
(
dev
);
atm_dev_deregister
(
dev
);
}
}
static
void
copy_aal_stats
(
struct
k_atm_aal_stats
*
from
,
struct
atm_aal_stats
*
to
)
{
#define __HANDLE_ITEM(i) to->i = atomic_read(&from->i)
__AAL_STAT_ITEMS
#undef __HANDLE_ITEM
}
static
void
subtract_aal_stats
(
struct
k_atm_aal_stats
*
from
,
struct
atm_aal_stats
*
to
)
{
#define __HANDLE_ITEM(i) atomic_sub(to->i, &from->i)
__AAL_STAT_ITEMS
#undef __HANDLE_ITEM
}
static
int
fetch_stats
(
struct
atm_dev
*
dev
,
struct
atm_dev_stats
*
arg
,
int
zero
)
{
struct
atm_dev_stats
tmp
;
int
error
=
0
;
copy_aal_stats
(
&
dev
->
stats
.
aal0
,
&
tmp
.
aal0
);
copy_aal_stats
(
&
dev
->
stats
.
aal34
,
&
tmp
.
aal34
);
copy_aal_stats
(
&
dev
->
stats
.
aal5
,
&
tmp
.
aal5
);
if
(
arg
)
error
=
copy_to_user
(
arg
,
&
tmp
,
sizeof
(
tmp
));
if
(
zero
&&
!
error
)
{
subtract_aal_stats
(
&
dev
->
stats
.
aal0
,
&
tmp
.
aal0
);
subtract_aal_stats
(
&
dev
->
stats
.
aal34
,
&
tmp
.
aal34
);
subtract_aal_stats
(
&
dev
->
stats
.
aal5
,
&
tmp
.
aal5
);
}
return
error
?
-
EFAULT
:
0
;
}
int
atm_dev_ioctl
(
unsigned
int
cmd
,
unsigned
long
arg
)
{
void
*
buf
;
int
error
,
len
,
number
,
size
=
0
;
struct
atm_dev
*
dev
;
struct
list_head
*
p
;
int
*
tmp_buf
,
*
tmp_p
;
switch
(
cmd
)
{
case
ATM_GETNAMES
:
if
(
get_user
(
buf
,
&
((
struct
atm_iobuf
*
)
arg
)
->
buffer
))
return
-
EFAULT
;
if
(
get_user
(
len
,
&
((
struct
atm_iobuf
*
)
arg
)
->
length
))
return
-
EFAULT
;
spin_lock
(
&
atm_dev_lock
);
list_for_each
(
p
,
&
atm_devs
)
size
+=
sizeof
(
int
);
if
(
size
>
len
)
{
spin_unlock
(
&
atm_dev_lock
);
return
-
E2BIG
;
}
tmp_buf
=
kmalloc
(
size
,
GFP_ATOMIC
);
if
(
!
tmp_buf
)
{
spin_unlock
(
&
atm_dev_lock
);
return
-
ENOMEM
;
}
tmp_p
=
tmp_buf
;
list_for_each
(
p
,
&
atm_devs
)
{
dev
=
list_entry
(
p
,
struct
atm_dev
,
dev_list
);
*
tmp_p
++
=
dev
->
number
;
}
spin_unlock
(
&
atm_dev_lock
);
error
=
((
copy_to_user
(
buf
,
tmp_buf
,
size
))
||
put_user
(
size
,
&
((
struct
atm_iobuf
*
)
arg
)
->
length
))
?
-
EFAULT
:
0
;
kfree
(
tmp_buf
);
return
error
;
default:
break
;
}
if
(
get_user
(
buf
,
&
((
struct
atmif_sioc
*
)
arg
)
->
arg
))
return
-
EFAULT
;
if
(
get_user
(
len
,
&
((
struct
atmif_sioc
*
)
arg
)
->
length
))
return
-
EFAULT
;
if
(
get_user
(
number
,
&
((
struct
atmif_sioc
*
)
arg
)
->
number
))
return
-
EFAULT
;
if
(
!
(
dev
=
atm_dev_lookup
(
number
)))
return
-
ENODEV
;
switch
(
cmd
)
{
case
ATM_GETTYPE
:
size
=
strlen
(
dev
->
type
)
+
1
;
if
(
copy_to_user
(
buf
,
dev
->
type
,
size
))
{
error
=
-
EFAULT
;
goto
done
;
}
break
;
case
ATM_GETESI
:
size
=
ESI_LEN
;
if
(
copy_to_user
(
buf
,
dev
->
esi
,
size
))
{
error
=
-
EFAULT
;
goto
done
;
}
break
;
case
ATM_SETESI
:
{
int
i
;
for
(
i
=
0
;
i
<
ESI_LEN
;
i
++
)
if
(
dev
->
esi
[
i
])
{
error
=
-
EEXIST
;
goto
done
;
}
}
/* fall through */
case
ATM_SETESIF
:
{
unsigned
char
esi
[
ESI_LEN
];
if
(
!
capable
(
CAP_NET_ADMIN
))
{
error
=
-
EPERM
;
goto
done
;
}
if
(
copy_from_user
(
esi
,
buf
,
ESI_LEN
))
{
error
=
-
EFAULT
;
goto
done
;
}
memcpy
(
dev
->
esi
,
esi
,
ESI_LEN
);
error
=
ESI_LEN
;
goto
done
;
}
case
ATM_GETSTATZ
:
if
(
!
capable
(
CAP_NET_ADMIN
))
{
error
=
-
EPERM
;
goto
done
;
}
/* fall through */
case
ATM_GETSTAT
:
size
=
sizeof
(
struct
atm_dev_stats
);
error
=
fetch_stats
(
dev
,
buf
,
cmd
==
ATM_GETSTATZ
);
if
(
error
)
goto
done
;
break
;
case
ATM_GETCIRANGE
:
size
=
sizeof
(
struct
atm_cirange
);
if
(
copy_to_user
(
buf
,
&
dev
->
ci_range
,
size
))
{
error
=
-
EFAULT
;
goto
done
;
}
break
;
case
ATM_GETLINKRATE
:
size
=
sizeof
(
int
);
if
(
copy_to_user
(
buf
,
&
dev
->
link_rate
,
size
))
{
error
=
-
EFAULT
;
goto
done
;
}
break
;
case
ATM_RSTADDR
:
if
(
!
capable
(
CAP_NET_ADMIN
))
{
error
=
-
EPERM
;
goto
done
;
}
atm_reset_addr
(
dev
);
break
;
case
ATM_ADDADDR
:
case
ATM_DELADDR
:
if
(
!
capable
(
CAP_NET_ADMIN
))
{
error
=
-
EPERM
;
goto
done
;
}
{
struct
sockaddr_atmsvc
addr
;
if
(
copy_from_user
(
&
addr
,
buf
,
sizeof
(
addr
)))
{
error
=
-
EFAULT
;
goto
done
;
}
if
(
cmd
==
ATM_ADDADDR
)
error
=
atm_add_addr
(
dev
,
&
addr
);
else
error
=
atm_del_addr
(
dev
,
&
addr
);
goto
done
;
}
case
ATM_GETADDR
:
error
=
atm_get_addr
(
dev
,
buf
,
len
);
if
(
error
<
0
)
goto
done
;
size
=
error
;
/* may return 0, but later on size == 0 means "don't
write the length" */
error
=
put_user
(
size
,
&
((
struct
atmif_sioc
*
)
arg
)
->
length
)
?
-
EFAULT
:
0
;
goto
done
;
case
ATM_SETLOOP
:
if
(
__ATM_LM_XTRMT
((
int
)
(
long
)
buf
)
&&
__ATM_LM_XTLOC
((
int
)
(
long
)
buf
)
>
__ATM_LM_XTRMT
((
int
)
(
long
)
buf
))
{
error
=
-
EINVAL
;
goto
done
;
}
/* fall through */
case
ATM_SETCIRANGE
:
case
SONET_GETSTATZ
:
case
SONET_SETDIAG
:
case
SONET_CLRDIAG
:
case
SONET_SETFRAMING
:
if
(
!
capable
(
CAP_NET_ADMIN
))
{
error
=
-
EPERM
;
goto
done
;
}
/* fall through */
default:
if
(
!
dev
->
ops
->
ioctl
)
{
error
=
-
EINVAL
;
goto
done
;
}
size
=
dev
->
ops
->
ioctl
(
dev
,
cmd
,
buf
);
if
(
size
<
0
)
{
error
=
(
size
==
-
ENOIOCTLCMD
?
-
EINVAL
:
size
);
goto
done
;
}
}
if
(
size
)
error
=
put_user
(
size
,
&
((
struct
atmif_sioc
*
)
arg
)
->
length
)
?
-
EFAULT
:
0
;
else
error
=
0
;
done:
atm_dev_release
(
dev
);
return
error
;
}
struct
sock
*
alloc_atm_vcc_sk
(
int
family
)
struct
sock
*
alloc_atm_vcc_sk
(
int
family
)
{
{
struct
sock
*
sk
;
struct
sock
*
sk
;
...
...
net/atm/resources.h
View file @
e0380eac
...
@@ -16,6 +16,7 @@ extern spinlock_t atm_dev_lock;
...
@@ -16,6 +16,7 @@ extern spinlock_t atm_dev_lock;
struct
sock
*
alloc_atm_vcc_sk
(
int
family
);
struct
sock
*
alloc_atm_vcc_sk
(
int
family
);
void
free_atm_vcc_sk
(
struct
sock
*
sk
);
void
free_atm_vcc_sk
(
struct
sock
*
sk
);
int
atm_dev_ioctl
(
unsigned
int
cmd
,
unsigned
long
arg
);
#ifdef CONFIG_PROC_FS
#ifdef CONFIG_PROC_FS
...
...
net/atm/svc.c
View file @
e0380eac
...
@@ -402,7 +402,7 @@ static struct proto_ops SOCKOPS_WRAPPED(svc_proto_ops) = {
...
@@ -402,7 +402,7 @@ static struct proto_ops SOCKOPS_WRAPPED(svc_proto_ops) = {
.
accept
=
svc_accept
,
.
accept
=
svc_accept
,
.
getname
=
svc_getname
,
.
getname
=
svc_getname
,
.
poll
=
atm_poll
,
.
poll
=
atm_poll
,
.
ioctl
=
atm
_ioctl
,
.
ioctl
=
vcc
_ioctl
,
.
listen
=
svc_listen
,
.
listen
=
svc_listen
,
.
shutdown
=
svc_shutdown
,
.
shutdown
=
svc_shutdown
,
.
setsockopt
=
svc_setsockopt
,
.
setsockopt
=
svc_setsockopt
,
...
...
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