1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2010 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
* Copyright 2013 Nexenta Systems, Inc. All rights reserved.
*/
#include <stdio.h>
#include <stdlib.h>
#include <syslog.h>
#include <libintl.h>
#include <strings.h>
#include <string.h>
#include <unistd.h>
#include <synch.h>
#include <stropts.h>
#include <errno.h>
#include <pthread.h>
#include <inet/ip.h>
#include <net/if.h>
#include <netinet/in.h>
#include <netdb.h>
#include <net/route.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <sys/sockio.h>
#include <sys/systeminfo.h>
#include <smbsrv/libsmb.h>
#include <sqlite-sys/sqlite.h>
#define SMB_NIC_DB_NAME "/var/smb/smbhosts.db"
#define SMB_NIC_DB_TIMEOUT 3000 /* in millisecond */
#define SMB_NIC_DB_VERMAJOR 1
#define SMB_NIC_DB_VERMINOR 0
#define SMB_NIC_DB_MAGIC 0x484F5354 /* HOST */
#define SMB_NIC_DB_ORD 1 /* open read-only */
#define SMB_NIC_DB_ORW 2 /* open read/write */
#define SMB_NIC_DB_SQL \
"CREATE TABLE db_info (" \
" ver_major INTEGER," \
" ver_minor INTEGER," \
" magic INTEGER" \
");" \
"" \
"CREATE TABLE hosts (" \
" hostname TEXT PRIMARY KEY," \
" comment TEXT," \
" ifnames TEXT" \
");"
#define SMB_NIC_HTBL_NCOL 3
#define SMB_NIC_HTBL_HOST 0
#define SMB_NIC_HTBL_CMNT 1
#define SMB_NIC_HTBL_IFS 2
#define NULL_MSGCHK(msg) ((msg) ? (msg) : "NULL")
#define SMB_NIC_MAXIFS 256
#define SMB_NIC_MAXEXCLLIST_LEN 512
typedef struct smb_hostifs {
list_node_t if_lnd;
char if_host[MAXHOSTNAMELEN];
char if_cmnt[SMB_PI_MAX_COMMENT];
char *if_names[SMB_NIC_MAXIFS];
int if_num;
} smb_hostifs_t;
typedef struct smb_hosts {
list_t h_list;
int h_num;
int h_ifnum;
} smb_hosts_t;
typedef struct {
smb_nic_t *nl_nics;
int nl_cnt; /* number of smb_nic_t structures */
int nl_hcnt; /* number of host names */
long nl_seqnum; /* a random sequence number */
rwlock_t nl_rwl;
} smb_niclist_t;
static int smb_nic_list_create(void);
static void smb_nic_list_destroy(void);
static int smb_nic_hlist_create(smb_hosts_t *);
static void smb_nic_hlist_destroy(smb_hosts_t *);
static int smb_nic_hlist_dbget(smb_hosts_t *);
static int smb_nic_hlist_sysget(smb_hosts_t *);
static void smb_nic_iflist_destroy(smb_hostifs_t *);
static smb_hostifs_t *smb_nic_iflist_decode(const char **, int *);
static int smb_nic_dbcreate(void);
static sqlite *smb_nic_dbopen(int);
static void smb_nic_dbclose(sqlite *);
static boolean_t smb_nic_dbexists(void);
static boolean_t smb_nic_dbvalidate(void);
static int smb_nic_dbaddhost(const char *, const char *, char *);
static int smb_nic_dbdelhost(const char *);
static int smb_nic_dbsetinfo(sqlite *);
static int smb_nic_getinfo(char *, smb_nic_t *, int);
static boolean_t smb_nic_nbt_exclude(const smb_nic_t *, const char **, int);
static int smb_nic_nbt_get_exclude_list(char *, char **, int);
static void smb_close_sockets(int, int);
static boolean_t smb_duplicate_nic(smb_hostifs_t *iflist, struct lifreq *lifrp);
/* This is the list we will monitor */
static smb_niclist_t smb_niclist;
/*
* smb_nic_init
*
* Initializes the interface list.
*/
int
smb_nic_init(void)
{
int rc;
(void) rw_wrlock(&smb_niclist.nl_rwl);
smb_nic_list_destroy();
rc = smb_nic_list_create();
(void) rw_unlock(&smb_niclist.nl_rwl);
return (rc);
}
/*
* smb_nic_fini
*
* Destroys the interface list.
*/
void
smb_nic_fini(void)
{
(void) rw_wrlock(&smb_niclist.nl_rwl);
smb_nic_list_destroy();
(void) rw_unlock(&smb_niclist.nl_rwl);
}
/*
* smb_nic_getnum
*
* Gets the number of interfaces for the specified host.
* if host is NULL then total number of interfaces
* is returned. It's assumed that given name is a NetBIOS
* encoded name.
*/
int
smb_nic_getnum(char *nb_hostname)
{
int n = 0, i;
(void) rw_rdlock(&smb_niclist.nl_rwl);
if (nb_hostname != NULL) {
for (i = 0; i < smb_niclist.nl_cnt; i++) {
/* ignore the suffix */
if (strncasecmp(smb_niclist.nl_nics[i].nic_nbname,
nb_hostname, NETBIOS_NAME_SZ - 1) == 0)
n++;
}
} else {
n = smb_niclist.nl_cnt;
}
(void) rw_unlock(&smb_niclist.nl_rwl);
return (n);
}
/*
* smb_nic_getfirst
*
* Returns the first NIC in the interface list and
* initializes the given iterator. To get the rest of
* NICs smb_nic_getnext() must be called.
*
* Returns SMB_NIC_SUCCESS upon success or the following:
* SMB_NIC_NOT_FOUND - there's no interface available
* SMB_NIC_INVALID_ARG - 'ni' is NULL
*/
int
smb_nic_getfirst(smb_niciter_t *ni)
{
int rc = SMB_NIC_SUCCESS;
if (ni == NULL)
return (SMB_NIC_INVALID_ARG);
(void) rw_rdlock(&smb_niclist.nl_rwl);
if (smb_niclist.nl_cnt > 0) {
ni->ni_nic = smb_niclist.nl_nics[0];
ni->ni_cookie = 1;
ni->ni_seqnum = smb_niclist.nl_seqnum;
} else {
rc = SMB_NIC_NOT_FOUND;
}
(void) rw_unlock(&smb_niclist.nl_rwl);
return (rc);
}
/*
* smb_nic_getnext
*
* Returns the next NIC information based on the passed
* iterator (ni). The iterator must have previously been
* initialized by calling smb_nic_getfirst().
*
* Returns SMB_NIC_SUCCESS upon successfully finding the specified NIC
* or the following:
* SMB_NIC_INVALID_ARG - the specified iterator is invalid
* SMB_NIC_NO_MORE - reaches the end of the NIC list
* SMB_NIC_CHANGED - sequence number in the iterator is different from
* the sequence number in the NIC list which means
* the list has been changed between getfirst/getnext
* calls.
*/
int
smb_nic_getnext(smb_niciter_t *ni)
{
int rc = SMB_NIC_SUCCESS;
if ((ni == NULL) || (ni->ni_cookie < 1))
return (SMB_NIC_INVALID_ARG);
(void) rw_rdlock(&smb_niclist.nl_rwl);
if ((smb_niclist.nl_cnt > ni->ni_cookie) &&
(smb_niclist.nl_seqnum == ni->ni_seqnum)) {
ni->ni_nic = smb_niclist.nl_nics[ni->ni_cookie];
ni->ni_cookie++;
} else {
if (smb_niclist.nl_seqnum != ni->ni_seqnum)
rc = SMB_NIC_CHANGED;
else
rc = SMB_NIC_NO_MORE;
}
(void) rw_unlock(&smb_niclist.nl_rwl);
return (rc);
}
boolean_t
smb_nic_is_local(smb_inaddr_t *ipaddr)
{
smb_nic_t *cfg;
int i;
(void) rw_rdlock(&smb_niclist.nl_rwl);
for (i = 0; i < smb_niclist.nl_cnt; i++) {
cfg = &smb_niclist.nl_nics[i];
if (smb_inet_equal(ipaddr, &cfg->nic_ip)) {
(void) rw_unlock(&smb_niclist.nl_rwl);
return (B_TRUE);
}
}
(void) rw_unlock(&smb_niclist.nl_rwl);
return (B_FALSE);
}
boolean_t
smb_nic_is_same_subnet(smb_inaddr_t *ipaddr)
{
smb_nic_t *cfg;
int i;
(void) rw_rdlock(&smb_niclist.nl_rwl);
for (i = 0; i < smb_niclist.nl_cnt; i++) {
cfg = &smb_niclist.nl_nics[i];
if (smb_inet_same_subnet(ipaddr, &cfg->nic_ip, cfg->nic_mask)) {
(void) rw_unlock(&smb_niclist.nl_rwl);
return (B_TRUE);
}
}
(void) rw_unlock(&smb_niclist.nl_rwl);
return (B_FALSE);
}
/*
* smb_nic_addhost
*
* Adds an association between the given host and the specified interface
* list (if_names). This function can be called as many times as needed,
* the associations will be stored in /var/smb/smbhosts.db, which is sqlite
* database. If this file exists and it's not empty NIC list is generated
* based on the information stored in this file.
*
* host: actual system's name (not Netbios name)
* cmnt: an optional description for the CIFS server running on
* the specified host. Can be NULL.
* if_num: number of interface names in if_names arg
* if_names: array of interface names in string format
*
* Returns SMB_NIC_SUCCESS upon success, a nonzero value otherwise.
*/
int
smb_nic_addhost(const char *host, const char *cmnt,
int if_num, const char **if_names)
{
char *if_list;
char *ifname;
int buflen = 0;
int rc, i;
if ((host == NULL) || (if_num <= 0) || (if_names == NULL))
return (SMB_NIC_INVALID_ARG);
if (!smb_nic_dbexists() || !smb_nic_dbvalidate()) {
if ((rc = smb_nic_dbcreate()) != SMB_NIC_SUCCESS)
return (rc);
}
for (i = 0; i < if_num; i++) {
ifname = (char *)if_names[i];
if ((ifname == NULL) || (*ifname == '\0'))
return (SMB_NIC_INVALID_ARG);
buflen += strlen(ifname) + 1;
}
if ((if_list = malloc(buflen)) == NULL)
return (SMB_NIC_NO_MEMORY);
ifname = if_list;
for (i = 0; i < if_num - 1; i++)
ifname += snprintf(ifname, buflen, "%s,", if_names[i]);
(void) snprintf(ifname, buflen, "%s", if_names[i]);
rc = smb_nic_dbaddhost(host, cmnt, if_list);
free(if_list);
return (rc);
}
/*
* smb_nic_delhost
*
* Removes the stored interface association for the specified host
*/
int
smb_nic_delhost(const char *host)
{
if ((host == NULL) || (*host == '\0'))
return (SMB_NIC_INVALID_ARG);
if (!smb_nic_dbexists())
return (SMB_NIC_SUCCESS);
if (!smb_nic_dbvalidate()) {
(void) unlink(SMB_NIC_DB_NAME);
return (SMB_NIC_SUCCESS);
}
return (smb_nic_dbdelhost(host));
}
/*
* smb_nic_list_create
*
* Creates a NIC list either based on /var/smb/smbhosts.db or
* by getting the information from OS.
*
* Note that the caller of this function should grab the
* list lock.
*/
static int
smb_nic_list_create(void)
{
smb_hosts_t hlist;
smb_hostifs_t *iflist;
smb_nic_t *nc;
char *ifname;
char excludestr[SMB_NIC_MAXEXCLLIST_LEN];
char *exclude[SMB_PI_MAX_NETWORKS];
int nexclude = 0;
int i, rc;
if ((rc = smb_nic_hlist_create(&hlist)) != SMB_NIC_SUCCESS)
return (rc);
smb_niclist.nl_cnt = 0;
smb_niclist.nl_seqnum = random();
smb_niclist.nl_hcnt = hlist.h_num;
smb_niclist.nl_nics = calloc(hlist.h_ifnum, sizeof (smb_nic_t));
if (smb_niclist.nl_nics == NULL) {
smb_nic_hlist_destroy(&hlist);
return (SMB_NIC_NO_MEMORY);
}
*excludestr = '\0';
(void) smb_config_getstr(SMB_CI_WINS_EXCL,
excludestr, sizeof (excludestr));
nexclude = smb_nic_nbt_get_exclude_list(excludestr,
exclude, SMB_PI_MAX_NETWORKS);
nc = smb_niclist.nl_nics;
iflist = list_head(&hlist.h_list);
do {
for (i = 0; i < iflist->if_num; i++) {
ifname = iflist->if_names[i];
if (smb_nic_getinfo(ifname, nc, AF_INET) !=
SMB_NIC_SUCCESS) {
if (smb_nic_getinfo(ifname, nc,
AF_INET6) != SMB_NIC_SUCCESS) {
continue;
}
}
(void) strlcpy(nc->nic_host, iflist->if_host,
sizeof (nc->nic_host));
(void) strlcpy(nc->nic_cmnt, iflist->if_cmnt,
sizeof (nc->nic_cmnt));
smb_tonetbiosname(nc->nic_host, nc->nic_nbname, 0x00);
if (strchr(ifname, ':'))
nc->nic_smbflags |= SMB_NICF_ALIAS;
if (smb_nic_nbt_exclude(nc,
(const char **)exclude, nexclude))
nc->nic_smbflags |= SMB_NICF_NBEXCL;
smb_niclist.nl_cnt++;
nc++;
}
} while ((iflist = list_next(&hlist.h_list, iflist)) != NULL);
smb_nic_hlist_destroy(&hlist);
return (SMB_NIC_SUCCESS);
}
static void
smb_nic_list_destroy(void)
{
free(smb_niclist.nl_nics);
smb_niclist.nl_nics = NULL;
smb_niclist.nl_cnt = 0;
}
static int
smb_nic_getinfo(char *interface, smb_nic_t *nc, int family)
{
struct lifreq lifrr;
int s;
boolean_t isv6;
struct sockaddr_in6 *sin6;
struct sockaddr_in *sin;
if ((s = socket(family, SOCK_DGRAM, IPPROTO_IP)) < 0) {
return (SMB_NIC_SOCK);
}
(void) strlcpy(lifrr.lifr_name, interface, sizeof (lifrr.lifr_name));
if (ioctl(s, SIOCGLIFADDR, &lifrr) < 0) {
(void) close(s);
return (SMB_NIC_IOCTL);
}
isv6 = (lifrr.lifr_addr.ss_family == AF_INET6);
if (isv6) {
sin6 = (struct sockaddr_in6 *)(&lifrr.lifr_addr);
nc->nic_ip.a_ipv6 = sin6->sin6_addr;
nc->nic_ip.a_family = AF_INET6;
} else {
sin = (struct sockaddr_in *)(&lifrr.lifr_addr);
nc->nic_ip.a_ipv4 = (in_addr_t)(sin->sin_addr.s_addr);
nc->nic_ip.a_family = AF_INET;
}
if (smb_inet_iszero(&nc->nic_ip)) {
(void) close(s);
return (SMB_NIC_BAD_DATA);
}
/* there is no broadcast or netmask for v6 */
if (!isv6) {
if (ioctl(s, SIOCGLIFBRDADDR, &lifrr) < 0) {
(void) close(s);
return (SMB_NIC_IOCTL);
}
sin = (struct sockaddr_in *)&lifrr.lifr_broadaddr;
nc->nic_bcast = (uint32_t)sin->sin_addr.s_addr;
if (ioctl(s, SIOCGLIFNETMASK, &lifrr) < 0) {
(void) close(s);
return (SMB_NIC_IOCTL);
}
sin = (struct sockaddr_in *)&lifrr.lifr_addr;
nc->nic_mask = (uint32_t)sin->sin_addr.s_addr;
}
if (ioctl(s, SIOCGLIFFLAGS, &lifrr) < 0) {
(void) close(s);
return (SMB_NIC_IOCTL);
}
nc->nic_sysflags = lifrr.lifr_flags;
(void) strlcpy(nc->nic_ifname, interface, sizeof (nc->nic_ifname));
(void) close(s);
return (SMB_NIC_SUCCESS);
}
/*
* smb_nic_hlist_create
*
* Creates a list of hosts and their associated interfaces.
* If host database exists the information is retrieved from
* the database, otherwise it's retrieved from OS.
*
* The allocated memories for the returned list should be freed
* by calling smb_nic_hlist_destroy()
*/
static int
smb_nic_hlist_create(smb_hosts_t *hlist)
{
int rc;
list_create(&hlist->h_list, sizeof (smb_hostifs_t),
offsetof(smb_hostifs_t, if_lnd));
hlist->h_num = 0;
hlist->h_ifnum = 0;
if (smb_nic_dbexists() && smb_nic_dbvalidate()) {
rc = smb_nic_hlist_dbget(hlist);
errno = EBADF;
} else {
rc = smb_nic_hlist_sysget(hlist);
}
if (rc != SMB_NIC_SUCCESS)
smb_nic_hlist_destroy(hlist);
return (rc);
}
static void
smb_nic_hlist_destroy(smb_hosts_t *hlist)
{
smb_hostifs_t *iflist;
if (hlist == NULL)
return;
while ((iflist = list_head(&hlist->h_list)) != NULL) {
list_remove(&hlist->h_list, iflist);
smb_nic_iflist_destroy(iflist);
}
list_destroy(&hlist->h_list);
}
static void
smb_close_sockets(int s4, int s6)
{
if (s4)
(void) close(s4);
if (s6)
(void) close(s6);
}
/*
* smb_nic_hlist_sysget
*
* Get the list of currently plumbed and up interface names. The loopback (lo0)
* port is ignored
*/
static int
smb_nic_hlist_sysget(smb_hosts_t *hlist)
{
smb_hostifs_t *iflist;
struct lifconf lifc;
struct lifreq lifrl;
struct lifreq *lifrp;
char *ifname;
int ifnum;
int i;
int s4, s6;
struct lifnum lifn;
iflist = malloc(sizeof (smb_hostifs_t));
if (iflist == NULL)
return (SMB_NIC_NO_MEMORY);
bzero(iflist, sizeof (smb_hostifs_t));
if (smb_gethostname(iflist->if_host, sizeof (iflist->if_host),
SMB_CASE_PRESERVE) < 0) {
free(iflist);
return (SMB_NIC_NO_HOST);
}
(void) smb_config_getstr(SMB_CI_SYS_CMNT, iflist->if_cmnt,
sizeof (iflist->if_cmnt));
if ((s4 = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
free(iflist);
return (SMB_NIC_SOCK);
}
s6 = socket(AF_INET6, SOCK_DGRAM, 0);
lifn.lifn_family = AF_UNSPEC;
lifn.lifn_flags = 0;
if (ioctl(s4, SIOCGLIFNUM, (char *)&lifn) < 0) {
smb_close_sockets(s4, s6);
free(iflist);
syslog(LOG_ERR, "hlist_sysget: SIOCGLIFNUM errno=%d", errno);
return (SMB_NIC_IOCTL);
}
lifc.lifc_len = lifn.lifn_count * sizeof (struct lifreq);
lifc.lifc_buf = malloc(lifc.lifc_len);
if (lifc.lifc_buf == NULL) {
smb_close_sockets(s4, s6);
free(iflist);
return (SMB_NIC_NO_MEMORY);
}
bzero(lifc.lifc_buf, lifc.lifc_len);
lifc.lifc_family = AF_UNSPEC;
lifc.lifc_flags = 0;
if (ioctl(s4, SIOCGLIFCONF, (char *)&lifc) < 0) {
smb_close_sockets(s4, s6);
free(iflist);
free(lifc.lifc_buf);
return (SMB_NIC_IOCTL);
}
lifrp = lifc.lifc_req;
ifnum = lifc.lifc_len / sizeof (struct lifreq);
hlist->h_num = 0;
for (i = 0; i < ifnum; i++, lifrp++) {
if ((iflist->if_num > 0) && smb_duplicate_nic(iflist, lifrp))
continue;
/*
* Get the flags so that we can skip the loopback interface
*/
(void) memset(&lifrl, 0, sizeof (lifrl));
(void) strlcpy(lifrl.lifr_name, lifrp->lifr_name,
sizeof (lifrl.lifr_name));
if (ioctl(s4, SIOCGLIFFLAGS, (caddr_t)&lifrl) < 0) {
if ((s6 < 0) ||
(ioctl(s6, SIOCGLIFFLAGS, (caddr_t)&lifrl) < 0)) {
smb_close_sockets(s4, s6);
free(lifc.lifc_buf);
smb_nic_iflist_destroy(iflist);
return (SMB_NIC_IOCTL);
}
}
if (lifrl.lifr_flags & IFF_LOOPBACK) {
continue;
}
if ((lifrl.lifr_flags & IFF_UP) == 0) {
continue;
}
ifname = strdup(lifrp->lifr_name);
if (ifname == NULL) {
smb_close_sockets(s4, s6);
free(lifc.lifc_buf);
smb_nic_iflist_destroy(iflist);
return (SMB_NIC_NO_MEMORY);
}
iflist->if_names[iflist->if_num++] = ifname;
}
hlist->h_ifnum = iflist->if_num;
hlist->h_num = 1;
smb_close_sockets(s4, s6);
free(lifc.lifc_buf);
list_insert_tail(&hlist->h_list, iflist);
return (SMB_NIC_SUCCESS);
}
static boolean_t
smb_duplicate_nic(smb_hostifs_t *iflist, struct lifreq *lifrp)
{
int j;
/*
* throw out duplicate names
*/
for (j = 0; j < iflist->if_num; j++) {
if (strcmp(iflist->if_names[j],
lifrp->lifr_name) == 0)
return (B_TRUE);
}
return (B_FALSE);
}
static int
smb_nic_hlist_dbget(smb_hosts_t *hlist)
{
smb_hostifs_t *iflist;
sqlite *db;
sqlite_vm *vm;
int err = SMB_NIC_SUCCESS;
const char **values;
char *sql;
char *errmsg = NULL;
int ncol, rc;
sql = sqlite_mprintf("SELECT * FROM hosts");
if (sql == NULL)
return (SMB_NIC_NO_MEMORY);
db = smb_nic_dbopen(SMB_NIC_DB_ORD);
if (db == NULL) {
sqlite_freemem(sql);
return (SMB_NIC_DBOPEN_FAILED);
}
rc = sqlite_compile(db, sql, NULL, &vm, &errmsg);
sqlite_freemem(sql);
if (rc != SQLITE_OK) {
smb_nic_dbclose(db);
syslog(LOG_ERR, "Failed to query hosts info from host " \
"database. Unable to create virtual machine (%s).",
NULL_MSGCHK(errmsg));
return (SMB_NIC_DB_ERROR);
}
do {
rc = sqlite_step(vm, &ncol, &values, NULL);
if (rc == SQLITE_ROW) {
if (ncol != SMB_NIC_HTBL_NCOL) {
err = SMB_NIC_DB_ERROR;
break;
}
if ((iflist = smb_nic_iflist_decode(values, &err)) ==
NULL) {
break;
}
list_insert_tail(&hlist->h_list, iflist);
hlist->h_num++;
hlist->h_ifnum += iflist->if_num;
}
} while (rc == SQLITE_ROW);
if (rc != SQLITE_DONE && err == SMB_NIC_SUCCESS) {
/* set this error if no previous error */
err = SMB_LGRP_DBEXEC_FAILED;
}
rc = sqlite_finalize(vm, &errmsg);
if (rc != SQLITE_OK) {
syslog(LOG_ERR, "Failed to query hosts info from host " \
"database. Unable to destroy virtual machine (%s).",
NULL_MSGCHK(errmsg));
if (err == SMB_NIC_SUCCESS) {
/* set this error if no previous error */
err = SMB_NIC_DB_ERROR;
}
}
smb_nic_dbclose(db);
return (err);
}
static smb_hostifs_t *
smb_nic_iflist_decode(const char **values, int *err)
{
smb_hostifs_t *iflist;
char *host;
char *cmnt;
char *ifnames;
char *lasts;
char *ifname;
int if_num = 0;
host = (char *)values[SMB_NIC_HTBL_HOST];
cmnt = (char *)values[SMB_NIC_HTBL_CMNT];
ifnames = (char *)values[SMB_NIC_HTBL_IFS];
if ((host == NULL) || (ifnames == NULL)) {
*err = SMB_NIC_INVALID_ARG;
return (NULL);
}
iflist = malloc(sizeof (smb_hostifs_t));
if (iflist == NULL) {
*err = SMB_NIC_NO_MEMORY;
return (NULL);
}
bzero(iflist, sizeof (smb_hostifs_t));
(void) strlcpy(iflist->if_host, host, sizeof (iflist->if_host));
(void) strlcpy(iflist->if_cmnt, (cmnt) ? cmnt : "",
sizeof (iflist->if_cmnt));
if ((ifname = strtok_r(ifnames, ",", &lasts)) == NULL) {
*err = SMB_NIC_BAD_DATA;
return (NULL);
}
iflist->if_names[if_num++] = strdup(ifname);
while ((ifname = strtok_r(NULL, ",", &lasts)) != NULL)
iflist->if_names[if_num++] = strdup(ifname);
iflist->if_num = if_num;
for (if_num = 0; if_num < iflist->if_num; if_num++) {
if (iflist->if_names[if_num] == NULL) {
smb_nic_iflist_destroy(iflist);
*err = SMB_NIC_NO_MEMORY;
return (NULL);
}
}
*err = SMB_NIC_SUCCESS;
return (iflist);
}
/*
* smb_nic_iflist_destroy
*
* Frees allocated memory for the given IF names lists.
*/
static void
smb_nic_iflist_destroy(smb_hostifs_t *iflist)
{
int i;
if (iflist == NULL)
return;
for (i = 0; i < iflist->if_num; i++)
free(iflist->if_names[i]);
free(iflist);
}
/*
* Functions to manage host/interface database
*
* Each entry in the hosts table associates a hostname with a
* list of interface names. The host/interface association could
* be added by calling smb_nic_addhost() and could be removed by
* calling smb_nic_delhost(). If the database exists and it contains
* valid information then the inteface list wouldn't be obtained
* from system using ioctl.
*/
/*
* smb_nic_dbcreate
*
* Creates the host database based on the defined SQL statement.
* It also initializes db_info table.
*/
static int
smb_nic_dbcreate(void)
{
sqlite *db = NULL;
char *errmsg = NULL;
int rc, err = SMB_NIC_SUCCESS;
(void) unlink(SMB_NIC_DB_NAME);
db = sqlite_open(SMB_NIC_DB_NAME, 0600, &errmsg);
if (db == NULL) {
syslog(LOG_ERR, "Failed to create host database (%s).",
NULL_MSGCHK(errmsg));
sqlite_freemem(errmsg);
return (SMB_NIC_DBOPEN_FAILED);
}
sqlite_busy_timeout(db, SMB_NIC_DB_TIMEOUT);
rc = sqlite_exec(db, "BEGIN TRANSACTION", NULL, NULL, &errmsg);
if (rc != SQLITE_OK) {
syslog(LOG_ERR, "Failed to create host database. Unable to " \
"begin database transaction (%s).", NULL_MSGCHK(errmsg));
sqlite_freemem(errmsg);
sqlite_close(db);
return (SMB_NIC_DBEXEC_FAILED);
}
if (sqlite_exec(db, SMB_NIC_DB_SQL, NULL, NULL, &errmsg) == SQLITE_OK) {
rc = sqlite_exec(db, "COMMIT TRANSACTION", NULL, NULL,
&errmsg);
if (rc == SQLITE_OK)
err = smb_nic_dbsetinfo(db);
if (err != SMB_NIC_SUCCESS)
rc = sqlite_exec(db, "ROLLBACK TRANSACTION", NULL, NULL,
&errmsg);
} else {
syslog(LOG_ERR, "Failed to create host database. Unable to " \
"initialize host database (%s).", NULL_MSGCHK(errmsg));
sqlite_freemem(errmsg);
rc = sqlite_exec(db, "ROLLBACK TRANSACTION", NULL, NULL,
&errmsg);
}
if (rc != SQLITE_OK) {
/* this is bad - database may be left in a locked state */
syslog(LOG_ERR, "Failed to create host database. Unable to " \
"close a transaction (%s).", NULL_MSGCHK(errmsg));
sqlite_freemem(errmsg);
err = SMB_NIC_DBINIT_FAILED;
}
(void) sqlite_close(db);
return (err);
}
/*
* smb_nic_dbopen
*
* Opens host database with the given mode.
*/
static sqlite *
smb_nic_dbopen(int mode)
{
sqlite *db;
char *errmsg = NULL;
db = sqlite_open(SMB_NIC_DB_NAME, mode, &errmsg);
if (db == NULL) {
syslog(LOG_ERR, "Failed to open host database: %s (%s).",
SMB_NIC_DB_NAME, NULL_MSGCHK(errmsg));
sqlite_freemem(errmsg);
}
return (db);
}
/*
* smb_nic_dbclose
*
* Closes the given database handle
*/
static void
smb_nic_dbclose(sqlite *db)
{
if (db) {
sqlite_close(db);
}
}
static boolean_t
smb_nic_dbexists(void)
{
return (access(SMB_NIC_DB_NAME, F_OK) == 0);
}
static boolean_t
smb_nic_dbvalidate(void)
{
sqlite *db;
char *errmsg = NULL;
char *sql;
char **result;
int nrow, ncol;
boolean_t check = B_TRUE;
int rc;
sql = sqlite_mprintf("SELECT * FROM db_info");
if (sql == NULL)
return (B_FALSE);
db = smb_nic_dbopen(SMB_NIC_DB_ORW);
if (db == NULL) {
sqlite_freemem(sql);
return (B_FALSE);
}
rc = sqlite_get_table(db, sql, &result, &nrow, &ncol, &errmsg);
sqlite_freemem(sql);
if (rc != SQLITE_OK) {
syslog(LOG_ERR, "Failed to validate host database. Unable " \
"to get database information (%s).", NULL_MSGCHK(errmsg));
sqlite_freemem(errmsg);
smb_nic_dbclose(db);
return (B_FALSE);
}
if (nrow != 1 || ncol != 3) {
syslog(LOG_ERR, "Failed to validate host database: bad " \
"db_info table.");
sqlite_free_table(result);
smb_nic_dbclose(db);
return (B_FALSE);
}
if ((atoi(result[3]) != SMB_NIC_DB_VERMAJOR) ||
(atoi(result[4]) != SMB_NIC_DB_VERMINOR) ||
(atoi(result[5]) != SMB_NIC_DB_MAGIC)) {
syslog(LOG_ERR, "Failed to validate host database: bad " \
"db_info content.");
sqlite_free_table(result);
smb_nic_dbclose(db);
return (B_FALSE);
}
sqlite_free_table(result);
sql = sqlite_mprintf("SELECT hostname FROM hosts");
if (sql == NULL) {
smb_nic_dbclose(db);
return (B_FALSE);
}
rc = sqlite_get_table(db, sql, &result, &nrow, &ncol, &errmsg);
sqlite_freemem(sql);
if (rc != SQLITE_OK) {
syslog(LOG_ERR, "Failed to validate host database. Unable " \
"to query for host (%s).", NULL_MSGCHK(errmsg));
sqlite_freemem(errmsg);
smb_nic_dbclose(db);
return (B_FALSE);
}
sqlite_free_table(result);
if (nrow == 0)
/* No hosts in the database */
check = B_FALSE;
smb_nic_dbclose(db);
return (check);
}
static int
smb_nic_dbaddhost(const char *host, const char *cmnt, char *if_list)
{
sqlite *db;
char *sql;
char *errmsg;
int rc, err = SMB_NIC_SUCCESS;
sql = sqlite_mprintf("REPLACE INTO hosts (hostname, comment, ifnames)"
"VALUES ('%s', '%q', '%s')", host, (cmnt) ? cmnt : "", if_list);
if (sql == NULL)
return (SMB_NIC_NO_MEMORY);
db = smb_nic_dbopen(SMB_NIC_DB_ORW);
if (db == NULL) {
sqlite_freemem(sql);
return (SMB_NIC_DBOPEN_FAILED);
}
rc = sqlite_exec(db, sql, NULL, NULL, &errmsg);
sqlite_freemem(sql);
smb_nic_dbclose(db);
if (rc != SQLITE_OK) {
syslog(LOG_ERR, "Failed to add host %s to host database (%s).",
host, NULL_MSGCHK(errmsg));
sqlite_freemem(errmsg);
err = SMB_NIC_INSERT_FAILED;
}
return (err);
}
static int
smb_nic_dbdelhost(const char *host)
{
sqlite *db;
char *sql;
char *errmsg;
int rc, err = SMB_NIC_SUCCESS;
sql = sqlite_mprintf("DELETE FROM hosts WHERE hostname = '%s'", host);
if (sql == NULL)
return (SMB_NIC_NO_MEMORY);
db = smb_nic_dbopen(SMB_NIC_DB_ORW);
if (db == NULL) {
sqlite_freemem(sql);
return (SMB_NIC_DBOPEN_FAILED);
}
rc = sqlite_exec(db, sql, NULL, NULL, &errmsg);
sqlite_freemem(sql);
smb_nic_dbclose(db);
if (rc != SQLITE_OK) {
syslog(LOG_ERR, "Failed to delete host %s from host " \
"database (%s).", host, NULL_MSGCHK(errmsg));
sqlite_freemem(errmsg);
err = SMB_NIC_DELETE_FAILED;
}
return (err);
}
/*
* smb_nic_dbsetinfo
*
* Initializes the db_info table upon database creation.
*/
static int
smb_nic_dbsetinfo(sqlite *db)
{
char *errmsg = NULL;
char *sql;
int rc, err = SMB_NIC_SUCCESS;
sql = sqlite_mprintf("INSERT INTO db_info (ver_major, ver_minor,"
" magic) VALUES (%d, %d, %d)", SMB_NIC_DB_VERMAJOR,
SMB_NIC_DB_VERMINOR, SMB_NIC_DB_MAGIC);
if (sql == NULL)
return (SMB_NIC_NO_MEMORY);
rc = sqlite_exec(db, sql, NULL, NULL, &errmsg);
sqlite_freemem(sql);
if (rc != SQLITE_OK) {
syslog(LOG_ERR, "Failed to add database information to " \
"host database (%s).", NULL_MSGCHK(errmsg));
sqlite_freemem(errmsg);
err = SMB_NIC_DBINIT_ERROR;
}
return (err);
}
/*
* smb_nic_nbt_get_exclude_list
*
* Construct an array containing list of i/f names on which NetBIOS traffic is
* to be disabled, from a string containing a list of comma separated i/f names.
*
* Returns the number of i/f on which NetBIOS traffic is to be disabled.
*/
static int
smb_nic_nbt_get_exclude_list(char *excludestr, char **iflist, int max_nifs)
{
int n = 0;
char *entry;
bzero(iflist, SMB_PI_MAX_NETWORKS * sizeof (char *));
(void) trim_whitespace(excludestr);
(void) strcanon(excludestr, ",");
if (*excludestr == '\0')
return (0);
while (((iflist[n] = strsep(&excludestr, ",")) != NULL) &&
(n < max_nifs)) {
entry = iflist[n];
if (*entry == '\0')
continue;
n++;
}
return (n);
}
/*
* smb_nic_nbt_exclude
*
* Check to see if the given interface name should send NetBIOS traffic or not.
*
* Returns TRUE if NetBIOS traffic is disabled on an interface name.
* Returns FALSE otherwise.
*/
static boolean_t
smb_nic_nbt_exclude(const smb_nic_t *nc, const char **exclude_list,
int nexclude)
{
char buf[INET6_ADDRSTRLEN];
const char *ifname = nc->nic_ifname;
int i;
if (inet_ntop(AF_INET, &nc->nic_ip, buf, INET6_ADDRSTRLEN) == NULL)
buf[0] = '\0';
for (i = 0; i < nexclude; i++) {
if (strcmp(ifname, exclude_list[i]) == 0)
return (B_TRUE);
if ((buf[0] != '\0') && (strcmp(buf, exclude_list[i]) == 0))
return (B_TRUE);
}
return (B_FALSE);
}
|