Loading...
1/*
2 * Copyright (C) 2007 Luca Bigliardi (shammash@artha.org).
3 * Licensed under the GPL.
4 */
5
6#include <stddef.h>
7#include <errno.h>
8#include <libvdeplug.h>
9#include "net_user.h"
10#include "um_malloc.h"
11#include "vde.h"
12
13static int vde_user_init(void *data, void *dev)
14{
15 struct vde_data *pri = data;
16 VDECONN *conn = NULL;
17 int err = -EINVAL;
18
19 pri->dev = dev;
20
21 conn = vde_open(pri->vde_switch, pri->descr, pri->args);
22
23 if (conn == NULL) {
24 err = -errno;
25 printk(UM_KERN_ERR "vde_user_init: vde_open failed, "
26 "errno = %d\n", errno);
27 return err;
28 }
29
30 printk(UM_KERN_INFO "vde backend - connection opened\n");
31
32 pri->conn = conn;
33
34 return 0;
35}
36
37static int vde_user_open(void *data)
38{
39 struct vde_data *pri = data;
40
41 if (pri->conn != NULL)
42 return vde_datafd(pri->conn);
43
44 printk(UM_KERN_WARNING "vde_open - we have no VDECONN to open");
45 return -EINVAL;
46}
47
48static void vde_remove(void *data)
49{
50 struct vde_data *pri = data;
51
52 if (pri->conn != NULL) {
53 printk(UM_KERN_INFO "vde backend - closing connection\n");
54 vde_close(pri->conn);
55 pri->conn = NULL;
56 kfree(pri->args);
57 pri->args = NULL;
58 return;
59 }
60
61 printk(UM_KERN_WARNING "vde_remove - we have no VDECONN to remove");
62}
63
64const struct net_user_info vde_user_info = {
65 .init = vde_user_init,
66 .open = vde_user_open,
67 .close = NULL,
68 .remove = vde_remove,
69 .add_address = NULL,
70 .delete_address = NULL,
71 .mtu = ETH_MAX_PACKET,
72 .max_packet = ETH_MAX_PACKET + ETH_HEADER_OTHER,
73};
74
75void vde_init_libstuff(struct vde_data *vpri, struct vde_init *init)
76{
77 struct vde_open_args *args;
78
79 vpri->args = uml_kmalloc(sizeof(struct vde_open_args), UM_GFP_KERNEL);
80 if (vpri->args == NULL) {
81 printk(UM_KERN_ERR "vde_init_libstuff - vde_open_args "
82 "allocation failed");
83 return;
84 }
85
86 args = vpri->args;
87
88 args->port = init->port;
89 args->group = init->group;
90 args->mode = init->mode ? init->mode : 0700;
91
92 args->port ? printk("port %d", args->port) :
93 printk("undefined port");
94}
95
96int vde_user_read(void *conn, void *buf, int len)
97{
98 VDECONN *vconn = conn;
99 int rv;
100
101 if (vconn == NULL)
102 return 0;
103
104 rv = vde_recv(vconn, buf, len, 0);
105 if (rv < 0) {
106 if (errno == EAGAIN)
107 return 0;
108 return -errno;
109 }
110 else if (rv == 0)
111 return -ENOTCONN;
112
113 return rv;
114}
115
116int vde_user_write(void *conn, void *buf, int len)
117{
118 VDECONN *vconn = conn;
119
120 if (vconn == NULL)
121 return 0;
122
123 return vde_send(vconn, buf, len, 0);
124}
125
1/*
2 * Copyright (C) 2007 Luca Bigliardi (shammash@artha.org).
3 * Licensed under the GPL.
4 */
5
6#include <stddef.h>
7#include <errno.h>
8#include <libvdeplug.h>
9#include "kern_constants.h"
10#include "net_user.h"
11#include "um_malloc.h"
12#include "user.h"
13#include "vde.h"
14
15static int vde_user_init(void *data, void *dev)
16{
17 struct vde_data *pri = data;
18 VDECONN *conn = NULL;
19 int err = -EINVAL;
20
21 pri->dev = dev;
22
23 conn = vde_open(pri->vde_switch, pri->descr, pri->args);
24
25 if (conn == NULL) {
26 err = -errno;
27 printk(UM_KERN_ERR "vde_user_init: vde_open failed, "
28 "errno = %d\n", errno);
29 return err;
30 }
31
32 printk(UM_KERN_INFO "vde backend - connection opened\n");
33
34 pri->conn = conn;
35
36 return 0;
37}
38
39static int vde_user_open(void *data)
40{
41 struct vde_data *pri = data;
42
43 if (pri->conn != NULL)
44 return vde_datafd(pri->conn);
45
46 printk(UM_KERN_WARNING "vde_open - we have no VDECONN to open");
47 return -EINVAL;
48}
49
50static void vde_remove(void *data)
51{
52 struct vde_data *pri = data;
53
54 if (pri->conn != NULL) {
55 printk(UM_KERN_INFO "vde backend - closing connection\n");
56 vde_close(pri->conn);
57 pri->conn = NULL;
58 kfree(pri->args);
59 pri->args = NULL;
60 return;
61 }
62
63 printk(UM_KERN_WARNING "vde_remove - we have no VDECONN to remove");
64}
65
66const struct net_user_info vde_user_info = {
67 .init = vde_user_init,
68 .open = vde_user_open,
69 .close = NULL,
70 .remove = vde_remove,
71 .add_address = NULL,
72 .delete_address = NULL,
73 .mtu = ETH_MAX_PACKET,
74 .max_packet = ETH_MAX_PACKET + ETH_HEADER_OTHER,
75};
76
77void vde_init_libstuff(struct vde_data *vpri, struct vde_init *init)
78{
79 struct vde_open_args *args;
80
81 vpri->args = uml_kmalloc(sizeof(struct vde_open_args), UM_GFP_KERNEL);
82 if (vpri->args == NULL) {
83 printk(UM_KERN_ERR "vde_init_libstuff - vde_open_args "
84 "allocation failed");
85 return;
86 }
87
88 args = vpri->args;
89
90 args->port = init->port;
91 args->group = init->group;
92 args->mode = init->mode ? init->mode : 0700;
93
94 args->port ? printk("port %d", args->port) :
95 printk("undefined port");
96}
97
98int vde_user_read(void *conn, void *buf, int len)
99{
100 VDECONN *vconn = conn;
101 int rv;
102
103 if (vconn == NULL)
104 return 0;
105
106 rv = vde_recv(vconn, buf, len, 0);
107 if (rv < 0) {
108 if (errno == EAGAIN)
109 return 0;
110 return -errno;
111 }
112 else if (rv == 0)
113 return -ENOTCONN;
114
115 return rv;
116}
117
118int vde_user_write(void *conn, void *buf, int len)
119{
120 VDECONN *vconn = conn;
121
122 if (vconn == NULL)
123 return 0;
124
125 return vde_send(vconn, buf, len, 0);
126}
127