- Fix target delete URL path mismatch (/targets/ -> /target/) - Implement target create/delete server handlers with proper validation - Add DeleteTarget method with force flag and mutex locking to SCSITargetService - Implement full LU management: create/list/delete through CLI, client, and server - Add TPGT list command to show target portal group tags - Add unit tests for target/LU router handlers and SCSI service Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
166 lines
4.1 KiB
Go
166 lines
4.1 KiB
Go
/*
|
|
Copyright 2016 The GoStor Authors All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
"text/tabwriter"
|
|
|
|
"github.com/gostor/gotgt/pkg/api"
|
|
"github.com/gostor/gotgt/pkg/api/client"
|
|
"github.com/spf13/cobra"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
func newListCommand(cli *client.Client) *cobra.Command {
|
|
var cmd = &cobra.Command{
|
|
Use: "list",
|
|
Short: "List object(s)",
|
|
Long: `All software has versions. This is Gotgt 's`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Println(cmd.UsageString())
|
|
},
|
|
}
|
|
cmd.AddCommand(
|
|
newListTargetCmd(cli),
|
|
newListLuCmd(cli),
|
|
newListTpgtCmd(cli),
|
|
)
|
|
return cmd
|
|
}
|
|
|
|
func newListTargetCmd(cli *client.Client) *cobra.Command {
|
|
opts := api.TargetListOptions{}
|
|
var cmd = &cobra.Command{
|
|
Use: "target",
|
|
Short: "List target(s) of gotgt",
|
|
Long: `All software has versions. This is Gotgt 's`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
if len(args) > 0 {
|
|
return fmt.Errorf(
|
|
"\"%s\" accepts no argument(s).\n",
|
|
cmd.CommandPath(),
|
|
)
|
|
}
|
|
return listTarget(cli, opts)
|
|
},
|
|
}
|
|
flags := cmd.Flags()
|
|
flags.StringVar(&opts.Name, "name", "", "Specify target name")
|
|
flags.BoolVar(&opts.Verbose, "verbose", false, "Show more details")
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
func newListLuCmd(cli *client.Client) *cobra.Command {
|
|
opts := api.LuListOptions{}
|
|
var cmd = &cobra.Command{
|
|
Use: "lu",
|
|
Short: "List LU(s) of gotgt",
|
|
Long: `List Logical Units for a target`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
if err := NoArgs(cmd, args); err != nil {
|
|
return err
|
|
}
|
|
return listLu(cli, opts)
|
|
},
|
|
}
|
|
flags := cmd.Flags()
|
|
flags.StringVar(&opts.TargetName, "target", "", "Specify target name")
|
|
return cmd
|
|
}
|
|
|
|
func newListTpgtCmd(cli *client.Client) *cobra.Command {
|
|
opts := api.TpgtListOptions{}
|
|
var cmd = &cobra.Command{
|
|
Use: "tpgt",
|
|
Short: "List TPGT(s) of gotgt",
|
|
Long: `List Target Portal Group Tags for a target`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
if err := NoArgs(cmd, args); err != nil {
|
|
return err
|
|
}
|
|
return listTpgt(cli, opts)
|
|
},
|
|
}
|
|
flags := cmd.Flags()
|
|
flags.StringVar(&opts.TargetName, "target", "", "Specify target name")
|
|
return cmd
|
|
}
|
|
|
|
func listTarget(cli *client.Client, opts api.TargetListOptions) error {
|
|
results, err := cli.TargetList(context.Background(), opts)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
w := tabwriter.NewWriter(os.Stdout, 20, 1, 3, ' ', 0)
|
|
fmt.Fprintln(w, "TARGET NAME\tSTATE\tSESSIONS")
|
|
for _, tgt := range results {
|
|
if tgt == nil {
|
|
continue
|
|
}
|
|
status := "online"
|
|
if tgt.State == api.TargetReady {
|
|
status = "ready"
|
|
}
|
|
fmt.Fprintf(w, "%s\t%s\t%d\n", tgt.Name, status, len(tgt.ITNexus))
|
|
}
|
|
w.Flush()
|
|
return nil
|
|
}
|
|
|
|
func listLu(cli *client.Client, opts api.LuListOptions) error {
|
|
if opts.TargetName == "" {
|
|
return fmt.Errorf("target name is required (--target)")
|
|
}
|
|
results, err := cli.LuList(context.Background(), opts)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
w := tabwriter.NewWriter(os.Stdout, 15, 1, 3, ' ', 0)
|
|
fmt.Fprintln(w, "LUN\tPATH\tSIZE\tONLINE")
|
|
for _, lu := range results {
|
|
fmt.Fprintf(w, "%d\t%s\t%d\t%v\n", lu.LUN, lu.Path, lu.Size, lu.Online)
|
|
}
|
|
w.Flush()
|
|
return nil
|
|
}
|
|
|
|
func listTpgt(cli *client.Client, opts api.TpgtListOptions) error {
|
|
if opts.TargetName == "" {
|
|
return fmt.Errorf("target name is required (--target)")
|
|
}
|
|
results, err := cli.TpgtList(context.Background(), opts)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
w := tabwriter.NewWriter(os.Stdout, 10, 1, 3, ' ', 0)
|
|
fmt.Fprintln(w, "TPGT\tPORTALS")
|
|
for _, tpgt := range results {
|
|
portals := strings.Join(tpgt.Portals, ", ")
|
|
fmt.Fprintf(w, "%d\t%s\n", tpgt.TPGT, portals)
|
|
}
|
|
w.Flush()
|
|
return nil
|
|
}
|