]> andersk Git - openssh.git/blob - misc.c
- stevesk@cvs.openbsd.org 2006/07/09 15:15:11
[openssh.git] / misc.c
1 /* $OpenBSD: misc.c,v 1.55 2006/07/09 15:15:10 stevesk Exp $ */
2 /*
3  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
4  * Copyright (c) 2005,2006 Damien Miller.  All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #include "includes.h"
28
29 #include <sys/ioctl.h>
30 #include <sys/types.h>
31 #include <sys/socket.h>
32
33 #include <netinet/in.h>
34 #include <netinet/tcp.h>
35
36 #include <fcntl.h>
37 #ifdef HAVE_PATHS_H
38 # include <paths.h>
39 #include <pwd.h>
40 #endif
41 #ifdef SSH_TUN_OPENBSD
42 #include <net/if.h>
43 #endif
44
45 #include "misc.h"
46 #include "log.h"
47 #include "xmalloc.h"
48
49 /* remove newline at end of string */
50 char *
51 chop(char *s)
52 {
53         char *t = s;
54         while (*t) {
55                 if (*t == '\n' || *t == '\r') {
56                         *t = '\0';
57                         return s;
58                 }
59                 t++;
60         }
61         return s;
62
63 }
64
65 /* set/unset filedescriptor to non-blocking */
66 int
67 set_nonblock(int fd)
68 {
69         int val;
70
71         val = fcntl(fd, F_GETFL, 0);
72         if (val < 0) {
73                 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
74                 return (-1);
75         }
76         if (val & O_NONBLOCK) {
77                 debug3("fd %d is O_NONBLOCK", fd);
78                 return (0);
79         }
80         debug2("fd %d setting O_NONBLOCK", fd);
81         val |= O_NONBLOCK;
82         if (fcntl(fd, F_SETFL, val) == -1) {
83                 debug("fcntl(%d, F_SETFL, O_NONBLOCK): %s", fd,
84                     strerror(errno));
85                 return (-1);
86         }
87         return (0);
88 }
89
90 int
91 unset_nonblock(int fd)
92 {
93         int val;
94
95         val = fcntl(fd, F_GETFL, 0);
96         if (val < 0) {
97                 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
98                 return (-1);
99         }
100         if (!(val & O_NONBLOCK)) {
101                 debug3("fd %d is not O_NONBLOCK", fd);
102                 return (0);
103         }
104         debug("fd %d clearing O_NONBLOCK", fd);
105         val &= ~O_NONBLOCK;
106         if (fcntl(fd, F_SETFL, val) == -1) {
107                 debug("fcntl(%d, F_SETFL, ~O_NONBLOCK): %s",
108                     fd, strerror(errno));
109                 return (-1);
110         }
111         return (0);
112 }
113
114 /* disable nagle on socket */
115 void
116 set_nodelay(int fd)
117 {
118         int opt;
119         socklen_t optlen;
120
121         optlen = sizeof opt;
122         if (getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen) == -1) {
123                 debug("getsockopt TCP_NODELAY: %.100s", strerror(errno));
124                 return;
125         }
126         if (opt == 1) {
127                 debug2("fd %d is TCP_NODELAY", fd);
128                 return;
129         }
130         opt = 1;
131         debug2("fd %d setting TCP_NODELAY", fd);
132         if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt) == -1)
133                 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
134 }
135
136 /* Characters considered whitespace in strsep calls. */
137 #define WHITESPACE " \t\r\n"
138 #define QUOTE   "\""
139
140 /* return next token in configuration line */
141 char *
142 strdelim(char **s)
143 {
144         char *old;
145         int wspace = 0;
146
147         if (*s == NULL)
148                 return NULL;
149
150         old = *s;
151
152         *s = strpbrk(*s, WHITESPACE QUOTE "=");
153         if (*s == NULL)
154                 return (old);
155
156         if (*s[0] == '\"') {
157                 memmove(*s, *s + 1, strlen(*s)); /* move nul too */
158                 /* Find matching quote */
159                 if ((*s = strpbrk(*s, QUOTE)) == NULL) {
160                         return (NULL);          /* no matching quote */
161                 } else {
162                         *s[0] = '\0';
163                         return (old);
164                 }
165         }
166
167         /* Allow only one '=' to be skipped */
168         if (*s[0] == '=')
169                 wspace = 1;
170         *s[0] = '\0';
171
172         /* Skip any extra whitespace after first token */
173         *s += strspn(*s + 1, WHITESPACE) + 1;
174         if (*s[0] == '=' && !wspace)
175                 *s += strspn(*s + 1, WHITESPACE) + 1;
176
177         return (old);
178 }
179
180 struct passwd *
181 pwcopy(struct passwd *pw)
182 {
183         struct passwd *copy = xcalloc(1, sizeof(*copy));
184
185         copy->pw_name = xstrdup(pw->pw_name);
186         copy->pw_passwd = xstrdup(pw->pw_passwd);
187         copy->pw_gecos = xstrdup(pw->pw_gecos);
188         copy->pw_uid = pw->pw_uid;
189         copy->pw_gid = pw->pw_gid;
190 #ifdef HAVE_PW_EXPIRE_IN_PASSWD
191         copy->pw_expire = pw->pw_expire;
192 #endif
193 #ifdef HAVE_PW_CHANGE_IN_PASSWD
194         copy->pw_change = pw->pw_change;
195 #endif
196 #ifdef HAVE_PW_CLASS_IN_PASSWD
197         copy->pw_class = xstrdup(pw->pw_class);
198 #endif
199         copy->pw_dir = xstrdup(pw->pw_dir);
200         copy->pw_shell = xstrdup(pw->pw_shell);
201         return copy;
202 }
203
204 /*
205  * Convert ASCII string to TCP/IP port number.
206  * Port must be >0 and <=65535.
207  * Return 0 if invalid.
208  */
209 int
210 a2port(const char *s)
211 {
212         long port;
213         char *endp;
214
215         errno = 0;
216         port = strtol(s, &endp, 0);
217         if (s == endp || *endp != '\0' ||
218             (errno == ERANGE && (port == LONG_MIN || port == LONG_MAX)) ||
219             port <= 0 || port > 65535)
220                 return 0;
221
222         return port;
223 }
224
225 int
226 a2tun(const char *s, int *remote)
227 {
228         const char *errstr = NULL;
229         char *sp, *ep;
230         int tun;
231
232         if (remote != NULL) {
233                 *remote = SSH_TUNID_ANY;
234                 sp = xstrdup(s);
235                 if ((ep = strchr(sp, ':')) == NULL) {
236                         xfree(sp);
237                         return (a2tun(s, NULL));
238                 }
239                 ep[0] = '\0'; ep++;
240                 *remote = a2tun(ep, NULL);
241                 tun = a2tun(sp, NULL);
242                 xfree(sp);
243                 return (*remote == SSH_TUNID_ERR ? *remote : tun);
244         }
245
246         if (strcasecmp(s, "any") == 0)
247                 return (SSH_TUNID_ANY);
248
249         tun = strtonum(s, 0, SSH_TUNID_MAX, &errstr);
250         if (errstr != NULL)
251                 return (SSH_TUNID_ERR);
252
253         return (tun);
254 }
255
256 #define SECONDS         1
257 #define MINUTES         (SECONDS * 60)
258 #define HOURS           (MINUTES * 60)
259 #define DAYS            (HOURS * 24)
260 #define WEEKS           (DAYS * 7)
261
262 /*
263  * Convert a time string into seconds; format is
264  * a sequence of:
265  *      time[qualifier]
266  *
267  * Valid time qualifiers are:
268  *      <none>  seconds
269  *      s|S     seconds
270  *      m|M     minutes
271  *      h|H     hours
272  *      d|D     days
273  *      w|W     weeks
274  *
275  * Examples:
276  *      90m     90 minutes
277  *      1h30m   90 minutes
278  *      2d      2 days
279  *      1w      1 week
280  *
281  * Return -1 if time string is invalid.
282  */
283 long
284 convtime(const char *s)
285 {
286         long total, secs;
287         const char *p;
288         char *endp;
289
290         errno = 0;
291         total = 0;
292         p = s;
293
294         if (p == NULL || *p == '\0')
295                 return -1;
296
297         while (*p) {
298                 secs = strtol(p, &endp, 10);
299                 if (p == endp ||
300                     (errno == ERANGE && (secs == LONG_MIN || secs == LONG_MAX)) ||
301                     secs < 0)
302                         return -1;
303
304                 switch (*endp++) {
305                 case '\0':
306                         endp--;
307                         break;
308                 case 's':
309                 case 'S':
310                         break;
311                 case 'm':
312                 case 'M':
313                         secs *= MINUTES;
314                         break;
315                 case 'h':
316                 case 'H':
317                         secs *= HOURS;
318                         break;
319                 case 'd':
320                 case 'D':
321                         secs *= DAYS;
322                         break;
323                 case 'w':
324                 case 'W':
325                         secs *= WEEKS;
326                         break;
327                 default:
328                         return -1;
329                 }
330                 total += secs;
331                 if (total < 0)
332                         return -1;
333                 p = endp;
334         }
335
336         return total;
337 }
338
339 /*
340  * Search for next delimiter between hostnames/addresses and ports.
341  * Argument may be modified (for termination).
342  * Returns *cp if parsing succeeds.
343  * *cp is set to the start of the next delimiter, if one was found.
344  * If this is the last field, *cp is set to NULL.
345  */
346 char *
347 hpdelim(char **cp)
348 {
349         char *s, *old;
350
351         if (cp == NULL || *cp == NULL)
352                 return NULL;
353
354         old = s = *cp;
355         if (*s == '[') {
356                 if ((s = strchr(s, ']')) == NULL)
357                         return NULL;
358                 else
359                         s++;
360         } else if ((s = strpbrk(s, ":/")) == NULL)
361                 s = *cp + strlen(*cp); /* skip to end (see first case below) */
362
363         switch (*s) {
364         case '\0':
365                 *cp = NULL;     /* no more fields*/
366                 break;
367
368         case ':':
369         case '/':
370                 *s = '\0';      /* terminate */
371                 *cp = s + 1;
372                 break;
373
374         default:
375                 return NULL;
376         }
377
378         return old;
379 }
380
381 char *
382 cleanhostname(char *host)
383 {
384         if (*host == '[' && host[strlen(host) - 1] == ']') {
385                 host[strlen(host) - 1] = '\0';
386                 return (host + 1);
387         } else
388                 return host;
389 }
390
391 char *
392 colon(char *cp)
393 {
394         int flag = 0;
395
396         if (*cp == ':')         /* Leading colon is part of file name. */
397                 return (0);
398         if (*cp == '[')
399                 flag = 1;
400
401         for (; *cp; ++cp) {
402                 if (*cp == '@' && *(cp+1) == '[')
403                         flag = 1;
404                 if (*cp == ']' && *(cp+1) == ':' && flag)
405                         return (cp+1);
406                 if (*cp == ':' && !flag)
407                         return (cp);
408                 if (*cp == '/')
409                         return (0);
410         }
411         return (0);
412 }
413
414 /* function to assist building execv() arguments */
415 void
416 addargs(arglist *args, char *fmt, ...)
417 {
418         va_list ap;
419         char *cp;
420         u_int nalloc;
421         int r;
422
423         va_start(ap, fmt);
424         r = vasprintf(&cp, fmt, ap);
425         va_end(ap);
426         if (r == -1)
427                 fatal("addargs: argument too long");
428
429         nalloc = args->nalloc;
430         if (args->list == NULL) {
431                 nalloc = 32;
432                 args->num = 0;
433         } else if (args->num+2 >= nalloc)
434                 nalloc *= 2;
435
436         args->list = xrealloc(args->list, nalloc, sizeof(char *));
437         args->nalloc = nalloc;
438         args->list[args->num++] = cp;
439         args->list[args->num] = NULL;
440 }
441
442 void
443 replacearg(arglist *args, u_int which, char *fmt, ...)
444 {
445         va_list ap;
446         char *cp;
447         int r;
448
449         va_start(ap, fmt);
450         r = vasprintf(&cp, fmt, ap);
451         va_end(ap);
452         if (r == -1)
453                 fatal("replacearg: argument too long");
454
455         if (which >= args->num)
456                 fatal("replacearg: tried to replace invalid arg %d >= %d",
457                     which, args->num);
458         xfree(args->list[which]);
459         args->list[which] = cp;
460 }
461
462 void
463 freeargs(arglist *args)
464 {
465         u_int i;
466
467         if (args->list != NULL) {
468                 for (i = 0; i < args->num; i++)
469                         xfree(args->list[i]);
470                 xfree(args->list);
471                 args->nalloc = args->num = 0;
472                 args->list = NULL;
473         }
474 }
475
476 /*
477  * Expands tildes in the file name.  Returns data allocated by xmalloc.
478  * Warning: this calls getpw*.
479  */
480 char *
481 tilde_expand_filename(const char *filename, uid_t uid)
482 {
483         const char *path;
484         char user[128], ret[MAXPATHLEN];
485         struct passwd *pw;
486         u_int len, slash;
487
488         if (*filename != '~')
489                 return (xstrdup(filename));
490         filename++;
491
492         path = strchr(filename, '/');
493         if (path != NULL && path > filename) {          /* ~user/path */
494                 slash = path - filename;
495                 if (slash > sizeof(user) - 1)
496                         fatal("tilde_expand_filename: ~username too long");
497                 memcpy(user, filename, slash);
498                 user[slash] = '\0';
499                 if ((pw = getpwnam(user)) == NULL)
500                         fatal("tilde_expand_filename: No such user %s", user);
501         } else if ((pw = getpwuid(uid)) == NULL)        /* ~/path */
502                 fatal("tilde_expand_filename: No such uid %d", uid);
503
504         if (strlcpy(ret, pw->pw_dir, sizeof(ret)) >= sizeof(ret))
505                 fatal("tilde_expand_filename: Path too long");
506
507         /* Make sure directory has a trailing '/' */
508         len = strlen(pw->pw_dir);
509         if ((len == 0 || pw->pw_dir[len - 1] != '/') &&
510             strlcat(ret, "/", sizeof(ret)) >= sizeof(ret))
511                 fatal("tilde_expand_filename: Path too long");
512
513         /* Skip leading '/' from specified path */
514         if (path != NULL)
515                 filename = path + 1;
516         if (strlcat(ret, filename, sizeof(ret)) >= sizeof(ret))
517                 fatal("tilde_expand_filename: Path too long");
518
519         return (xstrdup(ret));
520 }
521
522 /*
523  * Expand a string with a set of %[char] escapes. A number of escapes may be
524  * specified as (char *escape_chars, char *replacement) pairs. The list must
525  * be terminated by a NULL escape_char. Returns replaced string in memory
526  * allocated by xmalloc.
527  */
528 char *
529 percent_expand(const char *string, ...)
530 {
531 #define EXPAND_MAX_KEYS 16
532         struct {
533                 const char *key;
534                 const char *repl;
535         } keys[EXPAND_MAX_KEYS];
536         u_int num_keys, i, j;
537         char buf[4096];
538         va_list ap;
539
540         /* Gather keys */
541         va_start(ap, string);
542         for (num_keys = 0; num_keys < EXPAND_MAX_KEYS; num_keys++) {
543                 keys[num_keys].key = va_arg(ap, char *);
544                 if (keys[num_keys].key == NULL)
545                         break;
546                 keys[num_keys].repl = va_arg(ap, char *);
547                 if (keys[num_keys].repl == NULL)
548                         fatal("percent_expand: NULL replacement");
549         }
550         va_end(ap);
551
552         if (num_keys >= EXPAND_MAX_KEYS)
553                 fatal("percent_expand: too many keys");
554
555         /* Expand string */
556         *buf = '\0';
557         for (i = 0; *string != '\0'; string++) {
558                 if (*string != '%') {
559  append:
560                         buf[i++] = *string;
561                         if (i >= sizeof(buf))
562                                 fatal("percent_expand: string too long");
563                         buf[i] = '\0';
564                         continue;
565                 }
566                 string++;
567                 if (*string == '%')
568                         goto append;
569                 for (j = 0; j < num_keys; j++) {
570                         if (strchr(keys[j].key, *string) != NULL) {
571                                 i = strlcat(buf, keys[j].repl, sizeof(buf));
572                                 if (i >= sizeof(buf))
573                                         fatal("percent_expand: string too long");
574                                 break;
575                         }
576                 }
577                 if (j >= num_keys)
578                         fatal("percent_expand: unknown key %%%c", *string);
579         }
580         return (xstrdup(buf));
581 #undef EXPAND_MAX_KEYS
582 }
583
584 /*
585  * Read an entire line from a public key file into a static buffer, discarding
586  * lines that exceed the buffer size.  Returns 0 on success, -1 on failure.
587  */
588 int
589 read_keyfile_line(FILE *f, const char *filename, char *buf, size_t bufsz,
590    u_long *lineno)
591 {
592         while (fgets(buf, bufsz, f) != NULL) {
593                 (*lineno)++;
594                 if (buf[strlen(buf) - 1] == '\n' || feof(f)) {
595                         return 0;
596                 } else {
597                         debug("%s: %s line %lu exceeds size limit", __func__,
598                             filename, *lineno);
599                         /* discard remainder of line */
600                         while (fgetc(f) != '\n' && !feof(f))
601                                 ;       /* nothing */
602                 }
603         }
604         return -1;
605 }
606
607 int
608 tun_open(int tun, int mode)
609 {
610 #if defined(CUSTOM_SYS_TUN_OPEN)
611         return (sys_tun_open(tun, mode));
612 #elif defined(SSH_TUN_OPENBSD)
613         struct ifreq ifr;
614         char name[100];
615         int fd = -1, sock;
616
617         /* Open the tunnel device */
618         if (tun <= SSH_TUNID_MAX) {
619                 snprintf(name, sizeof(name), "/dev/tun%d", tun);
620                 fd = open(name, O_RDWR);
621         } else if (tun == SSH_TUNID_ANY) {
622                 for (tun = 100; tun >= 0; tun--) {
623                         snprintf(name, sizeof(name), "/dev/tun%d", tun);
624                         if ((fd = open(name, O_RDWR)) >= 0)
625                                 break;
626                 }
627         } else {
628                 debug("%s: invalid tunnel %u", __func__, tun);
629                 return (-1);
630         }
631
632         if (fd < 0) {
633                 debug("%s: %s open failed: %s", __func__, name, strerror(errno));
634                 return (-1);
635         }
636
637         debug("%s: %s mode %d fd %d", __func__, name, mode, fd);
638
639         /* Set the tunnel device operation mode */
640         snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "tun%d", tun);
641         if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) == -1)
642                 goto failed;
643
644         if (ioctl(sock, SIOCGIFFLAGS, &ifr) == -1)
645                 goto failed;
646
647         /* Set interface mode */
648         ifr.ifr_flags &= ~IFF_UP;
649         if (mode == SSH_TUNMODE_ETHERNET)
650                 ifr.ifr_flags |= IFF_LINK0;
651         else
652                 ifr.ifr_flags &= ~IFF_LINK0;
653         if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
654                 goto failed;
655
656         /* Bring interface up */
657         ifr.ifr_flags |= IFF_UP;
658         if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
659                 goto failed;
660
661         close(sock);
662         return (fd);
663
664  failed:
665         if (fd >= 0)
666                 close(fd);
667         if (sock >= 0)
668                 close(sock);
669         debug("%s: failed to set %s mode %d: %s", __func__, name,
670             mode, strerror(errno));
671         return (-1);
672 #else
673         error("Tunnel interfaces are not supported on this platform");
674         return (-1);
675 #endif
676 }
677
678 void
679 sanitise_stdfd(void)
680 {
681         int nullfd, dupfd;
682
683         if ((nullfd = dupfd = open(_PATH_DEVNULL, O_RDWR)) == -1) {
684                 fprintf(stderr, "Couldn't open /dev/null: %s", strerror(errno));
685                 exit(1);
686         }
687         while (++dupfd <= 2) {
688                 /* Only clobber closed fds */
689                 if (fcntl(dupfd, F_GETFL, 0) >= 0)
690                         continue;
691                 if (dup2(nullfd, dupfd) == -1) {
692                         fprintf(stderr, "dup2: %s", strerror(errno));
693                         exit(1);
694                 }
695         }
696         if (nullfd > 2)
697                 close(nullfd);
698 }
699
700 char *
701 tohex(const void *vp, size_t l)
702 {
703         const u_char *p = (const u_char *)vp;
704         char b[3], *r;
705         size_t i, hl;
706
707         if (l > 65536)
708                 return xstrdup("tohex: length > 65536");
709
710         hl = l * 2 + 1;
711         r = xcalloc(1, hl);
712         for (i = 0; i < l; i++) {
713                 snprintf(b, sizeof(b), "%02x", p[i]);
714                 strlcat(r, b, hl);
715         }
716         return (r);
717 }
718
719 u_int64_t
720 get_u64(const void *vp)
721 {
722         const u_char *p = (const u_char *)vp;
723         u_int64_t v;
724
725         v  = (u_int64_t)p[0] << 56;
726         v |= (u_int64_t)p[1] << 48;
727         v |= (u_int64_t)p[2] << 40;
728         v |= (u_int64_t)p[3] << 32;
729         v |= (u_int64_t)p[4] << 24;
730         v |= (u_int64_t)p[5] << 16;
731         v |= (u_int64_t)p[6] << 8;
732         v |= (u_int64_t)p[7];
733
734         return (v);
735 }
736
737 u_int32_t
738 get_u32(const void *vp)
739 {
740         const u_char *p = (const u_char *)vp;
741         u_int32_t v;
742
743         v  = (u_int32_t)p[0] << 24;
744         v |= (u_int32_t)p[1] << 16;
745         v |= (u_int32_t)p[2] << 8;
746         v |= (u_int32_t)p[3];
747
748         return (v);
749 }
750
751 u_int16_t
752 get_u16(const void *vp)
753 {
754         const u_char *p = (const u_char *)vp;
755         u_int16_t v;
756
757         v  = (u_int16_t)p[0] << 8;
758         v |= (u_int16_t)p[1];
759
760         return (v);
761 }
762
763 void
764 put_u64(void *vp, u_int64_t v)
765 {
766         u_char *p = (u_char *)vp;
767
768         p[0] = (u_char)(v >> 56) & 0xff;
769         p[1] = (u_char)(v >> 48) & 0xff;
770         p[2] = (u_char)(v >> 40) & 0xff;
771         p[3] = (u_char)(v >> 32) & 0xff;
772         p[4] = (u_char)(v >> 24) & 0xff;
773         p[5] = (u_char)(v >> 16) & 0xff;
774         p[6] = (u_char)(v >> 8) & 0xff;
775         p[7] = (u_char)v & 0xff;
776 }
777
778 void
779 put_u32(void *vp, u_int32_t v)
780 {
781         u_char *p = (u_char *)vp;
782
783         p[0] = (u_char)(v >> 24) & 0xff;
784         p[1] = (u_char)(v >> 16) & 0xff;
785         p[2] = (u_char)(v >> 8) & 0xff;
786         p[3] = (u_char)v & 0xff;
787 }
788
789
790 void
791 put_u16(void *vp, u_int16_t v)
792 {
793         u_char *p = (u_char *)vp;
794
795         p[0] = (u_char)(v >> 8) & 0xff;
796         p[1] = (u_char)v & 0xff;
797 }
This page took 0.775377 seconds and 5 git commands to generate.