~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/net/atm/pvc.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /net/atm/pvc.c (Version linux-6.12-rc7) and /net/atm/pvc.c (Version linux-6.1.114)


** Warning: Cannot open xref database.

  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2 /* net/atm/pvc.c - ATM PVC sockets */             
  3                                                   
  4 /* Written 1995-2000 by Werner Almesberger, EP    
  5                                                   
  6                                                   
  7 #include <linux/net.h>          /* struct sock    
  8 #include <linux/atm.h>          /* ATM stuff *    
  9 #include <linux/atmdev.h>       /* ATM devices    
 10 #include <linux/errno.h>        /* error codes    
 11 #include <linux/kernel.h>       /* printk */      
 12 #include <linux/init.h>                           
 13 #include <linux/skbuff.h>                         
 14 #include <linux/bitops.h>                         
 15 #include <linux/export.h>                         
 16 #include <net/sock.h>           /* for sock_no    
 17                                                   
 18 #include "resources.h"          /* devs and vc    
 19 #include "common.h"             /* common for     
 20                                                   
 21                                                   
 22 static int pvc_shutdown(struct socket *sock, i    
 23 {                                                 
 24         return 0;                                 
 25 }                                                 
 26                                                   
 27 static int pvc_bind(struct socket *sock, struc    
 28                     int sockaddr_len)             
 29 {                                                 
 30         struct sock *sk = sock->sk;               
 31         struct sockaddr_atmpvc *addr;             
 32         struct atm_vcc *vcc;                      
 33         int error;                                
 34                                                   
 35         if (sockaddr_len != sizeof(struct sock    
 36                 return -EINVAL;                   
 37         addr = (struct sockaddr_atmpvc *)socka    
 38         if (addr->sap_family != AF_ATMPVC)        
 39                 return -EAFNOSUPPORT;             
 40         lock_sock(sk);                            
 41         vcc = ATM_SD(sock);                       
 42         if (!test_bit(ATM_VF_HASQOS, &vcc->fla    
 43                 error = -EBADFD;                  
 44                 goto out;                         
 45         }                                         
 46         if (test_bit(ATM_VF_PARTIAL, &vcc->fla    
 47                 if (vcc->vpi != ATM_VPI_UNSPEC    
 48                         addr->sap_addr.vpi = v    
 49                 if (vcc->vci != ATM_VCI_UNSPEC    
 50                         addr->sap_addr.vci = v    
 51         }                                         
 52         error = vcc_connect(sock, addr->sap_ad    
 53                             addr->sap_addr.vci    
 54 out:                                              
 55         release_sock(sk);                         
 56         return error;                             
 57 }                                                 
 58                                                   
 59 static int pvc_connect(struct socket *sock, st    
 60                        int sockaddr_len, int f    
 61 {                                                 
 62         return pvc_bind(sock, sockaddr, sockad    
 63 }                                                 
 64                                                   
 65 static int pvc_setsockopt(struct socket *sock,    
 66                           sockptr_t optval, un    
 67 {                                                 
 68         struct sock *sk = sock->sk;               
 69         int error;                                
 70                                                   
 71         lock_sock(sk);                            
 72         error = vcc_setsockopt(sock, level, op    
 73         release_sock(sk);                         
 74         return error;                             
 75 }                                                 
 76                                                   
 77 static int pvc_getsockopt(struct socket *sock,    
 78                           char __user *optval,    
 79 {                                                 
 80         struct sock *sk = sock->sk;               
 81         int error;                                
 82                                                   
 83         lock_sock(sk);                            
 84         error = vcc_getsockopt(sock, level, op    
 85         release_sock(sk);                         
 86         return error;                             
 87 }                                                 
 88                                                   
 89 static int pvc_getname(struct socket *sock, st    
 90                        int peer)                  
 91 {                                                 
 92         struct sockaddr_atmpvc *addr;             
 93         struct atm_vcc *vcc = ATM_SD(sock);       
 94                                                   
 95         if (!vcc->dev || !test_bit(ATM_VF_ADDR    
 96                 return -ENOTCONN;                 
 97         addr = (struct sockaddr_atmpvc *)socka    
 98         memset(addr, 0, sizeof(*addr));           
 99         addr->sap_family = AF_ATMPVC;             
100         addr->sap_addr.itf = vcc->dev->number;    
101         addr->sap_addr.vpi = vcc->vpi;            
102         addr->sap_addr.vci = vcc->vci;            
103         return sizeof(struct sockaddr_atmpvc);    
104 }                                                 
105                                                   
106 static const struct proto_ops pvc_proto_ops =     
107         .family =       PF_ATMPVC,                
108         .owner =        THIS_MODULE,              
109                                                   
110         .release =      vcc_release,              
111         .bind =         pvc_bind,                 
112         .connect =      pvc_connect,              
113         .socketpair =   sock_no_socketpair,       
114         .accept =       sock_no_accept,           
115         .getname =      pvc_getname,              
116         .poll =         vcc_poll,                 
117         .ioctl =        vcc_ioctl,                
118 #ifdef CONFIG_COMPAT                              
119         .compat_ioctl = vcc_compat_ioctl,         
120 #endif                                            
121         .gettstamp =    sock_gettstamp,           
122         .listen =       sock_no_listen,           
123         .shutdown =     pvc_shutdown,             
124         .setsockopt =   pvc_setsockopt,           
125         .getsockopt =   pvc_getsockopt,           
126         .sendmsg =      vcc_sendmsg,              
127         .recvmsg =      vcc_recvmsg,              
128         .mmap =         sock_no_mmap,             
129 };                                                
130                                                   
131                                                   
132 static int pvc_create(struct net *net, struct     
133                       int kern)                   
134 {                                                 
135         if (net != &init_net)                     
136                 return -EAFNOSUPPORT;             
137                                                   
138         sock->ops = &pvc_proto_ops;               
139         return vcc_create(net, sock, protocol,    
140 }                                                 
141                                                   
142 static const struct net_proto_family pvc_famil    
143         .family = PF_ATMPVC,                      
144         .create = pvc_create,                     
145         .owner = THIS_MODULE,                     
146 };                                                
147                                                   
148                                                   
149 /*                                                
150  *      Initialize the ATM PVC protocol family    
151  */                                               
152                                                   
153                                                   
154 int __init atmpvc_init(void)                      
155 {                                                 
156         return sock_register(&pvc_family_ops);    
157 }                                                 
158                                                   
159 void atmpvc_exit(void)                            
160 {                                                 
161         sock_unregister(PF_ATMPVC);               
162 }                                                 
163                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php