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
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
|
/*
* 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 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <strings.h>
#include <syslog.h>
#include <netdb.h>
#include <pthread.h>
#include <signal.h>
#include <errno.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <iscsitgt_impl.h>
#include "isns_protocol.h"
#include "isns_client.h"
#include "target.h"
#include "queue.h"
typedef struct {
uint32_t pf_family;
uint32_t ip_len;
uint32_t ai_addrlen;
union {
in_addr_t in;
in6_addr_t in6;
} ip_adr;
} ip_t;
#define ISNS_TGT_LOGOUT 54321
extern target_queue_t *mgmtq;
/*
* Global
* Parameters for ESI/SCN processing.
* scn_port: ESI/SCN port to receive ISNS_ESI & ISNS_SCN messages
* isns_args:
* eid_ip: Entity IP info
*/
static int scn_port = 0;
static esi_scn_arg_t isns_args;
static ip_t eid_ip;
static int num_reg = 0;
static pthread_t scn_tid = 0;
static Boolean_t isns_shutdown = False;
Boolean_t isns_initialized = False;
sema_t isns_sema;
target_queue_t *mgmtq = NULL;
static int get_ip_addr(char *node, ip_t *sa);
static int isns_op_all(uint16_t);
static int append_tpgt(tgt_node_t *, isns_pdu_t *);
static void process_esi(int, isns_pdu_t *);
static void process_scn(int, isns_pdu_t *);
static void *esi_scn_thr(void *);
static int process_rsp(isns_pdu_t *, isns_rsp_t *);
static int isns_dev_attr_reg(int, tgt_node_t *, char *, char *);
static int isns_dev_attr_dereg(int, char *);
static int isns_scn_reg(int, char *);
static int isns_scn_dereg(int so, char *node);
static tgt_node_t *find_tgt_by_name(char *, char **);
static tgt_node_t *find_next_tgt(tgt_node_t *, char **);
/*
* find_tgt_by_name searches DB by iscsi name or local name, if found
* returns tgt_node_t. iname needs to be free by caller.
*/
static tgt_node_t *
find_tgt_by_name(char *targ, char **iname)
{
tgt_node_t *tgt = NULL;
while ((tgt = tgt_node_next(targets_config, XML_ELEMENT_TARG, tgt))
!= NULL) {
if (tgt_find_value_str(tgt, XML_ELEMENT_INAME, iname)
== FALSE) {
syslog(LOG_ALERT, "ISNS: Missing iscsi name\n");
break;
}
/* match either iscsi name or local name */
if (strcmp(targ, tgt->x_value) == 0 ||
strcmp(targ, *iname) == 0) {
return (tgt);
}
free(*iname);
}
return (NULL);
}
static tgt_node_t *
find_next_tgt(tgt_node_t *tgt, char **iname)
{
while ((tgt = tgt_node_next(targets_config, XML_ELEMENT_TARG, tgt))
!= NULL) {
if (tgt_find_value_str(tgt, XML_ELEMENT_INAME, iname)
== FALSE) {
continue;
}
return (tgt);
}
return (NULL);
}
/*
* Find ip-addr associated with TPGT, don't send if no ip-addr is
* found for a TPGT
*/
static int
append_tpgt(tgt_node_t *tgt, isns_pdu_t *cmd)
{
tgt_node_t *t, *x;
tgt_node_t *pgt = NULL;
tgt_node_t *ip = NULL;
tgt_node_t *tpgt = NULL;
ip_t eid;
/* Always add the default TPGT (1) */
isns_append_attr(cmd, ISNS_PG_TAG_ATTR_ID, ISNS_PG_TAG_SZ, NULL, 1);
if (isns_append_attr(cmd, ISNS_PG_PORTAL_IP_ADDR_ATTR_ID,
eid_ip.ai_addrlen, (void *)&eid_ip.ip_adr,
eid_ip.ip_len) != 0) {
return (-1);
}
if (isns_append_attr(cmd, ISNS_PG_PORTAL_PORT_ATTR_ID,
ISNS_PORT_SZ, NULL, iscsi_port) != 0) {
return (-1);
}
/* Get the remainning TPGT-LIST */
if ((t = tgt_node_next(tgt, XML_ELEMENT_TPGTLIST, NULL))
!= NULL) {
/* find tgpt from tpgt-list */
while ((pgt = tgt_node_next(t, XML_ELEMENT_TPGT, pgt))
!= NULL) {
/* update isns only if TPGT contains ip_addr */
while ((tpgt = tgt_node_next(main_config,
XML_ELEMENT_TPGT, tpgt)) != NULL) {
if (strcmp(pgt->x_value, tpgt->x_value) != 0)
continue;
if ((ip = tgt_node_next(tpgt,
XML_ELEMENT_IPADDR, NULL)) != NULL)
break;
}
if (tpgt == NULL || ip == NULL)
continue;
if (isns_append_attr(cmd, ISNS_PG_TAG_ATTR_ID,
ISNS_PG_TAG_SZ, NULL,
strtol(pgt->x_value, NULL, 0)) != 0) {
return (-1);
}
/* get ip-addr & port */
for (x = tpgt->x_child; x; x = x->x_sibling) {
get_ip_addr(x->x_value, &eid);
if (isns_append_attr(cmd,
ISNS_PG_PORTAL_IP_ADDR_ATTR_ID,
eid.ai_addrlen, (void *)&eid.ip_adr,
eid.ip_len) != 0) {
return (-1);
}
if (isns_append_attr(cmd,
ISNS_PG_PORTAL_PORT_ATTR_ID,
ISNS_PORT_SZ, NULL, iscsi_port) != 0) {
return (-1);
}
}
}
}
return (0);
}
/*
* process_scn()
* -Added/Updated object: nop, initiator is verified during connect
*
* -Removed object: logout_targ if still connected
*
* RFC 4171 section 5.6.5.9
* destination attribute is always the 1st attribute in the SCN message,
* then follows by SCN_BITMAP(35) & Source_Attribute(32)
*/
static void
process_scn(int so, isns_pdu_t *scn)
{
uint8_t *ptr = scn->payload;
isns_tlv_t *tlv;
uint16_t cnt = 0;
uint32_t got_dest = 0;
uint32_t got_source = 0;
uint32_t bitmap = 0;
uint32_t got_bitmap = 0;
char dest[MAXNAMELEN];
char source[MAXNAMELEN];
queue_prt(mgmtq, Q_ISNS_DBG, "PROCESS_SCN %u\n",
scn->payload_len);
if (scn->payload_len < TAG_LEN_SZ) {
syslog(LOG_ALERT, "ISNS SCN message error\n");
return;
}
while (cnt < scn->payload_len) {
/* LINTED */
tlv = (isns_tlv_t *)ptr;
tlv->attr_id = ntohl(tlv->attr_id);
tlv->attr_len = ntohl(tlv->attr_len);
queue_prt(mgmtq, Q_ISNS_DBG, "PROCESS_SCN %u %u\n",
tlv->attr_id, tlv->attr_len);
/*
* devAttrQry the source attribute, process if node_type
* is initiator
*/
switch (tlv->attr_id) {
case ISNS_ISCSI_NAME_ATTR_ID:
if (got_dest == 0) {
bcopy(tlv->attr_value, dest,
tlv->attr_len);
queue_prt(mgmtq, Q_ISNS_DBG,
"PROCESS_SCN dest %s\n", dest);
got_dest = 1;
} else {
bcopy(tlv->attr_value, source,
tlv->attr_len);
queue_prt(mgmtq, Q_ISNS_DBG,
"PROCESS_SCN source %s\n", source);
got_source = 1;
}
break;
case ISNS_ISCSI_SCN_BITMAP_ATTR_ID:
bcopy(tlv->attr_value, &bitmap, tlv->attr_len);
bitmap = ntohl(bitmap);
queue_prt(mgmtq, Q_ISNS_DBG,
"PROCESS_SCN bitmap %u\n", bitmap);
got_bitmap = 1;
break;
default:
queue_prt(mgmtq, Q_ISNS_DBG,
"PROCESS_SCN DEFAULT\n");
break;
}
if (got_source && !got_bitmap) {
queue_prt(mgmtq, Q_ISNS_DBG,
"process_scn: message out-of-order\n");
return;
}
if (got_source && got_bitmap) {
switch (bitmap) {
case ISNS_OBJ_ADDED:
case ISNS_OBJ_UPDATED:
queue_prt(mgmtq, Q_ISNS_DBG,
"PROCESS_SCN OBJ ADDED");
isns_update();
break;
case ISNS_OBJ_REMOVED:
queue_prt(mgmtq, Q_ISNS_DBG,
"PROCESS_SCN OBJ REMOVED");
/* logout target */
if (got_dest == 0) {
syslog(LOG_ALERT,
"ISNS protocol error\n");
continue;
}
logout_targ(dest);
break;
default:
break;
}
/* clear got_xxx */
got_source = 0;
got_bitmap = 1;
}
/* next attribute */
cnt += ISNS_ATTR_SZ(tlv->attr_len);
ptr += ISNS_ATTR_SZ(tlv->attr_len);
}
queue_prt(mgmtq, Q_ISNS_DBG, "DONE PROCESS_SCN\n");
}
/*
* Process ESI requires a success response only
*/
static void
process_esi(int so, isns_pdu_t *esi)
{
isns_rsp_t *cmd;
int pl_len;
if (isns_create_pdu(ISNS_ESI_RSP, 0, (isns_pdu_t **)&cmd) != 0) {
return;
}
pl_len = esi->payload_len + ISNS_STATUS_SZ;
if (pl_len > MAX_PDU_PAYLOAD_SZ) {
syslog(LOG_ALERT, "process_esi: payload size exceeded");
isns_free_pdu(cmd);
return;
}
/* change the xid to the request xid */
cmd->xid = htons(esi->xid);
cmd->status = htonl(ISNS_RSP_SUCCESSFUL);
/* copy original data */
bcopy(esi->payload, cmd->data, esi->payload_len);
cmd->pdu_len = htons(pl_len);
if (isns_send(so, (isns_pdu_t *)cmd) < 0) {
syslog(LOG_ALERT, "process_esi failed to isns_send");
}
isns_free_pdu(cmd);
}
/*
* esi_scn_thr() is the thread creates an end point to receive and process
* ESI & SCN messages. This thread is created when isns_access is enabled
* and for the duration of the iscsi daemon
*/
static void
*esi_scn_thr(void *arg)
{
struct sockaddr sa, *ai;
struct sockaddr_in sin;
struct sockaddr_in6 sin6;
int so, fd;
socklen_t len;
char strport[NI_MAXSERV];
int pf;
esi_scn_arg_t *args = (esi_scn_arg_t *)arg;
isns_pdu_t *scn = NULL;
/*
* open isns server connect and determine which PF_INET
* to use
*/
if ((so = isns_open(args->server)) < 0) {
syslog(LOG_ERR,
"esi_scn_thr: isns server %s not found", args->server);
return (NULL);
}
len = sizeof (sa);
if (getsockname(so, &sa, &len) < 0) {
isns_close(so);
syslog(LOG_ALERT, "getsockname failed");
return (NULL);
}
pf = sa.sa_family;
isns_close(so);
if (pf != PF_INET && pf != PF_INET6) {
syslog(LOG_ERR, "esi_scn_thr: unknown domain type");
return (NULL);
}
/*
* create and bind SCN socket
* save the scn port info
*/
if ((so = socket(pf, SOCK_STREAM, 0)) == -1) {
syslog(LOG_ALERT, "socket failed");
return (NULL);
}
if (pf == PF_INET) {
bzero(&sin, sizeof (sin));
sin.sin_family = PF_INET;
sin.sin_port = htons(0);
sin.sin_addr.s_addr = INADDR_ANY;
ai = (struct sockaddr *)&sin;
len = sizeof (sin);
} else {
bzero(&sin6, sizeof (sin6));
sin6.sin6_family = PF_INET6;
sin6.sin6_port = htons(0);
sin6.sin6_addr = in6addr_any;
ai = (struct sockaddr *)&sin6;
len = sizeof (sin6);
}
(void) setsockopt(so, SOL_SOCKET, SO_REUSEADDR, 0, 0);
if (bind(so, ai, len) < 0) {
syslog(LOG_ALERT, "esi_scn_thr: bind failed");
return (NULL);
}
/* get scn port info */
len = sizeof (sa);
if (getsockname(so, &sa, &len) < 0) {
syslog(LOG_ALERT, "getsockname failed");
return (NULL);
}
if (getnameinfo(&sa, len, NULL, 0, strport, NI_MAXSERV,
NI_NUMERICSERV) != 0) {
syslog(LOG_ALERT, "getnameinfo failed");
return (NULL);
}
scn_port = atoi(strport);
sema_post(&isns_sema);
if (listen(so, 5) < 0) {
syslog(LOG_ALERT, "esi_scn_thr: failed listen");
return (NULL);
}
/* listen for esi or scn messages */
while (isns_shutdown == False) {
if ((fd = accept(so, &sa, &len)) < 0) {
syslog(LOG_ALERT, "esi_scn_thr: failed accept");
continue;
}
if (isns_recv(fd, (isns_rsp_t **)&scn) == 0) {
/* Just return success for ESI */
switch (scn->func_id) {
case ISNS_ESI:
process_esi(fd, scn);
break;
case ISNS_SCN:
/* call the SCN process function */
process_scn(fd, scn);
break;
default:
syslog(LOG_ERR,
"esi_scn_thr: Invalid funcid %d\n",
scn->func_id);
break;
}
/* free response resource */
isns_free_pdu(scn);
} else {
syslog(LOG_ALERT, "esi_scn_thr fails isns_recv ");
}
close(fd);
}
return (NULL);
}
/*
* Perform operation on all targets
*/
static int
isns_op_all(uint16_t op)
{
int so;
tgt_node_t *tgt = NULL;
char *iname;
if ((so = isns_open(isns_args.server)) == -1) {
syslog(LOG_ERR, "isns_reg failed");
return (-1);
}
while ((tgt = tgt_node_next(targets_config, XML_ELEMENT_TARG, tgt))
!= NULL) {
if (tgt_find_value_str(tgt, XML_ELEMENT_INAME, &iname)
== FALSE) {
continue;
}
switch (op) {
case ISNS_DEV_DEREG:
if (isns_dev_attr_dereg(so, iname) == -1) {
syslog(LOG_ERR,
"ISNS de-register failed\n");
}
num_reg = 0;
break;
case ISNS_SCN_DEREG:
if (isns_scn_dereg(so, iname) == -1) {
syslog(LOG_ERR,
"ISNS SCN de-register failed\n");
}
break;
case ISNS_SCN_REG:
if (isns_scn_reg(so, iname) == -1) {
syslog(LOG_ERR,
"ISNS SCN register failed\n");
}
break;
case ISNS_TGT_LOGOUT:
logout_targ(iname);
break;
default:
break;
}
free(iname);
}
isns_close(so);
return (0);
}
/*
* isns_init() needs to be call before all ISNS operations.
* Save the isns_server & entity name.
* Start esi_scn_thr to receive ESI & SCN messages
*/
int
isns_init(target_queue_t *q)
{
char *isns_srv, *isns_port;
if (q != NULL)
mgmtq = q;
if (isns_enabled() == False)
return (0);
/* initialize */
sema_init(&isns_sema, 0, USYNC_THREAD, NULL);
/* get isns server info */
tgt_find_value_str(main_config, XML_ELEMENT_ISNS_SERV, &isns_srv);
isns_port = strchr(isns_srv, ':');
if (isns_port == NULL) {
isns_args.isns_port = ISNS_DEFAULT_SERVER_PORT;
} else {
isns_args.isns_port = strtoul(isns_port + 1, NULL, 0);
if (isns_args.isns_port == 0) {
isns_args.isns_port = ISNS_DEFAULT_SERVER_PORT;
}
*isns_port = '\0';
}
bcopy(isns_srv, isns_args.server, MAXHOSTNAMELEN);
free(isns_srv);
/* get local hostname for entity usage */
if ((gethostname(isns_args.entity, MAXHOSTNAMELEN) < 0) ||
(get_ip_addr(isns_args.entity, &eid_ip) < 0)) {
syslog(LOG_ERR, "ISNS fails to get ENTITY properties");
return (-1);
}
if (pthread_create(&scn_tid, NULL, esi_scn_thr, (void *)&isns_args) !=
0) {
syslog(LOG_ALERT, "isns_init failed to pthread_create");
return (-1);
}
if (sema_wait(&isns_sema) != 0) {
syslog(LOG_ERR, "sema_wait error\n");
}
isns_initialized = True;
/*
* register all targets, what happens if no targets are created yet?
* this should not be a failure, when new target gets created, update
* gets call.
* what if SCN register fails?
*/
if (isns_reg_all() == 0) {
/* scn register all targets */
if (isns_op_all(ISNS_SCN_REG) != 0) {
syslog(LOG_ERR, "SCN registrations failed\n");
isns_op_all(ISNS_DEV_DEREG);
return (-1);
}
}
return (0);
}
/*
* isns_update gets call on modify_admin, this is changes to
* isns access and/or isns server
*/
int
isns_update()
{
char *isns_srv = NULL, *isns_port;
if (isns_initialized == False) {
/* isns enabled after iscsi started */
if (isns_enabled() == True) {
isns_init(NULL);
}
return (0);
}
/*
* isns is disabled after enabled,
* log off all targets and fini isns service
*/
if (isns_initialized == True && isns_enabled() == False) {
isns_fini();
return (0);
}
/*
* isns is already initialized and isns_access is still enabled,
* let's update the isns_server name
*/
tgt_find_value_str(main_config, XML_ELEMENT_ISNS_SERV, &isns_srv);
isns_port = strchr(isns_srv, ':');
if (isns_port == NULL) {
isns_args.isns_port = ISNS_DEFAULT_SERVER_PORT;
} else {
isns_args.isns_port = strtoul(isns_port + 1, NULL, 0);
if (isns_args.isns_port == 0) {
isns_args.isns_port = ISNS_DEFAULT_SERVER_PORT;
}
*isns_port = '\0';
}
if (strcmp(isns_srv, isns_args.server) != 0) {
/* de-reg from old iSNS server */
(void) isns_dereg_all();
}
bcopy(isns_srv, isns_args.server, MAXHOSTNAMELEN);
free(isns_srv);
if (isns_reg_all() == 0) {
/* scn register all targets */
if (isns_op_all(ISNS_SCN_REG) != 0) {
syslog(LOG_ERR, "SCN registrations failed\n");
isns_op_all(ISNS_DEV_DEREG);
return (-1);
}
}
return (0);
}
/*
* isns_fini is called when isns access is disable
*/
void
isns_fini()
{
/*
* de-register all targets 1st, this prevents initiator from
* logging back in
*/
isns_op_all(ISNS_SCN_DEREG);
isns_op_all(ISNS_DEV_DEREG);
/* log off all targets */
isns_op_all(ISNS_TGT_LOGOUT);
}
static int
get_ip_addr(char *node, ip_t *sa)
{
struct addrinfo *ai, *aip;
struct sockaddr_in *sin;
struct sockaddr_in6 *sin6;
if (getaddrinfo(node, NULL, NULL, &ai) != 0) {
syslog(LOG_ALERT, "ISNS server not found");
return (-1);
}
bzero(sa, sizeof (ip_t));
aip = ai;
do {
sa->ai_addrlen = aip->ai_addrlen;
sa->pf_family = aip->ai_family;
switch (aip->ai_family) {
case PF_INET:
/* LINTED */
sin = (struct sockaddr_in *)aip->ai_addr;
sa->ip_len = sizeof (in_addr_t);
bcopy(&sin->sin_addr, (void *)&sa->ip_adr.in,
sa->ip_len);
return (0);
case PF_INET6:
/* LINTED */
sin6 = (struct sockaddr_in6 *)aip->ai_addr;
sa->ip_len = sizeof (in6_addr_t);
bcopy(&sin6->sin6_addr, &sa->ip_adr.in6,
sa->ip_len);
return (0);
default:
continue;
}
} while ((aip = aip->ai_next) != NULL);
return (-1);
}
/*
* Process isns response, need to verify same transaction id, func_id
* as the isns command, the isns command is in network byte order,
* the isns response is in host byte order
*/
static int
process_rsp(isns_pdu_t *cmd, isns_rsp_t *rsp)
{
queue_prt(mgmtq, Q_ISNS_DBG, "PROCESS_RSP");
/*
* Process responses:
* -verify sucessful response
* -verify match xid
* -process operating attributes
* For DevAttrReg & DevAttrQry and most isns command,
* the response func_id is command_func_id | 0x8000.
*/
rsp->status = ntohl(rsp->status);
if (rsp->status != ISNS_RSP_SUCCESSFUL ||
rsp->xid != ntohs(cmd->xid) ||
rsp->func_id != (ntohs(cmd->func_id) | 0x8000)) {
queue_prt(mgmtq, Q_ISNS_DBG,
"cmd failed with: status= %d xid= %d %d "\
"response attribute %x\n", rsp->status, rsp->xid,\
ntohs(cmd->xid), rsp->func_id);
return (-1);
}
return (0);
}
/*
* DevAttrDereg
*/
static int
isns_dev_attr_dereg(int so, char *node)
{
isns_pdu_t *cmd = NULL;
isns_rsp_t *rsp = NULL;
uint32_t flags = 0;
int ret = -1;
queue_prt(mgmtq, Q_ISNS_DBG, "ISNS_DEV_ATTR_DEREG");
if (isns_create_pdu(ISNS_DEV_DEREG, flags, &cmd) != 0) {
return (-1);
}
/* add source attribute */
if (isns_append_attr(cmd, ISNS_ISCSI_NAME_ATTR_ID,
STRLEN(node), node, 0) != 0) {
goto error;
}
/* add delimiter */
if (isns_append_attr(cmd, ISNS_DELIMITER_ATTR_ID, 0, NULL, 0) != 0) {
goto error;
}
/* add operation attributes */
if (isns_append_attr(cmd, ISNS_ISCSI_NAME_ATTR_ID,
STRLEN(node), node, 0) != 0) {
goto error;
}
/* send pdu */
if (isns_send(so, cmd) == -1) {
syslog(LOG_ERR, "isns_dev_attr_dereg fails isns_send");
goto error;
}
/* get isns response */
if (isns_recv(so, &rsp) == -1) {
syslog(LOG_ERR, "isns_dev_attr_dereg fails isns_recv ");
goto error;
}
/* process response */
if (process_rsp(cmd, rsp) == 0) {
num_reg--;
ret = 0;
}
error:
/* Free all resouces here */
if (cmd)
isns_free_pdu(cmd);
if (rsp)
isns_free_pdu(rsp);
return (ret);
}
/*
* Register a new node, need to find another node that is already registered
* DevAttrReg
* RFC 4171 Section 5.6.5.5 indicated SCN-port-tag (23) needed to be
* included in the registration
* Also need to register ESI-port-tag (20) see Section 6.3.5
*/
static int
isns_dev_attr_reg(int so, tgt_node_t *tgt, char *node, char *alias)
{
isns_pdu_t *cmd = NULL;
isns_rsp_t *rsp = NULL;
uint32_t flags = 0;
int ret = 0;
Boolean_t found = False;
tgt_node_t *src = NULL;
char *src_nm = NULL;
queue_prt(mgmtq, Q_ISNS_DBG, "ISNS_DEV_ATTR_REG");
if ((so = isns_open(isns_args.server)) == -1) {
return (-1);
}
if (num_reg == 0) {
flags |= ISNS_FLAG_REPLACE_REG;
}
if (isns_create_pdu(ISNS_DEV_ATTR_REG, flags, &cmd) != 0) {
return (-1);
}
if (num_reg == 0) {
/* add new node to source attribute */
if (isns_append_attr(cmd, ISNS_ISCSI_NAME_ATTR_ID,
STRLEN(node), node, 0) != 0) {
goto error;
}
} else {
/* find a registered node to use */
do {
src = find_next_tgt(src, &src_nm);
if (src == NULL) {
syslog(LOG_ALERT, "ISNS out of sync\n");
goto error;
}
if (tgt == src) {
free(src_nm);
continue;
} else {
found = True;
}
} while (found == False);
if (isns_append_attr(cmd, ISNS_ISCSI_NAME_ATTR_ID,
STRLEN(src_nm), src_nm, 0) != 0) {
goto error;
}
}
/* add message key attribute */
if (isns_append_attr(cmd, ISNS_EID_ATTR_ID,
STRLEN(isns_args.entity), isns_args.entity, 0) != 0) {
goto error;
}
/* add delimiter */
if (isns_append_attr(cmd, ISNS_DELIMITER_ATTR_ID, 0, NULL, 0) != 0) {
goto error;
}
/* add operation attributes */
/* entity id */
if (isns_append_attr(cmd, ISNS_EID_ATTR_ID,
STRLEN(isns_args.entity), isns_args.entity, 0) != 0) {
goto error;
}
/* entity type */
if (isns_append_attr(cmd, ISNS_ENTITY_PROTOCOL_ATTR_ID,
ISNS_ENTITY_TYP_SZ, NULL, ISNS_ENTITY_PROTOCOL_ISCSI) != 0) {
goto error;
}
/*
* Register entity portal properties the 1st time
*/
if (num_reg == 0) {
/* portal ip-addr */
if (isns_append_attr(cmd, ISNS_PORTAL_IP_ADDR_ATTR_ID,
eid_ip.ai_addrlen, (void *)&eid_ip.ip_adr,
eid_ip.ip_len) != 0) {
goto error;
}
/* portal port */
if (isns_append_attr(cmd, ISNS_PORTAL_PORT_ATTR_ID,
ISNS_PORT_SZ, NULL, iscsi_port) != 0) {
goto error;
}
/* ESI interval */
if (isns_append_attr(cmd, ISNS_ESI_INTERVAL_ATTR_ID,
ISNS_ESI_TICK_SZ, NULL, 10) != 0) {
goto error;
}
/* scn port */
if (isns_append_attr(cmd, ISNS_SCN_PORT_ATTR_ID,
ISNS_PORT_SZ, NULL, scn_port) != 0) {
goto error;
}
/* esi port */
if (isns_append_attr(cmd, ISNS_ESI_PORT_ATTR_ID,
ISNS_PORT_SZ, NULL, scn_port) != 0) {
goto error;
}
}
/* iscsi node name */
if (isns_append_attr(cmd, ISNS_ISCSI_NAME_ATTR_ID,
STRLEN(node), node, 0) != 0) {
goto error;
}
/* iscsi node type */
if (isns_append_attr(cmd, ISNS_ISCSI_NODE_TYPE_ATTR_ID,
ISNS_NODE_TYP_SZ, NULL, ISNS_TARGET_NODE_TYPE) != 0) {
goto error;
}
/* iscsi node alias */
if (isns_append_attr(cmd, ISNS_ISCSI_ALIAS_ATTR_ID,
STRLEN(alias), alias, 0) != 0) {
goto error;
}
/* PGT */
if (append_tpgt(tgt, cmd) != 0) {
goto error;
}
/* send pdu */
if (isns_send(so, cmd) == -1) {
goto error;
}
/* get isns response */
if (isns_recv(so, &rsp) == -1) {
goto error;
}
/* process response */
if ((ret = process_rsp(cmd, rsp)) == 0) {
num_reg++;
}
error:
/* Free all resouces here */
if (cmd)
isns_free_pdu(cmd);
if (rsp)
isns_free_pdu(rsp);
if (src_nm)
free(src_nm);
return (ret);
}
/*
* DevAttrQry for iscsi initiator
* See RFC 4171 Sect. 5.6.5.2 for query detail
*/
static int
isns_dev_attr_qry(int so, char *target, char *initiator)
{
isns_pdu_t *cmd;
isns_rsp_t *rsp;
uint32_t flags = 0;
int ret = -1;
size_t remain;
isns_tlv_t *tlv;
uint8_t *ptr;
queue_prt(mgmtq, Q_ISNS_DBG, "ISNS_DEV_ATTR_QRY");
if (isns_create_pdu(ISNS_DEV_ATTR_QRY, flags, &cmd) != 0) {
return (-1);
}
/* source attribute */
if (isns_append_attr(cmd, ISNS_ISCSI_NAME_ATTR_ID,
STRLEN(target), target, 0) == -1) {
goto error;
}
/* message key attribute */
/* iscsi initiator node type */
if (isns_append_attr(cmd, ISNS_ISCSI_NODE_TYPE_ATTR_ID,
ISNS_NODE_TYP_SZ, NULL, ISNS_INITIATOR_NODE_TYPE) == -1) {
goto error;
}
/* delimiter */
if (isns_append_attr(cmd, ISNS_DELIMITER_ATTR_ID, 0, NULL, 0) == -1) {
goto error;
}
/*
* operating attributes
* Query Iscsi initiator with zero length TLV operating
* attribute
*/
/* iscsi name */
if (isns_append_attr(cmd, ISNS_ISCSI_NAME_ATTR_ID,
0, NULL, 0) != 0) {
goto error;
}
if (isns_send(so, cmd) == -1) {
syslog(LOG_ERR, "isns_dev_attr_qry fails isns_send");
goto error;
}
/* recv response */
if (isns_recv(so, &rsp) == -1) {
syslog(LOG_ERR, "isns_dev_attr_qry fails isns_recv ");
goto error;
}
/* process response */
if ((ret = process_rsp(cmd, rsp)) == 0) {
/* compare initiator name to the response, success if found */
/* subtract out status word */
remain = rsp->pdu_len - ISNS_STATUS_SZ;
ptr = rsp->data;
while (remain > 0) {
/* LINTED */
tlv = (isns_tlv_t *)ptr;
/* debug only */
print_ntoh_tlv(tlv);
/* process tag-len-value */
ntoh_tlv(tlv);
/*
* let's process the data, only interested
* in iscsi name, skip everything else for
* now.
*/
if (tlv->attr_id == ISNS_ISCSI_NAME_ATTR_ID) {
if (strncmp((char *)tlv->attr_value, initiator,
tlv->attr_len) == 0) {
break;
}
}
/* next tlv */
remain -= ISNS_ATTR_SZ(tlv->attr_len);
ptr += ISNS_ATTR_SZ(tlv->attr_len);
}
ret = (remain > 0) ? 1 : 0;
}
error:
if (cmd)
isns_free_pdu(cmd);
if (rsp)
isns_free_pdu(rsp);
return (ret);
}
/*
* SCNReg
* See RFC 4171 Section 5.6.5.5
*/
static int
isns_scn_reg(int so, char *node)
{
isns_pdu_t *cmd;
isns_rsp_t *rsp;
uint32_t flags = 0;
uint32_t bitmap = 0;
int ret = -1;
queue_prt(mgmtq, Q_ISNS_DBG, "ISNS_SCN_REG");
if (isns_create_pdu(ISNS_SCN_REG, flags, &cmd) != 0) {
return (-1);
}
/* source attribute */
if (isns_append_attr(cmd, ISNS_ISCSI_NAME_ATTR_ID,
STRLEN(node), node, 0) == -1) {
goto error;
}
/* message key attribute */
/* iscsi initiator node name */
if (isns_append_attr(cmd, ISNS_ISCSI_NAME_ATTR_ID,
STRLEN(node), node, 0) != 0) {
goto error;
}
/* delimiter */
if (isns_append_attr(cmd, ISNS_DELIMITER_ATTR_ID, 0, NULL, 0) == -1) {
goto error;
}
/* SCN bitmap */
bitmap = ISNS_INIT_SELF_INFO_ONLY | ISNS_OBJ_REMOVED |
ISNS_OBJ_ADDED | ISNS_OBJ_UPDATED;
if (isns_append_attr(cmd, ISNS_ISCSI_SCN_BITMAP_ATTR_ID,
ISNS_SCN_BITMAP_SZ, NULL, bitmap) == -1) {
goto error;
}
if (isns_send(so, cmd) == -1) {
syslog(LOG_ERR, "isns_scn_reg fails isns_send");
goto error;
}
if (isns_recv(so, &rsp) == -1) {
syslog(LOG_ERR, "isns_scn_reg fails isns_recv ");
goto error;
}
/* process response */
if (process_rsp(cmd, rsp) == 0) {
ret = 0;
}
error:
if (cmd)
isns_free_pdu(cmd);
if (rsp)
isns_free_pdu(rsp);
return (ret);
}
/*
* SCNDereg
*/
static int
isns_scn_dereg(int so, char *node)
{
isns_pdu_t *cmd = NULL;
isns_rsp_t *rsp = NULL;
uint32_t flags = 0;
int ret = -1;
queue_prt(mgmtq, Q_ISNS_DBG, "ISNS_SCN_DEREG");
if (isns_create_pdu(ISNS_SCN_DEREG, flags, &cmd) != 0) {
return (-1);
}
/* source attribute */
if (isns_append_attr(cmd, ISNS_ISCSI_NAME_ATTR_ID,
STRLEN(node), node, 0) == -1) {
goto error;
}
/* message key attribute */
/* iscsi initiator node name */
if (isns_append_attr(cmd, ISNS_ISCSI_NAME_ATTR_ID,
STRLEN(node), node, 0) != 0) {
goto error;
}
if (isns_append_attr(cmd, ISNS_DELIMITER_ATTR_ID, 0, NULL, 0) == -1) {
goto error;
}
if (isns_send(so, cmd) == -1) {
syslog(LOG_ERR, "isns_scn_reg fails isns_send");
goto error;
}
if (isns_recv(so, &rsp) == -1) {
syslog(LOG_ERR, "isns_scn_reg fails isns_recv ");
goto error;
}
/* process response */
if (process_rsp(cmd, rsp) == 0) {
ret = 0;
}
error:
if (cmd)
isns_free_pdu(cmd);
if (rsp)
isns_free_pdu(rsp);
return (ret);
}
/*
* isns_reg is called to register new target
*/
int
isns_reg(char *targ)
{
int so;
tgt_node_t *tgt;
char *iqn;
if ((so = isns_open(isns_args.server)) == -1) {
syslog(LOG_ERR, "isns_reg failed");
return (-1);
}
/*
* Open targets_config and devAttrReg all nodes
*/
if ((tgt = find_tgt_by_name(targ, &iqn)) != NULL) {
if (isns_dev_attr_reg(so, tgt, iqn, tgt->x_value) != 0) {
syslog(LOG_ALERT, "ISNS registration failed %s\n",
tgt->x_value);
}
if (isns_scn_reg(so, iqn) == -1) {
syslog(LOG_ERR, "ISNS SCN register failed\n");
}
free(iqn);
}
isns_close(so);
return (0);
}
/*
* Register all iscsi target nodes from the XML database
* Alway use the ISNS_FLAG_REPLACE_REG flag
*/
int
isns_reg_all()
{
int so;
uint32_t flags = ISNS_FLAG_REPLACE_REG;
isns_pdu_t *cmd;
isns_rsp_t *rsp;
char *n = NULL;
char *a = NULL;
char alias[MAXNAMELEN];
char iname[MAXNAMELEN];
tgt_node_t *tgt = NULL;
int ret = -1;
int tgt_cnt = 0;
/*
* get the 1st target and use it for the source attribute
*/
if ((tgt = tgt_node_next(targets_config, XML_ELEMENT_TARG, tgt))
== NULL) {
syslog(LOG_ALERT, "ISNS: no iscsi target found\n");
return (-1);
}
if (tgt->x_value == NULL) {
syslog(LOG_ALERT, "ISNS: target with NULL local name\n");
return (-1);
}
if (tgt_find_value_str(tgt, XML_ELEMENT_INAME, &n)
== FALSE) {
syslog(LOG_ALERT, "ISNS: no XML_ELEMENT_INAME found\n");
return (-1);
}
strcpy(iname, n);
free(n);
if ((so = isns_open(isns_args.server)) == -1) {
syslog(LOG_ALERT, "ISNS: fails to connect to %s\n",
isns_args.server);
return (-1);
}
if (isns_create_pdu(ISNS_DEV_ATTR_REG, flags, &cmd) != 0) {
goto error;
}
/* source attribute */
if (isns_append_attr(cmd, ISNS_ISCSI_NAME_ATTR_ID,
STRLEN(iname), iname, 0) != 0) {
goto error;
}
/* add message key attribute */
if (isns_append_attr(cmd, ISNS_EID_ATTR_ID,
STRLEN(isns_args.entity), isns_args.entity, 0) != 0) {
goto error;
}
/* add delimiter */
if (isns_append_attr(cmd, ISNS_DELIMITER_ATTR_ID, 0, NULL, 0) != 0) {
goto error;
}
/* entity id */
if (isns_append_attr(cmd, ISNS_EID_ATTR_ID,
STRLEN(isns_args.entity), isns_args.entity, 0) != 0) {
goto error;
}
/* entity type */
if (isns_append_attr(cmd, ISNS_ENTITY_PROTOCOL_ATTR_ID,
ISNS_ENTITY_TYP_SZ, NULL, ISNS_ENTITY_PROTOCOL_ISCSI) != 0) {
goto error;
}
/* portal ip-addr */
if (isns_append_attr(cmd, ISNS_PORTAL_IP_ADDR_ATTR_ID,
eid_ip.ai_addrlen, (void *)&eid_ip.ip_adr,
eid_ip.ip_len) != 0) {
goto error;
}
/* portal port */
if (isns_append_attr(cmd, ISNS_PORTAL_PORT_ATTR_ID,
ISNS_PORT_SZ, NULL, iscsi_port) != 0) {
goto error;
}
/* ESI interval */
if (isns_append_attr(cmd, ISNS_ESI_INTERVAL_ATTR_ID,
ISNS_ESI_TICK_SZ, NULL, 10) != 0) {
goto error;
}
/* scn port */
if (isns_append_attr(cmd, ISNS_SCN_PORT_ATTR_ID,
ISNS_PORT_SZ, NULL, scn_port) != 0) {
goto error;
}
/* esi port */
if (isns_append_attr(cmd, ISNS_ESI_PORT_ATTR_ID,
ISNS_PORT_SZ, NULL, scn_port) != 0) {
goto error;
}
/*
* Open targets_config and devAttrReg all nodes
*/
tgt = NULL;
while ((tgt = tgt_node_next(targets_config, XML_ELEMENT_TARG, tgt))
!= NULL) {
if (tgt->x_value == NULL) {
syslog(LOG_ALERT, "ISNS: target with NULL name\n");
continue;
}
/* use this value as alias if alias is not set */
strcpy(alias, tgt->x_value);
if (tgt_find_value_str(tgt, XML_ELEMENT_INAME, &n)
== FALSE) {
continue;
}
strcpy(iname, n);
free(n);
/* find alias */
if (tgt_find_value_str(tgt, XML_ELEMENT_ALIAS, &a)
== TRUE) {
strcpy(alias, a);
free(a);
}
tgt_cnt++; /* increment target count */
/* operation attributes */
if (isns_append_attr(cmd, ISNS_ISCSI_NAME_ATTR_ID,
STRLEN(iname), iname, 0) != 0) {
goto error;
}
if (isns_append_attr(cmd, ISNS_ISCSI_NODE_TYPE_ATTR_ID,
4, NULL, ISNS_TARGET_NODE_TYPE) != 0) {
goto error;
}
if (isns_append_attr(cmd, ISNS_ISCSI_ALIAS_ATTR_ID,
STRLEN(alias), alias, 0) != 0) {
goto error;
}
if (append_tpgt(tgt, cmd) != 0) {
goto error;
}
}
/* send pdu */
if (isns_send(so, cmd) == -1) {
goto error;
}
/* get isns response */
if (isns_recv(so, &rsp) == -1) {
goto error;
}
/* process response */
if (process_rsp(cmd, rsp) == 0) {
ret = 0;
num_reg = tgt_cnt;
queue_prt(mgmtq, Q_ISNS_DBG, "DevAttrRegAll successful");
} else {
syslog(LOG_ALERT, "DevAttrReg failed");
}
error:
if (cmd)
isns_free_pdu(cmd);
if (rsp)
isns_free_pdu(rsp);
isns_close(so);
return (ret);
}
/*
* Deregister an iscsi target node
*/
int
isns_dereg(char *name)
{
int so;
int ret;
if ((so = isns_open(isns_args.server)) == -1) {
return (-1);
}
ret = isns_dev_attr_dereg(so, name);
isns_close(so);
return (ret);
}
/*
* Update an existing iscsi target property
*/
int
isns_dev_update(char *targ, uint32_t mods)
{
int so;
int flags = 0; /* update only */
char *iname = NULL;
char *dummy = NULL;
char alias[MAXNAMELEN];
tgt_node_t *tgt = NULL;
isns_pdu_t *cmd;
isns_rsp_t *rsp;
int ret = -1;
if (mods == 0)
return (0);
if ((tgt = find_tgt_by_name(targ, &iname)) != NULL) {
if (tgt_find_value_str(tgt, XML_ELEMENT_ALIAS, &dummy) ==
True) {
strcpy(alias, dummy);
free(dummy);
} else
strcpy(alias, tgt->x_value);
if ((so = isns_open(isns_args.server)) < 0) {
goto error;
}
if (isns_create_pdu(ISNS_DEV_ATTR_REG, flags, &cmd)) {
goto error;
}
/* source attr, msg key, delimiter */
if (isns_append_attr(cmd, ISNS_ISCSI_NAME_ATTR_ID,
STRLEN(iname), iname, 0) != 0) {
goto error;
}
if (isns_append_attr(cmd, ISNS_EID_ATTR_ID,
STRLEN(isns_args.entity), isns_args.entity, 0) != 0) {
goto error;
}
if (isns_append_attr(cmd, ISNS_DELIMITER_ATTR_ID, 0, NULL, 0)
!= 0) {
goto error;
}
/*
* get current operating attributes, alias & portal group
* objects, these should be the only things that get change
*/
isns_append_attr(cmd, ISNS_ISCSI_NAME_ATTR_ID, STRLEN(iname),
iname, 0);
isns_append_attr(cmd, ISNS_ISCSI_NODE_TYPE_ATTR_ID,
ISNS_NODE_TYP_SZ, NULL, ISNS_TARGET_NODE_TYPE);
if (mods & ISNS_MOD_ALIAS)
if (isns_append_attr(cmd, ISNS_ISCSI_ALIAS_ATTR_ID,
STRLEN(alias), alias, 0) != 0) {
goto error;
}
if (mods & ISNS_MOD_TPGT)
if (append_tpgt(tgt, cmd) != 0) {
goto error;
}
if (isns_send(so, (isns_pdu_t *)cmd) < 0) {
goto error;
}
if (isns_recv(so, &rsp) == -1) {
goto error;
}
/* process response, if failed do a isns_reg_all */
if ((ret = process_rsp(cmd, rsp)) == -1) {
if (isns_reg_all() != 0 || isns_scn_reg_all() != 0) {
syslog(LOG_ALERT, "ISNS register failed\n");
goto error;
}
ret = 0;
} else {
if (isns_scn_reg(so, iname) == -1) {
syslog(LOG_ERR, "ISNS SCN register failed\n");
goto error;
}
ret = 0;
}
} else {
syslog(LOG_ERR, "ISNS: fails to update target %s\n", alias);
}
error:
if (cmd)
isns_free_pdu(cmd);
if (rsp)
isns_free_pdu(rsp);
if (iname)
free(iname);
isns_close(so);
return (ret);
}
/*
* Deregister all iscsi target nodes from the XML database
*/
int
isns_dereg_all()
{
return (isns_op_all(ISNS_DEV_DEREG));
}
int
isns_scn_reg_all()
{
return (isns_op_all(ISNS_SCN_REG));
}
int
isns_scn_dereg_all()
{
return (isns_op_all(ISNS_SCN_DEREG));
}
/*
* Query an iscsi initiator node
*/
Boolean_t
isns_qry_initiator(char *target, char *initiator)
{
int so;
int ret;
if ((so = isns_open(isns_args.server)) == -1) {
syslog(LOG_ERR, "isns_qry failed");
return (-1);
}
ret = isns_dev_attr_qry(so, target, initiator);
isns_close(so);
return (ret == 1 ? True : False);
}
Boolean_t
isns_enabled()
{
Boolean_t isns_access = False;
char *isns_srv = NULL;
(void) tgt_find_value_boolean(main_config, XML_ELEMENT_ISNS_ACCESS,
&isns_access);
/* get isns server info */
if (isns_access == True) {
if (tgt_find_value_str(main_config, XML_ELEMENT_ISNS_SERV,
&isns_srv) == True) {
free(isns_srv);
return (True);
}
}
return (False);
}
|