xref: /netbsd-src/sys/dev/scsipi/if_se.c (revision 796c32c94f6e154afc9de0f63da35c91bb739b45)
1 /*	$NetBSD: if_se.c,v 1.95 2017/10/23 09:31:18 msaitoh Exp $	*/
2 
3 /*
4  * Copyright (c) 1997 Ian W. Dall <ian.dall@dsto.defence.gov.au>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *	This product includes software developed by Ian W. Dall.
18  * 4. The name of the author may not be used to endorse or promote products
19  *    derived from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 /*
34  * Driver for Cabletron EA41x scsi ethernet adaptor.
35  *
36  * Written by Ian Dall <ian.dall@dsto.defence.gov.au> Feb 3, 1997
37  *
38  * Acknowledgement: Thanks are due to Philip L. Budne <budd@cs.bu.edu>
39  * who reverse engineered the EA41x. In developing this code,
40  * Phil's userland daemon "etherd", was refered to extensively in lieu
41  * of accurate documentation for the device.
42  *
43  * This is a weird device! It doesn't conform to the scsi spec in much
44  * at all. About the only standard command supported is inquiry. Most
45  * commands are 6 bytes long, but the recv data is only 1 byte.  Data
46  * must be received by periodically polling the device with the recv
47  * command.
48  *
49  * This driver is also a bit unusual. It must look like a network
50  * interface and it must also appear to be a scsi device to the scsi
51  * system. Hence there are cases where there are two entry points. eg
52  * sestart is to be called from the scsi subsytem and se_ifstart from
53  * the network interface subsystem.  In addition, to facilitate scsi
54  * commands issued by userland programs, there are open, close and
55  * ioctl entry points. This allows a user program to, for example,
56  * display the ea41x stats and download new code into the adaptor ---
57  * functions which can't be performed through the ifconfig interface.
58  * Normal operation does not require any special userland program.
59  */
60 
61 #include <sys/cdefs.h>
62 __KERNEL_RCSID(0, "$NetBSD: if_se.c,v 1.95 2017/10/23 09:31:18 msaitoh Exp $");
63 
64 #ifdef _KERNEL_OPT
65 #include "opt_inet.h"
66 #include "opt_atalk.h"
67 #endif
68 
69 #include <sys/param.h>
70 #include <sys/systm.h>
71 #include <sys/callout.h>
72 #include <sys/syslog.h>
73 #include <sys/kernel.h>
74 #include <sys/file.h>
75 #include <sys/stat.h>
76 #include <sys/ioctl.h>
77 #include <sys/buf.h>
78 #include <sys/uio.h>
79 #include <sys/malloc.h>
80 #include <sys/errno.h>
81 #include <sys/device.h>
82 #include <sys/disklabel.h>
83 #include <sys/disk.h>
84 #include <sys/proc.h>
85 #include <sys/conf.h>
86 
87 #include <dev/scsipi/scsipi_all.h>
88 #include <dev/scsipi/scsi_ctron_ether.h>
89 #include <dev/scsipi/scsiconf.h>
90 
91 #include <sys/mbuf.h>
92 
93 #include <sys/socket.h>
94 #include <net/if.h>
95 #include <net/if_dl.h>
96 #include <net/if_ether.h>
97 #include <net/if_media.h>
98 
99 #ifdef INET
100 #include <netinet/in.h>
101 #include <netinet/if_inarp.h>
102 #endif
103 
104 
105 #ifdef NETATALK
106 #include <netatalk/at.h>
107 #endif
108 
109 
110 #include <net/bpf.h>
111 #include <net/bpfdesc.h>
112 
113 #define SETIMEOUT	1000
114 #define	SEOUTSTANDING	4
115 #define	SERETRIES	4
116 #define SE_PREFIX	4
117 #define ETHER_CRC	4
118 #define SEMINSIZE	60
119 
120 /* Make this big enough for an ETHERMTU packet in promiscuous mode. */
121 #define MAX_SNAP	(ETHERMTU + sizeof(struct ether_header) + \
122 			 SE_PREFIX + ETHER_CRC)
123 
124 /* 10 full length packets appears to be the max ever returned. 16k is OK */
125 #define RBUF_LEN	(16 * 1024)
126 
127 /* Tuning parameters:
128  * The EA41x only returns a maximum of 10 packets (regardless of size).
129  * We will attempt to adapt to polling fast enough to get RDATA_GOAL packets
130  * per read
131  */
132 #define RDATA_MAX 10
133 #define RDATA_GOAL 8
134 
135 /* se_poll and se_poll0 are the normal polling rate and the minimum
136  * polling rate respectively. se_poll0 should be chosen so that at
137  * maximum ethernet speed, we will read nearly RDATA_MAX packets. se_poll
138  * should be chosen for reasonable maximum latency.
139  * In practice, if we are being saturated with min length packets, we
140  * can't poll fast enough. Polling with zero delay actually
141  * worsens performance. se_poll0 is enforced to be always at least 1
142  */
143 #define SE_POLL 40		/* default in milliseconds */
144 #define SE_POLL0 10		/* default in milliseconds */
145 int se_poll = 0;		/* Delay in ticks set at attach time */
146 int se_poll0 = 0;
147 int se_max_received = 0;	/* Instrumentation */
148 
149 #define	PROTOCMD(p, d) \
150 	((d) = (p))
151 
152 #define	PROTOCMD_DECL(name) \
153 	static const struct scsi_ctron_ether_generic name
154 
155 #define	PROTOCMD_DECL_SPECIAL(name) \
156 	static const struct __CONCAT(scsi_,name) name
157 
158 /* Command initializers for commands using scsi_ctron_ether_generic */
159 PROTOCMD_DECL(ctron_ether_send)  = {CTRON_ETHER_SEND, 0, {0,0}, 0};
160 PROTOCMD_DECL(ctron_ether_add_proto) = {CTRON_ETHER_ADD_PROTO, 0, {0,0}, 0};
161 PROTOCMD_DECL(ctron_ether_get_addr) = {CTRON_ETHER_GET_ADDR, 0, {0,0}, 0};
162 PROTOCMD_DECL(ctron_ether_set_media) = {CTRON_ETHER_SET_MEDIA, 0, {0,0}, 0};
163 PROTOCMD_DECL(ctron_ether_set_addr) = {CTRON_ETHER_SET_ADDR, 0, {0,0}, 0};
164 PROTOCMD_DECL(ctron_ether_set_multi) = {CTRON_ETHER_SET_MULTI, 0, {0,0}, 0};
165 PROTOCMD_DECL(ctron_ether_remove_multi) =
166     {CTRON_ETHER_REMOVE_MULTI, 0, {0,0}, 0};
167 
168 /* Command initializers for commands using their own structures */
169 PROTOCMD_DECL_SPECIAL(ctron_ether_recv) = {CTRON_ETHER_RECV};
170 PROTOCMD_DECL_SPECIAL(ctron_ether_set_mode) =
171     {CTRON_ETHER_SET_MODE, 0, {0,0}, 0};
172 
173 struct se_softc {
174 	device_t sc_dev;
175 	struct ethercom sc_ethercom;	/* Ethernet common part */
176 	struct scsipi_periph *sc_periph;/* contains our targ, lun, etc. */
177 
178 	struct callout sc_ifstart_ch;
179 	struct callout sc_recv_ch;
180 
181 	char *sc_tbuf;
182 	char *sc_rbuf;
183 	int protos;
184 #define PROTO_IP	0x01
185 #define PROTO_ARP	0x02
186 #define PROTO_REVARP	0x04
187 #define PROTO_AT	0x08
188 #define PROTO_AARP	0x10
189 	int sc_debug;
190 	int sc_flags;
191 #define SE_NEED_RECV 0x1
192 	int sc_last_timeout;
193 	int sc_enabled;
194 };
195 
196 static int	sematch(device_t, cfdata_t, void *);
197 static void	seattach(device_t, device_t, void *);
198 
199 static void	se_ifstart(struct ifnet *);
200 static void	sestart(struct scsipi_periph *);
201 
202 static void	sedone(struct scsipi_xfer *, int);
203 static int	se_ioctl(struct ifnet *, u_long, void *);
204 static void	sewatchdog(struct ifnet *);
205 
206 #if 0
207 static inline u_int16_t ether_cmp(void *, void *);
208 #endif
209 static void	se_recv(void *);
210 static struct mbuf *se_get(struct se_softc *, char *, int);
211 static int	se_read(struct se_softc *, char *, int);
212 static int	se_reset(struct se_softc *);
213 static int	se_add_proto(struct se_softc *, int);
214 static int	se_get_addr(struct se_softc *, u_int8_t *);
215 static int	se_set_media(struct se_softc *, int);
216 static int	se_init(struct se_softc *);
217 static int	se_set_multi(struct se_softc *, u_int8_t *);
218 static int	se_remove_multi(struct se_softc *, u_int8_t *);
219 #if 0
220 static int	sc_set_all_multi(struct se_softc *, int);
221 #endif
222 static void	se_stop(struct se_softc *);
223 static inline int se_scsipi_cmd(struct scsipi_periph *periph,
224 			struct scsipi_generic *scsipi_cmd,
225 			int cmdlen, u_char *data_addr, int datalen,
226 			int retries, int timeout, struct buf *bp,
227 			int flags);
228 static void	se_delayed_ifstart(void *);
229 static int	se_set_mode(struct se_softc *, int, int);
230 
231 int	se_enable(struct se_softc *);
232 void	se_disable(struct se_softc *);
233 
234 CFATTACH_DECL_NEW(se, sizeof(struct se_softc),
235     sematch, seattach, NULL, NULL);
236 
237 extern struct cfdriver se_cd;
238 
239 dev_type_open(seopen);
240 dev_type_close(seclose);
241 dev_type_ioctl(seioctl);
242 
243 const struct cdevsw se_cdevsw = {
244 	.d_open = seopen,
245 	.d_close = seclose,
246 	.d_read = noread,
247 	.d_write = nowrite,
248 	.d_ioctl = seioctl,
249 	.d_stop = nostop,
250 	.d_tty = notty,
251 	.d_poll = nopoll,
252 	.d_mmap = nommap,
253 	.d_kqfilter = nokqfilter,
254 	.d_discard = nodiscard,
255 	.d_flag = D_OTHER
256 };
257 
258 const struct scsipi_periphsw se_switch = {
259 	NULL,			/* Use default error handler */
260 	sestart,		/* have a queue, served by this */
261 	NULL,			/* have no async handler */
262 	sedone,			/* deal with stats at interrupt time */
263 };
264 
265 const struct scsipi_inquiry_pattern se_patterns[] = {
266 	{T_PROCESSOR, T_FIXED,
267 	 "CABLETRN",         "EA412",                 ""},
268 	{T_PROCESSOR, T_FIXED,
269 	 "Cabletrn",         "EA412",                 ""},
270 };
271 
272 #if 0
273 /*
274  * Compare two Ether/802 addresses for equality, inlined and
275  * unrolled for speed.
276  * Note: use this like memcmp()
277  */
278 static inline u_int16_t
279 ether_cmp(void *one, void *two)
280 {
281 	u_int16_t *a = (u_int16_t *) one;
282 	u_int16_t *b = (u_int16_t *) two;
283 	u_int16_t diff;
284 
285 	diff = (a[0] - b[0]) | (a[1] - b[1]) | (a[2] - b[2]);
286 
287 	return (diff);
288 }
289 
290 #define ETHER_CMP	ether_cmp
291 #endif
292 
293 static int
294 sematch(device_t parent, cfdata_t match, void *aux)
295 {
296 	struct scsipibus_attach_args *sa = aux;
297 	int priority;
298 
299 	(void)scsipi_inqmatch(&sa->sa_inqbuf,
300 	    se_patterns, sizeof(se_patterns) / sizeof(se_patterns[0]),
301 	    sizeof(se_patterns[0]), &priority);
302 	return (priority);
303 }
304 
305 /*
306  * The routine called by the low level scsi routine when it discovers
307  * a device suitable for this driver.
308  */
309 static void
310 seattach(device_t parent, device_t self, void *aux)
311 {
312 	struct se_softc *sc = device_private(self);
313 	struct scsipibus_attach_args *sa = aux;
314 	struct scsipi_periph *periph = sa->sa_periph;
315 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
316 	u_int8_t myaddr[ETHER_ADDR_LEN];
317 	int rv;
318 
319 	sc->sc_dev = self;
320 
321 	printf("\n");
322 	SC_DEBUG(periph, SCSIPI_DB2, ("seattach: "));
323 
324 	callout_init(&sc->sc_ifstart_ch, 0);
325 	callout_init(&sc->sc_recv_ch, 0);
326 
327 
328 	/*
329 	 * Store information needed to contact our base driver
330 	 */
331 	sc->sc_periph = periph;
332 	periph->periph_dev = sc->sc_dev;
333 	periph->periph_switch = &se_switch;
334 
335 	/* XXX increase openings? */
336 
337 	se_poll = (SE_POLL * hz) / 1000;
338 	se_poll = se_poll? se_poll: 1;
339 	se_poll0 = (SE_POLL0 * hz) / 1000;
340 	se_poll0 = se_poll0? se_poll0: 1;
341 
342 	/*
343 	 * Initialize and attach a buffer
344 	 */
345 	sc->sc_tbuf = malloc(ETHERMTU + sizeof(struct ether_header),
346 			     M_DEVBUF, M_NOWAIT);
347 	if (sc->sc_tbuf == 0)
348 		panic("seattach: can't allocate transmit buffer");
349 
350 	sc->sc_rbuf = malloc(RBUF_LEN, M_DEVBUF, M_NOWAIT);/* A Guess */
351 	if (sc->sc_rbuf == 0)
352 		panic("seattach: can't allocate receive buffer");
353 
354 	se_get_addr(sc, myaddr);
355 
356 	/* Initialize ifnet structure. */
357 	strlcpy(ifp->if_xname, device_xname(sc->sc_dev), sizeof(ifp->if_xname));
358 	ifp->if_softc = sc;
359 	ifp->if_start = se_ifstart;
360 	ifp->if_ioctl = se_ioctl;
361 	ifp->if_watchdog = sewatchdog;
362 	ifp->if_flags =
363 	    IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS | IFF_MULTICAST;
364 	IFQ_SET_READY(&ifp->if_snd);
365 
366 	/* Attach the interface. */
367 	rv = if_initialize(ifp);
368 	if (rv != 0) {
369 		free(sc->sc_tbuf, M_DEVBUF);
370 		callout_destroy(&sc->sc_ifstart_ch);
371 		callout_destroy(&sc->sc_recv_ch);
372 		return; /* Error */
373 	}
374 	ether_ifattach(ifp, myaddr);
375 	if_register(ifp);
376 }
377 
378 
379 static inline int
380 se_scsipi_cmd(struct scsipi_periph *periph, struct scsipi_generic *cmd,
381     int cmdlen, u_char *data_addr, int datalen, int retries, int timeout,
382     struct buf *bp, int flags)
383 {
384 	int error;
385 
386 	error = scsipi_command(periph, cmd, cmdlen, data_addr,
387 	    datalen, retries, timeout, bp, flags);
388 	return (error);
389 }
390 
391 /* Start routine for calling from scsi sub system */
392 static void
393 sestart(struct scsipi_periph *periph)
394 {
395 	struct se_softc *sc = device_private(periph->periph_dev);
396 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
397 	int s = splnet();
398 
399 	se_ifstart(ifp);
400 	(void) splx(s);
401 }
402 
403 static void
404 se_delayed_ifstart(void *v)
405 {
406 	struct ifnet *ifp = v;
407 	struct se_softc *sc = ifp->if_softc;
408 	int s;
409 
410 	s = splnet();
411 	if (sc->sc_enabled) {
412 		ifp->if_flags &= ~IFF_OACTIVE;
413 		se_ifstart(ifp);
414 	}
415 	splx(s);
416 }
417 
418 /*
419  * Start transmission on the interface.
420  * Always called at splnet().
421  */
422 static void
423 se_ifstart(struct ifnet *ifp)
424 {
425 	struct se_softc *sc = ifp->if_softc;
426 	struct scsi_ctron_ether_generic send_cmd;
427 	struct mbuf *m, *m0;
428 	int len, error;
429 	u_char *cp;
430 
431 	/* Don't transmit if interface is busy or not running */
432 	if ((ifp->if_flags & (IFF_RUNNING|IFF_OACTIVE)) != IFF_RUNNING)
433 		return;
434 
435 	IFQ_DEQUEUE(&ifp->if_snd, m0);
436 	if (m0 == 0)
437 		return;
438 	/* If BPF is listening on this interface, let it see the
439 	 * packet before we commit it to the wire.
440 	 */
441 	bpf_mtap(ifp, m0);
442 
443 	/* We need to use m->m_pkthdr.len, so require the header */
444 	if ((m0->m_flags & M_PKTHDR) == 0)
445 		panic("ctscstart: no header mbuf");
446 	len = m0->m_pkthdr.len;
447 
448 	/* Mark the interface busy. */
449 	ifp->if_flags |= IFF_OACTIVE;
450 
451 	/* Chain; copy into linear buffer we allocated at attach time. */
452 	cp = sc->sc_tbuf;
453 	for (m = m0; m != NULL; ) {
454 		memcpy(cp, mtod(m, u_char *), m->m_len);
455 		cp += m->m_len;
456 		m = m0 = m_free(m);
457 	}
458 	if (len < SEMINSIZE) {
459 #ifdef SEDEBUG
460 		if (sc->sc_debug)
461 			printf("se: packet size %d (%zu) < %d\n", len,
462 			    cp - (u_char *)sc->sc_tbuf, SEMINSIZE);
463 #endif
464 		memset(cp, 0, SEMINSIZE - len);
465 		len = SEMINSIZE;
466 	}
467 
468 	/* Fill out SCSI command. */
469 	PROTOCMD(ctron_ether_send, send_cmd);
470 	_lto2b(len, send_cmd.length);
471 
472 	/* Send command to device. */
473 	error = se_scsipi_cmd(sc->sc_periph,
474 	    (void *)&send_cmd, sizeof(send_cmd),
475 	    sc->sc_tbuf, len, SERETRIES,
476 	    SETIMEOUT, NULL, XS_CTL_NOSLEEP|XS_CTL_ASYNC|XS_CTL_DATA_OUT);
477 	if (error) {
478 		aprint_error_dev(sc->sc_dev, "not queued, error %d\n", error);
479 		ifp->if_oerrors++;
480 		ifp->if_flags &= ~IFF_OACTIVE;
481 	} else
482 		ifp->if_opackets++;
483 	if (sc->sc_flags & SE_NEED_RECV) {
484 		sc->sc_flags &= ~SE_NEED_RECV;
485 		se_recv((void *) sc);
486 	}
487 }
488 
489 
490 /*
491  * Called from the scsibus layer via our scsi device switch.
492  */
493 static void
494 sedone(struct scsipi_xfer *xs, int error)
495 {
496 	struct se_softc *sc = device_private(xs->xs_periph->periph_dev);
497 	struct scsipi_generic *cmd = xs->cmd;
498 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
499 	int s;
500 
501 	s = splnet();
502 	if(IS_SEND(cmd)) {
503 		if (xs->error == XS_BUSY) {
504 			printf("se: busy, retry txmit\n");
505 			callout_reset(&sc->sc_ifstart_ch, hz,
506 			    se_delayed_ifstart, ifp);
507 		} else {
508 			ifp->if_flags &= ~IFF_OACTIVE;
509 			/* the generic scsipi_done will call
510 			 * sestart (through scsipi_free_xs).
511 			 */
512 		}
513 	} else if(IS_RECV(cmd)) {
514 		/* RECV complete */
515 		/* pass data up. reschedule a recv */
516 		/* scsipi_free_xs will call start. Harmless. */
517 		if (error) {
518 			/* Reschedule after a delay */
519 			callout_reset(&sc->sc_recv_ch, se_poll,
520 			    se_recv, (void *)sc);
521 		} else {
522 			int n, ntimeo;
523 			n = se_read(sc, xs->data, xs->datalen - xs->resid);
524 			if (n > se_max_received)
525 				se_max_received = n;
526 			if (n == 0)
527 				ntimeo = se_poll;
528 			else if (n >= RDATA_MAX)
529 				ntimeo = se_poll0;
530 			else {
531 				ntimeo = sc->sc_last_timeout;
532 				ntimeo = (ntimeo * RDATA_GOAL)/n;
533 				ntimeo = (ntimeo < se_poll0?
534 					  se_poll0: ntimeo);
535 				ntimeo = (ntimeo > se_poll?
536 					  se_poll: ntimeo);
537 			}
538 			sc->sc_last_timeout = ntimeo;
539 			if (ntimeo == se_poll0  &&
540 			    IFQ_IS_EMPTY(&ifp->if_snd) == 0)
541 				/* Output is pending. Do next recv
542 				 * after the next send.  */
543 				sc->sc_flags |= SE_NEED_RECV;
544 			else {
545 				callout_reset(&sc->sc_recv_ch, ntimeo,
546 				    se_recv, (void *)sc);
547   			}
548 		}
549 	}
550 	splx(s);
551 }
552 
553 static void
554 se_recv(void *v)
555 {
556 	/* do a recv command */
557 	struct se_softc *sc = (struct se_softc *) v;
558 	struct scsi_ctron_ether_recv recv_cmd;
559 	int error;
560 
561 	if (sc->sc_enabled == 0)
562 		return;
563 
564 	PROTOCMD(ctron_ether_recv, recv_cmd);
565 
566 	error = se_scsipi_cmd(sc->sc_periph,
567 	    (void *)&recv_cmd, sizeof(recv_cmd),
568 	    sc->sc_rbuf, RBUF_LEN, SERETRIES, SETIMEOUT, NULL,
569 	    XS_CTL_NOSLEEP|XS_CTL_ASYNC|XS_CTL_DATA_IN);
570 	if (error)
571 		callout_reset(&sc->sc_recv_ch, se_poll, se_recv, (void *)sc);
572 }
573 
574 /*
575  * We copy the data into mbufs.  When full cluster sized units are present
576  * we copy into clusters.
577  */
578 static struct mbuf *
579 se_get(struct se_softc *sc, char *data, int totlen)
580 {
581 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
582 	struct mbuf *m, *m0, *newm;
583 	int len;
584 
585 	MGETHDR(m0, M_DONTWAIT, MT_DATA);
586 	if (m0 == 0)
587 		return (0);
588 	m_set_rcvif(m0, ifp);
589 	m0->m_pkthdr.len = totlen;
590 	len = MHLEN;
591 	m = m0;
592 
593 	while (totlen > 0) {
594 		if (totlen >= MINCLSIZE) {
595 			MCLGET(m, M_DONTWAIT);
596 			if ((m->m_flags & M_EXT) == 0)
597 				goto bad;
598 			len = MCLBYTES;
599 		}
600 
601 		if (m == m0) {
602 			char *newdata = (char *)
603 			    ALIGN(m->m_data + sizeof(struct ether_header)) -
604 			    sizeof(struct ether_header);
605 			len -= newdata - m->m_data;
606 			m->m_data = newdata;
607 		}
608 
609 		m->m_len = len = min(totlen, len);
610 		memcpy(mtod(m, void *), data, len);
611 		data += len;
612 
613 		totlen -= len;
614 		if (totlen > 0) {
615 			MGET(newm, M_DONTWAIT, MT_DATA);
616 			if (newm == 0)
617 				goto bad;
618 			len = MLEN;
619 			m = m->m_next = newm;
620 		}
621 	}
622 
623 	return (m0);
624 
625 bad:
626 	m_freem(m0);
627 	return (0);
628 }
629 
630 /*
631  * Pass packets to higher levels.
632  */
633 static int
634 se_read(struct se_softc *sc, char *data, int datalen)
635 {
636 	struct mbuf *m;
637 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
638 	int n;
639 
640 	n = 0;
641 	while (datalen >= 2) {
642 		int len = _2btol(data);
643 		data += 2;
644 		datalen -= 2;
645 
646 		if (len == 0)
647 			break;
648 #ifdef SEDEBUG
649 		if (sc->sc_debug) {
650 			printf("se_read: datalen = %d, packetlen = %d, proto = 0x%04x\n", datalen, len,
651 			 ntohs(((struct ether_header *)data)->ether_type));
652 		}
653 #endif
654 		if (len <= sizeof(struct ether_header) ||
655 		    len > MAX_SNAP) {
656 #ifdef SEDEBUG
657 			printf("%s: invalid packet size %d; dropping\n",
658 			       device_xname(sc->sc_dev), len);
659 #endif
660 			ifp->if_ierrors++;
661 			goto next_packet;
662 		}
663 
664 		/* Don't need crc. Must keep ether header for BPF */
665 		m = se_get(sc, data, len - ETHER_CRC);
666 		if (m == 0) {
667 #ifdef SEDEBUG
668 			if (sc->sc_debug)
669 				printf("se_read: se_get returned null\n");
670 #endif
671 			ifp->if_ierrors++;
672 			goto next_packet;
673 		}
674 		if ((ifp->if_flags & IFF_PROMISC) != 0) {
675 			m_adj(m, SE_PREFIX);
676 		}
677 
678 		/* Pass the packet up. */
679 		if_input(ifp, m);
680 
681 	next_packet:
682 		data += len;
683 		datalen -= len;
684 		n++;
685 	}
686 	return (n);
687 }
688 
689 
690 static void
691 sewatchdog(struct ifnet *ifp)
692 {
693 	struct se_softc *sc = ifp->if_softc;
694 
695 	log(LOG_ERR, "%s: device timeout\n", device_xname(sc->sc_dev));
696 	++ifp->if_oerrors;
697 
698 	se_reset(sc);
699 }
700 
701 static int
702 se_reset(struct se_softc *sc)
703 {
704 	int error;
705 	int s = splnet();
706 #if 0
707 	/* Maybe we don't *really* want to reset the entire bus
708 	 * because the ctron isn't working. We would like to send a
709 	 * "BUS DEVICE RESET" message, but don't think the ctron
710 	 * understands it.
711 	 */
712 	error = se_scsipi_cmd(sc->sc_periph, 0, 0, 0, 0, SERETRIES, 2000, NULL,
713 	    XS_CTL_RESET);
714 #endif
715 	error = se_init(sc);
716 	splx(s);
717 	return (error);
718 }
719 
720 static int
721 se_add_proto(struct se_softc *sc, int proto)
722 {
723 	int error;
724 	struct scsi_ctron_ether_generic add_proto_cmd;
725 	u_int8_t data[2];
726 	_lto2b(proto, data);
727 #ifdef SEDEBUG
728 	if (sc->sc_debug)
729 		printf("se: adding proto 0x%02x%02x\n", data[0], data[1]);
730 #endif
731 
732 	PROTOCMD(ctron_ether_add_proto, add_proto_cmd);
733 	_lto2b(sizeof(data), add_proto_cmd.length);
734 	error = se_scsipi_cmd(sc->sc_periph,
735 	    (void *)&add_proto_cmd, sizeof(add_proto_cmd),
736 	    data, sizeof(data), SERETRIES, SETIMEOUT, NULL,
737 	    XS_CTL_DATA_OUT);
738 	return (error);
739 }
740 
741 static int
742 se_get_addr(struct se_softc *sc, u_int8_t *myaddr)
743 {
744 	int error;
745 	struct scsi_ctron_ether_generic get_addr_cmd;
746 
747 	PROTOCMD(ctron_ether_get_addr, get_addr_cmd);
748 	_lto2b(ETHER_ADDR_LEN, get_addr_cmd.length);
749 	error = se_scsipi_cmd(sc->sc_periph,
750 	    (void *)&get_addr_cmd, sizeof(get_addr_cmd),
751 	    myaddr, ETHER_ADDR_LEN, SERETRIES, SETIMEOUT, NULL,
752 	    XS_CTL_DATA_IN);
753 	printf("%s: ethernet address %s\n", device_xname(sc->sc_dev),
754 	    ether_sprintf(myaddr));
755 	return (error);
756 }
757 
758 
759 static int
760 se_set_media(struct se_softc *sc, int type)
761 {
762 	int error;
763 	struct scsi_ctron_ether_generic set_media_cmd;
764 
765 	PROTOCMD(ctron_ether_set_media, set_media_cmd);
766 	set_media_cmd.byte3 = type;
767 	error = se_scsipi_cmd(sc->sc_periph,
768 	    (void *)&set_media_cmd, sizeof(set_media_cmd),
769 	    0, 0, SERETRIES, SETIMEOUT, NULL, 0);
770 	return (error);
771 }
772 
773 static int
774 se_set_mode(struct se_softc *sc, int len, int mode)
775 {
776 	int error;
777 	struct scsi_ctron_ether_set_mode set_mode_cmd;
778 
779 	PROTOCMD(ctron_ether_set_mode, set_mode_cmd);
780 	set_mode_cmd.mode = mode;
781 	_lto2b(len, set_mode_cmd.length);
782 	error = se_scsipi_cmd(sc->sc_periph,
783 	    (void *)&set_mode_cmd, sizeof(set_mode_cmd),
784 	    0, 0, SERETRIES, SETIMEOUT, NULL, 0);
785 	return (error);
786 }
787 
788 
789 static int
790 se_init(struct se_softc *sc)
791 {
792 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
793 	struct scsi_ctron_ether_generic set_addr_cmd;
794 	uint8_t enaddr[ETHER_ADDR_LEN];
795 	int error;
796 
797 	if (ifp->if_flags & IFF_PROMISC) {
798 		error = se_set_mode(sc, MAX_SNAP, 1);
799 	}
800 	else
801 		error = se_set_mode(sc, ETHERMTU + sizeof(struct ether_header),
802 		    0);
803 	if (error != 0)
804 		return (error);
805 
806 	PROTOCMD(ctron_ether_set_addr, set_addr_cmd);
807 	_lto2b(ETHER_ADDR_LEN, set_addr_cmd.length);
808 	memcpy(enaddr, CLLADDR(ifp->if_sadl), sizeof(enaddr));
809 	error = se_scsipi_cmd(sc->sc_periph,
810 	    (void *)&set_addr_cmd, sizeof(set_addr_cmd),
811 	    enaddr, ETHER_ADDR_LEN, SERETRIES, SETIMEOUT, NULL,
812 	    XS_CTL_DATA_OUT);
813 	if (error != 0)
814 		return (error);
815 
816 	if ((sc->protos & PROTO_IP) &&
817 	    (error = se_add_proto(sc, ETHERTYPE_IP)) != 0)
818 		return (error);
819 	if ((sc->protos & PROTO_ARP) &&
820 	    (error = se_add_proto(sc, ETHERTYPE_ARP)) != 0)
821 		return (error);
822 	if ((sc->protos & PROTO_REVARP) &&
823 	    (error = se_add_proto(sc, ETHERTYPE_REVARP)) != 0)
824 		return (error);
825 #ifdef NETATALK
826 	if ((sc->protos & PROTO_AT) &&
827 	    (error = se_add_proto(sc, ETHERTYPE_ATALK)) != 0)
828 		return (error);
829 	if ((sc->protos & PROTO_AARP) &&
830 	    (error = se_add_proto(sc, ETHERTYPE_AARP)) != 0)
831 		return (error);
832 #endif
833 
834 	if ((ifp->if_flags & (IFF_RUNNING|IFF_UP)) == IFF_UP) {
835 		ifp->if_flags |= IFF_RUNNING;
836 		se_recv(sc);
837 		ifp->if_flags &= ~IFF_OACTIVE;
838 		se_ifstart(ifp);
839 	}
840 	return (error);
841 }
842 
843 static int
844 se_set_multi(struct se_softc *sc, u_int8_t *addr)
845 {
846 	struct scsi_ctron_ether_generic set_multi_cmd;
847 	int error;
848 
849 	if (sc->sc_debug)
850 		printf("%s: set_set_multi: %s\n", device_xname(sc->sc_dev),
851 		    ether_sprintf(addr));
852 
853 	PROTOCMD(ctron_ether_set_multi, set_multi_cmd);
854 	_lto2b(sizeof(addr), set_multi_cmd.length);
855 	/* XXX sizeof(addr) is the size of the pointer.  Surely it
856 	 * is too small? --dyoung
857 	 */
858 	error = se_scsipi_cmd(sc->sc_periph,
859 	    (void *)&set_multi_cmd, sizeof(set_multi_cmd),
860 	    addr, sizeof(addr), SERETRIES, SETIMEOUT, NULL, XS_CTL_DATA_OUT);
861 	return (error);
862 }
863 
864 static int
865 se_remove_multi(struct se_softc *sc, u_int8_t *addr)
866 {
867 	struct scsi_ctron_ether_generic remove_multi_cmd;
868 	int error;
869 
870 	if (sc->sc_debug)
871 		printf("%s: se_remove_multi: %s\n", device_xname(sc->sc_dev),
872 		    ether_sprintf(addr));
873 
874 	PROTOCMD(ctron_ether_remove_multi, remove_multi_cmd);
875 	_lto2b(sizeof(addr), remove_multi_cmd.length);
876 	/* XXX sizeof(addr) is the size of the pointer.  Surely it
877 	 * is too small? --dyoung
878 	 */
879 	error = se_scsipi_cmd(sc->sc_periph,
880 	    (void *)&remove_multi_cmd, sizeof(remove_multi_cmd),
881 	    addr, sizeof(addr), SERETRIES, SETIMEOUT, NULL, XS_CTL_DATA_OUT);
882 	return (error);
883 }
884 
885 #if 0	/* not used  --thorpej */
886 static int
887 sc_set_all_multi(struct se_softc *sc, int set)
888 {
889 	int error = 0;
890 	u_int8_t *addr;
891 	struct ethercom *ac = &sc->sc_ethercom;
892 	struct ether_multi *enm;
893 	struct ether_multistep step;
894 
895 	ETHER_FIRST_MULTI(step, ac, enm);
896 	while (enm != NULL) {
897 		if (ETHER_CMP(enm->enm_addrlo, enm->enm_addrhi)) {
898 			/*
899 			 * We must listen to a range of multicast addresses.
900 			 * For now, just accept all multicasts, rather than
901 			 * trying to set only those filter bits needed to match
902 			 * the range.  (At this time, the only use of address
903 			 * ranges is for IP multicast routing, for which the
904 			 * range is big enough to require all bits set.)
905 			 */
906 			/* We have no way of adding a range to this device.
907 			 * stepping through all addresses in the range is
908 			 * typically not possible. The only real alternative
909 			 * is to go into promicuous mode and filter by hand.
910 			 */
911 			return (ENODEV);
912 
913 		}
914 
915 		addr = enm->enm_addrlo;
916 		if ((error = set ? se_set_multi(sc, addr) :
917 		    se_remove_multi(sc, addr)) != 0)
918 			return (error);
919 		ETHER_NEXT_MULTI(step, enm);
920 	}
921 	return (error);
922 }
923 #endif /* not used */
924 
925 static void
926 se_stop(struct se_softc *sc)
927 {
928 
929 	/* Don't schedule any reads */
930 	callout_stop(&sc->sc_recv_ch);
931 
932 	/* How can we abort any scsi cmds in progress? */
933 }
934 
935 
936 /*
937  * Process an ioctl request.
938  */
939 static int
940 se_ioctl(struct ifnet *ifp, u_long cmd, void *data)
941 {
942 	struct se_softc *sc = ifp->if_softc;
943 	struct ifaddr *ifa = (struct ifaddr *)data;
944 	struct ifreq *ifr = (struct ifreq *)data;
945 	struct sockaddr *sa;
946 	int s, error = 0;
947 
948 	s = splnet();
949 
950 	switch (cmd) {
951 
952 	case SIOCINITIFADDR:
953 		if ((error = se_enable(sc)) != 0)
954 			break;
955 		ifp->if_flags |= IFF_UP;
956 
957 		if ((error = se_set_media(sc, CMEDIA_AUTOSENSE)) != 0)
958 			break;
959 
960 		switch (ifa->ifa_addr->sa_family) {
961 #ifdef INET
962 		case AF_INET:
963 			sc->protos |= (PROTO_IP | PROTO_ARP | PROTO_REVARP);
964 			if ((error = se_init(sc)) != 0)
965 				break;
966 			arp_ifinit(ifp, ifa);
967 			break;
968 #endif
969 #ifdef NETATALK
970 		case AF_APPLETALK:
971 			sc->protos |= (PROTO_AT | PROTO_AARP);
972 			if ((error = se_init(sc)) != 0)
973 				break;
974 			break;
975 #endif
976 		default:
977 			error = se_init(sc);
978 			break;
979 		}
980 		break;
981 
982 
983 	case SIOCSIFFLAGS:
984 		if ((error = ifioctl_common(ifp, cmd, data)) != 0)
985 			break;
986 		/* XXX re-use ether_ioctl() */
987 		switch (ifp->if_flags & (IFF_UP|IFF_RUNNING)) {
988 		case IFF_RUNNING:
989 			/*
990 			 * If interface is marked down and it is running, then
991 			 * stop it.
992 			 */
993 			se_stop(sc);
994 			ifp->if_flags &= ~IFF_RUNNING;
995 			se_disable(sc);
996 			break;
997 		case IFF_UP:
998 			/*
999 			 * If interface is marked up and it is stopped, then
1000 			 * start it.
1001 			 */
1002 			if ((error = se_enable(sc)) != 0)
1003 				break;
1004 			error = se_init(sc);
1005 			break;
1006 		default:
1007 			/*
1008 			 * Reset the interface to pick up changes in any other
1009 			 * flags that affect hardware registers.
1010 			 */
1011 			if (sc->sc_enabled)
1012 				error = se_init(sc);
1013 			break;
1014 		}
1015 #ifdef SEDEBUG
1016 		if (ifp->if_flags & IFF_DEBUG)
1017 			sc->sc_debug = 1;
1018 		else
1019 			sc->sc_debug = 0;
1020 #endif
1021 		break;
1022 
1023 	case SIOCADDMULTI:
1024 	case SIOCDELMULTI:
1025 		sa = sockaddr_dup(ifreq_getaddr(cmd, ifr), M_NOWAIT);
1026 		if (sa == NULL) {
1027 			error = ENOBUFS;
1028 			break;
1029 		}
1030 		if ((error = ether_ioctl(ifp, cmd, data)) == ENETRESET) {
1031 			if (ifp->if_flags & IFF_RUNNING) {
1032 				error = (cmd == SIOCADDMULTI) ?
1033 				   se_set_multi(sc, sa->sa_data) :
1034 				   se_remove_multi(sc, sa->sa_data);
1035 			} else
1036 				error = 0;
1037 		}
1038 		sockaddr_free(sa);
1039 		break;
1040 
1041 	default:
1042 
1043 		error = ether_ioctl(ifp, cmd, data);
1044 		break;
1045 	}
1046 
1047 	splx(s);
1048 	return (error);
1049 }
1050 
1051 /*
1052  * Enable the network interface.
1053  */
1054 int
1055 se_enable(struct se_softc *sc)
1056 {
1057 	struct scsipi_periph *periph = sc->sc_periph;
1058 	struct scsipi_adapter *adapt = periph->periph_channel->chan_adapter;
1059 	int error = 0;
1060 
1061 	if (sc->sc_enabled == 0 &&
1062 	    (error = scsipi_adapter_addref(adapt)) == 0)
1063 		sc->sc_enabled = 1;
1064 	else
1065 		aprint_error_dev(sc->sc_dev, "device enable failed\n");
1066 
1067 	return (error);
1068 }
1069 
1070 /*
1071  * Disable the network interface.
1072  */
1073 void
1074 se_disable(struct se_softc *sc)
1075 {
1076 	struct scsipi_periph *periph = sc->sc_periph;
1077 	struct scsipi_adapter *adapt = periph->periph_channel->chan_adapter;
1078 
1079 	if (sc->sc_enabled != 0) {
1080 		scsipi_adapter_delref(adapt);
1081 		sc->sc_enabled = 0;
1082 	}
1083 }
1084 
1085 #define	SEUNIT(z)	(minor(z))
1086 /*
1087  * open the device.
1088  */
1089 int
1090 seopen(dev_t dev, int flag, int fmt, struct lwp *l)
1091 {
1092 	int unit, error;
1093 	struct se_softc *sc;
1094 	struct scsipi_periph *periph;
1095 	struct scsipi_adapter *adapt;
1096 
1097 	unit = SEUNIT(dev);
1098 	sc = device_lookup_private(&se_cd, unit);
1099 	if (sc == NULL)
1100 		return (ENXIO);
1101 
1102 	periph = sc->sc_periph;
1103 	adapt = periph->periph_channel->chan_adapter;
1104 
1105 	if ((error = scsipi_adapter_addref(adapt)) != 0)
1106 		return (error);
1107 
1108 	SC_DEBUG(periph, SCSIPI_DB1,
1109 	    ("scopen: dev=0x%"PRIx64" (unit %d (of %d))\n", dev, unit,
1110 	    se_cd.cd_ndevs));
1111 
1112 	periph->periph_flags |= PERIPH_OPEN;
1113 
1114 	SC_DEBUG(periph, SCSIPI_DB3, ("open complete\n"));
1115 	return (0);
1116 }
1117 
1118 /*
1119  * close the device.. only called if we are the LAST
1120  * occurence of an open device
1121  */
1122 int
1123 seclose(dev_t dev, int flag, int fmt, struct lwp *l)
1124 {
1125 	struct se_softc *sc = device_lookup_private(&se_cd, SEUNIT(dev));
1126 	struct scsipi_periph *periph = sc->sc_periph;
1127 	struct scsipi_adapter *adapt = periph->periph_channel->chan_adapter;
1128 
1129 	SC_DEBUG(sc->sc_periph, SCSIPI_DB1, ("closing\n"));
1130 
1131 	scsipi_wait_drain(periph);
1132 
1133 	scsipi_adapter_delref(adapt);
1134 	periph->periph_flags &= ~PERIPH_OPEN;
1135 
1136 	return (0);
1137 }
1138 
1139 /*
1140  * Perform special action on behalf of the user
1141  * Only does generic scsi ioctls.
1142  */
1143 int
1144 seioctl(dev_t dev, u_long cmd, void *addr, int flag, struct lwp *l)
1145 {
1146 	struct se_softc *sc = device_lookup_private(&se_cd, SEUNIT(dev));
1147 
1148 	return (scsipi_do_ioctl(sc->sc_periph, dev, cmd, addr, flag, l));
1149 }
1150