2 * libvdeplug - A library to connect to a VDE Switch.
3 * Copyright (C) 2006 Renzo Davoli, University of Bologna
5 * This library is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU Lesser General Public License as published by
7 * the Free Software Foundation version 2.1 of the License, or (at
8 * your option) any later version.
10 * This library is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
13 * General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include "libvdeplug.h"
22 #include <sys/socket.h>
31 #define VDESTDSOCK "/var/run/vde.ctl"
32 #define VDETMPSOCK "/tmp/vde.ctl"
38 struct sockaddr_un inpath
;
41 #define SWITCH_MAGIC 0xfeedface
44 enum request_type
{ REQ_NEW_CONTROL
};
49 enum request_type type
;
50 struct sockaddr_un sock
;
51 char description
[MAXDESCR
];
54 VDECONN
*vde_open_real(char *sockname
,char *descr
,int interface_version
,
55 struct vde_open_args
*open_args
)
58 struct passwd
*callerpwd
;
59 struct request_v3 req
;
61 static struct sockaddr_un sockun
;
62 static struct sockaddr_un dataout
;
69 if (open_args
!= NULL
) {
70 if (interface_version
== 1) {
72 group
=open_args
->group
;
81 if ((conn
=calloc(1,sizeof(struct vdeconn
)))==NULL
)
87 callerpwd
=getpwuid(getuid());
88 if((conn
->fddata
= socket(AF_UNIX
, SOCK_DGRAM
, 0)) < 0){
94 if((conn
->fdctl
= socket(AF_UNIX
, SOCK_STREAM
, 0)) < 0){
101 if (sockname
== NULL
)
105 if(sockname
[strlen(sockname
)-1] == ']' && (split
=rindex(sockname
,'[')) != NULL
) {
109 if (*sockname
==0) sockname
=VDESTDSOCK
;
112 sockun
.sun_family
= AF_UNIX
;
113 snprintf(sockun
.sun_path
, sizeof(sockun
.sun_path
), "%s/ctl", sockname
);
114 if(connect(conn
->fdctl
, (struct sockaddr
*) &sockun
, sizeof(sockun
))){
115 if (sockname
== VDESTDSOCK
) {
117 snprintf(sockun
.sun_path
, sizeof(sockun
.sun_path
), "%s/ctl", sockname
);
118 if(connect(conn
->fdctl
, (struct sockaddr
*) &sockun
, sizeof(sockun
))){
119 snprintf(sockun
.sun_path
, sizeof(sockun
.sun_path
), "%s", sockname
);
120 if(connect(conn
->fdctl
, (struct sockaddr
*) &sockun
, sizeof(sockun
))){
131 req
.magic
=SWITCH_MAGIC
;
133 req
.type
=REQ_NEW_CONTROL
+(port
<< 8);
134 req
.sock
.sun_family
=AF_UNIX
;
136 /* First choice, store the return socket from the switch in the control dir*/
137 memset(req
.sock
.sun_path
, 0, sizeof(req
.sock
.sun_path
));
140 sprintf(req
.sock
.sun_path
, "%s.%05d-%05d", sockname
, pid
, sockno
++);
141 res
=bind(conn
->fddata
, (struct sockaddr
*) &req
.sock
, sizeof (req
.sock
));
143 while (res
< 0 && errno
== EADDRINUSE
);
145 /* if it is not possible -> /tmp */
146 memset(req
.sock
.sun_path
, 0, sizeof(req
.sock
.sun_path
));
149 sprintf(req
.sock
.sun_path
, "%s.%05d-%05d", sockname
, pid
, sockno
++);
150 res
=bind(conn
->fddata
, (struct sockaddr
*) &req
.sock
, sizeof (req
.sock
));
152 while (res
< 0 && errno
== EADDRINUSE
);
163 snprintf(req
.description
,MAXDESCR
,"%s user=%s PID=%d %s SOCK=%s",
164 descr
,callerpwd
->pw_name
,pid
,getenv("SSH_CLIENT")?getenv("SSH_CLIENT"):"",req
.sock
.sun_path
);
165 memcpy(&(conn
->inpath
),&req
.sock
,sizeof(req
.sock
));
167 if (send(conn
->fdctl
,&req
,sizeof(req
)-MAXDESCR
+strlen(req
.description
),0) < 0) {
176 if (recv(conn
->fdctl
,&(dataout
),sizeof(struct sockaddr_un
),0)<0) {
185 if (connect(conn
->fddata
,(struct sockaddr
*)&(dataout
),sizeof(struct sockaddr_un
))<0) {
197 if ((gs
=getgrnam(group
)) == NULL
)
201 chown(conn
->inpath
.sun_path
,-1,gid
);
204 chmod(conn
->inpath
.sun_path
,mode
);
209 ssize_t
vde_recv(VDECONN
*conn
,char *buf
,size_t len
,int flags
)
211 if (__builtin_expect(conn
!=0,1))
212 return recv(conn
->fddata
,buf
,len
,0);
219 ssize_t
vde_send(VDECONN
*conn
,const char *buf
,size_t len
,int flags
)
221 if (__builtin_expect(conn
!=0,1))
222 return send(conn
->fddata
,buf
,len
,0);
229 int vde_datafd(VDECONN
*conn
)
231 if (__builtin_expect(conn
!=0,1))
239 int vde_ctlfd(VDECONN
*conn
)
241 if (__builtin_expect(conn
!=0,1))
249 int vde_close(VDECONN
*conn
)
251 if (__builtin_expect(conn
!=0,1)) {
252 unlink(conn
->inpath
.sun_path
);