⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ping.c

📁 MIPS处理器的bootloader,龙芯就是用的修改过的PMON2
💻 C
📖 第 1 页 / 共 2 页
字号:
	/* Now the ICMP part */	cc -= hlen;	icp = (struct icmp *)(buf + hlen);	if (icp->icmp_type == ICMP_ECHOREPLY) {		if (icp->icmp_id != ident)			return;			/* 'Twas not our ECHO */		++nreceived;		if (timing) {#ifndef icmp_data			tp = (struct timeval *)&icp->icmp_ip;#else			tp = (struct timeval *)icp->icmp_data;#endif			tvsub(&tv, tp);			triptime = tv.tv_sec * 1000000 + tv.tv_usec;			tsum += triptime / 10;	/* stored in 10's of usec */			if (triptime < tmin)				tmin = triptime;			if (triptime > tmax)				tmax = triptime;		}		if (TST(icp->icmp_seq % mx_dup_ck)) {			++nrepeats;			--nreceived;			dupflag = 1;		} else {			SET(icp->icmp_seq % mx_dup_ck);			dupflag = 0;		}		if (options & F_QUIET)			return;		if (options & F_FLOOD)#ifdef PMON		  {		      putchar(BSPACE); fflush(stdout);		  }#else			(void)write(STDOUT_FILENO, &BSPACE, 1);#endif		else {			(void)printf("%d bytes from %s: icmp_seq=%u", cc,			   inet_ntoa(*(struct in_addr *)&from->sin_addr.s_addr),			   icp->icmp_seq);			(void)printf(" ttl=%d", ip->ip_ttl);			if (timing)				(void)printf(" time=%d.%03d ms", triptime/1000,				    triptime % 1000);		}		if (options & F_VERBOSE) {		    static int lastseq;		    if (dupflag)			(void)printf(" (DUP! id=%u prev=%u)", icp->icmp_seq,				     lastseq);		    lastseq = icp->icmp_seq;		    if (in_cksum((u_short *)icp, cc) != 0)			(void)printf(" (CSUM!)");		}		else {		    if (dupflag)			(void)printf(" (DUP!)");		}		    		if (!(options & F_FLOOD) || (options & F_VERBOSE)) {		    /* check the data */		    cp = (u_char*)&icp->icmp_data[8];		    dp = &outpack[8 + sizeof(struct timeval)];		    for (i = 8; i < datalen; ++i, ++cp, ++dp) {			if (*cp != *dp) {			    (void)printf("\nwrong byte #%d want 0x%x got 0x%x xor 0x%x",					 i, *dp, *cp, *dp ^ *cp);			    cp = (u_char*)&icp->icmp_data[0];			    for (i = 8; i < datalen; ++i, ++cp) {				if ((i % 32) == 8)				    (void)printf("\n\t");				(void)printf("%x ", *cp);			    }			    break;			}		    }		}	} else {		/* We've got something other than an ECHOREPLY */		if (!(options & F_VERBOSE))			return;		(void)printf("%d bytes from %s: ", cc,		    pr_addr(from->sin_addr.s_addr));		pr_icmph(icp);	}	/* Display any IP options */	cp = (u_char *)buf + sizeof(struct ip);	for (; hlen > (int)sizeof(struct ip); --hlen, ++cp)		switch (*cp) {		case IPOPT_EOL:			hlen = 0;			break;		case IPOPT_LSRR:			(void)printf("\nLSRR: ");			hlen -= 2;			j = *++cp;			++cp;			if (j > IPOPT_MINOFF)				for (;;) {					l = *++cp;					l = (l<<8) + *++cp;					l = (l<<8) + *++cp;					l = (l<<8) + *++cp;					if (l == 0)						(void)printf("\t0.0.0.0");				else					(void)printf("\t%s", pr_addr(ntohl(l)));				hlen -= 4;				j -= 4;				if (j <= IPOPT_MINOFF)					break;				(void)putchar('\n');			}			break;		case IPOPT_RR:			j = *++cp;		/* get length */			i = *++cp;		/* and pointer */			hlen -= 2;			if (i > j)				i = j;			i -= IPOPT_MINOFF;			if (i <= 0)				continue;			if (i == old_rrlen			    && cp == (u_char *)buf + sizeof(struct ip) + 2			    && !bcmp((void *)cp, old_rr, i)			    && !(options & F_FLOOD)) {				(void)printf("\t(same route)");				i = ((i + 3) / 4) * 4;				hlen -= i;				cp += i;				break;			}			old_rrlen = i;			bcopy((char *)cp, old_rr, i);			(void)printf("\nRR: ");			for (;;) {				l = *++cp;				l = (l<<8) + *++cp;				l = (l<<8) + *++cp;				l = (l<<8) + *++cp;				if (l == 0)					(void)printf("\t0.0.0.0");				else					(void)printf("\t%s", pr_addr(ntohl(l)));				hlen -= 4;				i -= 4;				if (i <= 0)					break;				(void)putchar('\n');			}			break;		case IPOPT_NOP:			(void)printf("\nNOP");			break;		default:			(void)printf("\nunknown option %x", *cp);			break;		}	if (!(options & F_FLOOD)) {		(void)putchar('\n');		(void)fflush(stdout);	}}/* * in_cksum -- *	Checksum routine for Internet Protocol family headers (C Version) */static intin_cksum(addr, len)	u_short *addr;	int len;{	register int nleft = len;	register u_short *w = addr;	register int sum = 0;	u_short answer = 0;	/*	 * Our algorithm is simple, using a 32 bit accumulator (sum), we add	 * sequential 16 bit words to it, and at the end, fold back all the	 * carry bits from the top 16 bits into the lower 16 bits.	 */	while (nleft > 1)  {		sum += *w++;		nleft -= 2;	}	/* mop up an odd byte, if necessary */	if (nleft == 1) {		*(u_char *)(&answer) = *(u_char *)w ;		sum += answer;	}	/* add back carry outs from top 16 bits to low 16 bits */	sum = (sum >> 16) + (sum & 0xffff);	/* add hi 16 to low 16 */	sum += (sum >> 16);			/* add carry */	answer = ~sum;				/* truncate to 16 bits */	return(answer);}/* * tvsub -- *	Subtract 2 timeval structs:  out = out - in.  Out is assumed to * be >= in. */voidtvsub(out, in)	struct timeval *out, *in;{	if ((out->tv_usec -= in->tv_usec) < 0) {		--out->tv_sec;		out->tv_usec += 1000000;	}	out->tv_sec -= in->tv_sec;}/* * finish -- *	Print out statistics, and give up. */static voidfinish(){	(void)signal(SIGALRM, SIG_IGN);	(void)signal(SIGINT, SIG_IGN);	(void)putchar('\n');	(void)fflush(stdout);	(void)printf("--- %s ping statistics ---\n", hostname);	(void)printf("%ld packets transmitted, ", ntransmitted);	(void)printf("%ld packets received, ", nreceived);	if (nrepeats)		(void)printf("+%ld duplicates, ", nrepeats);	if (ntransmitted) {		if (nreceived > ntransmitted) {			(void)printf("-- somebody's printing up packets!");		}		else {			(void)printf("%d%% packet loss",			    (int) (((ntransmitted - nreceived) * 100) /			    ntransmitted));		}	}	(void)putchar('\n');	if (nreceived && timing)		(void)printf("round-trip min/avg/max = %d.%03d/%u.%03d/%d.%03d ms\n",		    tmin / 1000, tmin % 1000,		    tsum / (nreceived + nrepeats) / 100,		    (tsum / (nreceived + nrepeats) % 100) * 10,		    tmax / 1000, tmax % 1000);	close(s);	exit(0);}#ifdef notdefstatic char *ttab[] = {	"Echo Reply",		/* ip + seq + udata */	"Dest Unreachable",	/* net, host, proto, port, frag, sr + IP */	"Source Quench",	/* IP */	"Redirect",		/* redirect type, gateway, + IP  */	"Echo",	"Time Exceeded",	/* transit, frag reassem + IP */	"Parameter Problem",	/* pointer + IP */	"Timestamp",		/* id + seq + three timestamps */	"Timestamp Reply",	/* " */	"Info Request",		/* id + sq */	"Info Reply"		/* " */};#endif/* * pr_icmph -- *	Print a descriptive string about an ICMP header. */voidpr_icmph(icp)	struct icmp *icp;{	switch(icp->icmp_type) {	case ICMP_ECHOREPLY:		(void)printf("Echo Reply\n");		/* XXX ID + Seq + Data */		break;	case ICMP_UNREACH:		switch(icp->icmp_code) {		case ICMP_UNREACH_NET:			(void)printf("Destination Net Unreachable\n");			break;		case ICMP_UNREACH_HOST:			(void)printf("Destination Host Unreachable\n");			break;		case ICMP_UNREACH_PROTOCOL:			(void)printf("Destination Protocol Unreachable\n");			break;		case ICMP_UNREACH_PORT:			(void)printf("Destination Port Unreachable\n");			break;		case ICMP_UNREACH_NEEDFRAG:			(void)printf("frag needed and DF set\n");			break;		case ICMP_UNREACH_SRCFAIL:			(void)printf("Source Route Failed\n");			break;		default:			(void)printf("Dest Unreachable, Bad Code: %d\n",			    icp->icmp_code);			break;		}		/* Print returned IP header information */#ifndef icmp_data		pr_retip(&icp->icmp_ip);#else		pr_retip((struct ip *)icp->icmp_data);#endif		break;	case ICMP_SOURCEQUENCH:		(void)printf("Source Quench\n");#ifndef icmp_data		pr_retip(&icp->icmp_ip);#else		pr_retip((struct ip *)icp->icmp_data);#endif		break;	case ICMP_REDIRECT:		switch(icp->icmp_code) {		case ICMP_REDIRECT_NET:			(void)printf("Redirect Network");			break;		case ICMP_REDIRECT_HOST:			(void)printf("Redirect Host");			break;		case ICMP_REDIRECT_TOSNET:			(void)printf("Redirect Type of Service and Network");			break;		case ICMP_REDIRECT_TOSHOST:			(void)printf("Redirect Type of Service and Host");			break;		default:			(void)printf("Redirect, Bad Code: %d", icp->icmp_code);			break;		}		(void)printf("(New addr: 0x%08lx)\n", icp->icmp_gwaddr.s_addr);#ifndef icmp_data		pr_retip(&icp->icmp_ip);#else		pr_retip((struct ip *)icp->icmp_data);#endif		break;	case ICMP_ECHO:		(void)printf("Echo Request\n");		/* XXX ID + Seq + Data */		break;	case ICMP_TIMXCEED:		switch(icp->icmp_code) {		case ICMP_TIMXCEED_INTRANS:			(void)printf("Time to live exceeded\n");			break;		case ICMP_TIMXCEED_REASS:			(void)printf("Frag reassembly time exceeded\n");			break;		default:			(void)printf("Time exceeded, Bad Code: %d\n",			    icp->icmp_code);			break;		}#ifndef icmp_data		pr_retip(&icp->icmp_ip);#else		pr_retip((struct ip *)icp->icmp_data);#endif		break;	case ICMP_PARAMPROB:		(void)printf("Parameter problem: pointer = 0x%02x\n",		    icp->icmp_hun.ih_pptr);#ifndef icmp_data		pr_retip(&icp->icmp_ip);#else		pr_retip((struct ip *)icp->icmp_data);#endif		break;	case ICMP_TSTAMP:		(void)printf("Timestamp\n");		/* XXX ID + Seq + 3 timestamps */		break;	case ICMP_TSTAMPREPLY:		(void)printf("Timestamp Reply\n");		/* XXX ID + Seq + 3 timestamps */		break;	case ICMP_IREQ:		(void)printf("Information Request\n");		/* XXX ID + Seq */		break;	case ICMP_IREQREPLY:		(void)printf("Information Reply\n");		/* XXX ID + Seq */		break;#ifdef ICMP_MASKREQ	case ICMP_MASKREQ:		(void)printf("Address Mask Request\n");		break;#endif#ifdef ICMP_MASKREPLY	case ICMP_MASKREPLY:		(void)printf("Address Mask Reply\n");		break;#endif	default:		(void)printf("Bad ICMP type: %d\n", icp->icmp_type);	}}/* * pr_iph -- *	Print an IP header with options. */voidpr_iph(ip)	struct ip *ip;{	int hlen;	u_char *cp;	hlen = ip->ip_hl << 2;	cp = (u_char *)ip + 20;		/* point to options */	(void)printf("Vr HL TOS  Len   ID Flg  off TTL Pro  cks      Src      Dst Data\n");	(void)printf(" %1x  %1x  %02x %04x %04x",	    ip->ip_v, ip->ip_hl, ip->ip_tos, ip->ip_len, ip->ip_id);	(void)printf("   %1x %04x", ((ip->ip_off) & 0xe000) >> 13,	    (ip->ip_off) & 0x1fff);	(void)printf("  %02x  %02x %04x", ip->ip_ttl, ip->ip_p, ip->ip_sum);	(void)printf(" %s ", inet_ntoa(*(struct in_addr *)&ip->ip_src.s_addr));	(void)printf(" %s ", inet_ntoa(*(struct in_addr *)&ip->ip_dst.s_addr));	/* dump and option bytes */	while (hlen-- > 20) {		(void)printf("%02x", *cp++);	}	(void)putchar('\n');}/* * pr_addr -- *	Return an ascii host address as a dotted quad and optionally with * a hostname. */static char *pr_addr(l)	u_long l;{	static char buf[80];	(void)sprintf(buf, "%s", inet_ntoa(*(struct in_addr *)&l));	return(buf);}/* * pr_retip -- *	Dump some info on a returned (via ICMP) IP packet. */voidpr_retip(ip)	struct ip *ip;{	int hlen;	u_char *cp;	pr_iph(ip);	hlen = ip->ip_hl << 2;	cp = (u_char *)ip + hlen;	if (ip->ip_p == 6)		(void)printf("TCP: from port %u, to port %u (decimal)\n",		    (*cp * 256 + *(cp + 1)), (*(cp + 2) * 256 + *(cp + 3)));	else if (ip->ip_p == 17)		(void)printf("UDP: from port %u, to port %u (decimal)\n",			(*cp * 256 + *(cp + 1)), (*(cp + 2) * 256 + *(cp + 3)));}#ifndef PMONfill(bp, patp)	char *bp, *patp;{	register int ii, jj, kk;	int pat[16];	char *cp;	for (cp = patp; *cp; cp++)		if (!isxdigit(*cp)) {			(void)fprintf(stderr,			    "ping: patterns must be specified as hex digits.\n");			exit(EXIT_FAILURE);		}	ii = sscanf(patp,	    "%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x",	    &pat[0], &pat[1], &pat[2], &pat[3], &pat[4], &pat[5], &pat[6],	    &pat[7], &pat[8], &pat[9], &pat[10], &pat[11], &pat[12],	    &pat[13], &pat[14], &pat[15]);	if (ii > 0)		for (kk = 0; kk <= MAXPACKET - (8 + ii); kk += ii)			for (jj = 0; jj < ii; ++jj)				bp[jj + kk] = pat[jj];	if (!(options & F_QUIET)) {		(void)printf("PATTERN: 0x");		for (jj = 0; jj < ii; ++jj)			(void)printf("%02x", bp[jj] & 0xFF);		(void)printf("\n");	}}#endifstatic voidusage(){#ifdef PMON	(void)fprintf(stderr,	    "usage: ping [-fqrv] [-c count] [-s size] host\n");#else	(void)fprintf(stderr,	    "usage: ping [-Rdfnqrv] [-c count] [-g group] [-i wait] \n");	(void)fprintf(stderr,		      "\t[-l preload] [-p pattern] [-s packetsize] host\n");#endif	exit(EXIT_FAILURE);}#ifdef PMONint		cmd_ping __P((int, char *[]));intcmd_ping (argc, argv)    int argc; char **argv;{    int ret;    ret = spawn ("ping", com_ping, argc, argv);    return (ret & ~0xff) ? 1 : (signed char)ret;}/* *  Command table registration *  ========================== */extern const Optdesc  flash_opts[];static const Cmd Cmds[] ={	{"Network"},	{"ping",	"[-fqrv] [-c cnt] [-s sz] host",			0,			"ping remote host",			cmd_ping, 1, 99, CMD_REPEAT},	{0, 0}};static void init_cmd __P((void)) __attribute__ ((constructor));voidinit_cmd(){	cmdlist_expand(Cmds, 1);}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -