Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 | #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <stddef.h> #include <sched.h> #include <string.h> #include <sys/fcntl.h> #include <sys/errno.h> #include <sys/termios.h> #include <sys/wait.h> #include <sys/ioctl.h> #include <sys/signal.h> #include "user_util.h" #include "kern_util.h" #include "user.h" #include "net_user.h" #include "slip.h" #include "slip_proto.h" #include "helper.h" #include "os.h" void slip_user_init(void *data, void *dev) { struct slip_data *pri = data; pri->dev = dev; } static int set_up_tty(int fd) { int i; struct termios tios; if (tcgetattr(fd, &tios) < 0) { printk("could not get initial terminal attributes\n"); return(-1); } tios.c_cflag = CS8 | CREAD | HUPCL | CLOCAL; tios.c_iflag = IGNBRK | IGNPAR; tios.c_oflag = 0; tios.c_lflag = 0; for (i = 0; i < NCCS; i++) tios.c_cc[i] = 0; tios.c_cc[VMIN] = 1; tios.c_cc[VTIME] = 0; cfsetospeed(&tios, B38400); cfsetispeed(&tios, B38400); if (tcsetattr(fd, TCSAFLUSH, &tios) < 0) { printk("failed to set terminal attributes\n"); return(-1); } return(0); } struct slip_pre_exec_data { int stdin; int stdout; int close_me; }; static void slip_pre_exec(void *arg) { struct slip_pre_exec_data *data = arg; if(data->stdin != -1) dup2(data->stdin, 0); dup2(data->stdout, 1); if(data->close_me != -1) close(data->close_me); } static int slip_tramp(char **argv, int fd) { struct slip_pre_exec_data pe_data; char *output; int status, pid, fds[2], err, output_len; err = os_pipe(fds, 1, 0); if(err){ printk("slip_tramp : pipe failed, errno = %d\n", -err); return(err); } err = 0; pe_data.stdin = fd; pe_data.stdout = fds[1]; pe_data.close_me = fds[0]; pid = run_helper(slip_pre_exec, &pe_data, argv, NULL); if(pid < 0) err = pid; else { output_len = page_size(); output = um_kmalloc(output_len); if(output == NULL) printk("slip_tramp : failed to allocate output " "buffer\n"); close(fds[1]); read_output(fds[0], output, output_len); if(output != NULL){ printk("%s", output); kfree(output); } if(waitpid(pid, &status, 0) < 0) err = errno; else if(!WIFEXITED(status) || (WEXITSTATUS(status) != 0)){ printk("'%s' didn't exit with status 0\n", argv[0]); err = EINVAL; } } return(err); } static int slip_open(void *data) { struct slip_data *pri = data; char version_buf[sizeof("nnnnn\0")]; char gate_buf[sizeof("nnn.nnn.nnn.nnn\0")]; char *argv[] = { "uml_net", version_buf, "slip", "up", gate_buf, NULL }; int sfd, mfd, disc, sencap, err; if((mfd = get_pty()) < 0){ printk("umn : Failed to open pty\n"); return(-1); } if((sfd = os_open_file(ptsname(mfd), of_rdwr(OPENFLAGS()), 0)) < 0){ printk("Couldn't open tty for slip line\n"); return(-1); } if(set_up_tty(sfd)) return(-1); pri->slave = sfd; pri->pos = 0; pri->esc = 0; if(pri->gate_addr != NULL){ sprintf(version_buf, "%d", UML_NET_VERSION); strcpy(gate_buf, pri->gate_addr); err = slip_tramp(argv, sfd); if(err != 0){ printk("slip_tramp failed - errno = %d\n", err); return(-err); } if(ioctl(pri->slave, SIOCGIFNAME, pri->name) < 0){ printk("SIOCGIFNAME failed, errno = %d\n", errno); return(-errno); } iter_addresses(pri->dev, open_addr, pri->name); } else { disc = N_SLIP; if(ioctl(sfd, TIOCSETD, &disc) < 0){ printk("Failed to set slip line discipline - " "errno = %d\n", errno); return(-errno); } sencap = 0; if(ioctl(sfd, SIOCSIFENCAP, &sencap) < 0){ printk("Failed to set slip encapsulation - " "errno = %d\n", errno); return(-errno); } } return(mfd); } static void slip_close(int fd, void *data) { struct slip_data *pri = data; char version_buf[sizeof("nnnnn\0")]; char *argv[] = { "uml_net", version_buf, "slip", "down", pri->name, NULL }; int err; if(pri->gate_addr != NULL) iter_addresses(pri->dev, close_addr, pri->name); sprintf(version_buf, "%d", UML_NET_VERSION); err = slip_tramp(argv, -1); if(err != 0) printk("slip_tramp failed - errno = %d\n", err); close(fd); close(pri->slave); pri->slave = -1; } int slip_user_read(int fd, void *buf, int len, struct slip_data *pri) { int i, n, size, start; if(pri->more>0) { i = 0; while(i < pri->more) { size = slip_unesc(pri->ibuf[i++], pri->ibuf, &pri->pos, &pri->esc); if(size){ memcpy(buf, pri->ibuf, size); memmove(pri->ibuf, &pri->ibuf[i], pri->more-i); pri->more=pri->more-i; return(size); } } pri->more=0; } n = net_read(fd, &pri->ibuf[pri->pos], sizeof(pri->ibuf) - pri->pos); if(n <= 0) return(n); start = pri->pos; for(i = 0; i < n; i++){ size = slip_unesc(pri->ibuf[start + i], pri->ibuf, &pri->pos, &pri->esc); if(size){ memcpy(buf, pri->ibuf, size); memmove(pri->ibuf, &pri->ibuf[start+i+1], n-(i+1)); pri->more=n-(i+1); return(size); } } return(0); } int slip_user_write(int fd, void *buf, int len, struct slip_data *pri) { int actual, n; actual = slip_esc(buf, pri->obuf, len); n = net_write(fd, pri->obuf, actual); if(n < 0) return(n); else return(len); } static int slip_set_mtu(int mtu, void *data) { return(mtu); } static void slip_add_addr(unsigned char *addr, unsigned char *netmask, void *data) { struct slip_data *pri = data; if(pri->slave == -1) return; open_addr(addr, netmask, pri->name); } static void slip_del_addr(unsigned char *addr, unsigned char *netmask, void *data) { struct slip_data *pri = data; if(pri->slave == -1) return; close_addr(addr, netmask, pri->name); } struct net_user_info slip_user_info = { .init = slip_user_init, .open = slip_open, .close = slip_close, .remove = NULL, .set_mtu = slip_set_mtu, .add_address = slip_add_addr, .delete_address = slip_del_addr, .max_packet = BUF_SIZE }; /* * Overrides for Emacs so that we follow Linus's tabbing style. * Emacs will notice this stuff at the end of the file and automatically * adjust the settings for this buffer only. This must remain at the end * of the file. * --------------------------------------------------------------------------- * Local variables: * c-file-style: "linux" * End: */ |