d021757837151eebcfcf9b22825d6a402774ec22
[oweals/busybox.git] / networking / ifconfig.c
1 /* vi: set sw=4 ts=4: */
2 /* ifconfig
3  *
4  * Similar to the standard Unix ifconfig, but with only the necessary
5  * parts for AF_INET, and without any printing of if info (for now).
6  *
7  * Bjorn Wesen, Axis Communications AB
8  *
9  *
10  * Authors of the original ifconfig was:
11  *              Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
12  *
13  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
14  */
15
16 /*
17  * Heavily modified by Manuel Novoa III       Mar 6, 2001
18  *
19  * From initial port to busybox, removed most of the redundancy by
20  * converting to a table-driven approach.  Added several (optional)
21  * args missing from initial port.
22  *
23  * Still missing:  media, tunnel.
24  *
25  * 2002-04-20
26  * IPV6 support added by Bart Visscher <magick@linux-fan.com>
27  */
28
29 #include <net/if.h>
30 #include <net/if_arp.h>
31 #include <netinet/in.h>
32 #if defined(__GLIBC__) && __GLIBC__ >=2 && __GLIBC_MINOR__ >= 1
33 #include <netpacket/packet.h>
34 #include <net/ethernet.h>
35 #else
36 #include <sys/types.h>
37 #include <netinet/if_ether.h>
38 #endif
39 #include "inet_common.h"
40 #include "libbb.h"
41
42 #if ENABLE_FEATURE_IFCONFIG_SLIP
43 # include <net/if_slip.h>
44 #endif
45
46 /* I don't know if this is needed for busybox or not.  Anyone? */
47 #define QUESTIONABLE_ALIAS_CASE
48
49
50 /* Defines for glibc2.0 users. */
51 #ifndef SIOCSIFTXQLEN
52 # define SIOCSIFTXQLEN      0x8943
53 # define SIOCGIFTXQLEN      0x8942
54 #endif
55
56 /* ifr_qlen is ifru_ivalue, but it isn't present in 2.0 kernel headers */
57 #ifndef ifr_qlen
58 # define ifr_qlen        ifr_ifru.ifru_mtu
59 #endif
60
61 #ifndef IFF_DYNAMIC
62 # define IFF_DYNAMIC     0x8000 /* dialup device with changing addresses */
63 #endif
64
65 #if ENABLE_FEATURE_IPV6
66 struct in6_ifreq {
67         struct in6_addr ifr6_addr;
68         uint32_t ifr6_prefixlen;
69         int ifr6_ifindex;
70 };
71 #endif
72
73 /*
74  * Here are the bit masks for the "flags" member of struct options below.
75  * N_ signifies no arg prefix; M_ signifies arg prefixed by '-'.
76  * CLR clears the flag; SET sets the flag; ARG signifies (optional) arg.
77  */
78 #define N_CLR            0x01
79 #define M_CLR            0x02
80 #define N_SET            0x04
81 #define M_SET            0x08
82 #define N_ARG            0x10
83 #define M_ARG            0x20
84
85 #define M_MASK           (M_CLR | M_SET | M_ARG)
86 #define N_MASK           (N_CLR | N_SET | N_ARG)
87 #define SET_MASK         (N_SET | M_SET)
88 #define CLR_MASK         (N_CLR | M_CLR)
89 #define SET_CLR_MASK     (SET_MASK | CLR_MASK)
90 #define ARG_MASK         (M_ARG | N_ARG)
91
92 /*
93  * Here are the bit masks for the "arg_flags" member of struct options below.
94  */
95
96 /*
97  * cast type:
98  *   00 int
99  *   01 char *
100  *   02 HOST_COPY in_ether
101  *   03 HOST_COPY INET_resolve
102  */
103 #define A_CAST_TYPE      0x03
104 /*
105  * map type:
106  *   00 not a map type (mem_start, io_addr, irq)
107  *   04 memstart (unsigned long)
108  *   08 io_addr  (unsigned short)
109  *   0C irq      (unsigned char)
110  */
111 #define A_MAP_TYPE       0x0C
112 #define A_ARG_REQ        0x10   /* Set if an arg is required. */
113 #define A_NETMASK        0x20   /* Set if netmask (check for multiple sets). */
114 #define A_SET_AFTER      0x40   /* Set a flag at the end. */
115 #define A_COLON_CHK      0x80   /* Is this needed?  See below. */
116 #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
117 #define A_HOSTNAME      0x100   /* Set if it is ip addr. */
118 #define A_BROADCAST     0x200   /* Set if it is broadcast addr. */
119 #else
120 #define A_HOSTNAME          0
121 #define A_BROADCAST         0
122 #endif
123
124 /*
125  * These defines are for dealing with the A_CAST_TYPE field.
126  */
127 #define A_CAST_CHAR_PTR  0x01
128 #define A_CAST_RESOLVE   0x01
129 #define A_CAST_HOST_COPY 0x02
130 #define A_CAST_HOST_COPY_IN_ETHER    A_CAST_HOST_COPY
131 #define A_CAST_HOST_COPY_RESOLVE     (A_CAST_HOST_COPY | A_CAST_RESOLVE)
132
133 /*
134  * These defines are for dealing with the A_MAP_TYPE field.
135  */
136 #define A_MAP_ULONG      0x04   /* memstart */
137 #define A_MAP_USHORT     0x08   /* io_addr */
138 #define A_MAP_UCHAR      0x0C   /* irq */
139
140 /*
141  * Define the bit masks signifying which operations to perform for each arg.
142  */
143
144 #define ARG_METRIC       (A_ARG_REQ /*| A_CAST_INT*/)
145 #define ARG_MTU          (A_ARG_REQ /*| A_CAST_INT*/)
146 #define ARG_TXQUEUELEN   (A_ARG_REQ /*| A_CAST_INT*/)
147 #define ARG_MEM_START    (A_ARG_REQ | A_MAP_ULONG)
148 #define ARG_IO_ADDR      (A_ARG_REQ | A_MAP_ULONG)
149 #define ARG_IRQ          (A_ARG_REQ | A_MAP_UCHAR)
150 #define ARG_DSTADDR      (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE)
151 #define ARG_NETMASK      (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE | A_NETMASK)
152 #define ARG_BROADCAST    (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER | A_BROADCAST)
153 #define ARG_HW           (A_ARG_REQ | A_CAST_HOST_COPY_IN_ETHER)
154 #define ARG_POINTOPOINT  (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER)
155 #define ARG_KEEPALIVE    (A_ARG_REQ | A_CAST_CHAR_PTR)
156 #define ARG_OUTFILL      (A_ARG_REQ | A_CAST_CHAR_PTR)
157 #define ARG_HOSTNAME     (A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER | A_COLON_CHK | A_HOSTNAME)
158 #define ARG_ADD_DEL      (A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER)
159
160
161 /*
162  * Set up the tables.  Warning!  They must have corresponding order!
163  */
164
165 struct arg1opt {
166         const char *name;
167         unsigned short selector;
168         unsigned short ifr_offset;
169 };
170
171 struct options {
172         const char *name;
173 #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
174         const unsigned int flags:6;
175         const unsigned int arg_flags:10;
176 #else
177         const unsigned char flags;
178         const unsigned char arg_flags;
179 #endif
180         const unsigned short selector;
181 };
182
183 #define ifreq_offsetof(x)  offsetof(struct ifreq, x)
184
185 static const struct arg1opt Arg1Opt[] = {
186         { "SIFMETRIC",  SIOCSIFMETRIC,  ifreq_offsetof(ifr_metric) },
187         { "SIFMTU",     SIOCSIFMTU,     ifreq_offsetof(ifr_mtu) },
188         { "SIFTXQLEN",  SIOCSIFTXQLEN,  ifreq_offsetof(ifr_qlen) },
189         { "SIFDSTADDR", SIOCSIFDSTADDR, ifreq_offsetof(ifr_dstaddr) },
190         { "SIFNETMASK", SIOCSIFNETMASK, ifreq_offsetof(ifr_netmask) },
191         { "SIFBRDADDR", SIOCSIFBRDADDR, ifreq_offsetof(ifr_broadaddr) },
192 #if ENABLE_FEATURE_IFCONFIG_HW
193         { "SIFHWADDR",  SIOCSIFHWADDR,  ifreq_offsetof(ifr_hwaddr) },
194 #endif
195         { "SIFDSTADDR", SIOCSIFDSTADDR, ifreq_offsetof(ifr_dstaddr) },
196 #ifdef SIOCSKEEPALIVE
197         { "SKEEPALIVE", SIOCSKEEPALIVE, ifreq_offsetof(ifr_data) },
198 #endif
199 #ifdef SIOCSOUTFILL
200         { "SOUTFILL",   SIOCSOUTFILL,   ifreq_offsetof(ifr_data) },
201 #endif
202 #if ENABLE_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
203         { "SIFMAP",     SIOCSIFMAP,     ifreq_offsetof(ifr_map.mem_start) },
204         { "SIFMAP",     SIOCSIFMAP,     ifreq_offsetof(ifr_map.base_addr) },
205         { "SIFMAP",     SIOCSIFMAP,     ifreq_offsetof(ifr_map.irq) },
206 #endif
207         /* Last entry if for unmatched (possibly hostname) arg. */
208 #if ENABLE_FEATURE_IPV6
209         { "SIFADDR",    SIOCSIFADDR,    ifreq_offsetof(ifr_addr) }, /* IPv6 version ignores the offset */
210         { "DIFADDR",    SIOCDIFADDR,    ifreq_offsetof(ifr_addr) }, /* IPv6 version ignores the offset */
211 #endif
212         { "SIFADDR",    SIOCSIFADDR,    ifreq_offsetof(ifr_addr) },
213 };
214
215 static const struct options OptArray[] = {
216         { "metric",      N_ARG,         ARG_METRIC,      0 },
217         { "mtu",         N_ARG,         ARG_MTU,         0 },
218         { "txqueuelen",  N_ARG,         ARG_TXQUEUELEN,  0 },
219         { "dstaddr",     N_ARG,         ARG_DSTADDR,     0 },
220         { "netmask",     N_ARG,         ARG_NETMASK,     0 },
221         { "broadcast",   N_ARG | M_CLR, ARG_BROADCAST,   IFF_BROADCAST },
222 #if ENABLE_FEATURE_IFCONFIG_HW
223         { "hw",          N_ARG,         ARG_HW,          0 },
224 #endif
225         { "pointopoint", N_ARG | M_CLR, ARG_POINTOPOINT, IFF_POINTOPOINT },
226 #ifdef SIOCSKEEPALIVE
227         { "keepalive",   N_ARG,         ARG_KEEPALIVE,   0 },
228 #endif
229 #ifdef SIOCSOUTFILL
230         { "outfill",     N_ARG,         ARG_OUTFILL,     0 },
231 #endif
232 #if ENABLE_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
233         { "mem_start",   N_ARG,         ARG_MEM_START,   0 },
234         { "io_addr",     N_ARG,         ARG_IO_ADDR,     0 },
235         { "irq",         N_ARG,         ARG_IRQ,         0 },
236 #endif
237 #if ENABLE_FEATURE_IPV6
238         { "add",         N_ARG,         ARG_ADD_DEL,     0 },
239         { "del",         N_ARG,         ARG_ADD_DEL,     0 },
240 #endif
241         { "arp",         N_CLR | M_SET, 0,               IFF_NOARP },
242         { "trailers",    N_CLR | M_SET, 0,               IFF_NOTRAILERS },
243         { "promisc",     N_SET | M_CLR, 0,               IFF_PROMISC },
244         { "multicast",   N_SET | M_CLR, 0,               IFF_MULTICAST },
245         { "allmulti",    N_SET | M_CLR, 0,               IFF_ALLMULTI },
246         { "dynamic",     N_SET | M_CLR, 0,               IFF_DYNAMIC },
247         { "up",          N_SET,         0,               (IFF_UP | IFF_RUNNING) },
248         { "down",        N_CLR,         0,               IFF_UP },
249         { NULL,          0,             ARG_HOSTNAME,    (IFF_UP | IFF_RUNNING) }
250 };
251
252 /*
253  * A couple of prototypes.
254  */
255
256 #if ENABLE_FEATURE_IFCONFIG_HW
257 static int in_ether(const char *bufp, struct sockaddr *sap);
258 # if ENABLE_FEATURE_HWIB
259 extern int in_ib(const char *bufp, struct sockaddr *sap);
260 # else
261 #  define in_ib(a, b) 1 /* fail */
262 # endif
263 #endif
264
265 /*
266  * Our main function.
267  */
268
269 int ifconfig_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
270 int ifconfig_main(int argc, char **argv)
271 {
272         struct ifreq ifr;
273         struct sockaddr_in sai;
274 #if ENABLE_FEATURE_IFCONFIG_HW
275         struct sockaddr sa;
276 #endif
277         const struct arg1opt *a1op;
278         const struct options *op;
279         int sockfd;                     /* socket fd we use to manipulate stuff with */
280         int selector;
281 #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
282         unsigned int mask;
283         unsigned int did_flags;
284         unsigned int sai_hostname, sai_netmask;
285 #else
286         unsigned char mask;
287         unsigned char did_flags;
288 #endif
289         char *p;
290         /*char host[128];*/
291         const char *host = NULL; /* make gcc happy */
292
293         did_flags = 0;
294 #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
295         sai_hostname = 0;
296         sai_netmask = 0;
297 #endif
298
299         /* skip argv[0] */
300         ++argv;
301         --argc;
302
303 #if ENABLE_FEATURE_IFCONFIG_STATUS
304         if (argc > 0 && (argv[0][0] == '-' && argv[0][1] == 'a' && !argv[0][2])) {
305                 interface_opt_a = 1;
306                 --argc;
307                 ++argv;
308         }
309 #endif
310
311         if (argc <= 1) {
312 #if ENABLE_FEATURE_IFCONFIG_STATUS
313                 return display_interfaces(argc ? *argv : NULL);
314 #else
315                 bb_error_msg_and_die("no support for status display");
316 #endif
317         }
318
319         /* Create a channel to the NET kernel. */
320         sockfd = xsocket(AF_INET, SOCK_DGRAM, 0);
321
322         /* get interface name */
323         strncpy(ifr.ifr_name, *argv, IFNAMSIZ);
324
325         /* Process the remaining arguments. */
326         while (*++argv != (char *) NULL) {
327                 p = *argv;
328                 mask = N_MASK;
329                 if (*p == '-') {        /* If the arg starts with '-'... */
330                         ++p;            /*    advance past it and */
331                         mask = M_MASK;  /*    set the appropriate mask. */
332                 }
333                 for (op = OptArray; op->name; op++) {   /* Find table entry. */
334                         if (strcmp(p, op->name) == 0) { /* If name matches... */
335                                 mask &= op->flags;
336                                 if (mask)       /* set the mask and go. */
337                                         goto FOUND_ARG;
338                                 /* If we get here, there was a valid arg with an */
339                                 /* invalid '-' prefix. */
340                                 bb_error_msg_and_die("bad: '%s'", p-1);
341                         }
342                 }
343
344                 /* We fell through, so treat as possible hostname. */
345                 a1op = Arg1Opt + ARRAY_SIZE(Arg1Opt) - 1;
346                 mask = op->arg_flags;
347                 goto HOSTNAME;
348
349  FOUND_ARG:
350                 if (mask & ARG_MASK) {
351                         mask = op->arg_flags;
352                         a1op = Arg1Opt + (op - OptArray);
353                         if (mask & A_NETMASK & did_flags)
354                                 bb_show_usage();
355                         if (*++argv == NULL) {
356                                 if (mask & A_ARG_REQ)
357                                         bb_show_usage();
358                                 --argv;
359                                 mask &= A_SET_AFTER;    /* just for broadcast */
360                         } else {        /* got an arg so process it */
361  HOSTNAME:
362                                 did_flags |= (mask & (A_NETMASK|A_HOSTNAME));
363                                 if (mask & A_CAST_HOST_COPY) {
364 #if ENABLE_FEATURE_IFCONFIG_HW
365                                         if (mask & A_CAST_RESOLVE) {
366 #endif
367 #if ENABLE_FEATURE_IPV6
368                                                 char *prefix;
369                                                 int prefix_len = 0;
370 #endif
371                                                 /*safe_strncpy(host, *argv, (sizeof host));*/
372                                                 host = *argv;
373 #if ENABLE_FEATURE_IPV6
374                                                 prefix = strchr(host, '/');
375                                                 if (prefix) {
376                                                         prefix_len = xatou_range(prefix + 1, 0, 128);
377                                                         *prefix = '\0';
378                                                 }
379 #endif
380                                                 sai.sin_family = AF_INET;
381                                                 sai.sin_port = 0;
382                                                 if (!strcmp(host, bb_str_default)) {
383                                                         /* Default is special, meaning 0.0.0.0. */
384                                                         sai.sin_addr.s_addr = INADDR_ANY;
385                                                 }
386 #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
387                                                 else if ((host[0] == '+' && !host[1]) && (mask & A_BROADCAST)
388                                                  && (did_flags & (A_NETMASK|A_HOSTNAME)) == (A_NETMASK|A_HOSTNAME)
389                                                 ) {
390                                                         /* + is special, meaning broadcast is derived. */
391                                                         sai.sin_addr.s_addr = (~sai_netmask) | (sai_hostname & sai_netmask);
392                                                 }
393 #endif
394                                                 else {
395                                                         len_and_sockaddr *lsa;
396                                                         if (strcmp(host, "inet") == 0)
397                                                                 continue; /* compat stuff */
398                                                         lsa = xhost2sockaddr(host, 0);
399 #if ENABLE_FEATURE_IPV6
400                                                         if (lsa->u.sa.sa_family == AF_INET6) {
401                                                                 int sockfd6;
402                                                                 struct in6_ifreq ifr6;
403
404                                                                 memcpy((char *) &ifr6.ifr6_addr,
405                                                                                 (char *) &(lsa->u.sin6.sin6_addr),
406                                                                                 sizeof(struct in6_addr));
407
408                                                                 /* Create a channel to the NET kernel. */
409                                                                 sockfd6 = xsocket(AF_INET6, SOCK_DGRAM, 0);
410                                                                 xioctl(sockfd6, SIOGIFINDEX, &ifr);
411                                                                 ifr6.ifr6_ifindex = ifr.ifr_ifindex;
412                                                                 ifr6.ifr6_prefixlen = prefix_len;
413                                                                 ioctl_or_perror_and_die(sockfd6, a1op->selector, &ifr6, "SIOC%s", a1op->name);
414                                                                 if (ENABLE_FEATURE_CLEAN_UP)
415                                                                         free(lsa);
416                                                                 continue;
417                                                         }
418 #endif
419                                                         sai.sin_addr = lsa->u.sin.sin_addr;
420                                                         if (ENABLE_FEATURE_CLEAN_UP)
421                                                                 free(lsa);
422                                                 }
423 #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
424                                                 if (mask & A_HOSTNAME)
425                                                         sai_hostname = sai.sin_addr.s_addr;
426                                                 if (mask & A_NETMASK)
427                                                         sai_netmask = sai.sin_addr.s_addr;
428 #endif
429                                                 p = (char *) &sai;
430 #if ENABLE_FEATURE_IFCONFIG_HW
431                                         } else {        /* A_CAST_HOST_COPY_IN_ETHER */
432                                                 /* This is the "hw" arg case. */
433                                                 smalluint hw_class= index_in_substrings("ether\0"
434                                                                 USE_FEATURE_HWIB("infiniband\0"), *argv) + 1;
435                                                 if (!hw_class || !*++argv)
436                                                         bb_show_usage();
437                                                 /*safe_strncpy(host, *argv, sizeof(host));*/
438                                                 host = *argv;
439                                                 if (hw_class == 1 ? in_ether(host, &sa)
440                                                         : in_ib(host, &sa))
441                                                         bb_error_msg_and_die("invalid hw-addr %s", host);
442                                                 p = (char *) &sa;
443                                         }
444 #endif
445                                         memcpy( (((char *)&ifr) + a1op->ifr_offset),
446                                                    p, sizeof(struct sockaddr));
447                                 } else {
448                                         /* FIXME: error check?? */
449                                         unsigned long i = strtoul(*argv, NULL, 0);
450                                         p = ((char *)&ifr) + a1op->ifr_offset;
451 #if ENABLE_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
452                                         if (mask & A_MAP_TYPE) {
453                                                 xioctl(sockfd, SIOCGIFMAP, &ifr);
454                                                 if ((mask & A_MAP_UCHAR) == A_MAP_UCHAR)
455                                                         *((unsigned char *) p) = i;
456                                                 else if (mask & A_MAP_USHORT)
457                                                         *((unsigned short *) p) = i;
458                                                 else
459                                                         *((unsigned long *) p) = i;
460                                         } else
461 #endif
462                                         if (mask & A_CAST_CHAR_PTR)
463                                                 *((caddr_t *) p) = (caddr_t) i;
464                                         else    /* A_CAST_INT */
465                                                 *((int *) p) = i;
466                                 }
467
468                                 ioctl_or_perror_and_die(sockfd, a1op->selector, &ifr, "SIOC%s", a1op->name);
469 #ifdef QUESTIONABLE_ALIAS_CASE
470                                 if (mask & A_COLON_CHK) {
471                                         /*
472                                          * Don't do the set_flag() if the address is an alias with
473                                          * a '-' at the end, since it's deleted already! - Roman
474                                          *
475                                          * Should really use regex.h here, not sure though how well
476                                          * it'll go with the cross-platform support etc.
477                                          */
478                                         char *ptr;
479                                         short int found_colon = 0;
480                                         for (ptr = ifr.ifr_name; *ptr; ptr++)
481                                                 if (*ptr == ':')
482                                                         found_colon++;
483                                         if (found_colon && ptr[-1] == '-')
484                                                 continue;
485                                 }
486 #endif
487                         }
488                         if (!(mask & A_SET_AFTER))
489                                 continue;
490                         mask = N_SET;
491                 }
492
493                 xioctl(sockfd, SIOCGIFFLAGS, &ifr);
494                 selector = op->selector;
495                 if (mask & SET_MASK)
496                         ifr.ifr_flags |= selector;
497                 else
498                         ifr.ifr_flags &= ~selector;
499                 xioctl(sockfd, SIOCSIFFLAGS, &ifr);
500         } /* while () */
501
502         if (ENABLE_FEATURE_CLEAN_UP)
503                 close(sockfd);
504         return 0;
505 }
506
507 #if ENABLE_FEATURE_IFCONFIG_HW
508 /* Input an Ethernet address and convert to binary. */
509 static int in_ether(const char *bufp, struct sockaddr *sap)
510 {
511         char *ptr;
512         int i, j;
513         unsigned char val;
514         unsigned char c;
515
516         sap->sa_family = ARPHRD_ETHER;
517         ptr = sap->sa_data;
518
519         i = 0;
520         do {
521                 j = val = 0;
522
523                 /* We might get a semicolon here - not required. */
524                 if (i && (*bufp == ':')) {
525                         bufp++;
526                 }
527
528                 do {
529                         c = *bufp;
530                         if (((unsigned char)(c - '0')) <= 9) {
531                                 c -= '0';
532                         } else if (((unsigned char)((c|0x20) - 'a')) <= 5) {
533                                 c = (c|0x20) - ('a'-10);
534                         } else if (j && (c == ':' || c == 0)) {
535                                 break;
536                         } else {
537                                 return -1;
538                         }
539                         ++bufp;
540                         val <<= 4;
541                         val += c;
542                 } while (++j < 2);
543                 *ptr++ = val;
544         } while (++i < ETH_ALEN);
545
546         return *bufp; /* Error if we don't end at end of string. */
547 }
548 #endif