2 * Copyright (c) 1998 Brian Somers <brian@Awfulhak.org>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 #include <sys/types.h>
31 #include <netinet/in_systm.h>
32 #include <sys/socket.h>
34 #include <netinet/in.h>
35 #include <netinet/ip.h>
49 #include "throughput.h"
52 #include "descriptor.h"
61 #include "slcompress.h"
72 static void Despatch(struct bundle
*, struct link
*, struct mbuf
*, u_short
);
75 link_AddInOctets(struct link
*l
, int n
)
77 if (l
->stats
.gather
) {
78 throughput_addin(&l
->stats
.total
, n
);
80 throughput_addin(l
->stats
.parent
, n
);
85 link_AddOutOctets(struct link
*l
, int n
)
87 if (l
->stats
.gather
) {
88 throughput_addout(&l
->stats
.total
, n
);
90 throughput_addout(l
->stats
.parent
, n
);
95 link_SequenceQueue(struct link
*l
)
97 struct mqueue
*queue
, *highest
;
99 log_Printf(LogDEBUG
, "link_SequenceQueue\n");
101 highest
= LINK_HIGHQ(l
);
102 for (queue
= l
->Queue
; queue
< highest
; queue
++)
104 m_enqueue(highest
, m_dequeue(queue
));
108 link_DeleteQueue(struct link
*l
)
110 struct mqueue
*queue
, *highest
;
112 highest
= LINK_HIGHQ(l
);
113 for (queue
= l
->Queue
; queue
<= highest
; queue
++)
115 m_freem(m_dequeue(queue
));
119 link_QueueLen(struct link
*l
)
124 for (i
= 0, len
= 0; i
< LINK_QUEUES(l
); i
++)
125 len
+= l
->Queue
[i
].len
;
131 link_QueueBytes(struct link
*l
)
138 for (i
= 0, len
= 0; i
< LINK_QUEUES(l
); i
++) {
139 len
= l
->Queue
[i
].len
;
142 bytes
+= m_length(m
);
151 link_PendingLowPriorityData(struct link
*l
, size_t *pkts
, size_t *octets
)
153 struct mqueue
*queue
, *highest
;
158 * This is all rfc1989 stuff... because our LQR packet is going to bypass
159 * everything that's not in the highest priority queue, we must be able to
160 * subtract that data from our outgoing packet/octet counts. However,
161 * we've already async-encoded our data at this point, but the async
162 * encodings MUSTn't be a part of the LQR-reported payload :( So, we have
163 * the async layer record how much it's padded the packet in the mbuf's
164 * priv field, and when we calculate our outgoing LQR values we subtract
165 * this value for each packet from the octet count sent.
168 highest
= LINK_HIGHQ(l
);
170 for (queue
= l
->Queue
; queue
< highest
; queue
++) {
173 for (m
= queue
->top
; len
--; m
= m
->m_nextpkt
)
174 *octets
+= m_length(m
) - m
->priv
;
179 link_Dequeue(struct link
*l
)
184 for (bp
= NULL
, pri
= LINK_QUEUES(l
) - 1; pri
>= 0; pri
--)
185 if (l
->Queue
[pri
].len
) {
186 bp
= m_dequeue(l
->Queue
+ pri
);
187 log_Printf(LogDEBUG
, "link_Dequeue: Dequeued from queue %d,"
188 " containing %lu more packets\n", pri
,
189 (u_long
)l
->Queue
[pri
].len
);
196 static struct protostatheader
{
199 } ProtocolStat
[NPROTOSTAT
] = {
201 { PROTO_VJUNCOMP
, "VJ_UNCOMP" },
202 { PROTO_VJCOMP
, "VJ_COMP" },
203 { PROTO_COMPD
, "COMPD" },
204 { PROTO_ICOMPD
, "ICOMPD" },
205 { PROTO_LCP
, "LCP" },
206 { PROTO_IPCP
, "IPCP" },
207 { PROTO_CCP
, "CCP" },
208 { PROTO_PAP
, "PAP" },
209 { PROTO_LQR
, "LQR" },
210 { PROTO_CHAP
, "CHAP" },
211 { PROTO_MP
, "MULTILINK" },
216 link_ProtocolRecord(struct link
*l
, u_short proto
, int type
)
220 for (i
= 0; i
< NPROTOSTAT
; i
++)
221 if (ProtocolStat
[i
].number
== proto
)
224 if (type
== PROTO_IN
)
231 link_ReportProtocolStatus(struct link
*l
, struct prompt
*prompt
)
235 prompt_Printf(prompt
, " Protocol in out "
236 "Protocol in out\n");
237 for (i
= 0; i
< NPROTOSTAT
; i
++) {
238 prompt_Printf(prompt
, " %-9s: %8lu, %8lu",
239 ProtocolStat
[i
].name
, l
->proto_in
[i
], l
->proto_out
[i
]);
241 prompt_Printf(prompt
, "\n");
244 prompt_Printf(prompt
, "\n");
248 link_PushPacket(struct link
*l
, struct mbuf
*bp
, struct bundle
*b
, int pri
,
254 * When we ``push'' a packet into the link, it gets processed by the
255 * ``push'' function in each layer starting at the top.
256 * We never expect the result of a ``push'' to be more than one
257 * packet (as we do with ``pull''s).
260 if(pri
< 0 || (unsigned)pri
>= LINK_QUEUES(l
))
263 bp
->priv
= 0; /* Adjusted by the async layer ! */
264 for (layer
= l
->nlayers
; layer
&& bp
; layer
--)
265 if (l
->layer
[layer
- 1]->push
!= NULL
)
266 bp
= (*l
->layer
[layer
- 1]->push
)(b
, l
, bp
, pri
, &proto
);
269 link_AddOutOctets(l
, m_length(bp
));
270 log_Printf(LogDEBUG
, "link_PushPacket: Transmit proto 0x%04x\n", proto
);
271 m_enqueue(l
->Queue
+ pri
, m_pullup(bp
));
276 link_PullPacket(struct link
*l
, char *buf
, size_t len
, struct bundle
*b
)
278 struct mbuf
*bp
, *lbp
[LAYER_MAX
], *next
;
279 u_short lproto
[LAYER_MAX
], proto
;
283 * When we ``pull'' a packet from the link, it gets processed by the
284 * ``pull'' function in each layer starting at the bottom.
285 * Each ``pull'' may produce multiple packets, chained together using
287 * Each packet that results from each pull has to be pulled through
288 * all of the higher layers before the next resulting packet is pulled
289 * through anything; this ensures that packets that depend on the
290 * fsm state resulting from the receipt of the previous packet aren't
294 link_AddInOctets(l
, len
);
296 memset(lbp
, '\0', sizeof lbp
);
297 lbp
[0] = m_get(len
, MB_UNKNOWN
);
298 memcpy(MBUF_CTOP(lbp
[0]), buf
, len
);
302 while (layer
|| lbp
[layer
]) {
303 if (lbp
[layer
] == NULL
) {
308 lbp
[layer
] = bp
->m_nextpkt
;
309 bp
->m_nextpkt
= NULL
;
310 proto
= lproto
[layer
];
312 if (l
->layer
[layer
]->pull
!= NULL
)
313 bp
= (*l
->layer
[layer
]->pull
)(b
, l
, bp
, &proto
);
315 if (layer
== l
->nlayers
- 1) {
316 /* We've just done the top layer, despatch the packet(s) */
318 next
= bp
->m_nextpkt
;
319 bp
->m_nextpkt
= NULL
;
320 log_Printf(LogDEBUG
, "link_PullPacket: Despatch proto 0x%04x\n", proto
);
321 Despatch(b
, l
, bp
, proto
);
326 lproto
[layer
] = proto
;
332 link_Stack(struct link
*l
, struct layer
*layer
)
334 if (l
->nlayers
== sizeof l
->layer
/ sizeof l
->layer
[0]) {
335 log_Printf(LogERROR
, "%s: Oops, cannot stack a %s layer...\n",
336 l
->name
, layer
->name
);
339 l
->layer
[l
->nlayers
++] = layer
;
344 link_EmptyStack(struct link
*l
)
349 static const struct {
351 struct mbuf
*(*fn
)(struct bundle
*, struct link
*, struct mbuf
*);
353 { PROTO_IP
, ipv4_Input
},
355 { PROTO_IPV6
, ipv6_Input
},
357 { PROTO_MP
, mp_Input
},
358 { PROTO_LCP
, lcp_Input
},
359 { PROTO_IPCP
, ipcp_Input
},
361 { PROTO_IPV6CP
, ipv6cp_Input
},
363 { PROTO_PAP
, pap_Input
},
364 { PROTO_CHAP
, chap_Input
},
365 { PROTO_CCP
, ccp_Input
},
366 { PROTO_LQR
, lqr_Input
},
367 { PROTO_CBCP
, cbcp_Input
}
370 #define DSIZE (sizeof despatcher / sizeof despatcher[0])
373 Despatch(struct bundle
*bundle
, struct link
*l
, struct mbuf
*bp
, u_short proto
)
377 for (f
= 0; f
< DSIZE
; f
++)
378 if (despatcher
[f
].proto
== proto
) {
379 bp
= (*despatcher
[f
].fn
)(bundle
, l
, bp
);
384 struct physical
*p
= link2physical(l
);
386 log_Printf(LogPHASE
, "%s protocol 0x%04x (%s)\n",
387 f
== DSIZE
? "Unknown" : "Unexpected", proto
,
388 hdlc_Protocol2Nam(proto
));
389 bp
= m_pullup(proto_Prepend(bp
, proto
, 0, 0));
390 lcp_SendProtoRej(&l
->lcp
, MBUF_CTOP(bp
), bp
->m_len
);
392 p
->hdlc
.lqm
.ifInDiscards
++;
393 p
->hdlc
.stats
.unknownproto
++;
400 link_ShowLayers(struct cmdargs
const *arg
)
402 struct link
*l
= command_ChooseLink(arg
);
405 for (layer
= l
->nlayers
; layer
; layer
--)
406 prompt_Printf(arg
->prompt
, "%s%s", layer
== l
->nlayers
? "" : ", ",
407 l
->layer
[layer
- 1]->name
);
409 prompt_Printf(arg
->prompt
, "\n");