1 /* $NetBSD: rmpproto.c,v 1.13 2003/08/07 11:25:41 agc Exp $ */
4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
8 * the Center for Software Science of the University of Utah Computer
9 * Science Department. CSS requests users of this software to return
10 * to css-dist@cs.utah.edu any improvements that they make and grant
11 * CSS redistribution rights.
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its contributors
22 * may be used to endorse or promote products derived from this software
23 * without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * from: @(#)rmpproto.c 8.1 (Berkeley) 6/4/93
39 * From: Utah Hdr: rmpproto.c 3.1 92/07/06
40 * Author: Jeff Forys, University of Utah CSS
44 * Copyright (c) 1988, 1992 The University of Utah and the Center
45 * for Software Science (CSS).
47 * This code is derived from software contributed to Berkeley by
48 * the Center for Software Science of the University of Utah Computer
49 * Science Department. CSS requests users of this software to return
50 * to css-dist@cs.utah.edu any improvements that they make and grant
51 * CSS redistribution rights.
53 * Redistribution and use in source and binary forms, with or without
54 * modification, are permitted provided that the following conditions
56 * 1. Redistributions of source code must retain the above copyright
57 * notice, this list of conditions and the following disclaimer.
58 * 2. Redistributions in binary form must reproduce the above copyright
59 * notice, this list of conditions and the following disclaimer in the
60 * documentation and/or other materials provided with the distribution.
61 * 3. All advertising materials mentioning features or use of this software
62 * must display the following acknowledgement:
63 * This product includes software developed by the University of
64 * California, Berkeley and its contributors.
65 * 4. Neither the name of the University nor the names of its contributors
66 * may be used to endorse or promote products derived from this software
67 * without specific prior written permission.
69 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
70 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
71 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
72 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
73 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
74 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
75 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
76 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
77 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
78 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
81 * from: @(#)rmpproto.c 8.1 (Berkeley) 6/4/93
83 * From: Utah Hdr: rmpproto.c 3.1 92/07/06
84 * Author: Jeff Forys, University of Utah CSS
87 #include <sys/cdefs.h>
90 static char sccsid
[] = "@(#)rmpproto.c 8.1 (Berkeley) 6/4/93";
92 __RCSID("$NetBSD: rmpproto.c,v 1.13 2003/08/07 11:25:41 agc Exp $");
96 #include <sys/param.h>
108 ** ProcessPacket -- determine packet type and do what's required.
110 ** An RMP BOOT packet has been received. Look at the type field
111 ** and process Boot Requests, Read Requests, and Boot Complete
112 ** packets. Any other type will be dropped with a warning msg.
115 ** rconn - the new connection
116 ** client - list of files available to this host
122 ** - If this is a valid boot request, it will be added to
123 ** the linked list of outstanding requests (RmpConns).
124 ** - If this is a valid boot complete, its associated
125 ** entry in RmpConns will be deleted.
126 ** - Also, unless we run out of memory, a reply will be
127 ** sent to the host that sent the packet.
130 ProcessPacket(rconn
, client
)
134 struct rmp_packet
*rmp
;
137 rmp
= &rconn
->rmp
; /* cache pointer to RMP packet */
139 switch(rmp
->r_type
) { /* do what we came here to do */
140 case RMP_BOOT_REQ
: /* boot request */
141 if ((rconnout
= NewConn(rconn
)) == NULL
)
145 * If the Session ID is 0xffff, this is a "probe"
146 * packet and we do not want to add the connection
147 * to the linked list of active connections. There
148 * are two types of probe packets, if the Sequence
149 * Number is 0 they want to know our host name, o/w
150 * they want the name of the file associated with
151 * the number spec'd by the Sequence Number.
153 * If this is an actual boot request, open the file
154 * and send a reply. If SendBootRepl() does not
155 * return 0, add the connection to the linked list
156 * of active connections, otherwise delete it since
157 * an error was encountered.
159 if (ntohs(rmp
->r_brq
.rmp_session
) == RMP_PROBESID
) {
160 if (WORDZE(rmp
->r_brq
.rmp_seqno
))
161 (void) SendServerID(rconnout
);
163 (void) SendFileNo(rmp
, rconnout
,
164 client
? client
->files
:
168 if (SendBootRepl(rmp
, rconnout
,
169 client
? client
->files
: BootFiles
))
176 case RMP_BOOT_REPL
: /* boot reply (not valid) */
177 syslog(LOG_WARNING
, "%s: sent a boot reply",
181 case RMP_READ_REQ
: /* read request */
183 * Send a portion of the boot file.
185 (void) SendReadRepl(rconn
);
188 case RMP_READ_REPL
: /* read reply (not valid) */
189 syslog(LOG_WARNING
, "%s: sent a read reply",
193 case RMP_BOOT_DONE
: /* boot complete */
195 * Remove the entry from the linked list of active
198 (void) BootDone(rconn
);
201 default: /* unknown RMP packet type */
202 syslog(LOG_WARNING
, "%s: unknown packet type (%u)",
203 EnetStr(rconn
), rmp
->r_type
);
208 ** SendServerID -- send our host name to who ever requested it.
211 ** rconn - the reply packet to be formatted.
214 ** 1 on success, 0 on failure.
223 struct rmp_packet
*rpl
;
227 rpl
= &rconn
->rmp
; /* cache ptr to RMP packet */
230 * Set up assorted fields in reply packet.
232 rpl
->r_brpl
.rmp_type
= RMP_BOOT_REPL
;
233 rpl
->r_brpl
.rmp_retcode
= RMP_E_OKAY
;
234 ZEROWORD(rpl
->r_brpl
.rmp_seqno
);
235 rpl
->r_brpl
.rmp_session
= 0;
236 rpl
->r_brpl
.rmp_version
= htons(RMP_VERSION
);
238 size
= &rpl
->r_brpl
.rmp_flnmsize
; /* ptr to length of host name */
241 * Copy our host name into the reply packet incrementing the
242 * length as we go. Stop at RMP_HOSTLEN or the first dot.
245 dst
= (char *) &rpl
->r_brpl
.rmp_flnm
;
246 for (*size
= 0; *size
< RMP_HOSTLEN
; (*size
)++) {
247 if (*src
== '.' || *src
== '\0')
252 rconn
->rmplen
= RMPBOOTSIZE(*size
); /* set packet length */
254 return(SendPacket(rconn
)); /* send packet */
258 ** SendFileNo -- send the name of a bootable file to the requester.
261 ** req - RMP BOOT packet containing the request.
262 ** rconn - the reply packet to be formatted.
263 ** filelist - list of files available to the requester.
266 ** 1 on success, 0 on failure.
272 SendFileNo(req
, rconn
, filelist
)
273 struct rmp_packet
*req
;
277 struct rmp_packet
*rpl
;
282 GETWORD(req
->r_brpl
.rmp_seqno
, i
); /* SeqNo is really FileNo */
283 rpl
= &rconn
->rmp
; /* cache ptr to RMP packet */
286 * Set up assorted fields in reply packet.
288 rpl
->r_brpl
.rmp_type
= RMP_BOOT_REPL
;
289 PUTWORD(i
, rpl
->r_brpl
.rmp_seqno
);
291 rpl
->r_brpl
.rmp_session
= 0;
292 rpl
->r_brpl
.rmp_version
= htons(RMP_VERSION
);
294 size
= &rpl
->r_brpl
.rmp_flnmsize
; /* ptr to length of filename */
295 *size
= 0; /* init length to zero */
298 * Copy the file name into the reply packet incrementing the
299 * length as we go. Stop at end of string or when RMPBOOTDATA
300 * characters have been copied. Also, set return code to
301 * indicate success or "no more files".
303 if (i
< C_MAXFILE
&& filelist
[i
] != NULL
) {
305 dst
= (char *)&rpl
->r_brpl
.rmp_flnm
;
306 for (; *src
&& *size
< RMPBOOTDATA
; (*size
)++) {
311 rpl
->r_brpl
.rmp_retcode
= RMP_E_OKAY
;
313 rpl
->r_brpl
.rmp_retcode
= RMP_E_NODFLT
;
315 rconn
->rmplen
= RMPBOOTSIZE(*size
); /* set packet length */
317 return(SendPacket(rconn
)); /* send packet */
321 ** SendBootRepl -- open boot file and respond to boot request.
324 ** req - RMP BOOT packet containing the request.
325 ** rconn - the reply packet to be formatted.
326 ** filelist - list of files available to the requester.
329 ** 1 on success, 0 on failure.
335 SendBootRepl(req
, rconn
, filelist
)
336 struct rmp_packet
*req
;
341 char *filename
, filepath
[RMPBOOTDATA
+1];
343 struct rmp_packet
*rpl
;
344 char *src
, *dst1
, *dst2
;
348 * If another connection already exists, delete it since we
349 * are obviously starting again.
351 if ((oldconn
= FindConn(rconn
)) != NULL
) {
352 syslog(LOG_WARNING
, "%s: dropping existing connection",
357 rpl
= &rconn
->rmp
; /* cache ptr to RMP packet */
360 * Set up assorted fields in reply packet.
362 rpl
->r_brpl
.rmp_type
= RMP_BOOT_REPL
;
363 COPYWORD(req
->r_brq
.rmp_seqno
, rpl
->r_brpl
.rmp_seqno
);
364 rpl
->r_brpl
.rmp_session
= htons(GenSessID());
365 rpl
->r_brpl
.rmp_version
= htons(RMP_VERSION
);
366 rpl
->r_brpl
.rmp_flnmsize
= req
->r_brq
.rmp_flnmsize
;
369 * Copy file name to `filepath' string, and into reply packet.
372 dst2
= &rpl
->r_brpl
.rmp_flnm
;
373 if (req
->r_brq
.rmp_flnmsize
)
374 src
= &req
->r_brq
.rmp_flnm
;
376 /* no file supplied, substitute the first one */
378 req
->r_brq
.rmp_flnmsize
= strlen(src
);
380 for (i
= 0; i
< req
->r_brq
.rmp_flnmsize
; i
++)
381 *dst1
++ = *dst2
++ = *src
++;
385 * If we are booting HP-UX machines, their secondary loader will
386 * ask for files like "/hp-ux". As a security measure, we do not
387 * allow boot files to lay outside the boot directory (unless they
388 * are purposely link'd out. So, make `filename' become the path-
389 * stripped file name and spoof the client into thinking that it
390 * really got what it wanted.
392 if ((filename
= strrchr(filepath
,'/')) != NULL
)
398 * Check that this is a valid boot file name.
400 for (i
= 0; i
< C_MAXFILE
&& filelist
[i
] != NULL
; i
++)
401 if (STREQN(filename
, filelist
[i
]))
405 * Invalid boot file name, set error and send reply packet.
407 rpl
->r_brpl
.rmp_retcode
= RMP_E_NOFILE
;
413 * This is a valid boot file. Open the file and save the file
414 * descriptor associated with this connection and set success
415 * indication. If the file couldnt be opened, set error:
416 * "no such file or dir" - RMP_E_NOFILE
417 * "file table overflow" - RMP_E_BUSY
418 * "too many open files" - RMP_E_BUSY
419 * anything else - RMP_E_OPENFILE
421 if ((rconn
->bootfd
= open(filename
, O_RDONLY
, 0600)) < 0) {
422 rpl
->r_brpl
.rmp_retcode
= (errno
== ENOENT
)? RMP_E_NOFILE
:
423 (errno
== EMFILE
|| errno
== ENFILE
)? RMP_E_BUSY
:
427 rpl
->r_brpl
.rmp_retcode
= RMP_E_OKAY
;
432 syslog(LOG_INFO
, "%s: request to boot %s (%s)",
433 EnetStr(rconn
), filename
, retval
? "granted": "denied");
435 rconn
->rmplen
= RMPBOOTSIZE(rpl
->r_brpl
.rmp_flnmsize
);
437 return (retval
& SendPacket(rconn
));
441 ** SendReadRepl -- send a portion of the boot file to the requester.
444 ** rconn - the reply packet to be formatted.
447 ** 1 on success, 0 on failure.
458 struct rmp_packet
*rpl
, *req
;
463 * Find the old connection. If one doesnt exist, create one only
464 * to return the error code.
466 if ((oldconn
= FindConn(rconn
)) == NULL
) {
467 if ((oldconn
= NewConn(rconn
)) == NULL
)
469 syslog(LOG_ERR
, "SendReadRepl: no active connection (%s)",
474 req
= &rconn
->rmp
; /* cache ptr to request packet */
475 rpl
= &oldconn
->rmp
; /* cache ptr to reply packet */
477 if (madeconn
) { /* no active connection above; abort */
478 rpl
->r_rrpl
.rmp_retcode
= RMP_E_ABORT
;
484 * Make sure Session ID's match.
486 if (ntohs(req
->r_rrq
.rmp_session
) !=
487 ((rpl
->r_type
== RMP_BOOT_REPL
)? ntohs(rpl
->r_brpl
.rmp_session
):
488 ntohs(rpl
->r_rrpl
.rmp_session
))) {
489 syslog(LOG_ERR
, "SendReadRepl: bad session id (%s)",
491 rpl
->r_rrpl
.rmp_retcode
= RMP_E_BADSID
;
497 * If the requester asks for more data than we can fit,
498 * silently clamp the request size down to RMPREADDATA.
500 * N.B. I do not know if this is "legal", however it seems
501 * to work. This is necessary for bpfwrite() on machines
502 * with MCLBYTES less than 1514.
504 if (ntohs(req
->r_rrq
.rmp_size
) > RMPREADDATA
)
505 req
->r_rrq
.rmp_size
= htons(RMPREADDATA
);
508 * Position read head on file according to info in request packet.
510 GETWORD(req
->r_rrq
.rmp_offset
, size
);
511 if (lseek(oldconn
->bootfd
, (off_t
)size
, SEEK_SET
) < 0) {
512 syslog(LOG_ERR
, "SendReadRepl: lseek: %m (%s)",
514 rpl
->r_rrpl
.rmp_retcode
= RMP_E_ABORT
;
520 * Read data directly into reply packet.
522 if ((size
= read(oldconn
->bootfd
, &rpl
->r_rrpl
.rmp_data
,
523 (int) ntohs(req
->r_rrq
.rmp_size
))) <= 0) {
525 syslog(LOG_ERR
, "SendReadRepl: read: %m (%s)",
527 rpl
->r_rrpl
.rmp_retcode
= RMP_E_ABORT
;
529 rpl
->r_rrpl
.rmp_retcode
= RMP_E_EOF
;
536 * Set success indication.
538 rpl
->r_rrpl
.rmp_retcode
= RMP_E_OKAY
;
542 * Set up assorted fields in reply packet.
544 rpl
->r_rrpl
.rmp_type
= RMP_READ_REPL
;
545 COPYWORD(req
->r_rrq
.rmp_offset
, rpl
->r_rrpl
.rmp_offset
);
546 rpl
->r_rrpl
.rmp_session
= req
->r_rrq
.rmp_session
;
548 oldconn
->rmplen
= RMPREADSIZE(size
); /* set size of packet */
550 retval
&= SendPacket(oldconn
); /* send packet */
552 if (madeconn
) /* clean up after ourself */
559 ** BootDone -- free up memory allocated for a connection.
562 ** rconn - incoming boot complete packet.
565 ** 1 on success, 0 on failure.
575 struct rmp_packet
*rpl
;
578 * If we cant find the connection, ignore the request.
580 if ((oldconn
= FindConn(rconn
)) == NULL
) {
581 syslog(LOG_ERR
, "BootDone: no existing connection (%s)",
586 rpl
= &oldconn
->rmp
; /* cache ptr to RMP packet */
589 * Make sure Session ID's match.
591 if (ntohs(rconn
->rmp
.r_rrq
.rmp_session
) !=
592 ((rpl
->r_type
== RMP_BOOT_REPL
)? ntohs(rpl
->r_brpl
.rmp_session
):
593 ntohs(rpl
->r_rrpl
.rmp_session
))) {
594 syslog(LOG_ERR
, "BootDone: bad session id (%s)",
599 RemoveConn(oldconn
); /* remove connection */
601 syslog(LOG_INFO
, "%s: boot complete", EnetStr(rconn
));
607 ** SendPacket -- send an RMP packet to a remote host.
610 ** rconn - packet to be sent.
613 ** 1 on success, 0 on failure.
623 * Set Ethernet Destination address to Source (BPF and the enet
624 * driver will take care of getting our source address set).
626 memmove((char *)&rconn
->rmp
.hp_hdr
.daddr
[0],
627 (char *)&rconn
->rmp
.hp_hdr
.saddr
[0], RMP_ADDRLEN
);
628 rconn
->rmp
.hp_hdr
.len
= htons(rconn
->rmplen
- sizeof(struct hp_hdr
));
631 * Reverse 802.2/HP Extended Source & Destination Access Pts.
633 rconn
->rmp
.hp_llc
.dxsap
= htons(HPEXT_SXSAP
);
634 rconn
->rmp
.hp_llc
.sxsap
= htons(HPEXT_DXSAP
);
637 * Last time this connection was active.
639 (void) gettimeofday(&rconn
->tstamp
, (struct timezone
*)0);
641 if (DbgFp
!= NULL
) /* display packet */
642 DispPkt(rconn
,DIR_SENT
);
645 * Send RMP packet to remote host.
647 return(BpfWrite(rconn
));