xref: /illumos-gate/usr/src/common/net/dhcp/octet.c (revision 4870e0a7381ec2ec57437062574e6ddc3dd48d7f)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
227c478bd9Sstevel@tonic-gate /*
237c478bd9Sstevel@tonic-gate  * Copyright 1996-2002 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate /* LINTLIBRARY */
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate #if !defined(_BOOT) && !defined(_KERNEL)
307c478bd9Sstevel@tonic-gate #include <stdio.h>
317c478bd9Sstevel@tonic-gate #include <ctype.h>
327c478bd9Sstevel@tonic-gate #include <stdlib.h>
337c478bd9Sstevel@tonic-gate #endif	/* _BOOT && _KERNEL */
347c478bd9Sstevel@tonic-gate #include <sys/types.h>
35*4870e0a7SRichard PALO #include <sys/null.h>
367c478bd9Sstevel@tonic-gate #include <sys/errno.h>
377c478bd9Sstevel@tonic-gate 
387c478bd9Sstevel@tonic-gate #if	defined(_BOOT) || defined(_KERNEL)
397c478bd9Sstevel@tonic-gate #define	isdigit(c)	((c) >= '0' && c <= '9')
407c478bd9Sstevel@tonic-gate #define	isxdigit(c)	(isdigit(c) || (((c) >= 'a') && ((c) <= 'f')) || \
417c478bd9Sstevel@tonic-gate 			(((c) >= 'A') && ((c) <= 'F')))
427c478bd9Sstevel@tonic-gate #endif	/* _BOOT || _KERNEL */
437c478bd9Sstevel@tonic-gate 
447c478bd9Sstevel@tonic-gate /*
457c478bd9Sstevel@tonic-gate  * Converts an octet string into an ASCII string. The string returned is
467c478bd9Sstevel@tonic-gate  * NULL-terminated, and the length recorded in blen does *not* include the
477c478bd9Sstevel@tonic-gate  * null terminator (in other words, octet_to_hexascii() returns the length a'la
487c478bd9Sstevel@tonic-gate  * strlen()).
497c478bd9Sstevel@tonic-gate  *
507c478bd9Sstevel@tonic-gate  * Returns 0 for Success, errno otherwise.
517c478bd9Sstevel@tonic-gate  */
527c478bd9Sstevel@tonic-gate int
537c478bd9Sstevel@tonic-gate octet_to_hexascii(const void *nump, uint_t nlen, char *bufp, uint_t *blen)
547c478bd9Sstevel@tonic-gate {
557c478bd9Sstevel@tonic-gate 	int		i;
567c478bd9Sstevel@tonic-gate 	char		*bp;
577c478bd9Sstevel@tonic-gate 	const uchar_t	*np;
587c478bd9Sstevel@tonic-gate 	static char	ascii_conv[] = "0123456789ABCDEF";
597c478bd9Sstevel@tonic-gate 
607c478bd9Sstevel@tonic-gate 	if (nump == NULL || bufp == NULL || blen == NULL)
617c478bd9Sstevel@tonic-gate 		return (EINVAL);
627c478bd9Sstevel@tonic-gate 
637c478bd9Sstevel@tonic-gate 	if ((nlen * 2) >= *blen) {
647c478bd9Sstevel@tonic-gate 		*blen = 0;
657c478bd9Sstevel@tonic-gate 		return (E2BIG);
667c478bd9Sstevel@tonic-gate 	}
677c478bd9Sstevel@tonic-gate 	for (i = 0, bp = bufp, np = (const uchar_t *)nump; i < nlen; i++) {
687c478bd9Sstevel@tonic-gate 		*bp++ = ascii_conv[(np[i] >> 4) & 0x0f];
697c478bd9Sstevel@tonic-gate 		*bp++ = ascii_conv[np[i] & 0x0f];
707c478bd9Sstevel@tonic-gate 	}
717c478bd9Sstevel@tonic-gate 	*bp = '\0';
727c478bd9Sstevel@tonic-gate 	*blen = i * 2;
737c478bd9Sstevel@tonic-gate 	return (0);
747c478bd9Sstevel@tonic-gate }
757c478bd9Sstevel@tonic-gate 
767c478bd9Sstevel@tonic-gate /*
777c478bd9Sstevel@tonic-gate  * Converts an ASCII string into an octet string.
787c478bd9Sstevel@tonic-gate  *
797c478bd9Sstevel@tonic-gate  * Returns 0 for success, errno otherwise.
807c478bd9Sstevel@tonic-gate  */
817c478bd9Sstevel@tonic-gate int
827c478bd9Sstevel@tonic-gate hexascii_to_octet(const char *asp, uint_t alen, void *bufp, uint_t *blen)
837c478bd9Sstevel@tonic-gate {
847c478bd9Sstevel@tonic-gate 	int		i, j, k;
857c478bd9Sstevel@tonic-gate 	const char	*tp;
867c478bd9Sstevel@tonic-gate 	uchar_t		*u_tp;
877c478bd9Sstevel@tonic-gate 
887c478bd9Sstevel@tonic-gate 	if (asp == NULL || bufp == NULL || blen == NULL)
897c478bd9Sstevel@tonic-gate 		return (EINVAL);
907c478bd9Sstevel@tonic-gate 
917c478bd9Sstevel@tonic-gate 	if (alen > (*blen * 2))
927c478bd9Sstevel@tonic-gate 		return (E2BIG);
937c478bd9Sstevel@tonic-gate 
947c478bd9Sstevel@tonic-gate 	k = ((alen % 2) == 0) ? alen / 2 : (alen / 2) + 1;
957c478bd9Sstevel@tonic-gate 	for (tp = asp, u_tp = (uchar_t *)bufp, i = 0; i < k; i++, u_tp++) {
967c478bd9Sstevel@tonic-gate 		/* one nibble at a time */
977c478bd9Sstevel@tonic-gate 		for (*u_tp = 0, j = 0; j < 2; j++, tp++) {
987c478bd9Sstevel@tonic-gate 			if (isdigit(*tp))
997c478bd9Sstevel@tonic-gate 				*u_tp |= *tp - '0';
1007c478bd9Sstevel@tonic-gate 			else if (isxdigit(*tp))
1017c478bd9Sstevel@tonic-gate 				*u_tp |= (*tp & ~0x20) + 10 - 'A';
1027c478bd9Sstevel@tonic-gate 			else
1037c478bd9Sstevel@tonic-gate 				return (EINVAL);
1047c478bd9Sstevel@tonic-gate 			if ((j % 2) == 0)
1057c478bd9Sstevel@tonic-gate 				*u_tp <<= 4;
1067c478bd9Sstevel@tonic-gate 		}
1077c478bd9Sstevel@tonic-gate 	}
1087c478bd9Sstevel@tonic-gate 	*blen = k;
1097c478bd9Sstevel@tonic-gate 	return (0);
1107c478bd9Sstevel@tonic-gate }
111